branch_name stringclasses 149 values | text stringlengths 23 89.3M | directory_id stringlengths 40 40 | languages listlengths 1 19 | num_files int64 1 11.8k | repo_language stringclasses 38 values | repo_name stringlengths 6 114 | revision_id stringlengths 40 40 | snapshot_id stringlengths 40 40 |
|---|---|---|---|---|---|---|---|---|
refs/heads/master | <repo_name>michal-ko/render-blend<file_sep>/ubuntu_bootstrap_script.txt
#!/bin/bash
apt-get update -y
apt-get upgrade -y
apt-get install -y apache2
systemctl enable apache2.service
apt install awscli -y
mkdir /home/ubuntu/BlenderInstaller
cd /home/ubuntu/BlenderInstaller
wget https://download.blender.org/release/Blender2.83/blender-2.83.5-linux64.tar.xz
tar -xf blender-2.83.5-linux64.tar.xz
rm /home/ubuntu/BlenderInstaller/blender-2.83.5-linux64.tar.xz
echo "<html><h1>healthy</h1></html>" > /var/www/html/index.html
systemctl restart apache2
<file_sep>/get_scene_framerange.py
import bpy
def get_framerange(scenepath):
bpy.ops.wm.open_mainfile(filepath=scenepath) # opens blender scene
start_frame = bpy.context.scene.frame_start
end_frame = bpy.context.scene.frame_end
total_frames = int(end_frame) - int(start_frame)
return {"start_frame": start_frame, "end_frame": end_frame, "total_frames": total_frames}
if __name__ == "__main__":
import sys
if len(sys.argv) != 5:
print("Incorrect arguments provided!\n"
"Example: blender --background monkey_test.blend --python ./get_scene_framerange.py")
sys.exit(1)
abs_file_path = bpy.data.filepath
print(f"Checking file: {abs_file_path}")
# Run the function to extract frame range
fr = get_framerange(abs_file_path)
print(fr)
| 4654779c266054a1cfac7687e5be05a10c719606 | [
"Python",
"Shell"
] | 2 | Shell | michal-ko/render-blend | dd904a686be42b5275de4cb2ea8434f725fdceaa | 803efc901c53529ee63aaf2e064ef395b0f1fe05 |
refs/heads/master | <file_sep>var path = require('path');
var fs = require('fs');
var webpack = require('webpack');
var glob = require("glob");
var copy = require('copy-webpack-plugin');
var bannerPlugin = new webpack.BannerPlugin(
'// { "framework": "Vue" }\n',
{raw: true}
)
// 文件拷贝插件,将图片和字体拷贝到dist目录
var copyPlugin = new copy([
{from: './src/image', to: "./image"},
{from: './src/font', to: "./font"}
])
// 遍历文件入口,动态生成入口
function getEntries () {
var entryFiles = glob.sync('./src/entry/**', { 'nodir': true})
var entries = {};
for (var i = 0; i < entryFiles.length; i++) {
var filePath = entryFiles[i];
var filename = filePath.split('entry/')[1];
filename = filename.substr(0, filename.lastIndexOf('.'));
entries[filename] = filePath;
}
return entries;
}
// 生成webpack配置
function getBaseConfig() {
return {
entry: getEntries(),
output: {
path: 'dist',
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}, {
test: /\.vue(\?[^?]+)?$/,
loaders: []
}, {
test: /\.scss$/,
loader: 'style!css!sass'
},
{
test: /\.json$/,
loader: 'json-loader'
}
]
},
// vue: {},
plugins: [bannerPlugin, copyPlugin]
}
}
//*.web.js
var webConfig = getBaseConfig();
webConfig.output.filename = '[name].web.js';
webConfig.module.loaders[1].loaders.push('vue');
//*.weex.js
var weexConfig = getBaseConfig();
weexConfig.output.filename = '[name].weex.js';
weexConfig.module.loaders[1].loaders.push('weex');
module.exports = [webConfig, weexConfig];<file_sep>var fs = require('fs');
var archiver = require('archiver');
//拷贝任务
var copyTask = function (src, dst) {
if(!fs.existsSync(src)){
console.log('目标文件夹不存在!')
return false;
}
var paths = fs.readdirSync(src);
paths.forEach(function (path) {
var _src = src + '/' + path,
_dst = dst + '/' + path,
readable, writable;
var st = fs.statSync(_src);
console.log(_dst);
// 判断是否为文件
if (st.isFile()) {
//*.web.js不拷贝
if (path.indexOf("web.js") < 0) {
readable = fs.createReadStream(_src);
writable = fs.createWriteStream(_dst);
readable.pipe(writable);
}
}
else if (st.isDirectory()) {
if (!fs.existsSync(_dst)) {
fs.mkdirSync(_dst);
}
return copyTask(_src, _dst);
}
});
return true;
};
//删除任务
var removeTask = function (dir, cb) {
var iterator = function (url, dirs) {
var stat = fs.statSync(url);
if (stat.isDirectory()) {
dirs.unshift(url);//收集目录
inner(url, dirs);
} else if (stat.isFile()) {
fs.unlinkSync(url);//直接删除文件
}
}
var inner = function (path, dirs) {
var arr = fs.readdirSync(path);
for (var i = 0, el; el = arr[i++];) {
iterator(path + "/" + el, dirs);
}
}
cb = cb || function () {
};
var dirs = [];
try {
iterator(dir, dirs);
for (var i = 0, el; el = dirs[i++];) {
fs.rmdirSync(el);
}
cb()
} catch (e) {
//如果文件或目录本来就不存在,fs.statSync会报错,当成没有异常发生
e.code === "ENOENT" ? cb() : cb(e);
}
}
//压缩任务
var zipTask = function () {
var output = fs.createWriteStream(zipFile);
var archive = archiver('zip', {zlib: {level: 9}});
output.on('close', function () {
console.log('压缩完成!');
});
archive.on('error', function (err) {
console.error('压缩失败!');
console.error(err);
removeTask(zipFile);
});
archive.pipe(output);
archive.directory(dst, false);
archive.finalize();
};
var src = "./dist";
var dst = "./publish";
var zipFile = './publish.zip';
//先删除publish目录,之后进行拷贝,最后进行压缩
removeTask(dst, () => {
if (!fs.existsSync(dst)) {
fs.mkdirSync(dst);
}
console.log('开始拷贝文件......');
var result = copyTask(src, dst);
if(!result) return;
console.log('正在压缩文件......');
zipTask();
});<file_sep>import App from '../views/app.vue'
import buiweex from '../js/buiweex.js'
Vue.use(buiweex);
App.el = '#root'
new Vue(App)
| 22804eb6a106cbafc604127175504b47d9fa602b | [
"JavaScript"
] | 3 | JavaScript | JyHiting/bui-weex | 5bf5aae5cff51202048d84822aab928b429a9b48 | ac82dbaf0e381852ce194dad8212a992e8805d40 |
refs/heads/main | <file_sep>#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import rospy
import actionlib
import tf
import math
from geometry_msgs.msg import PoseStamped, Quaternion, TransformStamped, Twist
from move_base_msgs.msg import MoveBaseAction, MoveBaseGoal
rospy.init_node('test')
navclient = actionlib.SimpleActionClient('/move_base', MoveBaseAction)
def quaternion_from_euler(roll, pitch, yaw):
q = tf.transformations.quaternion_from_euler(roll / 180.0 * math.pi,
pitch / 180.0 * math.pi,
yaw / 180.0 * math.pi, 'rxyz')
return Quaternion(q[0], q[1], q[2], q[3])
def move_base_goal(x, y, theta):
goal = MoveBaseGoal()
goal.target_pose.header.frame_id = "map"
goal.target_pose.pose.position.x = x
goal.target_pose.pose.position.y = y
goal.target_pose.pose.orientation = quaternion_from_euler(0, 0, theta)
navclient.send_goal(goal)
navclient.wait_for_result()
state = navclient.get_state()
return True if state == 3 else False
if __name__=='__main__':
navclient.wait_for_server()
try:
# move in front of the long table
move_base_goal(1, 0.5, 90)
except:
rospy.logerr('fail to move')
sys.exit()
try:
# move in front of the tray
move_base_goal(1.8, -0.1, -90)
except:
rospy.logerr('fail to move')
sys.exit()
<file_sep>Example project for robocup-at-home-2021-opl-challenge
# robocup-at-home-2021-opl-challenge
<file_sep>cmake_minimum_required(VERSION 2.8.3)
project(robocup_challenge)
find_package(catkin REQUIRED)
catkin_package(
)
install(PROGRAMS
scripts/move.py
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
)
install(DIRECTORY
launch
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)
| dd7b003ee1172a3cdd3a23f1cedd28f0062a773e | [
"Markdown",
"Python",
"CMake"
] | 3 | Python | devrt/robocup-at-home-2021-opl-challenge | 25150068305f006fef44d4090d76e440e0abd464 | 7fff0e1902261fceadb0df7b3d8b330183073840 |
refs/heads/master | <repo_name>aminnaushad2/Project<file_sep>/create_account.py
import os
import menu1
import getpass
import sys
#password = getpass.getpass('Enter Your Password (WITHOUT SPACES): ')
#print(password)
def create_account(ls):
# ls is a list of lists of lines in accounts file
# ls is the accounts_list
os.system('clear')
account_name = input('Enter Your Name (WITHOUT SPACES): ')
account_password =input('Enter Your Password (WITHOUT SPACES): ')
re_account_password = input('Enter Your Password (WITHOUT SPACES): ')
if account_password == re_account_password:
print("Creating Your Account .....")
accounts_file = open('Accounts.txt', 'a')
else:
print("Re-enter Details Password Don't match")
os.system('clear')
menu1.menu1()
if len(ls) == 0:
new_last_id = 1
else:
new_last_id = int(ls[len(ls) - 1][0]) + 1000000
line = '{0}\t{1}\t{2}\t0\n'.format(str(new_last_id), account_name, account_password)
accounts_file.write(line)
id_file_name = str(new_last_id) + '.txt'
id_file = open(id_file_name, 'w')
print("Your Account Has Been Created And Your Id Is " + str(new_last_id))
id_file.close()
accounts_file.close()
ls.append([str(new_last_id), account_name, account_password, '0'])
os.system('clear')
menu1.menu1() # start the program - call menu1() function
| fdce118ea1658a901d75c8f71bbde162846609c5 | [
"Python"
] | 1 | Python | aminnaushad2/Project | fe57649c26c1c0528eefe273c9bfe9b1a77311ff | be6caffc2e335ccbe99c358455fe008958193bbc |
refs/heads/master | <file_sep>import React, {Component} from 'react';
import {Bar} from 'react-chartjs-2';
import './ChartComponent.css';
let chartOptions = {
scales: {
yAxes: [{
ticks: {
// Include a dollar sign in the ticks
callback: function(value, index, values) {
return '$' + value;
}
}
}]
}
};
export default class CustomChart extends Component {
constructor(props) {
super(props);
this.calcChart = this.calcChart.bind(this);
}
calcChart(inputData) {
if (!inputData) return;
let values = [];
let {inputData: {a: a}, inputData: {b: b}, inputData: {c: c}} = inputData;
let calcRecult = a.value - b.value + c.value;
values.push(calcRecult);
return {
labels: [' '],
datasets: [{
label: 'Reportable loss',
backgroundColor: 'rgba(255,99,132,0.2)',
borderColor: 'rgba(255,99,132,1)',
borderWidth: 1,
hoverBackgroundColor: 'rgba(255,99,132,0.4)',
hoverBorderColor: 'rgba(255,99,132,1)',
data: values
}]
}
}
render() {
return (
<div className="tab-area">
<ul className="tab-list">
<li className="active">
<a href="#">
Breakeven Analysis
</a>
</li>
<li>
<a href="#">
Breakeven Analysis
</a>
</li>
</ul>
<div className="tab-content">
<div className="tab">
<div className="chart-area">
<Bar id="customBarChart" data={this.calcChart(this.props)} options={chartOptions} redraw/>
</div>
</div>
</div>
</div>
);
}
}
| dcde84f0bc38c6cce30c092dcb09dae0dd483707 | [
"JavaScript"
] | 1 | JavaScript | rafalskyi/demo_calc | ed9cdbc791f93396e97f5ff5252129caa8e9d86b | 2f0d00f4d7a3e6d26a5d95ce14840aea2a27928b |
refs/heads/master | <file_sep><!-- Generated by documentation.js. Update this documentation by updating the source code. -->
### Table of Contents
* [Generator][1]
* [Parameters][2]
* [Examples][3]
* [destinationName][4]
* [optionPrompt][5]
* [Parameters][6]
* [prompting][7]
* [copyTemplate][8]
* [Parameters][9]
* [extendJson][10]
* [Parameters][11]
* [extendTsConfig][12]
* [Parameters][13]
* [extendPackage][14]
* [Parameters][15]
* [addScripts][16]
* [Parameters][17]
* [sortScripts][18]
* [Parameters][19]
## Generator
A replacement [Generator][20]
class with extensions, to be used as a base class for actual generators.
### Parameters
* `args` **([string][21] | [Array][22])** Generator arguments.
* `opts` **[Object][23]** Generator options.
### Examples
```javascript
const { Generator } = require('@batterii/yeoman-helpers');
class MyGenerator extends Generator {
// Implement your generator here as normal.
}
module.exports = MyGenerator;
```
### destinationName
The base name of the destination directory.
### optionPrompt
Register an option/prompt hybrid. Options registered this way can be set
through Yeoman CLI options and `#composeWith` as normal. The generator
will start its run by prompting the user for any hybrid options that were
not provided, in the same order they were registered.
#### Parameters
* `config` **[Object][23]**
* `config.name` **[string][21]** The option name. Equivalent to the `name`
argument of the `#option` method and the `question.name` argument of
the `#prompt` method.
* `config.type` **[string][21]** The prompt type to show, either 'input'
or 'confirm'. This will be mapped to a corresponding option type for
CLI usage.
* `config.alias` **[string][21]** Short option name for CLI usage.
Equivalent to `config.alias` on the `#option` method.
* `config.description` **[string][21]** Full description of the option for
the CLI `-h` and `--help` flags. Equivalent to `config.description` on
the `#option` method.
* `config.message` **[string][21]** Message to show the user when
prompting for the option. This should be similar to
`config.description`, except phrased as an instruction or question.
Equivalent to the `question.message` argument for the `#prompt`
method.
* `config.default` **([function][24] | [string][21] | [boolean][25])** A default value for
the prompt, or a function that returns or resolves with one.
Equivalent to the `question.default` argument for the `#prompt`
method, except that a function does not recieve any arguments.
* `config.validate` **[function][24]** A function that recieves the user's
input as an argument. Return `true` for valid input, a string message
for invalid input, or `false` for a default message. Equivalent to
the `question.validate` argument for the `#prompt` method, except
that it is also applied to a CLI argument, ensuring unity betwen the
two forms of input.
* `config.allowed` **[function][24]** A function that recieves the current
`options` object and returns either `true` or `false`. If provided,
and false is returned, the CLI option will be ignored and no prompt
will be shown for it. Instead, its value will be equal to
`config.whenProhibited`. Use these two options in conjunction when an
option should not be configurable based on other options.
* `config.whenProhibited` **([string][21] | [boolean][25])** The value to use for
the option when `config.allowed` is provided and returns `false`.
### prompting
Prompts for any missing options defined by `#optionPrompt`. This is
re-assigned onto the prototype of any subclass, and will run before other
tasks since Yeoman \[prioritizes it based on its name]\[1]. If you need
other prompts to be shown with this priority, override this method and
place `await super.prompting()` either before or after your additional
prompts.
\[1]: [https://yeoman.io/authoring/running-context.html#the-run-loop][26]
### copyTemplate
Copies a template file to the destination. Similar to `this.fs.CopyTpl`
except it takes relative paths and has sane defaults.
#### Parameters
* `templatePath` **[string][21]** Path to the template file in the templates
directory.
* `destinationPath` **[string][21]** Path to the desination
file in the destination directory. (optional, default `templatePath`)
* `options` **[Object][23]** Data properties for the
template. (optional, default `this.options`)
### extendJson
Adds properties to a json file. Similar to `this.fs.extendJSON` except
that it accepts a relative path, indents with tabs, accepts a customizer
function to change merging behavior as needed.
#### Parameters
* `destinationPath` **[string][21]** Path to the json file in the
destination directory.
* `contents` **[object][23]** Object with properties to merge into the json
file.
* `customizer` **[function][24]?** A customizer function, as accepted by
lodash [mergeWith][27]. If
omitted, this method will use a customizer that concatenates arrays
occurring at the same property path, instead of simply overwriting the
old array values with the new. (optional, default `concatArrays`)
### extendTsConfig
Adds properties to tsconfig.json at the destination. Behaves exactly as
`#extendJson` for that file.
#### Parameters
* `contents` **[object][23]** Object with properties to merge into the
tsconfig.json file.
* `customizer` **[function][24]?** Customizer function as described in
`#extendJson` (optional, default `concatArrays`)
### extendPackage
Adds properties to package.json at the destination. Behaves exactly as
`#extendJson` for that file.
#### Parameters
* `contents` **[object][23]** Object with properties to merge into the
package.json file.
* `customizer` **[function][24]?** Customizer function as described in
`#extendJson` (optional, default `concatArrays`)
### addScripts
Adds npm scripts to package.json at the destination. Any script with a
name that already exists is appended to the existing script with a
`&&` separator, instead of replacing it completely.
#### Parameters
* `scripts` **[object][23]** Object with script strings to add, keyed by the
script name.
* `prepend` **[boolean][25]** Set true to prepend to existing
scripts instead of appending. Will likewise use `&&` as a separator. (optional, default `false`)
### sortScripts
Sorts the scripts in package.json according to the provided array of
names. Any name that is not present will be skipped. Any name that is
present but not specified in the array will retain its prevous sort
position, except at the end of any that are specifed in the array. This
is nice for restoring sanity to your list of scripts in package.json
after several composed generators have modified it.
#### Parameters
* `names` **[Array][22]<[string][21]>**
[1]: #generator
[2]: #parameters
[3]: #examples
[4]: #destinationname
[5]: #optionprompt
[6]: #parameters-1
[7]: #prompting
[8]: #copytemplate
[9]: #parameters-2
[10]: #extendjson
[11]: #parameters-3
[12]: #extendtsconfig
[13]: #parameters-4
[14]: #extendpackage
[15]: #parameters-5
[16]: #addscripts
[17]: #parameters-6
[18]: #sortscripts
[19]: #parameters-7
[20]: https://yeoman.github.io/generator/Generator.html
[21]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
[22]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array
[23]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
[24]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/function
[25]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
[26]: https://yeoman.io/authoring/running-context.html#the-run-loop
[27]: https://lodash.com/docs/4.17.11#mergeWith
<file_sep>/*
* Mapping from prompt types to CLI option types.
* Keys are prompt types, while values are CLI option types.
* Any prompt type must be listed here in order to be supported.
*/
module.exports = {
confirm: Boolean,
input: String,
};
<file_sep># @batterii/yeoman-helpers
[Yeoman](https://yeoman.io/) is useful, but its API is a very unpolished. This
package contains a library of helpers to make writing generators a bit less
frustrating.
We may consider contributing some of these to the Yeoman project itself, but for
now it is easier and faster to put them here.
## `Generator` Replacement Class
For now this library contains only one item-- a base `Generator` class to use
as a drop-in replacement for the one exported by
[yeoman-generator](https://www.npmjs.com/package/yeoman-generator).
## Documentation
For information check out the [API docs](./docs.md).
| 1b6f3495fdad2a4910e1364d79036aa19ad5c342 | [
"Markdown",
"JavaScript"
] | 3 | Markdown | Batterii/yeoman-helpers | 42777ae38d1b3e46373dd87395e6fccf20435a0b | f469effd1768210e3ec3fd10231c79a614e933a3 |
refs/heads/master | <repo_name>Supratim2000/Number-partter<file_sep>/Number pattern/17.cpp
#include<iostream>
using namespace std;
int main()
{
int n,temp,temp2;
cin>>n;
for(int i=0;i<n;i++)
{
temp=i+1;
temp2=2;
for(int j=0;j<i+1;j++)
cout<<temp--;
for(int j=0;j<n-i-1;j++)
cout<<temp2++;
cout<<endl;
}
return 0;
}<file_sep>/Number pattern/19.cpp
#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
int arr[n][n];
int top=0;
int bottom=n-1;
int left=0;
int right=n-1;
int count=1;
/* Note:-
dir==0 ---> right triversal
dir==1 ---> down triversal
dir==2 ---> left triversal
dir==3 ---> up triversal
*/
int dir=0;
while(top<=bottom && left<=right)
{
if(dir==0)
{
for(int i=left;i<=right;i++)
arr[top][i]=count++;
top++;
dir=1;
}
if(dir==1)
{
for(int i=top;i<=bottom;i++)
arr[i][right]=count++;
right--;
dir=2;
}
if(dir==2)
{
for(int i=right;i>=left;i--)
arr[bottom][i]=count++;
bottom--;
dir=3;
}
if(dir==3)
{
for(int i=bottom;i>=top;i--)
arr[i][left]=count++;
left++;
dir=0;
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
cout<<arr[i][j]<<" ";
cout<<endl;
}
return 0;
}<file_sep>/Number pattern/15.cpp
#include<iostream>
using namespace std;
int main()
{
int n,temp;
cin>>n;
for (int i = 0; i < n; i++)
{
temp = i+1;
for (int j = 0; j < n; j++)
(temp<n)?cout<<temp++:cout<<temp;
cout<<endl;
}
return 0;
}<file_sep>/Number pattern/18.cpp
#include<iostream>
const int Nmax=100;
using namespace std;
int main()
{
int n;
cin>>n;
int size=2*n-1;
int arr[Nmax][Nmax];
int big=size-1,small=0;
while(n)
{
for(int i=small;i<=big;i++)
for(int j=small;j<=big;j++)
if(i==small || j==small || i==big || j==big)
arr[i][j]=n;
n--;
small++;
big--;
}
for (int i = 0; i < size; i++)
{
for (int j = 0; j < size; j++)
cout << arr[i][j]<<" ";
cout << endl;
}
return 0;
}<file_sep>/Number pattern/4.cpp
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
(i==0 || j==0 || i==n-1 || j==n-1) ? cout << 1 : cout << 0;
cout << endl;
}
return 0;
}<file_sep>/Number pattern/12.cpp
#include<iostream>
using namespace std;
int main()
{
int n,k=-1;
cin>>n;
for(int i=0;i<n;i++)
{
k=i+1;
for(int j=0;j<n;j++)
cout<<k++;
cout<<endl;
}
return 0;
}<file_sep>/Number pattern/14.cpp
#include<iostream>
using namespace std;
int main()
{
int n,temp,count;
cin>>n;
for(int i=0;i<n;i++)
{
temp=n+1;
count=i;
for(int j=0;j<n;j++)
j>count?cout<<temp:cout<<--temp;
cout<<endl;
}
return 0;
}<file_sep>/Number pattern/9.cpp
#include <iostream>
#define Nmax 1000
using namespace std;
int main()
{
int n;
cin >> n;
bool arr[Nmax][Nmax];
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
(i == 0 || j == 0 || i == n - 1 || j == n - 1)? arr[i][j]=true:arr[i][j]=false;
arr[0][0]=arr[0][n-1]=arr[n-1][0]=arr[n-1][n-1]=false;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
cout<<(int)arr[i][j];
cout<<endl;
}
return 0;
} | d71144461a92c959b2ad8a2b253bc11cebd1fce2 | [
"C++"
] | 8 | C++ | Supratim2000/Number-partter | 9c10d5270797153c26eecff4c80c1b48cbea185b | 458a77c3f67869cf939793d5a304379ccac65436 |
refs/heads/master | <repo_name>CMSCore/CMSCore.Service.Content<file_sep>/CMSCore.Service.Content/Controllers/GrainController.cs
namespace CMSCore.Service.Content.Controllers
{
using System;
using Library.GrainInterfaces;
using Microsoft.AspNetCore.Mvc;
using Orleans;
public abstract class GrainController : Controller
{
private readonly IClusterClient _client;
protected GrainController(IClusterClient client)
{
this._client = client;
}
[HttpGet("grainidentity")]
public virtual IActionResult GrainIdentity()
{
var result = _client.GetGrain<IReadContentGrain>(Guid.NewGuid().ToString()).GetGrainIdentity();
return Json(result);
}
}
}<file_sep>/CMSCore.Service.Content/Controllers/FeedItemController.cs
namespace CMSCore.Service.Content.Controllers
{
using System.ComponentModel.DataAnnotations;
using System.Threading.Tasks;
using Library.Core.Attributes;
using Library.GrainInterfaces;
using Microsoft.AspNetCore.Mvc;
using Orleans;
[Route("api/v1/[controller]")]
public class FeedItemController : GrainController
{
private readonly IClusterClient _client;
public FeedItemController(IClusterClient client) : base(client)
{
this._client = client;
}
[HttpGet("{name}")]
[ValidateModel]
public async Task<IActionResult> Get([Required] string name)
{
var grain = this._client.GetGrain<IReadContentGrain>(name);
var result = await grain.GetFeedItemByNormalizedName();
var value = result;
return Json(value);
}
[HttpGet("id/{id}")]
[ValidateModel]
public async Task<IActionResult> GetById(string id)
{
var grain = this._client.GetGrain<IReadContentGrain>(id);
var result = await grain.GetFeedItem();
var value = result;
return Json(value);
}
}
}<file_sep>/CMSCore.Service.Content/Controllers/PageController.cs
namespace CMSCore.Service.Content.Controllers
{
using System.Threading.Tasks;
using Library.GrainInterfaces;
using Microsoft.AspNetCore.Mvc;
using Orleans;
[Route("api/v1/[controller]")]
public class PageController : GrainController
{
private readonly IClusterClient _client;
public PageController(IClusterClient client) : base(client)
{
this._client = client;
}
[HttpGet("{name}")]
public async Task<IActionResult> Get(string name)
{
var grain = this._client.GetGrain<IReadContentGrain>(name);
var result = await grain.GetPageByNormalizedName();
var value = result;
return Json(value);
}
[HttpGet("id/{id}")]
public async Task<IActionResult> GetById(string id)
{
var grain = this._client.GetGrain<IReadContentGrain>(id);
var result = await grain.GetPageById();
var value = result;
return Json(value);
}
}
}<file_sep>/CMSCore.Service.Content/Controllers/MetadataController.cs
namespace CMSCore.Service.Content.Controllers
{
using System;
using System.Threading.Tasks;
using Library.GrainInterfaces;
using Microsoft.AspNetCore.Mvc;
using Orleans;
using Orleans.Core;
[Route("api/v1/[controller]")]
public class MetadataController : GrainController
{
private readonly IClusterClient _client;
public MetadataController(IClusterClient client) : base(client)
{
this._client = client;
}
[HttpGet("links")]
public async Task<IActionResult> Links()
{
var grain = this._client.GetGrain<IReadContentGrain>(Guid.NewGuid().ToString());
var result = await grain.GetPageTree();
var value = result;
return Json(value);
}
[HttpGet("tags")]
public async Task<IActionResult> Tags()
{
var grain = this._client.GetGrain<IReadContentGrain>(Guid.NewGuid().ToString());
var result = await grain.GetTags();
var value = result;
return Json(value);
}
}
} | d577c11da87396bf9100f4f55f060800c7e2c5ae | [
"C#"
] | 4 | C# | CMSCore/CMSCore.Service.Content | 34d55b47d1f7214574728c32b1b0a6b79bf48fcc | e52f4e556703bd122fcfebee90dc4b022cc60d95 |
refs/heads/master | <file_sep>public class FreieBox{
String versandtyp;
int bestandnummer;
int restplatz;
FreieBox(String versandtyp, int bestandnummer){
this.versandtyp = versandtyp;
this.bestandnummer = bestandnummer;
this.restplatz = 101;
}
public void toPrint(){
System.out.println("\nVersandtyp: "+this.versandtyp+", Bestandsnummer in Tabelle Box: "+this.bestandnummer+"," +
" Restfuellmenge in Prozent: "+(this.restplatz-1));
}
}
<file_sep>public class Datum{
private int tag;
private int monat;
private int jahr;
Datum(int tag, int monat, int jahr){
this.tag = tag;
this.monat = monat;
this.jahr = jahr;
}
public static Datum parseDate(String input){
String[] out = input.split("\\.");
return new Datum(Integer.parseInt(out[0]), Integer.parseInt(out[1]), Integer.parseInt(out[2]));
}
private String formatDat(){
return this.jahr + "-" + this.monat + "-" + this.tag;
}
public static java.sql.Date toSQLDate(Datum dat){
return java.sql.Date.valueOf(dat.formatDat());
}
}
| 9ee5bb1dab7266930db28ce76270c3dbe299dbeb | [
"Java"
] | 2 | Java | dumpeldown/DBPrak3 | cb9e28f3ccef3e47dd61b059974464ccb203058c | 8b6301ed653749cc1463aa16d868bc8ffc23f4d1 |
refs/heads/master | <repo_name>tan5o/eki-data-python<file_sep>/station.py
import pandas as pd
import os
current_dir = os.path.dirname(__file__)
df_station = pd.read_csv(current_dir + "/csv/station20200316free.csv")
df_company = pd.read_csv(current_dir + "/csv/company20200309.csv")
df_join = pd.read_csv(current_dir + "/csv/join20200306.csv")
df_line = pd.read_csv(current_dir + "/csv/line20200306free.csv")
df_pref = pd.read_csv(current_dir + "/csv/pref.csv")
def get_df():
return {"station": df_station, "company": df_company, "join": df_join, "line": df_line, "pref": df_pref}
def get_station():
return df_station
def get_pref_cd(pref_name):
val = df_pref[df_pref["pref_name"] == pref_name]["pref_cd"].values
if len(val) == 0:
raise ValueError(pref_name + " is not exist")
return val[0]
def get_station_name(station_cd):
if type(station_cd) is str:
station_cd = int(station_cd)
val = df_station[df_station["station_cd"] == station_cd]["station_name"].values
if len(val) == 0:
raise ValueError(station_cd + " is not exist")
return val[0]
def get_station_cd(station_name):
val = df_station[df_station["station_name"] == station_name]["station_cd"].values
if len(val) == 0:
raise ValueError(station_name + " is not exist")
return val[0]
def get_station_from_pref_name(pref_name):
pref_cd = get_pref_cd(pref_name)
return df_station[df_station["pref_cd"] == pref_cd]
def get_lat_lng_from_station_name(station_name):
station = df_station[df_station["station_name"] == station_name]
val = station[["lat","lon"]].values
if len(val) == 0:
raise ValueError(station_name + " is not exist")
#print(type(val[0].astype(float)))
return val[0]
#print(get_pref_cd("北海道"))
#print(get_lat_lng_from_station("東京"))<file_sep>/README.md
# eki-data-python
駅データ.jpで提供されているcsvデータを扱いやすくするためのAPIです。
<file_sep>/test_station.py
import unittest
import numpy as np
import station
class TestStation(unittest.TestCase):
def test_get_df(self):
dfs = station.get_df()
self.assertEqual(5, len(dfs))
self.assertEqual(10853, len(dfs["station"]))
def test_pref_id(self):
self.assertEqual(1, station.get_pref_cd("北海道"))
self.assertEqual(13, station.get_pref_cd("東京都"))
with self.assertRaises(ValueError, msg="東京 is not exist"):
station.get_pref_cd("東京")
def test_get_lat_lng(self):
np.testing.assert_array_almost_equal(np.array([41.773709, 140.726413]), station.get_lat_lng_from_station_name("函館"))
np.testing.assert_array_almost_equal(np.array([35.681391, 139.766103]), station.get_lat_lng_from_station_name("東京"))
with self.assertRaises(ValueError, msg="hogehoge is not exist"):
station.get_lat_lng_from_station_name("hogehoge")
| 055e5d5d02275d3ec4b81fec85cf5c32a4d333e8 | [
"Markdown",
"Python"
] | 3 | Python | tan5o/eki-data-python | f87bf15529ad5ede41e23976be474de798dae04b | 72fcb636a0cbd3da18979d610d4103d1f538d52f |
refs/heads/master | <repo_name>fredyagomez/esnextbin<file_sep>/src/containers/Main.jsx
import React from 'react';
import ReactDOM from 'react-dom';
import Mousetrap from 'mousetrap';
import Progress from 'react-progress-2';
import * as Babel from 'babel-standalone';
import querystring from 'querystring';
import prettier from 'prettier-standalone';
import Header from '../components/Header';
import Editors from '../components/Editors';
import Sandbox from '../components/Sandbox';
import * as Defaults from '../utils/DefaultsUtil';
import * as StorageUtils from '../utils/StorageUtils';
import * as GistAPIUtils from '../utils/GistAPIUtils';
class Main extends React.Component {
constructor() {
super();
this.query = {};
this.state = {
bundle: {},
bundling: false,
activeEditor: 'code',
shareModal: false,
autorunIsOn: false,
editorsData: {
code: Defaults.CODE,
transpiledCode: this._transpileCode(Defaults.CODE),
html: Defaults.HTML,
json: Defaults.PACKAGE_JSON,
error: void 0
}
};
}
componentDidMount() {
this.query = this._parseQuery();
const gistId = this.query.gist;
const sha = this.query.rev || this.query.sha;
if (gistId) {
StorageUtils.turnOffSession();
Progress.show();
GistAPIUtils.getGist({id: gistId, sha}, (err, gistSession) => {
Progress.hide();
if (err) {
console.log(err); // show special error on page
return;
}
const { transpiledCode, error } = this._transpileCodeAndCatch(gistSession.code);
const editorsData = this._updateEditorsData(Object.assign(gistSession, { transpiledCode, error }));
this.setState({ editorsData });
if (this.query.execute || this.query.exec) {
setTimeout(() => this.handleRunClick(), 0);
}
});
} else {
this.checkPreviousSession();
}
this.bindKeyShortcuts();
}
checkPreviousSession() {
const session = StorageUtils.getSession();
if (session) {
const newState = {};
const { autorun, ...editorsDataSession } = session;
if (autorun) {
newState.autorunIsOn = autorun;
}
const { transpiledCode, error } = this._transpileCodeAndCatch(session.code);
newState.editorsData = this._updateEditorsData(Object.assign(editorsDataSession, { transpiledCode, error }));
this.setState(newState);
}
}
bindKeyShortcuts() {
const mousetrap = Mousetrap(ReactDOM.findDOMNode(this));
mousetrap.bind(['command+e', 'ctrl+e'], (e) => {
e.preventDefault();
this.handleRunClick();
});
mousetrap.bind(['command+s', 'ctrl+s'], (e) => {
e.preventDefault();
this.handleSaveGist('public');
});
mousetrap.bind(['ctrl+alt+f'], (e) => {
e.preventDefault();
this.handlePrettierClick();
});
}
handleRunClick() {
if (this.state.bundling) {
return;
}
const bundle = this._getBundle();
bundle && this.setState({ bundle });
}
handlePrettierClick() {
const code = prettier.format(this.state.editorsData.code);
const editorsData = this._updateEditorsData({ code });
this.setState({ editorsData });
}
handleChangeEditor(activeEditor) {
this.setState({ activeEditor });
}
handleStartBundle() {
if (this.state.bundling) {
return;
}
this.progressDelay = setTimeout(() => {
this.setState({bundling: true});
Progress.show();
}, 100);
}
handleEndBundle() {
clearTimeout(this.progressDelay);
if (this.triggerGist) {
const status = this.triggerGist;
const gistId = this.query.gist;
const { editorsData } = this.state;
const fn = (err, res, isFork) => {
Progress.hideAll();
if (err) {
console.log(err); // show special error on page
return;
}
if (!gistId || isFork) {
window.location.search = `gist=${res.body.id}`;
}
this.finishHandleEndBundle();
};
this.triggerGist = false;
if (gistId) {
GistAPIUtils.updateGist(gistId, editorsData, status, fn);
} else {
GistAPIUtils.createGist(editorsData, status, fn);
}
} else {
this.finishHandleEndBundle();
}
}
finishHandleEndBundle() {
Progress.hideAll();
this.setState({bundling: false});
}
handleSaveGist(status) {
Progress.show();
// talk with gist API on endBundle event of sandbox
this.triggerGist = status;
this.handleRunClick();
}
openShareModal() {
this.setState({shareModal: true});
}
closeShareModal() {
this.setState({shareModal: false});
}
handleReset() {
GistAPIUtils.unauthorize();
StorageUtils.cleanSession();
window.location.reload();
}
toggleAutorun() {
const autorunIsOn = !this.state.autorunIsOn;
StorageUtils.saveToSession('autorun', autorunIsOn);
this.setState({ autorunIsOn });
}
autorunOnChange() {
if (this.autorunDelay) {
clearTimeout(this.autorunDelay);
}
this.autorunDelay = setTimeout(() => {
this.handleRunClick();
}, 1000);
}
handleCodeChange(code) {
StorageUtils.saveToSession('code', code);
clearTimeout(this.errorDelay);
const { transpiledCode, error } = this._transpileCodeAndCatch(code);
if (error) {
this.errorDelay = setTimeout(() => {
const editorsData = this._updateEditorsData({error});
this.setState({ editorsData });
}, 1000);
}
const editorsData = this._updateEditorsData({code, transpiledCode, error: ''});
this.setState({ editorsData });
if (this.state.autorunIsOn) {
this.autorunOnChange();
}
}
handleHTMLChange(html) {
StorageUtils.saveToSession('html', html);
const editorsData = this._updateEditorsData({html, error: ''});
this.setState({ editorsData });
}
handlePackageChange(json) {
StorageUtils.saveToSession('json', json);
const editorsData = this._updateEditorsData({json, error: ''});
this.setState({ editorsData });
}
handleDependencies(modules) {
const { bundle } = this.state;
const updatedPackage = Object.assign({}, bundle.package, {
dependencies: modules.reduce((memo, mod) => {
memo[mod.name] = mod.version;
return memo;
}, {})
});
const editorsData = this._updateEditorsData({
json: JSON.stringify(updatedPackage, null, 2)
});
this.setState({ editorsData });
}
handleErrorBundle(err) {
console.log(err); // maybe show some popup or notification here?
this.finishHandleEndBundle();
}
render() {
const { bundle, editorsData, activeEditor, autorunIsOn, bundling } = this.state;
return (
<div className="main">
<Progress.Component />
<Header
height={Defaults.HEADER_HEIGHT}
activeEditor={activeEditor}
isBundling={bundling}
autorunIsOn={autorunIsOn}
onShareClick={::this.openShareModal}
onRunClick={::this.handleRunClick}
onPrettierClick={::this.handlePrettierClick}
onEditorClick={::this.handleChangeEditor}
onSaveGistClick={::this.handleSaveGist}
onResetEditors={::this.handleReset}
onToggleAutorun={::this.toggleAutorun}
/>
<div className="content" tabIndex="-1">
<Editors
active={activeEditor}
code={editorsData.code}
html={editorsData.html}
json={editorsData.json}
error={editorsData.error}
headerHeight={Defaults.HEADER_HEIGHT}
onCodeChange={::this.handleCodeChange}
onHTMLChange={::this.handleHTMLChange}
onPackageChange={::this.handlePackageChange}
/>
<Sandbox
bundle={bundle}
onModules={::this.handleDependencies}
onStartBundle={::this.handleStartBundle}
onErrorBundle={::this.handleErrorBundle}
onEndBundle={::this.handleEndBundle}
/>
</div>
</div>
);
}
_parseQuery() {
return querystring.parse(window.location.search.slice(1));
}
_updateEditorsData(newData) {
return Object.assign({}, this.state.editorsData, newData);
}
_getBundle() {
let { editorsData } = this.state;
let json;
try {
json = JSON.parse(editorsData.json);
} catch (error) {
editorsData = this._updateEditorsData({ error });
this.setState({ editorsData });
return;
}
return {
code: editorsData.transpiledCode,
raw: editorsData.code,
html: editorsData.html,
package: json
};
}
_transpileCode(code) {
return Babel.transform(code, Defaults.BABEL_OPTIONS).code;
}
_transpileCodeAndCatch(code) {
let transpiledCode;
let error;
if (code) {
try {
transpiledCode = this._transpileCode(code);
} catch (err) {
if (err._babel) {
transpiledCode = `/*
${err.message || 'Error while transpilation'}
*/`;
error = err;
}
}
}
return { transpiledCode, error };
}
}
export default Main;
<file_sep>/src/app.js
import './app.css';
import React from 'react';
import ReactDOM from 'react-dom';
import Main from './containers/Main';
document.getElementById('preloader').style.display = 'none';
ReactDOM.render(
React.createElement(Main),
document.getElementById('root')
);
<file_sep>/depUpdateHelper.js
const deps = {}; // put dependencies from package.json here
console.log(Object.keys(deps).map(dep => `${dep}@latest`).join(' '));
| 426dc82f08bd58276291a80ed473bce73f14e193 | [
"JavaScript"
] | 3 | JavaScript | fredyagomez/esnextbin | 888e4efb15f618b795d74a1428d597fe68f23f09 | f7cdbbe96a994feaf008c47cc711587820b16d0a |
refs/heads/master | <repo_name>Misael1998/spacethon-grupal-api<file_sep>/routes/readings.js
const express = require("express");
const router = express.Router();
const auth = require("../middleware/auth");
const { readings, readindsByDate } = require("../controllers/readings");
router.route("/:type").get(auth, readings);
router.route("/:type/:dates").get(auth, readindsByDate);
module.exports = router;
<file_sep>/utils/errorResponse.js
class ErrorResponse extends Error {
constructor(message, code, body) {
super(message);
this.code = code;
this.body = body;
}
}
module.exports = ErrorResponse;
<file_sep>/controllers/readings.js
const asyncHandler = require("../middleware/asyncHandler");
const ErrorResponse = require("../utils/errorResponse");
const db = require("mssql");
//Constans
const TBL_TEMPERATURE = "TBL_TEMPERATURA";
const TBL_PRESSURE = "TBL_PRESION_ATMOSFERICA";
const TBL_RIVER = "TBL_ALTURA_RIO";
const TBL_PRECIPITATION = "TBL_PRECIPITACION";
const TBL_FLOW = "TBL_CAUDAL";
const TEMPERATURE_VALUE = "temperatura";
const PRESSURE_VAUE = "presion_atmosferica";
const RIVER_VALUE = "altura_rio";
const PRECIPITATION_VALUE = "precipitacion";
const FLOW_VALUE = "caudal";
//@desc get records
//@route GET /api/readings/:type
//@access PRIVATE
exports.readings = asyncHandler(async (req, res, next) => {
const { type } = req.params;
let query = queryHeader(type, next);
const request = await new db.Request().query(query);
for (record of request.recordset) {
const logs = await new db.Request()
.input("user", db.Int, req.user.id)
.input("reading", db.Int, record.id)
.execute("SP_SAVE_LOG");
}
return res.status(200).json({
data: request.recordset,
});
});
//@desc get records
//@route GET /api/readings/:type/:dates
//@access PRIVATE
exports.readindsByDate = asyncHandler(async (req, res, next) => {
const { type, dates } = req.params;
let dateFormat = dates.split("-");
if (dateFormat.length !== 2) {
return next(
new ErrorResponse("Invalid format", 400, {
message: "Dates must be input in date1-date2 format",
})
);
}
for (d of dateFormat) {
newFormat = d.replace(/\./g, "-");
if (
!newFormat.match(
/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/
)
) {
return next(
new ErrorResponse("Invalid format", 400, {
message: "Date format must be YYYY.MM.DD",
})
);
}
}
let query = queryHeader(type, next);
query += `
where fecha_medicion between '${dateFormat[0].replace(
/\./g,
"/"
)}' and '${dateFormat[1].replace(/\./g, "/")}'`;
console.log(query);
let request = await new db.Request().query(query);
for (record of request.recordset) {
const logs = await new db.Request()
.input("user", db.Int, req.user.id)
.input("reading", db.Int, record.id)
.execute("SP_SAVE_LOG");
}
return res.status(200).json({
data: request.recordset,
});
});
const queryHeader = (type, next) => {
let query;
switch (type) {
case "temperature":
query = `select top(20) fecha_medicion as date,
id_mediciones as id,
${TEMPERATURE_VALUE} as temperature
from ${TBL_TEMPERATURE} tp
inner join TBL_MEDICIONES tm
on tm.id_temperatura = tp.id_temperatura`;
break;
case "pressure":
query = `select top(20) fecha_medicion as date,
id_mediciones as id,
${PRESSURE_VAUE} as pressure
from ${TBL_PRESSURE} pr
inner join TBL_MEDICIONES tm
on tm.id_presion_atmosferica = pr.id_presion_atmosferica`;
break;
case "river":
query = `select top(20) fecha_medicion as date,
id_mediciones as id,
${RIVER_VALUE} as river
from ${TBL_RIVER} rv
inner join TBL_MEDICIONES tm
on tm.id_altura_rio = rv.id_altura_rio`;
break;
case "precipitation":
query = `select top(20) fecha_medicion as date,
id_mediciones as id,
${PRECIPITATION_VALUE} as precipitation
from ${TBL_PRECIPITATION} pr
inner join TBL_MEDICIONES tm
on tm.id_precipitacion = pr.id_precipitacion`;
break;
case "flow":
query = `select top(20) fecha_medicion as date,
id_mediciones as id,
${FLOW_VALUE} as flow from
${TBL_FLOW} fl
inner join TBL_MEDICIONES tm
on tm.id_caudal = fl.id_caudal`;
break;
default:
return next(
new ErrorResponse(
"Not found",
404,
`Cant get route /api/records/${type}`
)
);
break;
}
return query;
};
<file_sep>/controllers/login.js
const asyncHandler = require("../middleware/asyncHandler");
const { validationResult } = require("express-validator");
const ErrorResponse = require("../utils/errorResponse");
const db = require("mssql");
const bcrypt = require("bcryptjs");
const jwt = require("jsonwebtoken");
//@desc Login route
//@route POST /api/login
//@access PUBLIC
exports.login = asyncHandler(async (req, res, next) => {
const errors = validationResult(req);
if (!errors.isEmpty()) {
return next(new ErrorResponse("Validation errors", 500, errors.array()));
}
const { email, password } = req.body;
const query = await new db.Request()
.input("email", db.VarChar(100), email)
.query("select * from [dbo].[TF_GET_USER](@email)");
let data = query.recordset;
if (data.length === 0) {
return next(
new ErrorResponse("Invalid credentials", 400, {
message: "Incorrect email or password",
})
);
}
data = data[0];
const isMatch = await bcrypt.compare(password, data.password);
if (!isMatch) {
return next(
new ErrorResponse("Invalid credentials", 400, {
message: "Incorrect email or password",
})
);
}
const payload = {
user: data.id,
role: data.role,
};
jwt.sign(
payload,
process.env.JWT_SECRET,
{ expiresIn: process.env.JWT_EXPIRE },
(err, token) => {
if (err) return next(new Error(err));
return res.status(200).json({
user: {
name: `${data.firstName} ${data.lastName}`,
email,
},
token,
});
}
);
});
<file_sep>/README.md
# SPACETHON reto grupal
## Rest api
Esta api esta construida usando nodejs + express.
Esta implementado:
- Registro de usuarios
- Login con jwt
- Consultas para mediciones del satelite
<br/>
<br/>
## Rutas
#### **POST** _/api/register_
```javascript
{
"email": "<correo>",
"firstName": "<nombre>",
"lastName": "<apellido>",
"institution": "<institucion_a_la_que_pertenece>",
"password": "<<PASSWORD>>"
}
```
<br/>
#### **POST** _/api/login_
```javascript
{
"email": "<correo>",
"password": "<<PASSWORD>>"
}
```
<br/>
#### **GET** _/api/readings/:type_
El acceso a esa ruta es de tipo privado, por esta razón necesita enviar el token de autenticación en el encabezado.
```
auth-token: <token>
```
Donde type se reemplaza por el dato que se quiere consultar. En caso que se desee consultar la temperatura, se usaria la siguiente ruta:
```
/api/readings/temperature
```
<br/>
#### **GET** _/api/readings/:type/:dates_
Esta ruta hace lo mismo que la ruta anterior _/api/readings/:type_ , pero le suma el filtrado por fechas.
Dates de reemplaza por dos fechas introducidas de la siguiente forma:
```
fechaInicial-fechaFinal
```
Usando el formato YYYY.MM.DD para cada fecha. Un ejemplo es la siguiente ruta:
```
/api/readings/temperature/2016.09.09-2020.09.09
```
| a4a2133b2caf025915338abcc2325829af6d2b6b | [
"JavaScript",
"Markdown"
] | 5 | JavaScript | Misael1998/spacethon-grupal-api | ebf0ae0feeda61447700a373fa12b9ac18daca2b | 6430aaa9b3330a029e1c19e3e686d89d95ee254c |
refs/heads/master | <file_sep>package edu.austinisd.peterson.idontcare;
/**
* Created by s2078916 on 5/12/2017.
*/
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v7.app.AppCompatActivity;
public class IDCListActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.idontcare_list);
//check if the trips list fragment already exists - otherwise, create a new one and add it to the fragment container frame found in activity_trips_list.xml
FragmentManager manager = getSupportFragmentManager();
Fragment fragment = manager.findFragmentById(R.id.idcListFragmentContainer);
/*if (fragment == null) {
fragment = new ListViewActivity();
manager.beginTransaction()
.add(R.id.idcListFragmentContainer, fragment)
.commit();
}*/
}
}
| b1dba42dd8244da8b2b5eff29d26d1e53a7774aa | [
"Java"
] | 1 | Java | pursin/idontcare | 6b8252385ffd9a544549870f2272cf22c45d1606 | 78f514e82f93446037727b0a9a33f05da988be5f |
refs/heads/master | <repo_name>Tymothee/TimKelleher_FinalAssignment<file_sep>/scripts/main.js
$(function() {
var header = $('header');
var backgrounds = ['url(images/headerbg-1.jpg)',
'url(images/headerbg-2.jpg)',
'url(images/headerbg-3.jpg)',
'url(images/headerbg-4.jpg)',];
var current = 0;
function nextBackground() {
header.css(
'background',
backgrounds[current = ++current % backgrounds.length]
);
setTimeout(nextBackground, 4500);
}
setTimeout(nextBackground, 4500);
header.css('background', backgrounds[0]);
}); | d0987873e32792ee26bc7390a3a0c053f8326335 | [
"JavaScript"
] | 1 | JavaScript | Tymothee/TimKelleher_FinalAssignment | 3758c8bf1e9fffa3281612dce58e2fd947dc8744 | 7644cf04e6daf91a2cda859f5c262daba1768e30 |
refs/heads/master | <repo_name>Villone96/Likelihood-Weighting<file_sep>/Function.py
from random import seed
from random import random
# simple sampling with boolean value
def sampling(trueValue):
seed()
value = random()
# print(value)
if value <= trueValue:
# return true
return 1
else:
# return false
return 0
# compute sample weighting
def computWeighting(sample, evidence, adjMatrix, cpTables):
# define function variable
value = 0
key = ''
weight = 1
# for every evidence compute the probability conditional on parents based on sampling
for e in evidence:
# get evidence value
value = evidence.get(e)
# search for possible evidence parents and create a key for correct cpt tables extraction
for i in range(0, len(adjMatrix)):
if adjMatrix[int(e)][i] == 1:
key += str(sample[i])
# if evidence is without parent take true or false value
if key == '':
if value == 1:
weight *= cpTables[int(e)].get('NoP')
else:
weight *= (1 - cpTables[int(e)].get('NoP'))
# otherwise get correct cpt table row
else:
if value == 1:
weight *= cpTables[int(e)].get(key)
else:
weight *= (1 - cpTables[int(e)].get(key))
key = ''
return weight
# core function, it create sample with basic sampling, compute weigth and print true and false probability about query
def LikelihoodWeighting(adjMatrix, cpTables, evidence, query, nSamples):
# define function variable
sample = [None]*len(adjMatrix)
key = ''
answerWeight = 0
totalWeight = 0
# compute the likelihood sampling for all times that required
while nSamples > 0:
# for every variable in bayesian network
for i in range(0, len(adjMatrix)):
# if a certain variable is a evidence is not necessary sampling, it take it value and go on
if str(i) in evidence.keys():
sample[i] = evidence[str(i)]
continue
# otherwise create a key for a correct cpt table extraction
else:
for j in range(0, len(adjMatrix)):
if adjMatrix[i][j] == 1:
key += str(sample[j])
# if the variable is without parents it use 'NoP' value
if key == '':
sample[i] = sampling(cpTables[i].get('NoP'))
else:
sample[i] = sampling(cpTables[i].get(key))
# if query variable is true it saves also on numerator
if sample[query] == 1:
answerWeight += computWeighting(sample, evidence, adjMatrix, cpTables)
totalWeight += computWeighting(sample, evidence, adjMatrix, cpTables)
nSamples -= 1
key = ''
# print final probabilities with a good format
print("{:>19} {:>6}".format("True probability: ", str(round(answerWeight/totalWeight * 100, 1))+'%'))
print("{:>19} {:>6}".format("False probability: ", str(round((1 - answerWeight/totalWeight) * 100, 1))+ '%'))
<file_sep>/README.md
# Likelihood-Weighting
This was a university assignment, based on a specific Bayesian network is serviceable for all binary bayes network. Implementation of inference approximate method called likelihood weight.
<file_sep>/Main.py
from Function import LikelihoodWeighting
import numpy as np
cpTables = list()
# i adopt in all structure the follow topological order
# 0 : RushHour
# 1 : BadWeather
# 2 : Accident
# 3 : TrafficJam
# define a adjacency matrix with this structure
# [[0. 0. 0. 0.]
# [0. 0. 0. 0.]
# [0. 1. 0. 0.]
# [1. 1. 1. 0.]]
adjMatrix = np.zeros((4, 4))
adjMatrix[2][1] = 1
adjMatrix[3][0] = 1
adjMatrix[3][1] = 1
adjMatrix[3][2] = 1
# print(adjMatrix)
# define cpt Tables, with NoP as key i say "No Parents", otherwise i define the probability conditional on parents
# of course the order is like the bayesian network order
cptRushHour = {'NoP': .2}
cptBadWeather = {'NoP': .05}
cptAccident = {'1': .1,
'0': .3}
cptTrafficJam = {'111': .95,
'110': .95,
'101': .95,
'100': .95,
'011': .5,
'010': .3,
'001': .6,
'000': .1}
# i create a list of dictionary following the topological order for dict inserting
cpTables.append(cptRushHour)
cpTables.append(cptBadWeather)
cpTables.append(cptAccident)
cpTables.append(cptTrafficJam)
# print(cpTables)
# here is possible define evidence, key is the variable id, value is 0 (false) or 1 (true)
evidence = {'2':1}
# print(evidence)
# here is possible define query using variable id
query = 3
# number of sample, 1.000 is enough, with 100.000 the result is equale to exact inference
nSamples = 5000
# call core function for likelihood weighting sampling
LikelihoodWeighting(adjMatrix, cpTables, evidence, query, nSamples)
| a271e065a3b94389202cc17ed73f7ef82d6be7ea | [
"Markdown",
"Python"
] | 3 | Python | Villone96/Likelihood-Weighting | e48fdff132ac279c3b052f0b8fb1693fb642fe4f | 3eceb8f7bdcee2e0d57f1b2df4221dd185a853e8 |
refs/heads/master | <file_sep>#pragma once
#include "ofMain.h"
class frameBuffer {
public:
void setup();
void update();
void draw();
void putpixel(const int& x, const int& y, const ofColor& color);
void clear(const ofColor& color);
private:
ofImage _img;
void FASTputpixel(const int& x, const int& y, const ofColor& color);
};
| 7e10f6173e4830c9c52fc1f768573b240e04f9f2 | [
"C++"
] | 1 | C++ | Victor01Avalos/PutPixel | 4b62a7cc6e77595862a02c0ae6f92e1308828ccb | 7b185123447fec8aa1a6ba18e621f0eaad11f62a |
refs/heads/master | <file_sep>package com.example.trabalhopdm;
import androidx.appcompat.app.AppCompatActivity;
import android.app.ProgressDialog;
import android.content.ContentValues;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.w3c.dom.Text;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.net.ssl.HttpsURLConnection;
import static android.content.ContentValues.TAG;
public class Registro extends AppCompatActivity {
String id, email, nome, senha;
EditText local;
ListView listView;
List<Map<String, String>> lista;
String de [] = {"D","L","I"};
String lastReg;
String id_reg;
int[] para = {R.id.EData, R.id.ELocal, R.id.EId};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_registro);
listView = findViewById(R.id.listview);
lista = new ArrayList<>();
new Registro.HttpAsyncTask().execute();//BUSCA REGISTROS PARA A LISTVIEW
Bundle extras = getIntent().getExtras();
if(extras != null){//PEGA INFORMAÇOES DO LOGIN/MAINACTIVITY
id = extras.getString("id");
email = extras.getString("email");
nome = extras.getString("nome");
senha = extras.getString("senha");
}
setTitle("Olá, "+ nome);
getSupportActionBar().setDisplayUseLogoEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
Log.e(TAG, "onItemClick: position "+ i);
TextView Eid = view.findViewById(R.id.EId);
TextView Edata = view.findViewById(R.id.EData);
TextView Elocal = view.findViewById(R.id.ELocal);
id_reg = Eid.getText().toString();
Intent it = new Intent(getApplicationContext(), Mapa.class);//PASSA INFORMAÇOES DO REGISTRO E PESSOA PARA A ACTVITY MAPA
it.putExtra("id", id);
it.putExtra("id_reg", id_reg);
it.putExtra("data", Edata.getText().toString());
it.putExtra("local", Elocal.getText().toString());
startActivity(it);
}
});
}
class HttpAsyncTask extends AsyncTask<String, Void, String> {
ProgressDialog dialog;
@Override
protected void onPreExecute() {
super.onPreExecute();
dialog = new ProgressDialog(Registro.this);
dialog.show();
dialog.setMessage("Getting data...");
}
@Override
protected String doInBackground(String... strings) {
try{
URL url = new URL("https://wessner.000webhostapp.com/select_registro.php");
HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
int status = urlConnection.getResponseCode();
if (status == 200){
InputStream stream = new BufferedInputStream(urlConnection.getInputStream());
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(stream));
StringBuilder builder = new StringBuilder();
String inputString;
while((inputString = bufferedReader.readLine()) != null){
builder.append(inputString);
}
urlConnection.disconnect();
return builder.toString();
}
}catch (Exception ex){
Log.e("URL", ex.toString());
}
return null;
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
dialog.dismiss();
dialog.setMessage("Wait...");
Log.e(TAG, "onPostExecute: " + s);
try {
loadData(s);
} catch (JSONException e) {
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_SHORT).show();
e.printStackTrace();
}
}
}
private void loadData(String data) throws JSONException {
boolean flag = false;
JSONObject res = new JSONObject(data);
JSONArray array = res.getJSONArray("Registro");
Log.e(TAG, "loadData ");
for (int i =0;i < array.length(); i++){
JSONObject json = array.getJSONObject(i);
String usuarioId = json.get("Usuario_id").toString();
Log.e(TAG, "loadData "+ usuarioId + " > " + id);
if(usuarioId.equals(id)){
String local = json.get("Local").toString();
String dat = json.get("Data").toString();
lastReg = json.get("IdRegistro").toString();//Ultimo registro do usuario (for/ usuario id = id)
Map<String, String> mapa = new HashMap<>();//Mapa Listagem Local e Data
mapa.put("D", dat);
mapa.put("L", local);
mapa.put("I", lastReg);
lista.add(mapa);
}
SimpleAdapter adapter = new SimpleAdapter(this, lista, R.layout.listagem, de, para);
listView.setAdapter(adapter);
}
}
public void BTNregistro(View view) {
Intent intent = new Intent(this, NovoRegistro.class);//PASSA INFORMAÇOES PARA A PROXIMA ACTIVTY/NOVOREGISTRO
intent.putExtra("id",id);
intent.putExtra("email", email);
intent.putExtra("nome",nome);
intent.putExtra("senha", senha);
intent.putExtra("id_regstro", lastReg);
startActivity(intent);
}
}<file_sep>package com.example.trabalhopdm;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import android.Manifest;
import android.app.ProgressDialog;
import android.content.ContentValues;
import android.content.Context;
import android.content.pm.PackageManager;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.lang.reflect.Array;
import java.net.URL;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.net.ssl.HttpsURLConnection;
import static android.content.ContentValues.TAG;
public class NovoRegistro extends AppCompatActivity implements LocationListener {
String id, email, nome, senha, last_reg;
EditText local, locallatlon;
long tempo = Long.valueOf(5000);
float distancia = 0;
ArrayList<Double> latitude;
ArrayList<Double> longitude;
Double Lat, Lon;
LocationManager locationManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_novo_registro);
local = (EditText) findViewById(R.id.ETlocal);
locallatlon = (EditText) findViewById(R.id.ETlocalatlon);
setTitle("NOVO REGISTRO");
getSupportActionBar().setDisplayUseLogoEnabled(true);
getSupportActionBar().setDisplayShowHomeEnabled(true);
Bundle extras = getIntent().getExtras();
latitude = new ArrayList<Double>();
longitude = new ArrayList<Double>();
if (extras != null) {
id = extras.getString("id");
email = extras.getString("email");
nome = extras.getString("nome");
senha = extras.getString("senha");
senha = extras.getString("senha");
last_reg = extras.getString("id_regstro");
}
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
}
@Override
public void onLocationChanged(@NonNull Location location) {//PEGA LATITUDE E LONGITUDE A CADA MUDANÇA
locallatlon.setText(location.getLatitude() + "/" + location.getLongitude());
Log.e(TAG, "onLocationChanged: ...");
latitude.add(location.getLatitude());
longitude.add(location.getLongitude());
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(@NonNull String provider) {
}
@Override
public void onProviderDisabled(@NonNull String provider) {
}
public void btnIniciar(View view) {
new NovoRegistro.HttpAsyncTaskSend().execute();//POST LOCAL E USUARIO
locallatlon.setText("Buscando local ...");
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
Toast.makeText(this, "Permitir uso da localização nas configurações", Toast.LENGTH_SHORT).show();
return;
}
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, tempo, distancia, this);
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, tempo, distancia, this);
}
public void btnfim(View view) {
for(int x = 0; x < latitude.size(); x++){
Lat = latitude.get(x);
Lon = longitude.get(x);
new HttpAsyncTaskSendGeo().execute();//POST GEOLOCAL
}
}
class HttpAsyncTaskSend extends AsyncTask<String, Void, String> {
ProgressDialog dialog;
@Override
protected void onPreExecute() {
super.onPreExecute();
dialog = new ProgressDialog(NovoRegistro.this);
dialog.show();
dialog.setMessage("Creating...");
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
dialog.dismiss();
Toast.makeText(getApplicationContext(), s, Toast.LENGTH_SHORT).show();
Log.e(TAG, s);
}
@Override
protected String doInBackground(String... strings) {//Local e usuario
try {
URL url = new URL("https://wessner.000webhostapp.com/registro_post.php");
HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
urlConnection.setRequestMethod("POST");
ContentValues values = new ContentValues();
values.put("Local", local.getText().toString());
values.put("Usuario_id", id);
OutputStream out = urlConnection.getOutputStream();
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out));
writer.write(getFormData(values));
writer.flush();
int status = urlConnection.getResponseCode();
if (status == 200) {
InputStream stream = new BufferedInputStream(urlConnection.getInputStream());
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(stream));
StringBuilder builder = new StringBuilder();
String inputString;
while ((inputString = bufferedReader.readLine()) != null) {
builder.append(inputString);
}
urlConnection.disconnect();
return builder.toString();
}
} catch (Exception ex) {
return "Erro" + ex.getLocalizedMessage();
}
return null;
}
private String getFormData(ContentValues values) throws UnsupportedOperationException {
try {
StringBuilder sb = new StringBuilder();
boolean first = true;
for (Map.Entry<String, Object> entry : values.valueSet()) {
if (first) {
first = false;
} else {
sb.append("&");
}
sb.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
sb.append("=");
sb.append(URLEncoder.encode(entry.getValue().toString(), "UTF-8"));
}
return sb.toString();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
class HttpAsyncTaskSendGeo extends AsyncTask<String, Void, String> {//localizaçao
ProgressDialog dialog;
@Override
protected void onPreExecute() {
super.onPreExecute();
dialog = new ProgressDialog(NovoRegistro.this);
dialog.show();
dialog.setMessage("Creating...");
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
dialog.dismiss();
Toast.makeText(getApplicationContext(), s, Toast.LENGTH_SHORT).show();
Log.e(TAG, s);
}
@Override
protected String doInBackground(String... strings) {
try {
URL url = new URL("https://wessner.000webhostapp.com/geolocal_post.php");
HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
urlConnection.setRequestMethod("POST");
ContentValues values = new ContentValues();
values.put("Lat",Lat);
values.put("Lon", Lon);
int registro = Integer.parseInt(last_reg);
values.put("Registro_id", registro+1);//Ultimo registro inserido+ 1
OutputStream out = urlConnection.getOutputStream();
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(out));
writer.write(getFormData(values));
writer.flush();
int status = urlConnection.getResponseCode();
if (status == 200) {
InputStream stream = new BufferedInputStream(urlConnection.getInputStream());
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(stream));
StringBuilder builder = new StringBuilder();
String inputString;
while ((inputString = bufferedReader.readLine()) != null) {
builder.append(inputString);
}
urlConnection.disconnect();
return builder.toString();
}
} catch (Exception ex) {
return "Erro" + ex.getLocalizedMessage();
}
return null;
}
private String getFormData(ContentValues values) throws UnsupportedOperationException {
try {
StringBuilder sb = new StringBuilder();
boolean first = true;
for (Map.Entry<String, Object> entry : values.valueSet()) {
if (first) {
first = false;
} else {
sb.append("&");
}
sb.append(URLEncoder.encode(entry.getKey(), "UTF-8"));
sb.append("=");
sb.append(URLEncoder.encode(entry.getValue().toString(), "UTF-8"));
}
return sb.toString();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
}
} | 9ac4805b9f4d27af0b371e7422221ba769a72aa8 | [
"Java"
] | 2 | Java | RodrigoWessner/TrabalhoPDM | c2612934a6125808b68c42fea90ae5d9b5677893 | 93d229c86761c17cea909c66b168c682eb823488 |
refs/heads/master | <file_sep>//Loads an article from the database
$(document).ready(){
$.getJSON('/all', function(data){
for var i = 0; i<data.length; i++{
db.stories.find({})
}
}
}
//Pulls user comments and adds them to the database
$('#addcomment').on('click', function(){
$.ajax({
type: "POST",
url: '/submit',
dataType: 'json',
data: {
thoughts: $('#thought').val().trim(),
created: Date.now()
}
})
.done(function(data){
console.log(data);
}
);
return false;
}); | de4b3a16a7fc3cc0bdd28bf152478a10f44f068f | [
"JavaScript"
] | 1 | JavaScript | iwantclarity/scrape | d9a22d28a6fabea0e432ef1cddbf6fe3292f1459 | 24097922c3b3888183f44d0451ee665d8ee893ad |
refs/heads/master | <repo_name>jayashrimasilamani/Django-REST-API<file_sep>/requirements.txt
django == 2.2
djangorestframework == 3.11.0<file_sep>/README.md
Django REST API course code.<file_sep>/profiles_api/views.py
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import status
from rest_framework import viewsets
from rest_framework.authentication import TokenAuthentication
from rest_framework import filters
from rest_framework.authtoken.views import ObtainAuthToken
from rest_framework.settings import api_settings
from profiles_api import serializers
from profiles_api import models
from profiles_api import permissions
class HelloApiView(APIView):
"""Test API view"""
serializer_class = serializers.HelloSerializer
def get(self,request,format=None):
"""Retrieve a list f API view features"""
an_apiview = [
'Uses HTTP methods as function (get,post,patch,put,delete)',
'My first APIVIEW',
'Information from the list present in APIVIEW'
]
return Response({'message':'Hello!','an_apiview':an_apiview})
def post(self,request):
"""create a hello message with our name"""
serializers = self.serializer_class(data=request.data)
if serializers.is_valid():
name = serializers.validated_data.get('name')
message = f'Hello {name}'
return Response({'message':message})
else:
return Response(
serializers.errors,
status=status.HTTP_400_BAD_REQUEST
)
def put(self,request,pk=None):
"""Handle updating the objct"""
return Response({'method':'PUT'})
def patch(self,request,pk=None):
"""Handle partial update of an object"""
return Response({'method':'PATCH'})
def delete(self,request,pk=None):
"""Delete an object"""
return Response({'method':'DELETE'})
class HelloViewset(viewsets.ViewSet):
serializer_class = serializers.HelloSerializer
"""Test API viewset"""
def list(self,request):
"""return hello message"""
a_viewset =[
'use actions(list,create,retrieve,update,partial_update)',
'Maps URLS automatically using Routers',
'Provides more functionality with less code',
]
return Response({'message':'Hello!','a_viewset':a_viewset})
def create(self,request):
"""create a new hello message"""
serializer = self.serializer_class(data=request.data)
if serializer.is_valid():
name = serializer.validated_data.get('name')
message = f'Hi!! {name}!!'
return Response({'message':message})
else:
return Response(
serializer.errors,
status=status.HTTP_400_BAD_REQUEST
)
def retrieve(self,request,pk=None):
"""Handles getting an object by ID"""
return Response({'http_method':'GET'})
def update(self,request,pk=None):
"""HAndles updating the object"""
return Response({'http_method':'PUT'})
def partial_update(self,request,pk=None):
"""Handles updating a part of an object"""
return Response({'http_method':'PATCH'})
def destroy(self,request,pk=None):
"""HAndles removing the abject"""
return Response({'http_method':'DELETE'})
class UserProfileViewSet(viewsets.ModelViewSet):
"""Handle creating and updating viewset"""
serializer_class = serializers.UserProfileSerializer
queryset = models.UserProfile.objects.all()
authentication_classes = (TokenAuthentication,)
permission_classes = (permissions.UpdateOwnProfile,)
filter_backends = (filters.SearchFilter,)
search_fields = ('name','email',)
class UserLoginApiView(ObtainAuthToken):
"""Handles creating user authentication tokens"""
renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES
<file_sep>/profiles_api/serializers.py
from rest_framework import serializers
from profiles_api import models
class HelloSerializer(serializers.Serializer):
"""serializes the name field for apiview"""
name = serializers.CharField(max_length=10)
class UserProfileSerializer(serializers.ModelSerializer):
"""Serializes a user profile object"""
class Meta:
model = models.UserProfile
fields = ('id','email','name','password')
extra_kwargs = {
'password':{
'write_only':True,
'style':{'input_type':'password'}
}
}
def create(self,validatd_data):
"""Create and return new user"""
user = models.UserProfile.objects.create_user(
email=validatd_data['email'],
name=validatd_data['name'],
password=validatd_data['password']
)
return user
def update(self, instance, validated_data):
"""Handle updating user account"""
if 'password' in validated_data:
password = validated_data.pop('password')
instance.set_password(password)
return super().update(instance, validated_data)
| 54717deb9f11b6e6473c5ed14bc0c37ab73bb982 | [
"Markdown",
"Python",
"Text"
] | 4 | Text | jayashrimasilamani/Django-REST-API | 609cb2a2e96e3668006cd4cd08e07b4a94c774aa | 2518c313631ff5e4973d3fbe9e78eb8cd89c68da |
refs/heads/master | <repo_name>shibangCLL/machinesale<file_sep>/static/shibang124/js/min.js
var swiper = new Swiper('.banner_swiper', {
autoplay:true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
});
var swiper = new Swiper('.swiper-container_bottom', {
autoplay:true,
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
var swiper = new Swiper('.col_case_swiper', {
autoplay:true,
slidesPerView: 3,
spaceBetween: 30,
slidesPerGroup:3,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
breakpoints: {
680: {
spaceBetween: 20,
slidesPerView: 2,
slidesPerGroup: 2,
},
}
});
$(document).ready(function() {
$('#pull').click(function(){
var display = $('.nav ul').css('display');
if( display == 'none'){
$(".nav ul").slideDown();
$(".nav").css("padding-bottom","0")
}else{
$(".nav ul").slideUp();
$(".nav").css("padding-bottom","10px")
}
})
var $wrapperIndex = $('.tab-wrapper'),
$allTabsIndex = $wrapperIndex.find('.tab-pane'),
$tabMenuIndex = $wrapperIndex.find('.tab-menu li') ;
$tabMenuIndex.each(function(i) {
$(this).attr('data-tab', 'tab'+i);
});
$allTabsIndex.each(function(i) {
$(this).attr('data-tab', 'tab'+i);
});
$a= $tabMenuIndex.on('click', function() {
var dataTab3 = $(this).data('tab'),
$getWrapper3 = $(this).closest($wrapperIndex);
$getWrapper3.find($tabMenuIndex).removeClass('active');
$(this).addClass('active');
$getWrapper3.find($allTabsIndex).hide().filter('[data-tab='+dataTab3+']').show();
});
});
(function () {
var showMoreNChildren = function ($children, n) {
var $hiddenChildren = $children.filter(":hidden");
var cnt = $hiddenChildren.length;
for ( var i = 0; i < n && i < cnt ; i++) {
$hiddenChildren.eq(i).show();
}
return cnt-n;
}
$(".showMoreNChildren").each(function () {
var pagesize = $(this).attr("pagesize") || 10;
var $children = $(this).children();
if ($children.length > pagesize) {
for (var i = pagesize; i < $children.length; i++) {
$children.eq(i).hide();
}
$("<div class='showMorehandle' >查看更多</div>").insertAfter($(this)).click(function () {
if (showMoreNChildren($children, pagesize) <= 0) {
$(this).hide();
};
});
}
});
})();
<file_sep>/products/models.py
from django.db import models
from uuslug import slugify
from django.urls import reverse
import uuid
import os
def products_directory_path(instance, filename):
ext = filename.split('.')[-1]
filename = '{}.{}'.format(uuid.uuid4().hex[:10], ext)
# return the whole path to the file
return os.path.join("products", filename)
class Category(models.Model):
"""分类"""
name = models.CharField('分类名', max_length=30, unique=True)
slug = models.SlugField('slug', max_length=40)
parent_category = models.ForeignKey('self', verbose_name="父级分类", blank=True, null=True, on_delete=models.CASCADE)
def save(self, *args, **kwargs):
if not self.id or not self.slug:
self.slug = slugify(self.name)
super().save(*args, **kwargs)
def __str__(self):
return self.name
class Meta:
ordering = ['name']
verbose_name = "分类"
verbose_name_plural = verbose_name
class Tag(models.Model):
"""文章标签"""
name = models.CharField('标签名', max_length=30, unique=True)
slug = models.SlugField('slug', max_length=40)
def __str__(self):
return self.name
# def get_absolute_url(self):
# return reverse('products:tag_detail', args=[self.slug])
#
# def get_article_count(self):
# return Product.objects.filter(tags__slug=self.slug).count()
def save(self, *args, **kwargs):
if not self.id or not self.slug:
self.slug = slugify(self.name)
super().save(*args, **kwargs)
class Meta:
ordering = ['name']
verbose_name = "标签"
verbose_name_plural = verbose_name
class Product(models.Model):
title = models.CharField('标题', max_length=200, unique=True)
slug = models.SlugField('slug', max_length=60, blank=True)
jlld = models.CharField('进料粒度', max_length=20, blank=True)
scnl = models.CharField('生产能力', max_length=20, blank=True)
yyly = models.CharField('应用领域', max_length=200, blank=True)
sywl = models.CharField('适用物料', max_length=200, blank=True)
cptd = models.CharField('产品特点', max_length=300, blank=True)
body = models.TextField('正文')
gzyl = models.TextField('工作原理')
jscs = models.CharField('技术参数', max_length=200, blank=True)
views = models.PositiveIntegerField('浏览量', default=0)
image = models.ImageField(upload_to=products_directory_path, verbose_name="产品图片")
category = models.ForeignKey('Category', verbose_name='分类', on_delete=models.CASCADE, blank=True, null=True)
tags = models.ManyToManyField('Tag', verbose_name='标签集合', blank=True)
def save(self, *args, **kwargs):
if not self.id or not self.slug:
self.slug = slugify(self.title)
super().save(*args, **kwargs)
def get_absolute_url(self):
return reverse('product:detail', kwargs={'slug': self.slug})
def viewed(self):
self.views += 1
self.save(update_fields=['views'])
def __str__(self):
return self.title
class Meta:
ordering = ['-title']
verbose_name = "产品"
verbose_name_plural = verbose_name
class Advantage(models.Model):
title = models.CharField('标题', max_length=200, blank=True)
content = models.TextField('内容')
product = models.ForeignKey(Product, on_delete=models.CASCADE)
def __str__(self):
return self.title
class Meta:
ordering = ['-title']
verbose_name = "产品优势"
verbose_name_plural = verbose_name
class RelatedImage(models.Model):
image = models.ImageField(upload_to=products_directory_path, verbose_name="图片")
product = models.ForeignKey(Product, on_delete=models.CASCADE)
class Meta:
verbose_name = "相关图片"
verbose_name_plural = verbose_name
<file_sep>/products/tests.py
import jieba
print(jieba.lcut_for_search('履带式移动破碎站'))
print('==========================')
print(jieba.lcut('履带式移动破碎站'))
print('==========================')
print(jieba.lcut('履带式移动破碎站', cut_all=False))
<file_sep>/news/urls.py
from django.urls import path
from . import views
# 正在部署的应用的名称
app_name = 'news'
urlpatterns = [
path('news-list/', views.news_list, name='news_list'),
path('news-detail/<slug:slug>', views.news_detail, name='news_detail'),
]
<file_sep>/products/product_spider.py
# https://www.shibangchina.com/products/
import requests
import re
from requests.exceptions import RequestException
import uuid
import jieba
from django.core.files.base import ContentFile
import os
import django
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'machinesale.settings')
django.setup()
from products.models import Product, Category, Tag, RelatedImage, Advantage
url = 'http://www.shibang.cn/kshebei/posui/pew_epo.php'
image_url = 'https://www.shibangchina.com/'
def get_one_page(url):
url = url[0:-1]
print(url)
try:
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36"}
res = requests.get(url=url, headers=headers)
res.encoding = 'utf-8'
if res.status_code == 200:
print(res.text)
return res.text
else:
return None
except RequestException:
return None
def parse_one_page(html):
title_pattern = re.compile('<h1>(.*?)</h1>', re.S)
jlld_pattern = re.compile('<p>进料粒度:(.*?)</p>', re.S)
scnl_pattern = re.compile('<p>生产能力:(.*?)</p>', re.S)
cptd_pattern = re.compile('<div class="product_feature">产品特点:(.*?)</div>', re.S)
# yyly_pattern = re.compile('<p class="newColor"><strong>【应用领域】</strong>: <span>(.*?)</span>', re.S)
sywl_pattern = re.compile('<p>适用物料:(.*?)</p>', re.S)
body_pattern = re.compile('</h1>.*?<p>(.*?)</p>', re.S)
gzyl_pattern = re.compile('<h3>工作原理</h3>(.*?)</div>', re.S)
jscs_pattern = re.compile('<h2>产品参数</h2>.*?<div class="col-md-12 col-sm-12">(.*?)<div class="note">', re.S)
cpys_pattern = re.compile('<div class="perform_content">.*?<h3>(.*?)</h3>.*?<p>(.*?)</p>', re.S)
image_pattern = re.compile(
r'<div class="imgbox">.*?src="(.*?)"',
re.S)
relatedimage_pattern = re.compile(
'product_image_list.*?<div class="col-md-6 col-sm-6">.*?img-responsive center-block" src="//(.*?)" /></div>.*?img-responsive center-block" src="//(.*?)" /></div>.*?img-responsive center-block" src="//(.*?)" /></div>.*?img-responsive center-block" src="//(.*?)" /></div>',
re.S)
items = re.findall(relatedimage_pattern, html)
category_pattern = re.compile('<li><a href="../product/.*?php">(.*?)</a>', re.S)
title = re.findall(title_pattern, html)[0]
# 产品特点
cptd = re.findall(cptd_pattern, html)[0]
print(title)
# 进料粒度
jlld = re.findall(jlld_pattern, html)[0]
# 生产能力
scnl = re.findall(scnl_pattern, html)[0]
# 应用领域
# yyly = re.findall(yyly_pattern, html)[0]
# 适用物料
sywl = re.findall(sywl_pattern, html)[0]
# 正文
body = re.findall(body_pattern, html)[0]
# 工作原理
gzyl = re.findall(gzyl_pattern, html)[0]
# 技术参数
jscs = re.findall(jscs_pattern, html)[0]
# 分类
category = "大型成套设备"
# 产品优势
# cpys_html_pattern = re.compile('<h2 id="advantage">产品优势</h2>(.*?)<h2 id="working">工作原理</h2>', re.S)
# cpys_html = re.findall(cpys_html_pattern, html)[0]
# cpys_pattern = re.compile('<h3>(.*?)</h3>.*?<p>(.*?)</p>', re.S)
cpys = re.findall(cpys_pattern, html)
# 图片
image_str = re.findall(image_pattern, html)[0]
img_url = 'https://www.shibangchina.com/' + image_str
request = requests.get(img_url)
filename = '{}.{}'.format(uuid.uuid4().hex[:10], '.png')
upload_image_file = ContentFile(request.content, name=filename)
# 标签
tags_list = jieba.lcut_for_search(title)
try:
cat = Category.objects.get(name=category)
except Exception as e:
cat = None
if cat:
pro = Product(title=title, cptd=cptd, jlld=jlld, scnl=scnl, yyly='', sywl=sywl, body=body, gzyl=gzyl, jscs=jscs,
category=cat, image=upload_image_file)
pro.save()
else:
cat = Category(name=category)
cat.save()
pro = Product(title=title, cptd=cptd, jlld=jlld, scnl=scnl, yyly='', sywl=sywl, body=body, gzyl=gzyl, jscs=jscs,
category=cat, image=upload_image_file)
pro.save()
for spy in cpys:
adv = Advantage()
adv.title = spy[0]
adv.content = spy[1]
adv.product = pro
adv.save()
for item in items:
for i in item:
image_url = 'http://' + i
request = requests.get(image_url)
filename = '{}.{}'.format(uuid.uuid4().hex[:10], '.png')
upload_file = ContentFile(request.content, name=filename)
RelatedImage.objects.create(image=upload_file, product=pro)
for tag in tags_list:
try:
ta = Tag.objects.get(name=tag)
except Exception as e:
ta = None
if ta:
pro.tags.add(ta)
pro.save()
else:
ta = Tag()
ta.name = tag
ta.save()
pro.tags.add(ta)
pro.save()
if __name__ == "__main__":
with open('urls.txt', 'r') as f:
urls = f.readlines()
for url in urls:
url.strip('\n')
text = get_one_page(url)
print(text)
parse_one_page(text)
<file_sep>/templates/shibang124/project1.html
{% extends "shibang124/base.html" %}
{% load static %}
{% block title %}{{ project.title|safe }} {% endblock title %}
{% block content %}
<div class="col_case_top">
<div class="width1170">
<h1 align="center">{{ project.title|safe }} </h1>
</div>
</div>
<div class="col_case_text width1170">
<div class="col_case_listimg ">
<h3>项目介绍</h3>
<p>{{ project.body|safe }}</p>
<ul>
<ul>
{% for image in project.relatedimage_set.all %}
<li><img src="/media/{{ image.image }}" width="570" height="570" alt=""/></li>
{% empty %}
<div class="no-post">暂时还没有发布的文章!</div>
{% endfor %}
<div class="clear"></div>
</ul>
<div class="clear"></div>
</ul>
</div>
<div class="text">
<h3>项目简介</h3>
<ul>
<li>原料:{{ project.yl }}</li>
<li>产能:{{ project.cn }}</li>
<li>成品用途:{{ project.cpcc }}</li>
</ul>
</div>
<div class="content_case_text">
<h3>项目优势</h3>
<ul>
{% for adv in project.advantage_set.all %}
<li>
<h4>{{ adv.title }}</h4>
<p>{{ adv.content|safe }} </p>
</li>
{% empty %}
<div class="no-post">暂时还没有发布的文章!</div>
{% endfor %}
</ul>
</div>
<div class="text text_case_ul">
<h3>设备配置</h3>
<ul>
<li><a href="#">C6X颚式破碎机</a></li>
<li><a href="#">HST单缸液压圆锥式破碎机</a></li>
<li><a href="#">VSI6X立轴冲击式破碎机(制砂机)</a></li>
<li><a href="#">F5X给料机</a></li>
<li><a href="#">S5X振动筛</a></li>
</ul>
</div>
</div>
<div class="bg col_case_middle">
<div class=" width1170">
<h2 align="center">其他</h2>
<ul>
<li><a href="#"><img src="{% static 'shibang124/images/col_middle_1.jpg' %}" width="350" height="237"
alt=""/></a>
<h3><a href="#">甘肃时产80-100吨花岗岩移动破碎生产线</a></h3>
</li>
<li><a href="#"><img src="{% static 'shibang124/images/col_middle_1.jpg' %}" width="350" height="237"
alt=""/></a>
<h3><a href="#">甘肃时产80-100吨花岗岩移动破碎生产线</a></h3>
</li>
<li><a href="#"><img src="{% static 'shibang124/images/col_middle_1.jpg' %}" width="350" height="237"
alt=""/></a>
<h3><a href="#">甘肃时产80-100吨花岗岩移动破碎生产线</a></h3>
</li>
<div class="clear"></div>
</ul>
<a href="#" class="more">查看更多</a></div>
</div>
<div class=" col_contact_form">
<div class="width1170">
<h2 align="center">继续深入了解此产品,你可以在此提交你的需求</h2>
<script type="text/javascript" src="{% static 'shibang124/js/form.js' %}"></script>
</div>
</div>
{% endblock content %}
<file_sep>/products/admin.py
from django.contrib import admin
# Register your models here.
from .models import Product, Category, Tag, Advantage, RelatedImage
class ProductAdmin(admin.ModelAdmin):
list_display = [
'title',
'jlld',
'scnl',
'yyly',
'sywl',
'cptd',
'body',
'gzyl',
'jscs',
'image',
'category',
'views']
list_filter = [
'title',
'tags',
'category']
class AdvantageAdmin(admin.ModelAdmin):
list_display = [
'title',
'content',
'product']
list_filter = [
'title',
'content',
'product']
class TagAdmin(admin.ModelAdmin):
list_display = [
'name', 'slug', ]
fields = ['name', ]
list_filter = [
'name']
class CategoryAdmin(admin.ModelAdmin):
list_display = [
'name', 'slug', ]
fields = ['name', ]
list_filter = [
'name']
class RelatedImageAdmin(admin.ModelAdmin):
list_display = [
'image',
'product']
list_filter = [
'product']
admin.site.register(Category, CategoryAdmin)
admin.site.register(Tag, TagAdmin)
admin.site.register(Advantage, AdvantageAdmin)
admin.site.register(RelatedImage, RelatedImageAdmin)
admin.site.register(Product, ProductAdmin)
<file_sep>/products/views.py
from django.shortcuts import render, get_object_or_404
from .models import Product
# Create your views here.
def product_list(request):
posui_product_list = Product.objects.filter(category__name='破碎设备')
mofen_product_list = Product.objects.filter(category__name='磨粉设备')
fuzhu_product_list = Product.objects.filter(category__name='辅助设备')
daxing_product_list = Product.objects.filter(category__name='大型成套设备')
return render(request, 'shibang124/products_list.html', locals())
def detail(request, slug):
product = get_object_or_404(Product, slug=slug)
category_name = product.category.name
product.viewed()
posui_product_list = Product.objects.filter(category__name=category_name).order_by('-views')[:3]
return render(request, 'shibang124/products_detail.html', locals())
def index(request):
hot_product_list = Product.objects.all().order_by('-views')[0:6]
return render(request, 'shibang124/index.html', locals())
<file_sep>/templates/shibang124/product.html
{% extends "shibang124/base.html" %}
{% load static %}
{% block title %}{{ product.title }}{% endblock title %}
{% block content %}
<div class="col_product_top">
<div class=" width1170">
<div class=" warp_right pull_left"><img src="/media/{{ product.image }}" width="450" height="450" alt=""/></div>
<div class="warp_left pull_right">
<h1>{{ product.title }}</h1>
<p>{{ product.body }}</p>
<h4>产品特点:{{ product.cptd }}</h4>
<ul>
<li><strong>进料粒度:</strong>{{ product.jlld }}</li>
<li><strong>生产能力:</strong>{{ product.scnl }}</li>
<li><strong>适用物料:</strong>{{ product.sywl }}</li>
</ul>
<div class="warp_online_chat"><a href="#" class="online_chat">获取产品报价</a><a href="#"
class="online_tell"><span>021-58386699</span>拨打全国热线了解更多</a><a
href="#" class="online_pdf">产品画册(PDF)</a></div>
</div>
<div class="clear"></div>
</div>
</div>
<div class="pro_work bg">
<div class=" width1170">
<h2 align="center">工作原理</h2>
<p>{{ product.gzyl }}</p>
</div>
</div>
<div class="tab-wrapper tab-wrapper_product ">
<div class=" tab-menu_product ">
<ul class="tab-menu">
<li class="active"><span>性能特点</span></li>
<li><span>产品参数</span></li>
<div class="clear"></div>
</ul>
</div>
<div class="tab-content width1170">
<div class="tab-pane col_odds_list active">
<ul>
{% for adv in product.advantage_set.all %}
<li><img src="{% static 'shibang124/images/ico_p_1.png' %}" width="100" height="100" alt=""
class="pull_left"/>
<div class="text pull_right">
<h3> {{ adv.title|safe }}</h3>
<p>{{ adv.content|safe }}</p>
</div>
<div class="clear"></div>
</li>
{% empty %}
<div class="no-post">暂时还没有发布的文章!</div>
{% endfor %}
</ul>
</div>
<div class="tab-pane pro_table">
<div class="col_table ">
{{ product.jscs | safe }}
<script type="text/javascript" src="{% static 'shibang124/js/xhr.js' %}"></script>
</div>
</div>
</div>
</div>
<div class="col_atlas bg">
<div class="width1170">
<h2 align="center">产品图集</h2>
<ul>
{% for image in product.relatedimage_set.all %}
<li><img src="/media/{{ image.image }}" width="570" height="570" alt=""/></li>
{% empty %}
<div class="no-post">暂时还没有发布的文章!</div>
{% endfor %}
<div class="clear"></div>
</ul>
</div>
</div>
<div class=" col_top list_product list_product2 width1170">
<h2 align="center"><a href="#">用户关注更多的产品</a></h2>
<ul>
{% for product in posui_product_list %}
<li><a href="{{ product.get_absolute_url }}"><img src="/media/{{ product.image }}" width="370" height="370"
alt=""/></a>
<h3><a href="{{ product.get_absolute_url }}">{{ product.title }}</a></h3>
</li>
{% empty %}
<div class="no-post">暂时还没有产品!</div>
{% endfor %}
<div class="clear"></div>
</ul>
<a href="#" class="more">查看更多</a></div>
<div class="width1170 col_contact_form">
<h2 align="center">在线提交需求</h2>
<script type="text/javascript" src="{% static 'shibang124/js/form.js' %}"></script>
</div>
{% endblock content %}
<file_sep>/products/urls.py
from django.urls import path
from . import views
# 正在部署的应用的名称
app_name = 'product'
urlpatterns = [
path('', views.product_list, name='product_list'),
path('<slug:slug>/', views.detail, name='detail'),
]
<file_sep>/templates/shibang124/contact.html
{% extends "shibang124/base.html" %}
{% load static %}
{% block title %}{{ product.title }}{% endblock title %}
{% block content %}
<div class="banner banner_inner"> <a href="#"><img src="{% static 'shibang124/images/banner_contact.jpg' %}" width="1920" height="490" alt="" /></a>
<div class="width1170 text">
<h2>联系我们</h2>
<p>世邦工业科技集团股份有限公司真诚的欢迎您通过热线电话等即时通讯方式与我们联系,无论是项目咨询还是意见反馈,我们都会以较快的方式服务于您。</p>
</div>
</div><div class="bg">
<div class="col_contact width1170">
<ul>
<li class="add "><img src="{% static 'shibang124/images/add.png' %}" width="100" height="100" alt="" />
<h3>公司地址</h3>
<p>中国上海市浦东新区<br />金桥南区建业路416号</p>
</li>
<li ><img src="{% static 'shibang124/images/tel.png' %}" width="100" height="100" alt="" />
<h3>销售热线</h3>
<p>400-696-1899<br />
86 021-58386699</p>
</li>
<li ><img src="{% static 'shibang124/images/email.png' %}" width="100" height="100" alt="" />
<h3>电子邮箱</h3>
<p><EMAIL></p>
</li>
</ul>
</div>
</div>
<div class=" col_contact_form">
<div class="width1170">
<h2 align="center">在线提交需求</h2>
<script type="text/javascript" src="{% static 'shibang124/js/form.js' %}"></script>
</div>
</div>
{% endblock content %}
| 313cc1f0a1351370fa6ec3f940e44b9fb5133e64 | [
"JavaScript",
"Python",
"HTML"
] | 11 | JavaScript | shibangCLL/machinesale | d26eff7694a25361b5807c7fb702e76ee78aaacf | 9e206829a01eb04a10592f1cbcbd3268a7e71a5c |
refs/heads/master | <repo_name>UNL-Game-Dev-Club/Treebread<file_sep>/Assets/Code/Fight.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Fight : MonoBehaviour
{
public int health;
public int strength;
public int defense;
private void OnTriggerEnter2D(Collider2D collision)
{
EnemyUnit.currentHealth = health;
EnemyUnit.maxHealth = health;
EnemyUnit.strength = strength;
EnemyUnit.defense = defense;
PlayerUnit.currentHealth = PlayerUnit.maxHealth;
SceneManager.LoadScene("Combat");
}
}
<file_sep>/Assets/Code/StatsSystem.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class StatsSystem : MonoBehaviour
{
public static int counter = 0;
public Text healthStatsText;
public Text strengthStatsText;
public Text defenseStatsText;
public Text statPointsText;
public int statPoints = 0;
public int healthStat;
public int strengthStat;
public int defenseStat;
public GameObject playerPrefab;
// Start is called before the first frame update
void Start()
{
SetStats();
}
public void SetStats()
{
healthStat = PlayerUnit.currentHealth;
strengthStat = PlayerUnit.strength;
defenseStat = PlayerUnit.defense;
healthStatsText.text = healthStat.ToString();
strengthStatsText.text = strengthStat.ToString();
defenseStatsText.text = defenseStat.ToString();
statPointsText.text = statPoints.ToString();
}
public void OnBackButton()
{
SceneManager.LoadScene("Combat");
}
public void OnApplyButton()
{
if (statPoints == 0)
{
PlayerUnit.currentHealth = healthStat;
PlayerUnit.strength = strengthStat;
PlayerUnit.defense = defenseStat;
if (PlayerUnit.currentHealth > PlayerUnit.maxHealth)
{
PlayerUnit.maxHealth = PlayerUnit.currentHealth;
}
counter++;
SceneManager.LoadScene("Combat");
}
}
public void AddHealth()
{
if(statPoints > 0)
{
statPoints--;
healthStat++;
healthStatsText.text = healthStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
public void SubtractHealth()
{
if (healthStat - 1 > 0)
{
healthStat--;
statPoints++;
healthStatsText.text = healthStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
public void AddStrength()
{
if (statPoints > 0)
{
statPoints--;
strengthStat++;
strengthStatsText.text = strengthStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
public void SubtractStrength()
{
if (strengthStat - 1 > -1)
{
strengthStat--;
statPoints++;
strengthStatsText.text = strengthStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
public void AddDefense()
{
if (statPoints > 0)
{
statPoints--;
defenseStat++;
defenseStatsText.text = defenseStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
public void SubtractDefense()
{
if (defenseStat - 1 > -1)
{
defenseStat--;
statPoints++;
defenseStatsText.text = defenseStat.ToString();
statPointsText.text = statPoints.ToString();
}
}
}
<file_sep>/Assets/Code/NavScript.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System;
public class NavScript : MonoBehaviour
{
private Rigidbody2D rb;
private Collision col;
Vector3 moveV=new Vector3(0,0,0);
private bool dcol=false;
GameObject diaManagerObj;
DialogueManager diaManag;
float xv=0;
float yv=0;
// Start is called before the first frame update
void Start()
{
diaManagerObj= GameObject.Find("DialogueManager");
diaManag=diaManagerObj.GetComponent(typeof(DialogueManager)) as DialogueManager;
rb=this.GetComponent<Rigidbody2D>();
}
// Update is called once per frame
void Update()
{
if(diaManag.dialogueStarted==false){
move();
}
}
public void move(){
if(!dcol){
yv=(float)(yv*0.90);
}
if(Input.GetKey(KeyCode.A)&&!Input.GetKey(KeyCode.D))
{
xv=-(float)0.1;
}
else if(!Input.GetKey(KeyCode.A)&&Input.GetKey(KeyCode.D))
{
xv=(float)0.1;
}else
{
if(xv>0.0){
xv+=-xv;
}
if(xv<0.0){
xv+=-xv;
}
}
if(dcol&&Input.GetKey(KeyCode.W))
{
dcol=false;
yv=(float)0.25;
}
moveV=new Vector3(xv,yv,0);
transform.position+=moveV;
}
void OnCollisionEnter2D(Collision2D col)
{
if(col.gameObject.name=="Floor")
{
dcol=true;
}
}
}
<file_sep>/Assets/Code/RewardStatPoints.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class RewardStatPoints : MonoBehaviour
{
public GameObject statsSystem;
StatsSystem stats;
private void Start()
{
stats = statsSystem.GetComponent<StatsSystem>();
stats.statPoints = PlayerUnit.totalDamage + 2;
stats.statPointsText.text = stats.statPoints.ToString();
stats.healthStatsText.text = PlayerUnit.currentHealth.ToString();
stats.healthStat = PlayerUnit.currentHealth;
}
public void OnContinueButton()
{
if (stats.statPoints == 0)
{
PlayerUnit.maxHealth = stats.healthStat;
PlayerUnit.strength = stats.strengthStat;
PlayerUnit.defense = stats.defenseStat;
SceneManager.LoadScene("Overworld");
}
}
}
<file_sep>/Assets/Code/UnitHUD.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class UnitHUD : MonoBehaviour
{
public Slider hpSlider;
public Text playerHpText;
public Text enemyHpText;
public void SetHUD(PlayerUnit playerUnit)
{
hpSlider.maxValue = PlayerUnit.maxHealth;
hpSlider.value = PlayerUnit.currentHealth;
playerHpText.text = "Hp " + PlayerUnit.currentHealth + " / " + PlayerUnit.maxHealth;
}
public void SetHUD(EnemyUnit enemyUnit)
{
hpSlider.maxValue = EnemyUnit.maxHealth;
hpSlider.value = EnemyUnit.currentHealth;
enemyHpText.text = "Hp " + EnemyUnit.currentHealth + " / " + EnemyUnit.maxHealth;
}
public void SetHp(int hp)
{
hpSlider.value = hp;
}
}
<file_sep>/Assets/Code/EnemyUnit.cs
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EnemyUnit : MonoBehaviour
{
DialogueTrig fight;
public List<Sprite> sprites;
public static int maxHealth = 6;
public static int strength = 3;
public static int defense = 3;
public static int currentHealth = 6;
public static int enemyNumber;
private SpriteRenderer spriteRenderer;
private void Start()
{
fight = GetComponent<DialogueTrig>();
spriteRenderer = GetComponent<SpriteRenderer>();
SetSprite();
}
private void SetSprite()
{
spriteRenderer.sprite = sprites[enemyNumber];
}
public bool TakeDamage(int strength, int defense)
{
if (defense / 2 >= strength)
{
currentHealth -= 1;
}
else
{
currentHealth -= strength - defense/ 2;
}
if (currentHealth <= 0)
{
return true;
}
else
{
return false;
}
}
}
<file_sep>/Assets/Code/DialogueManager.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public class DialogueManager : MonoBehaviour
{
private Queue<string> sentences;
public Text nameText;
public Text dialogueText;
public bool dialogueStarted;
public bool isTrue = false;
// Start is called before the first frame update
void Start()
{
dialogueStarted=false;
sentences=new Queue<string>();
}
public void StartDialogue(Dialogue dialogue)
{
dialogueStarted=true;
nameText.text=dialogue.name;
sentences.Clear();
foreach(string sentence in dialogue.sentences){
sentences.Enqueue(sentence);
}
DisplayNextSentence();
}
public void DisplayNextSentence()
{
if(sentences.Count==0)
{
EndDialogue();
return;
}
string sentence=sentences.Dequeue();
dialogueText.text=sentence;
Debug.Log(sentence);
}
public bool EndDialogue(){
isTrue = true;
dialogueStarted = false;
return true;
}
// Update is called once per frame
void Update()
{
}
}
<file_sep>/Assets/Code/BattleSystem.cs
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;
public enum BattleState { START, PLAYERTURN, ENEMYTURN, WON, LOST }
public class BattleSystem : MonoBehaviour
{
BattleState state;
//Config variables
public GameObject playerPrefab;
public GameObject enemyPrefab;
public GameObject attackButton;
public GameObject statsButton;
public Transform playerBattleStation;
public Transform enemyBattleStation;
public UnitHUD playerHUD;
public UnitHUD enemyHUD;
public Text displayText;
//Instance of Player and Enemy
PlayerUnit playerUnit;
EnemyUnit enemyUnit;
public AudioSource hitSound;
// Start is called before the first frame update
void Start()
{
state = BattleState.START;
//Calls the SetUpBattle function
StartCoroutine(SetUpBattle());
}
IEnumerator SetUpBattle()
{
//Spawns player prefab and assigns its stats to the playerUnit var
GameObject playerGo = Instantiate(playerPrefab, playerBattleStation);
playerUnit = playerGo.GetComponent<PlayerUnit>();
//Spawns enemy prefab and assigns its stats to the enemyUnit var
GameObject enemyGo = Instantiate(enemyPrefab, enemyBattleStation);
enemyUnit = enemyGo.GetComponent<EnemyUnit>();
//Assigns the health bar to each units health stat
playerHUD.SetHUD(playerUnit);
enemyHUD.SetHUD(enemyUnit);
yield return new WaitForSeconds(0.1f);
//Switchs the turns to playerturn
state = BattleState.PLAYERTURN;
PlayerTurn();
}
//Allows the player to use buttons
private void PlayerTurn()
{
attackButton.SetActive(true);
statsButton.SetActive(true);
if(StatsSystem.counter > 0)
{
DisableButton();
StatsSystem.counter = 0;
state = BattleState.ENEMYTURN;
StartCoroutine(EnemyTurn());
}
}
//function that runs on attack button press
public void OnAttackButton()
{
if (state != BattleState.PLAYERTURN)
{
return;
}
StartCoroutine(PlayerAttack());
}
public void OnStatsButton()
{
if (state != BattleState.PLAYERTURN)
{
return;
}
SceneManager.LoadScene("CombatStatsEditor");
}
IEnumerator PlayerAttack()
{
//Turns buttons off so player cannot attack twice
DisableButton();
//Calls the Take Damage function in the Unit.cs script and assings it to bool isDead to check if enemy dies
bool isDead = enemyUnit.TakeDamage(PlayerUnit.strength, EnemyUnit.defense);
enemyHUD.SetHp(EnemyUnit.currentHealth);
enemyHUD.SetHUD(enemyUnit);
hitSound.Play();
yield return new WaitForSeconds(2f);
if (isDead)
{
state = BattleState.WON;
EndBattle();
}
else
{
state = BattleState.ENEMYTURN;
StartCoroutine(EnemyTurn());
}
}
IEnumerator EnemyTurn()
{
bool isDead = playerUnit.TakeDamage(EnemyUnit.strength, PlayerUnit.defense);
playerHUD.SetHp(PlayerUnit.currentHealth);
playerHUD.SetHUD(playerUnit);
hitSound.Play();
yield return new WaitForSeconds(1f);
if (isDead)
{
state = BattleState.LOST;
EndBattle();
}
else
{
state = BattleState.PLAYERTURN;
PlayerTurn();
}
}
private void EndBattle()
{
if (state == BattleState.WON)
{
TurnOffEnemy.bossFight++;
PlayerManager.victoryCounter++;
SceneManager.LoadScene("Victory");
}
else if (state == BattleState.LOST)
{
SceneManager.LoadScene("GameOver");
}
}
public void DisableButton()
{
attackButton.SetActive(false);
statsButton.SetActive(false);
}
}
<file_sep>/Assets/Code/TurnOffEnemy.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TurnOffEnemy : MonoBehaviour
{
public List<BoxCollider2D> enemyCollider;
public List<DialogueTrig> enemyFight;
public static int bossFight = 0;
// Start is called before the first frame update
void Start()
{
for(int i = 0; i < bossFight; i++)
{
Destroy(enemyCollider[i]) ;
}
}
}
<file_sep>/Assets/Code/DialogueTrig.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
public class DialogueTrig : MonoBehaviour
{
[SerializeField] int health;
[SerializeField] int strength;
[SerializeField] int defense;
[SerializeField] int enemyNumber;
public GameObject button;
public GameObject sierraMist;
public SpriteRenderer sierraMistSprite;
DialogueManager dialogueManager;
private void Start()
{
//button = GameObject.Find("Button");
//sierraMist = GameObject.Find("Sierra Mist");
sierraMistSprite = sierraMist.GetComponent(typeof(SpriteRenderer)) as SpriteRenderer;
dialogueManager = FindObjectOfType<DialogueManager>();
Debug.Log(button);
HideButton();
}
private void Update()
{
if (dialogueManager.isTrue)
{
dialogueManager.isTrue = false;
Fight();
}
}
private void HideButton()
{
sierraMistSprite.enabled=false;
button.SetActive(false);
}
private void ShowButton()
{
sierraMistSprite.enabled=true;
button.SetActive(true);
}
public Dialogue dialogue;
// Start is called before the first frame update
private void OnTriggerEnter2D(Collider2D collision)
{
dialogueManager.StartDialogue(dialogue);
ShowButton();
EnemyUnit.currentHealth = health;
EnemyUnit.maxHealth = health;
EnemyUnit.strength = strength;
EnemyUnit.defense = defense;
EnemyUnit.enemyNumber = enemyNumber;
PlayerUnit.currentHealth = PlayerUnit.maxHealth;
}
public void Fight()
{
SceneManager.LoadScene("Combat");
}
}
<file_sep>/Assets/Code/PlayerUnit.cs
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerUnit : MonoBehaviour
{
public static int maxHealth = 6;
public static int strength = 3;
public static int defense = 3;
public static int currentHealth = 6;
public static int totalDamage = 0;
public bool TakeDamage(int strength, int defense)
{
//Prevents Damage Going Negative
if (defense / 2 >= strength)
{
currentHealth -= 1;
}
else
{
int damage = strength - defense / 2;
currentHealth -= damage;
totalDamage += damage;
}
if (currentHealth <= 0)
{
return true;
}
else
{
return false;
}
}
}
<file_sep>/Assets/Code/Respawn.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Respawn : MonoBehaviour
{
public void ResetStats()
{
PlayerUnit.totalDamage = 0;
PlayerUnit.currentHealth = PlayerUnit.maxHealth;
SceneManager.LoadScene("Overworld");
}
}
| 216444127db8dbb2912507713d08de0a48bf893b | [
"C#"
] | 12 | C# | UNL-Game-Dev-Club/Treebread | abc0bf6b5cb9d6257ba206834ee4578c3a473d25 | 55a09c6ccea372c881eb4aea74c3df3b895f861a |
refs/heads/master | <repo_name>BoiseCodeWorks/latefall2020-burgershack<file_sep>/Repositories/BurgersRepository.cs
using System;
using System.Collections.Generic;
using System.Data;
using Dapper;
using latefall2020_burgershack.Models;
namespace latefall2020_burgershack.Repositories
{
public class BurgersRepository
{
private readonly IDbConnection _db;
public BurgersRepository(IDbConnection db)
{
_db = db;
}
public IEnumerable<Burger> Get()
{
string sql = "SELECT * FROM burgers";
return _db.Query<Burger>(sql);
}
public Burger Create(Burger burger)
{
string sql = @"INSERT INTO burgers
(title, description, isBacon)
VALUES
(@Title, @Description, @IsBacon);
SELECT LAST_INSERT_ID();";
burger.Id = _db.ExecuteScalar<int>(sql, burger);
return burger;
}
public Burger GetById(int id)
{
string sql = "SELECT * FROM burgers WHERE id = @Id";
return _db.QueryFirstOrDefault<Burger>(sql, new { id });
}
// NOTE return bool for error handling in service
public bool Delete(int id)
{
string sql = "DELETE FROM burgers WHERE id = @Id LIMIT 1";
int affectedRows = _db.Execute(sql, new { id });
return affectedRows > 0;
}
}
}
<file_sep>/Services/BurgersService.cs
using System;
using System.Collections.Generic;
using latefall2020_burgershack.Models;
using latefall2020_burgershack.Repositories;
namespace latefall2020_burgershack.Services
{
public class BurgersService
{
private readonly BurgersRepository _repo;
public BurgersService(BurgersRepository repo)
{
_repo = repo;
}
public IEnumerable<Burger> Get()
{
return _repo.Get();
}
public Burger Create(Burger burger)
{
return _repo.Create(burger);
}
public Burger GetById(int id)
{
Burger foundBurger = _repo.GetById(id);
if (foundBurger == null)
{
throw new Exception("There is no burger with that id");
}
return foundBurger;
}
public string Delete(int id)
{
// Burger foundBurger = GetById(id);
if (_repo.Delete(id))
{
return "Great Scuccessss, Delorted.!?";
}
throw new Exception("Yeah, no, that didn't work.");
}
// NOTE null check for update
// Burger foundBurger = _repo.GetById(id);
// updatedBurger.Id = foundBurger.Id
// updatedBurger.title = updatedBurger.title == null ? foundBurger.title : updatedBurger.title
}
}<file_sep>/Controllers/BurgersController.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using latefall2020_burgershack.Models;
using latefall2020_burgershack.Services;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
namespace latefall2020_burgershack.Controllers
{
[ApiController]
[Route("api/[controller]")]
public class BurgersController : ControllerBase
{
private readonly BurgersService _bs;
public BurgersController(BurgersService bs)
{
_bs = bs;
}
[HttpGet]
public ActionResult<IEnumerable<Burger>> Get()
{
try
{
return Ok(_bs.Get());
}
catch (System.Exception e)
{
return BadRequest(e.Message);
}
}
[HttpGet("{id}")]
public ActionResult<Burger> GetById(int id)
{
try
{
return Ok(_bs.GetById(id));
}
catch (System.Exception e)
{
return BadRequest(e.Message);
}
}
[HttpPost]
public ActionResult<Burger> Create([FromBody] Burger burger)
{
try
{
return Ok(_bs.Create(burger));
}
catch (System.Exception e)
{
return BadRequest(e.Message);
}
}
}
}
<file_sep>/setup.sql
-- CREATE TABLE burgers(
-- id INT NOT NULL AUTO_INCREMENT,
-- title VARCHAR(80),
-- description VARCHAR(255),
-- isBacon TINYINT,
-- PRIMARY KEY (id)
-- )
-- ALTER TABLE burgers ADD description VARCHAR(255)
-- NOTE the false gets cast to tinyint value of 0
-- INSERT INTO burgers (
-- title,
-- description,
-- isBacon
-- )
-- VALUES (
-- "<NAME>",
-- "It is a little spongyeee",
-- false
-- )
-- SELECT * FROM burgers | 7a521761e63309440b06facbce93e88abcda4607 | [
"C#",
"SQL"
] | 4 | C# | BoiseCodeWorks/latefall2020-burgershack | cae44dde91d424a7e23812304af066f5ff330608 | c70cc321d7893dda119182f39132afd3526e77c7 |
refs/heads/master | <file_sep>Ensolvers challenge ToDo API
This app is the underlaying logic and must be consumed by a front-end application.
You can run it by executing "java -jar" on .jar file located at:
https://drive.google.com/file/d/1tI1zcZdbx6cWOp9VdpGt8DwaXyOKHK_F/view?usp=sharing
Also you can check the online deployment at:
https://todo-ensolvers.herokuapp.com
Aviable endpoints:
/folder
/task
Models format:
TASK:
{
"id": Integer
"description": "String",
"done": boolean
}
FOLDER:
{
"id": Integer,
"name": String,
"tasks": [] (Task list)
}
Technologies used:
Java 11.0.10
Apache Maven 3.6.3
Spring Core 5.3.6
Spring Boot 2.4.5
MySQL 8.0.23
<file_sep>package com.ensolvers.todo.ToDo.repository;
import com.ensolvers.todo.ToDo.model.Folder;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface FolderRepository extends JpaRepository<Folder,Integer> {
}
<file_sep>package com.ensolvers.todo.ToDo.service;
import com.ensolvers.todo.ToDo.model.Folder;
import com.ensolvers.todo.ToDo.model.PostResponse;
import com.ensolvers.todo.ToDo.model.Task;
import com.ensolvers.todo.ToDo.repository.FolderRepository;
import com.ensolvers.todo.ToDo.repository.TaskRepository;
import com.ensolvers.todo.ToDo.utils.EntityUrlBuilder;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Service;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.server.ResponseStatusException;
import java.util.List;
@Service
public class TaskService {
private static final String TASK_PATH = "task";
private TaskRepository taskRepo;
private FolderRepository folderRepo;
@Autowired
public TaskService(TaskRepository taskRepo, FolderRepository folderRepo) {
this.taskRepo = taskRepo;
this.folderRepo = folderRepo;
}
public List<Task> getAll(){
List<Task> all = this.taskRepo.findAll();
if(all.isEmpty()){
throw new ResponseStatusException(HttpStatus.NOT_FOUND,"There are no tasks created.");
}
return all;
}
public Task getById(Integer idTask){
return this.taskRepo.findById(idTask)
.orElseThrow( () -> new ResponseStatusException(HttpStatus.NOT_FOUND, "Task id: " + idTask + " doest not exists."));
}
public PostResponse add(Task newTask){
Task saved = this.taskRepo.save(newTask);
return PostResponse
.builder()
.status(HttpStatus.CREATED)
.url(EntityUrlBuilder.buildURL(TASK_PATH,saved.getId().toString()))
.build();
}
public void delete(Integer idTask){
Task toDelete = this.taskRepo.findById(idTask)
.orElseThrow( () -> new ResponseStatusException(HttpStatus.NOT_FOUND, "Task id: " + idTask + " doest not exists."));
this.taskRepo.deleteById(idTask);
}
public PostResponse update(Task toEdit){
this.getById(toEdit.getId());
Task updated = this.taskRepo.save(toEdit);
return PostResponse
.builder()
.status(HttpStatus.CREATED)
.url(EntityUrlBuilder.buildURL(TASK_PATH,updated.getId().toString()))
.build();
}
}
| 4fe312444cabdc4fcf2a116d7b71bed0bc31c2a8 | [
"Markdown",
"Java"
] | 3 | Markdown | jmburgues/todo-ensolvers | 21ac899b2d0ed0ed85a43458066a8136ae636ea2 | 7354191c6f1d002aedb88827878686f4d8e3dcbe |
refs/heads/master | <repo_name>JsoftEng/sandwichClub<file_sep>/app/src/main/java/com/github/jsofteng/sandwichclub/DetailActivity.java
package com.github.jsofteng.sandwichclub;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.squareup.picasso.Picasso;
import com.github.jsofteng.sandwichclub.model.Sandwich;
import com.github.jsofteng.sandwichclub.utils.JsonUtils;
import java.io.IOException;
public class DetailActivity extends AppCompatActivity {
public static final String EXTRA_POSITION = "extra_position";
private static final int DEFAULT_POSITION = -1;
TextView mSandwichOrigin;
TextView mSandwichAlsoKnownAs;
TextView mSandwichIngredients;
TextView mSandwichDescription;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_detail);
ImageView ingredientsIv = findViewById(R.id.image_iv);
mSandwichOrigin = findViewById(R.id.origin_tv);
mSandwichDescription = findViewById(R.id.description_tv);
mSandwichAlsoKnownAs = findViewById(R.id.also_known_tv);
mSandwichIngredients = findViewById(R.id.ingredients_tv);
Intent intent = getIntent();
if (intent == null) {
closeOnError();
}
int position = intent.getIntExtra(EXTRA_POSITION, DEFAULT_POSITION);
if (position == DEFAULT_POSITION) {
// EXTRA_POSITION not found in intent
closeOnError();
return;
}
String[] sandwiches = getResources().getStringArray(R.array.sandwich_details);
String json = sandwiches[position];
try {
Sandwich sandwich = JsonUtils.parseSandwichJson(json);
if (sandwich == null) {
// Sandwich data unavailable
closeOnError();
return;
}
populateUI(sandwich);
Picasso.with(this)
.load(sandwich.getImage())
.into(ingredientsIv);
setTitle(sandwich.getMainName());
}catch(IOException ioe){
closeOnError();
return;
}
}
private void closeOnError() {
finish();
Toast.makeText(this, R.string.detail_error_message, Toast.LENGTH_SHORT).show();
}
//Populate views, set invisible if data does not exist
private void populateUI(Sandwich sandwich) {
if (sandwich.getPlaceOfOrigin() != null){
mSandwichOrigin.setText(sandwich.getPlaceOfOrigin());
mSandwichOrigin.setVisibility(View.VISIBLE);
}else{
mSandwichOrigin.setVisibility(View.INVISIBLE);
}
if(sandwich.getDescription() != null){
mSandwichDescription.setText(sandwich.getDescription());
mSandwichDescription.setVisibility(View.VISIBLE);
}else{
mSandwichDescription.setVisibility(View.INVISIBLE);
}
if (sandwich.getIngredients() != null){
mSandwichIngredients.setVisibility(View.VISIBLE);
mSandwichIngredients.setText(android.text.TextUtils.join(",",sandwich.getIngredients()));
}else{
mSandwichIngredients.setVisibility(View.INVISIBLE);
}
if (sandwich.getAlsoKnownAs() != null){
mSandwichAlsoKnownAs.setVisibility(View.VISIBLE);
mSandwichAlsoKnownAs.setText(android.text.TextUtils.join(",",sandwich.getAlsoKnownAs()));
}else{
mSandwichAlsoKnownAs.setVisibility(View.INVISIBLE);
}
}
}
<file_sep>/README.md
# Sandwich Club
Sandwich Club app project for Udacity Android Developer Nanodegree
## Overview
The Sandwich Club app allows the user to select sandwiches from a list and display unique information about each sandwich.
| a057f5b0d716e6b62f1efb461b105294a9b7f0e9 | [
"Markdown",
"Java"
] | 2 | Java | JsoftEng/sandwichClub | 6009c9181a95ee4e51883e11bd892030a480292f | 73ea771a307614b8100287343dcf36dbdd8b9638 |
refs/heads/master | <file_sep>#!/usr/bin/python3
# Description : This is a Python script that automatically sends Whatsapp messages to users contained in an Excel file.
# Author : yb0zkurt
# Date : 28.08.2021
import pywhatkit as py
import xlrd2
import argparse
import sys
from colorama import init, Fore
init()
# Constants
user_phone_list = []
user_phone_dict = {}
excelFile = ""
shour = 0
sminute = 0
# Parsing/Checking arguments
def getargv():
try:
global excelFile, shour, sminute
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument("--help", "-h", action='store_true', help=argparse.SUPPRESS)
parser.add_argument("--file", "-F", help="Set file name")
parser.add_argument("--startHour", "-H", help="Set start hour value")
parser.add_argument("--startMinute", "-M", help="Set start minute value")
args = parser.parse_args()
if args.help:
print("""Usage: python3 AutoWP.py <excel_file> <start_hour> <start_minute>
-h, --help : Display usage
-F, --file : Excel file name
-H, --startHour : Start hour
-M, --startMinute : Start minute
Example : python3 AutoWP.py -F users.xlsx -H 23 -M 45""")
sys.exit(0)
excelFile = args.file
shour = int(args.startHour)
sminute = int(args.startMinute)
print(Fore.GREEN + "[Successful] AutoWP is starting...")
except:
print(Fore.RED + "[Error] Error! Arguments did not parse!")
sys.exit(0)
# Reading usernames, phone numbers, and messages from excel file (AutoWP_DB.xlsx)
def getUserInfo(file):
try:
print(Fore.CYAN + "[Info] Parsing excel file...")
wb = xlrd2.open_workbook(file)
sheet = wb.sheet_by_index(0)
for x in range(sheet.nrows):
user_phone_dict = {"user": sheet.cell_value(x, 0), "phone": sheet.cell_value(x, 1),
"msg": sheet.cell_value(x, 2)}
user_phone_list.append(user_phone_dict)
print(Fore.GREEN + "[Successful] " + str(len(user_phone_list)) + " user's info found!")
print(Fore.GREEN + "[Successful] Excel file parsed successfully!")
except:
print(Fore.RED + "[Error] Error! Excel file not found!")
sys.exit(0)
# Sending messages
def sendingMsg(a, b):
try:
print(Fore.CYAN + "[Info] Sending message...")
counter = 0
sh = int(a)
sm = int(b)
for each_dict in user_phone_list:
final_number = "+" + str((each_dict['phone']))[0:-2]
print("\nSending message to --> " + each_dict['user'] + " - " + final_number + " - Message : " + each_dict[
'msg'])
py.sendwhatmsg(final_number, each_dict['msg'], sh, sm, 10, True, 5)
if counter < len(user_phone_list):
if sm == 59:
sm = 0
else:
sm += 1
print(Fore.GREEN + "[Successful] Messages sent successfully!")
except:
print(Fore.RED + "[Error] Error! Messages didn't send!")
sys.exit(0)
if __name__ == '__main__':
getargv()
getUserInfo(excelFile)
sendingMsg(shour, sminute)<file_sep># AutoWP
This is a Python script that automatically sends Whatsapp messages to users contained in an Excel file.
Usage: python3 AutoWP.py -F <excel_file> -H <start_hour> - M <start_minute>
-h, --help : Display usage
-F, --file : Excel file name
-H, --startHour : Start hour
-M, --startMinute : Start minute
Example : python3 AutoWP.py -F users.xlsx -H 23 -M 45
*** Install requirements.txt
*** Add user's names, phone numbers, and messages in AutoWP_DB.xlsx file.
Note: Add phone number without "+" character in AutoWP_DB.xlsx file. | 19c8d4177c13f72844948ff0351d347bb211f07d | [
"Markdown",
"Python"
] | 2 | Python | yb0zkurt/AutoWP | c1258faa6301400cc12c7a05785f1c6566173c28 | c9b13f661cd5bff49ec28f82f50ddc8b81360e21 |
refs/heads/master | <repo_name>mbiedzki/restclient<file_sep>/src/main/webapp/js/all.js
$(document).ready(function () {
$.ajax({
type: "GET",
cache: false,
url: "https://biedzki.pl/library-1.0/books/",
/*url: "http://localhost:8090/books/",*/
contentType: "application/json; charset=utf-8",
success: function (response) {
response.sort(OrderListBy("id"));
var c = [];
c.push("<table><thead><tr class='w3-amber w3-xlarge'>" + "<td>ID</td>" + "<td>Title</td>"
+ "<td>Author</td></tr></thead><tbody>");
$.each(response, function (i, item) {
c.push("<tr><td>" + item.id + "</td>");
c.push("<td>" + item.title + "</td>");
c.push("<td>" + item.author + "</td></tr>");
});
c.push("</tbody></table>")
$('#books').html(c.join(""));
},
error: function () {
var div = $("#books");
div.append("Error communicating with server");
}
})
function OrderListBy(prop) {
return function (a, b) {
if (a[prop] > b[prop]) {
return 1;
} else if (a[prop] < b[prop]) {
return -1;
}
return 0;
}
}
});
<file_sep>/README.md
# restclient
Simple client to test my books library REST server.
It allows for all REST methods (getAll, getOne, update, add, delete).
Technologies: Java, Spring Boot, Java Script, JSON, Ajax.
External server: https://biedzki.pl/restclient-1.0/
| 2614a396461dd78a906f283d92a518ff098ae763 | [
"JavaScript",
"Markdown"
] | 2 | JavaScript | mbiedzki/restclient | fa2cda034dec950f2080d11968d2abe3f96433bc | a2553eaebdbacb66a9b1664f5e2707e06c3dc4cb |
refs/heads/master | <repo_name>ZhangHarry/codeStudy<file_sep>/src/Tutorial/essential/classLoad/load/SuperClass.java
package Tutorial.essential.classLoad.load;
public class SuperClass {
static {
System.out.println("super class init");
}
public static int value = 1;
public static final String HELLO = "hello";
}
class subClass extends SuperClass{
static {
System.out.println("sub class init");
}
}
<file_sep>/src/toy/json/token/BooleanToken.java
package toy.json.token;
/**
* Created by zhanghr on 2016/12/11.
*/
public class BooleanToken extends VarToken {
private boolean flag;
public BooleanToken(boolean bl){
super(""+bl);
this.flag = bl;
}
public boolean getFlag() {
return flag;
}
}
<file_sep>/src/Tutorial/essential/classLoad/resolve/TestPrivateMethod.java
package Tutorial.essential.classLoad.resolve;
/**
* Created by zhanghr on 2018/7/7.
*/
public class TestPrivateMethod {
public static void main(String[] args){
A a = new B();
a.print();// print 0
}
}
class A {
public void print(){ System.out.print(get()); }
private int get(){ return 0; }
}
class B extends A{
// could not override get()
private int get(){ return 1; }
}
<file_sep>/src/toy/json/token/NullToken.java
package toy.json.token;
/**
* Created by zhanghr on 2016/12/11.
*/
public class NullToken extends VarToken {
public NullToken(){
super("null");
}
}
<file_sep>/src/DesignPattern/DecoratorPattern/PaintedDecorator.java
package DesignPattern.DecoratorPattern;
/**
* Created by Zhanghr on 2016/4/6.
*/
public class PaintedDecorator extends RoomDecorator {
public PaintedDecorator(Room roomToBeDecorated) {
super(roomToBeDecorated);
}
public String showRoom(){
doPainting();
return super.showRoom()+"刷油漆";
}
private void doPainting(){
}
}
<file_sep>/src/DesignPattern/DecoratorPattern/Room.java
package DesignPattern.DecoratorPattern;
/**
* Created by Zhanghr on 2016/4/6.
*/
public interface Room {
public String showRoom();
}
<file_sep>/src/Tutorial/essential/TestThreadStop.java
package Tutorial.essential;
import org.omg.CORBA.INTERNAL;
import java.util.LinkedList;
import java.util.List;
/**
* Created by zhanghr on 2018/8/14.
*/
public class TestThreadStop {
public static void main(String[] args) throws InterruptedException {
List<Integer>list =new LinkedList<>();
Thread thread = new Thread(new MyRun(list));
thread.start();
Thread.sleep(1000);
synchronized (list){
thread.stop();
}
System.out.println("stop " + list.size());
}
}
class MyRun implements Runnable{
List<Integer> list;
public MyRun(List<Integer> list){
this.list = list;
}
@Override
public void run() {
int i =0;
while(true){
System.out.println(System.currentTimeMillis());
this.list.add(i++);
try {
synchronized (list){
Thread.sleep(10000);
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
<file_sep>/src/util/MvnJarInstaller.java
package util;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
/**
* Created by zhr on 2016/7/18.
*/
public class MvnJarInstaller {
/**
* mvn install:install-file -Dfile=D:\mvn\spring-context-support-3.1.0.RELEASE.jar -DgroupId=org.springframework -DartifactId=spring-context-support -Dversion=3.1.0.RELEASE -Dpackaging=jar
* @param info
* <dependency>
* <groupId>org.eclipse.core</groupId>
* <artifactId>runtime</artifactId>
* <version>3.10.0-v20140318-2214</version>
* </dependency>
* @return
*/
public static void installJar(String info, String filePath){
info = removeWhiteSpace(info);
Map attributes = pickAttribute(info);
StringBuilder sb = new StringBuilder();
sb.append("mvn install:install-file ");
sb.append(" -Dfile="+filePath);
Iterator it = attributes.entrySet().iterator();
while (it.hasNext()){
Map.Entry entry = (Map.Entry<String, String>)it.next();
sb.append(" -D"+entry.getKey()+"="+entry.getValue());
}
sb.append(" -Dpackaging=jar");
System.out.println(sb.toString());
CmdExecutor.exec(sb.toString());
}
public static String removeWhiteSpace(String s){
Pattern p = Pattern.compile("\\s");
Matcher m=p.matcher(s);
StringBuffer sb = new StringBuffer();
while(m.find()){
m.appendReplacement(sb, "");
}
m.appendTail(sb);
return sb.toString();
}
/**
*
* @param search
* <dependency><groupId>org.eclipse.core</groupId><artifactId>runtime</artifactId><version>3.10.0-v20140318-2214</version></dependency>
*/
public static Map pickAttribute(String search){
Pattern pattern ;
Matcher matcher;
String regex = "<(\\w+)>[\\w\\.-]+</\\1>";
Map attributes = new HashMap<String, String>(3);// ["groupId","artifactId", "version"]
try {
pattern = Pattern.compile(regex);
matcher = pattern.matcher(search);
boolean found = false;
while (matcher.find()) {
String content = matcher.group();
Matcher m = Pattern.compile("<\\w+>").matcher(content);
m.find();
String key = m.group();
key = key.substring(1, key.length()-1);
String value =content.replaceAll("(<\\w+>)|(</\\w+>)", "");
// System.out.format("attribute : %s, value : %s\n", key, value);
attributes.put(key, value);
found = true;
}
if (!found)
System.out.println("No match found.%n");
}catch (PatternSyntaxException pse){
System.err.format("There is a problem" +
" with the regular expression!%n");
System.err.format("The pattern in question is: %s%n",
pse.getPattern());
System.err.format("The description is: %s%n",
pse.getDescription());
System.err.format("The message is: %s%n",
pse.getMessage());
System.err.format("The index is: %s%n",
pse.getIndex());
}
return attributes;
}
public static void main(String[] args){
String info = "<dependency>\n" +
" <groupId>org.osgi</groupId>\n" +
" <artifactId>org.osgi.core</artifactId>\n" +
" <version>5.0.0</version>\n" +
"</dependency>\n";
MvnJarInstaller.installJar(info, "G:\\Downloads\\org.osgi.core-5.0.0.jar");
}
}
<file_sep>/src/l2t/disruptor/example/simple/ValueEventFactory.java
package l2t.disruptor.example.simple;
import com.lmax.disruptor.EventFactory;
/**
* Created by zhanghr on 2018/3/27.
*/
public class ValueEventFactory implements EventFactory<ValueEvent> {
private static ValueEventFactory instance = null;
private ValueEventFactory(){
}
public static ValueEventFactory getInstance(){
if (instance==null){
synchronized (ValueEventFactory.class){
if (instance==null)
instance = new ValueEventFactory();
}
}
return instance;
}
@Override
public ValueEvent newInstance() {
return new ValueEvent();
}
}
<file_sep>/src/Tutorial/essential/classLoad/resolve/SubClass.java
package Tutorial.essential.classLoad.resolve;
public class SubClass extends SuperClass implements InterfaceA{
@Override
public void print(Object object) {
// TODO Auto-generated method stub
}
}
<file_sep>/src/util/grapic/example/GraphicExample.java
package util.grapic.example;
import util.grapic.Edge;
import util.grapic.Graph;
import util.grapic.GraphWriter;
import util.grapic.Node;
/**
* Created by zhanghr on 2016/12/6.
*/
public class GraphicExample {
public static void main(String[] args){
Graph graph = new Graph();
Node<String> root = new Node("root");
Node<String> tail = new Node("tail");
graph.addNode(root);
graph.addNode(tail);
Edge<String> edge = new Edge<>(root, tail, "edge");
root.addEdge(edge);
GraphWriter.print(graph, "output/test.dot");
}
}
<file_sep>/src/util/tool/vtt/Resolver.java
package util.tool.vtt;
import util.FileProcesser;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by zhr on 2016/8/12.
*/
public class Resolver {
public static List<Substitle> read(String path){
if (!path.endsWith(".vtt")){
System.err.format("%s is not a .vtt file", path);
System.exit(-1);
}
List<Substitle> substitles = new ArrayList<>();
String[] substitleItems = FileProcesser.getContent(path).split("\n\n");
if (!"WEBVTT".equalsIgnoreCase(substitleItems[0])){
System.err.format("error file form : %s", "file doesn't begin with WEBVTT");
System.exit(-1);
}
for (int i = 1; i < substitleItems.length; i++) {
String[] item = substitleItems[i].split("\\n");
try{
Integer.parseInt(item[0]);
}catch (NumberFormatException e){
System.err.format("error file form : %s", e.getMessage());
System.exit(-1);
}
String start = "", end = "";
StringBuilder subtitleSb = new StringBuilder();
Pattern p = Pattern.compile("\\d+:\\d+:\\d+\\.\\d+");
Matcher m = p.matcher(item[1]);
if(m.find()){
start = m.group();
}
if(m.find()){
end = m.group();
}
for (int j = 2; j < item.length; j++) {
subtitleSb.append(item[j]+"\n");
}
substitles.add(new Substitle(start, end, subtitleSb.toString()));
}
return substitles;
}
public static void main(String[] args){
String path = "G:\\workspace\\codeExercise\\src\\util\\tool\\vtt\\supervised-learning.vtt";
List<Substitle> substitles = Resolver.read(path);
Date nowTime = new Date(System.currentTimeMillis());
SimpleDateFormat sdFormatter = new SimpleDateFormat("hh:mm:ss.");
String retStrFormatNowDate = sdFormatter.format("");
}
}
<file_sep>/src/dynamicProxy/localProxy/Client.java
package dynamicProxy.localProxy;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
public class Client {
public static void main(String[] args) {
Subject realSubject = new RealSubject();
InvocationHandler handler = new DynamicProxy(realSubject);
Subject subject = (Subject) Proxy.newProxyInstance(Subject.class.getClassLoader(),
new Class<?>[]{Subject.class}, handler);
System.out.println(subject.getClass().getName() + " " + subject.getClass().getInterfaces()[0]);
subject.rent();
subject.hello("world");
}
}
<file_sep>/src/util/grapic/GraphWriter.java
package util.grapic;
import util.CmdExecutor;
import util.FileProcesser;
import java.io.File;
import java.io.PrintWriter;
import java.util.List;
/**
* Created by xw on 15-10-26.
*/
public class GraphWriter {
public static void print(Graph g, String filePath){
if (g == null || filePath == null){
return;
}
FileProcesser.createFileParent(new File(filePath));
PrintWriter out = null;
try {
out = new PrintWriter(filePath);
StringBuilder sb= new StringBuilder();
sb.append("digraph callGraph {\n");
sb.append("\tnode [shape=rectangle]\n");
for (Node node : g.nodes){
sb.append("\t" + node.hashCode() + " [label=\""
// + node.hashCode()+"\n"
+node.toString().replace("\"", "\\\"") + "\"]\n");
}
for (Node node : g.nodes){
for (Edge edge : (List<Edge>)node.getEdges()){
StringBuilder contextLabel = new StringBuilder();
contextLabel.append(edge.toString() + "\n");
sb.append("\t" + edge.getStrNode().hashCode() + " -> "
+ edge.getEndNode().hashCode() + "[ label=\""
+ contextLabel.toString().replace("\"", "\\\"") + "\" ]" + "\n");
}
}
sb.append("}");
out.print(sb);
out.flush();
} catch (Exception e){
e.printStackTrace();
} finally {
if (out != null){
out.close();
}
CmdExecutor.exec("dot -Tpng " + filePath + " -o " + filePath + ".png");
}
}
}
<file_sep>/src/toy/json/core/linear/JsonTokenAnalyser.java
package toy.json.core.linear;
import toy.json.exception.WrongFormatException;
import toy.json.token.NumberToken;
import toy.json.token.QuoteToken;
import toy.json.token.StringToken;
import toy.json.token.Token;
import toy.json.util.Constant;
import toy.json.util.JsonDefinition;
import java.util.ArrayList;
import java.util.List;
/**
* Created by zhanghr on 2016/12/4.
*/
public class JsonTokenAnalyser {
int position;
Byte currByte;
byte[] input;
List<Token> tokens ;
public JsonTokenAnalyser(byte[] input) {
init(input);
}
public List<Token> tokenAnalyse() throws WrongFormatException, InstantiationException, IllegalAccessException {
try {
while (hasNext()) {
skipSpace();
Token token = readNextToken();
if (token != null)
tokens.add(token);
}
}catch (ArrayIndexOutOfBoundsException e){
throw new WrongFormatException("incomplete json string");
}
return tokens;
}
private void init(byte[] input) throws NullPointerException{
if (input == null)
throw new NullPointerException("bytes is null");
this.input = input;
this.tokens = new ArrayList<>();
this.position = 0;
this.currByte = input[position];
}
private void skipSpace() {
while (hasNext() && (( currByte = input[position]).compareTo(Constant.SPACE1) == 0 || currByte.compareTo(Constant.SPACE2) == 0
|| currByte.compareTo(Constant.SPACE3) == 0|| currByte.compareTo(Constant.RT) == 0) ) {
position++;
}
}
private boolean hasNext() {
return position < input.length;
}
public Token readNextToken() throws WrongFormatException, IllegalAccessException, InstantiationException {
skipSpace();
Token token = Constant.map.get(currByte);
if (token == null){
if (JsonDefinition.isNameHeader(currByte)) {
token = readStringToken();
}else if (JsonDefinition.isNumberHeader(currByte)){
token= readNumberToken();
}else {
if (currByte < 0)
throw new WrongFormatException(String.format("whether you have used not-ASCII char? If so, please add '\"'." +
"unexpected byte : %s", currByte));
else
throw new WrongFormatException(String.format("unexpected character : '%s', maybe your string starts with an invalid character, please add '\"'. ",
new String(new byte[]{currByte})));
}
}else if (token instanceof QuoteToken){
token = readQuoteToken();
}else {
token = readSymbolToken(token);
}
return token;
}
private Token readSymbolToken(Token token) throws IllegalAccessException, InstantiationException {
Token t = token.getClass().newInstance();
t.setPosition(position);
position++;
return t;
}
private Token readQuoteToken() throws WrongFormatException {
int start = position+1;//因为input[position]是",不需要保留
do{
position++;
}while (hasNext() && ((currByte = input[position]) - Constant.QUOTE != 0));
int end = position;
if (currByte - Constant.QUOTE == 0) {
Token token = new StringToken(new String(input, start, end - start));
token.setPosition(start);
position++;
return token;
}else
throw new WrongFormatException(String.format("lack of '%s' at %d", Constant.QUOTE_STR, position-1));
}
private Token readNumberToken() throws WrongFormatException {
int start = position;
do{
position++;
}while (hasNext() && (JsonDefinition.isNumber((currByte = input[position]))));
int end = position;
String numberStr =new String(input, start, end-start);
if (!JsonDefinition.isValidJsonNumber(numberStr))
throw new WrongFormatException(String.format("invalid digit number : '%s', please modify it or use string. ",
numberStr));
Token token = new NumberToken(numberStr);
token.setPosition(start);
return token;
}
/**
* 这里的String指的是一般编程语言里有效的变量名,即以字母、美元符号或下划线开头,后面跟字母、下划线、数字、美元符号
* 与quote不同,quote内容可以是任何字符
* @return
*/
private Token readStringToken() {
int start = position;
do{
position++;
} while (hasNext() && JsonDefinition.isName((currByte = input[position])));
int end = position;
Token token = new StringToken(new String(input, start, end-start));
token.setPosition(start);
return token;
}
}
<file_sep>/src/l2t/unsafe/SampleClass.java
package l2t.unsafe;
public class SampleClass {
long l;
int i;
public void setL(long l) {
this.l = l;
}
public void setI(int i) {
this.i = i;
}
public char[] getL() {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>/src/lock/TestVolatile.java
package lock;
/**
* Created by zhanghr on 2018/6/10.
*/
public class TestVolatile {
int a,b;
volatile int u,v;
public void test(){
int i,j;
i=a;
j=b;
i=v;
j=u;
a=i;
b=j;
}
}
<file_sep>/src/Tutorial/essential/TestClone.java
package Tutorial.essential;
/**
* Created by zhanghr on 2018/6/12.
*/
public class TestClone {
public static void main(String[] args) {
Person parent = new Person(50, "dad", null);
Person child = new Person(10, "Mike", parent);
Person2 child2 = new Person2(10, "Mike", parent);
try {
Person cloned = child.clone();
System.out.println(cloned.parent == child.parent);
Person2 cloned2 = child2.clone();
System.out.println(cloned2.parent == child2.parent);
} catch (CloneNotSupportedException e) {
e.printStackTrace();
}
}
}
class Person implements Cloneable{
int age;
String name;
Person parent;
Person(int age, String name,Person parent){
this.age = age;
this.name = name;
this.parent = parent;
}
public Person clone() throws CloneNotSupportedException {
return (Person)super.clone();
}
}
class Person2 implements Cloneable{
int age;
String name;
Person parent;
Person2(int age, String name,Person parent){
this.age = age;
this.name = name;
this.parent = parent;
}
Person2(){}
public Person2 clone() throws CloneNotSupportedException {
Person2 np = new Person2();
np.parent = parent.clone();
return np;
}
}
<file_sep>/src/l2t/disruptor/example/human/TestDisruptor.java
package l2t.disruptor.example.human;
import com.lmax.disruptor.dsl.Disruptor;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
/**
* Created by zhanghr on 2018/4/20.
*/
public class TestDisruptor {
// Disruptor封装了配置的过程
public static void main(String[] args) {
//创建一个执行器(线程池)。
Executor executor;
executor = Executors.newFixedThreadPool(4);
//创建一个Disruptor。
Disruptor<MyDataEvent> disruptor =
new Disruptor<MyDataEvent>(new MyDataEventFactory(), 4, executor);
//创建两个事件处理器。
MyDataEventHandler handler1 = new MyDataEventHandler();
KickAssEventHandler handler2 = new KickAssEventHandler();
//同一个事件,先用handler1处理再用handler2处理。
disruptor.handleEventsWith(handler1).then(handler2);
//启动Disruptor。
disruptor.start();
//发布10个事件。
for(int i=0;i<10;i++){
disruptor.publishEvent(new MyDataEventTranslator());
System.out.println("发布事件["+i+"]");
try {
TimeUnit.SECONDS.sleep(3);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
<file_sep>/src/l2t/disruptor/example/human/TestRingBuffer.java
package l2t.disruptor.example.human;
import com.lmax.disruptor.IgnoreExceptionHandler;
import com.lmax.disruptor.RingBuffer;
import com.lmax.disruptor.WorkerPool;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
/**
* Created by zhanghr on 2018/4/20.
*/
public class TestRingBuffer {
public void testPublish() {
// 手动为ringbuffer 配置组件
RingBuffer<MyDataEvent> ringBuffer = RingBuffer.createSingleProducer(new MyDataEventFactory(), 1024);
// 建立了MyDataEvent数组,但是具体数据没有
MyDataEvent dataEvent = ringBuffer.get(0);
System.out.println("Event = " + dataEvent);
System.out.println("Data = " + dataEvent.getData());
ringBuffer.publishEvent(new MyDataEventTranslator()); // 使用MyDataEventTranslator发布一次
dataEvent = ringBuffer.get(0);
System.out.println("Event = " + dataEvent);
System.out.println("Data = " + dataEvent.getData());
dataEvent = ringBuffer.get(1);
System.out.println("Event = " + dataEvent);
System.out.println("Data = " + dataEvent.getData());
// 手动发布事件,next取出可用序列号,取出数组中对应的Event,更新Event,发布该序号
long sequence = ringBuffer.next();
MyData data = new MyData(2,"human");
ringBuffer.get(sequence).setData(data);
ringBuffer.publish(sequence);
dataEvent = ringBuffer.get(0);
System.out.println("Event = " + dataEvent);
System.out.println("Data = " + dataEvent.getData());
dataEvent = ringBuffer.get(1);
System.out.println("Event = " + dataEvent);
System.out.println("Data = " + dataEvent.getData());
}
public void testMulPublish(){
RingBuffer<MyDataEvent> ringBuffer = RingBuffer.createMultiProducer(new MyDataEventFactory(), 1024);
final CountDownLatch latch = new CountDownLatch(100);
for(int i=0;i<100;i++){
final int index = i;
//开启多个线程发布事件
new Thread(new Runnable() {
@Override
public void run() {
long sequence = ringBuffer.next();
MyData data = new MyData(index, sequence+"!");
ringBuffer.get(sequence).setData(data);
ringBuffer.publish(sequence);
latch.countDown();
}
}).start();
}
try {
latch.await();
//最后观察下发布的时间。
for(int i=0;i<100;i++){
MyDataEvent event = ringBuffer.get(i);
System.out.println(event.getData());
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
public void testComsumer(){
RingBuffer<MyDataEvent> ringBuffer = RingBuffer.createSingleProducer(new MyDataEventFactory(), 1024);
//创建3个WorkHandler
MyDataWorkHandler handler1 = new MyDataWorkHandler("1");
MyDataWorkHandler handler2 = new MyDataWorkHandler("2");
MyDataWorkHandler handler3 = new MyDataWorkHandler("3");
// work pool会创建event只会被处理一次的WorkProcessor[]。不同的BatchEventProcessor会处理同样的event
// WorkPool创建WorkProcessor时,WorkProcessor保证消费者不会重复消费的重点在于:
// RingBuffer(event来源),
// barrier(分配下一个sequence,主要功劳是对应的sequencer和waitStrategy的相应办法),这里work processor共享同一个barrier,表示它们依赖同样的消费前提
// workPool.workSequence被所有work processor共享,避免重复消费
WorkerPool<MyDataEvent> workerPool =
new WorkerPool<MyDataEvent>(ringBuffer, ringBuffer.newBarrier(),
new IgnoreExceptionHandler(),
handler1,handler2,handler3);
//将WorkPool所有processor的Sequence添加到ringBuffer的监控序列。
ringBuffer.addGatingSequences(workerPool.getWorkerSequences());
// 新建线程池来运行work handler
Executor executor = Executors.newFixedThreadPool(workerPool.getWorkerSequences().length);
workerPool.start(executor);
// 发布事件
for (int index =0;index<100;index++){
long sequence = ringBuffer.next();
try{
MyDataEvent event = ringBuffer.get(sequence);
MyData data = new MyData(index, index+"s");
event.setData(data);
}finally{
ringBuffer.publish(sequence);
System.out.println("发布事件["+index+"]");
}
}
}
}
<file_sep>/src/Tutorial/essential/TestInteger.java
package Tutorial.essential;
/**
* Created by zhanghr on 2018/5/27.
*/
public class TestInteger {
public static void main(String[] args){
System.out.println(get());
}
public static Integer get(){
Integer i = 0;
i++;
return i;
}
}
<file_sep>/src/DesignPattern/DecoratorPattern/FlooredDecorator.java
package DesignPattern.DecoratorPattern;
/**
* Created by Zhanghr on 2016/4/6.
*/
public class FlooredDecorator extends RoomDecorator {
public FlooredDecorator(Room roomToBeDecorated) {
super(roomToBeDecorated);
}
public String showRoom(){
doFlooring();
return super.showRoom()+"铺地板";
}
private void doFlooring() {
}
}
<file_sep>/src/toy/json/object/JsonArray.java
package toy.json.object;
import java.util.ArrayList;
import java.util.List;
/**
* Created by zhanghr on 2016/12/3.
*/
public class JsonArray implements JsonBaseObject{
private List<JsonBaseObject> list = new ArrayList<>();
public JsonBaseObject get(int i){
return list.get(i);
}
public void add(JsonBaseObject obj){
list.add(obj);
}
public int size(){
return list.size();
}
}
<file_sep>/test/util/grapic/TestGraphicWriter.java
package util.grapic;
/**
* Created by zhanghr on 2016/10/26.
*/
public class TestGraphicWriter {
public static void main(String[] args){
Graph graph = new Graph();
Node<String> root = new Node<>("root");
Node<Integer> node1 = new Node<>(10);
Node<Integer> node2 = new Node<>(15);
Node<Integer> node3 = new Node<>(12);
Node<Integer> node4 = new Node<>(9);
node4.setSymbol(null);
Node<String> node5 = new Node<>("node 5");
graph.addNode(root);
graph.addNode(node1);
graph.addNode(node2);
graph.addNode(node3);
graph.addNode(node4);
graph.addNode(node5);
Edge<String> e1 = new Edge<>(root, node1, "a", 0);
Edge<String> e2 = new Edge<>(node1, node3, "b", 0);
Edge<String> e3 = new Edge<>(node1, node4, "c", 0);
Edge<String> e4 = new Edge<>(node4, node5, "d", 0);
Edge<String> e5 = new Edge<>(node5, node2, "e", 0);
Edge<String> e6 = new Edge<>(root, node2, "f", 0);
root.addEdge(e1);
root.addEdge(e6);
node1.addEdge(e2);
node1.addEdge(e3);
node4.addEdge(e4);
node5.addEdge(e5);
GraphWriter.print(graph, "E:/test");
}
}
<file_sep>/src/toy/json/object/JsonBaseObject.java
package toy.json.object;
/**
* Created by zhanghr on 2016/12/3.
*/
public interface JsonBaseObject {
}
<file_sep>/src/l2t/disruptor/example/Long/LongEventMain.java
package l2t.disruptor.example.Long;
import com.lmax.disruptor.RingBuffer;
import com.lmax.disruptor.dsl.Disruptor;
import java.nio.ByteBuffer;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
/**
* Created by zhanghr on 2018/3/27.
*/
public class LongEventMain {
public static void main(String[] args) throws InterruptedException {
// Executor that will be used to construct new threads for consumers
Executor executor = Executors.newCachedThreadPool();
// The factory for the event
LongEventFactory factory = new LongEventFactory();
// Specify the size of ring buffer, must be power of 2
int bufferSize = 1024;
// Construct the disruptor
Disruptor<LongEvent> disruptor = new Disruptor<LongEvent>(factory, bufferSize, executor);
// new Disruptor(factory, bufferSize, ProducerType.SINGLE, new BlockingWaitStrategy(), executor);
// Connect the handler
disruptor.handleEventsWith(new LongEventHandler());
// Start the disruptor, starts all thread running
disruptor.start();
// Get the ring buffer from the Disruptor to be used for publishing.
RingBuffer rb = disruptor.getRingBuffer();
LongEventProducer producer = new LongEventProducer(rb);
ByteBuffer bb = ByteBuffer.allocate(8);
for (long l=0;l<20;l++){
bb.putLong(0,l);
producer.onData(bb);
}
disruptor.shutdown();
}
}
<file_sep>/src/util/Filter.java
package util;
import java.io.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by zhanghr on 2017/3/15.
*/
public class Filter {
public static void filter(File file){
BufferedReader reader = null;
StringBuffer sb = new StringBuffer();
try {
reader = new BufferedReader(new FileReader(file));
String tempString = null;
while ((tempString = reader.readLine()) != null) {
boolean bl = false;
int i = 0;
for (; i < tempString.length(); i++) {
if (tempString.charAt(i) >= '0' && tempString.charAt(i)<='9')
bl = true;
else if (bl)
break;
}
if (bl)
sb.append(tempString.substring(i)+"\n");
else
sb.append(tempString+"\n");
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
FileProcesser.saveFile(file.getAbsolutePath(), sb.toString());
}
public static void filter(String dir){
File dirctory = new File(dir);
if (dirctory.isDirectory()){
File[] files = dirctory.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.isFile())
return true;
else
return false;
}
});
for (File file : files)
filter(file);
}
}
public static void main(String[] args){
Filter.filter("E:\\workspace\\JPF\\jpf-demo\\Plugin\\src\\");
}
}
<file_sep>/src/l2t/disruptor/example/human/KickAssEventHandler.java
package l2t.disruptor.example.human;
import com.lmax.disruptor.EventHandler;
/**
* Created by zhanghr on 2018/4/20.
*/
public class KickAssEventHandler implements EventHandler<MyDataEvent> {
@Override
public void onEvent(MyDataEvent event, long sequence, boolean endOfBatch) throws Exception {
System.out.println("kick " + event.getData().toString() + ", " + sequence);
}
}
<file_sep>/src/dynamicProxy/rpc/serviceImpl/HelloServiceImpl.java
package dynamicProxy.rpc.serviceImpl;
import dynamicProxy.rpc.Service;
public class HelloServiceImpl implements Service {
public String sayHi(String name) {
return "Hi, " + name;
}
}
<file_sep>/src/toy/json/token/OpeningBraceToken.java
package toy.json.token;
import toy.json.util.Constant;
/**
* Created by zhanghr on 2016/12/3.
*/
public class OpeningBraceToken extends Token {
public OpeningBraceToken() {
this.nextTokens.add(ClosingBraceToken.class);
this.nextTokens.add(StringToken.class);
this.symbol = Constant.OPENING_BRACE;
this.label = new String(new byte[]{symbol});
}
}
<file_sep>/src/util/tool/score/ImportVisitor.java
package util.tool.score;
import org.eclipse.jdt.core.dom.*;
import java.util.*;
/**
* Created by Zhanghr on 2016/4/6.
*/
public class ImportVisitor extends ASTVisitor {
private List<String> imports;
private List<String> allImports;
private Map<String, String> importsMap;// name->package
private String packageName;
boolean imports_ok = false;
boolean hasVisited = false;
public ImportVisitor(){
imports = new ArrayList<>();
allImports = new ArrayList<>();
importsMap = new HashMap<>();
String packageName = "";
}
public List<String> imports() {
if (hasVisited && !imports_ok){
imports_ok = true;
Set set = importsMap.entrySet();
Iterator<Map.Entry> it = set.iterator();
while (it.hasNext()) {
Map.Entry<String, String> entry = it.next();
imports.add(entry.getValue()+"."+entry.getKey());
}
}
return imports;
}
public List<String> getAllImports() {
return allImports;
}
public String getPackageName() {
return packageName;
}
@Override
public void preVisit(ASTNode node) {
hasVisited = true;
}
@Override
public boolean visit(ImportDeclaration node) {
QualifiedName qualifiedName = (QualifiedName)node.getName();
String name = qualifiedName.getName().toString();
String qualifier = qualifiedName.getQualifier().toString();
// if import xx.yy.*, qualifier is xx and name is yy while * is ignored
if (node.toString().contains("*"))
allImports.add(qualifier+"."+name);
else
importsMap.put(name, qualifier);
return super.visit(node);
}
@Override
public boolean visit(PackageDeclaration node) {
packageName = node.getName().toString();
return super.visit(node);
}
@Override
public boolean visit(SimpleType node) {
return super.visit(node);
}
}
<file_sep>/src/Tutorial/essential/classLoad/dispatch/StaticDispatch.java
package Tutorial.essential.classLoad.dispatch;
public class StaticDispatch {
static abstract class Human{}
static class Man extends Human{}
static class Woman extends Human{}
public void sayHello(Human human) {
System.out.println("hi, human");
}
public void sayHello(Man man) {
System.out.println("hi, man");
}
public void sayHello(Woman woman) {
System.out.println("hi, woman");
}
public static void main(String[] args) {
/**
* static dispatch
* 编译器根据参数的静态类型决定使用哪个重载版本
* 静态分派的典型是重载
*/
Human man = new Man();
Human woman = new Woman();
StaticDispatch sr = new StaticDispatch();
sr.sayHello(man);
sr.sayHello(woman);
}
}
<file_sep>/src/l2t/interProcessCommunication/README.md
# Socket
> Server
```Java
ServerSocket ss = new ServerSocket(port)
Socket s = ss.accpet()
DataInputStream dis = new DataInputStream(s.getInputStream());
dis.readInt();
dis.readFully(byte[]);
```
>client
```Java
Socket s = newSocket(host, port);
DatOutputStream dos = new DataInputStream(s.getOutputStream());
dos.writeInt(1);
dis.write(byte[]);
```
# Object and Byte
> Obj -> byte[]
>> ByteArrayOutputStream os = new ByteArrayOutputStream();
>> ObjectOutputStream oos = new ObjectOutputStream(os);
>> oos.writeObject(obj);
>> bytes = os.toByteArray();
> byte[] -> Object
>> ByteArrayInputStream is = new ByteArrayInputStream(bytes);
>> ObjectInputStream os = new ObjectInputStream(is);
>> Object obj = os.readObject()<file_sep>/src/toy/json/token/VarToken.java
package toy.json.token;
/**
* Created by zhanghr on 2016/12/4.
*/
public class VarToken extends Token{
public VarToken(String label){
this.symbol = '\0';
this.label = label;
this.nextTokens.add(CommaToken.class);
}
}
<file_sep>/src/toy/chrome插件test/bg.js
function handleAll(info, tab){
chrome.tabs.sendMessage(tab.id, {greeting: "hello"}, function(response) {
// var list = response.result;
// // for (var i = list.length - 1; i >= 0; i--) {
// // console.log(list[i]);
// // }
// var str = JSON.stringify(response);
// localStorage.obj = str;
// console.log(localStorage.obj);
// var xhr = new XMLHttpRequest();
// xhr.open("POST", "http://localhost:8080/ShowResult/displayCode", true);
// xhr.onreadystatechange = function() {
// if (xhr.readyState == 4) {
// var codes = JSON.stringify(xhr.responseText);
// chrome.tabs.sendMessage(tab.id, {greeting: "display", code : codes}, function(response) { });
// }
// }
// var formData = new FormData();
// formData.append("code", str);
// // console.log("str : "+str);
// xhr.send("formData=code");
});
}
function handleSelection(info, tab){
// chrome.tabs.create({url:"result.html",selected:true});
// alert(info.selectionText);
console.log("select : "+info.selectionText);
chrome.tabs.sendMessage(tab.id, {greeting: "select", selected: info.selectionText}, function(response) {
});
}
chrome.contextMenus.create({
"title": "Search Code",
"contexts":["selection"],
"onclick":handleSelection
});
chrome.contextMenus.create({
"title": "Search Code",
"contexts":["page"],
"onclick":handleAll
});<file_sep>/src/toy/json/token/ClosingBracketToken.java
package toy.json.token;
import toy.json.util.Constant;
/**
* Created by zhanghr on 2016/12/3.
*/
public class ClosingBracketToken extends Token {
public ClosingBracketToken() {
this.symbol = Constant.CLOSING_BRACKET;
this.label = new String(new byte[]{symbol});
}
}
<file_sep>/src/Tutorial/essential/threadPool/FixedSizeThreadPool.java
package Tutorial.essential.threadPool;
import com.sun.javaws.exceptions.InvalidArgumentException;
import javax.naming.directory.InvalidAttributesException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingDeque;
/**
* Created by zhaghr on 2018/6/28.
*/
public class FixedSizeThreadPool {
// task queue
private BlockingQueue<Runnable> taskQueue;
// work threads
private List<Thread> workers;
// used to
private volatile boolean working = true;
public FixedSizeThreadPool(int poolSize, int taskQueueSize) throws InvalidArgumentException {
if (poolSize <= 0 || taskQueueSize <= 0)
throw new InvalidArgumentException(new String[]{"invalid "});
taskQueue = new LinkedBlockingDeque();
workers = Collections.synchronizedList(new ArrayList<>((int)(poolSize/0.75)+1));
for(int i=0; i<poolSize; i++){
Worker worker = new Worker(this);
worker.start();
workers.add(worker);
}
}
// 直接插入
public boolean submit(Runnable task){
return taskQueue.offer(task);
}
// 关闭组合的手段:
// 1. while循环的flag--正常退出
// 2. 双重判断flag--保证任务全部完成,一次判断可能陷入阻塞
// 3. 根据flag进行阻塞取或非阻塞取
// 4. 将等待时的线程中断(wait\sleep\join可以抛InterruptedException)
public void shutdown(){
this.working = false;
for (Thread t : this.workers){
if (t.getState().equals(Thread.State.BLOCKED) || t.getState().equals(Thread.State.WAITING)
|| t.getState().equals(Thread.State.TIMED_WAITING)){
t.interrupt();
}
}
}
private static class Worker extends Thread{
private FixedSizeThreadPool pool;
public Worker(FixedSizeThreadPool pool){
this.pool = pool;
}
@Override
public void run() {
int taskCount = 0;
while (pool.working
|| pool.taskQueue.size() > 0) {
Runnable task = null;
try {
// 注意在不同状态时,取法的不同
if (pool.working)
task = pool.taskQueue.take();
else
task = pool.taskQueue.poll();
// 可能task已经被中断
if (task != null) {
taskCount++;
task.run();
System.out.println(String.format("%s : task %d is finished.", Thread.currentThread().getName(), taskCount));
}
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
}
<file_sep>/src/Tutorial/essential/concurrency/TestThread.java
package Tutorial.essential.concurrency;
/**
* According to Java Language Specification SE 8, before synchronized method is invoked,
* invoker must require lock of the object that contains the method, but it doesn't talk about
* resolved variable in the method.
* In this case, I check this situation. If exists data race exactly, we will see the count is not equal
* to times in following code. This sample couldn't ensure it satisfy exclusive increment exactly, but if it fail,
* it must not satisfy exclusive increment. And we exactly observe non-equality , lock of variables doesn't get involved
*/
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
/**
* Created by zhr on 2016/7/27.
*/
public class TestThread {
static Integer count = 0;
public static void main(String[] args){
int times = 70;
ExecutorService pool;
count = times;
while (count == times) {
pool = Executors.newFixedThreadPool(times);
count = 0;
for (int i = 0; i < times; i++) {
pool.execute(new Increnment());
}
pool.shutdown();
while (!pool.isTerminated());
System.out.format("max : %d%n", count);
}
System.out.println("---------------------------------");
count = times;
while (count == times) {
pool = Executors.newFixedThreadPool(times);
count = 0;
for (int i = 0; i < times; i++) {
pool.execute(new IncrenmentA());
}
pool.shutdown();
while (!pool.isTerminated());
System.out.format("max : %d%n", count);
}
}
private static class Increnment implements Runnable{
@Override
public synchronized void run() {
String threadName =
Thread.currentThread().getName();
count = count + 1;
// System.out.format("%s: %d%n",
// threadName,
// count);
}
}
private static class IncrenmentA implements Runnable{
@Override
public void run() {
String threadName =
Thread.currentThread().getName();
synchronized (count) {
count = count + 1;
// System.out.format("%s: %d%n",
// threadName,
// count);
}
}
}
}
<file_sep>/src/toy/json/displayer/JsonDisplayer.java
package toy.json.displayer;
import toy.json.object.JsonArray;
import toy.json.object.JsonBaseObject;
import toy.json.object.JsonObject;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
/**
* Created by zhanghr on 2016/12/5.
*/
public class JsonDisplayer {
public static void display(JsonBaseObject object){
display(object,"", "\t");
}
public static void display(JsonBaseObject object, String newSpace, String space){
if (object instanceof JsonObject)
displayJsonObj((JsonObject)object,newSpace, space);
else if (object instanceof JsonArray)
displayJsonArray((JsonArray)object,newSpace, space);
}
private static void displayJsonObj(JsonObject object, String spaces, String space) {
System.out.println(spaces+"Json object--------------------");
String newSpace = spaces+space;
Collection<String> keys = object.keys();
Iterator<String> it = keys.iterator();
while (it.hasNext()){
String key = it.next();
System.out.format(newSpace+"%s:%s%n", key, object.getValue(key));
}
}
private static void displayJsonArray(JsonArray array, String spaces, String space) {
System.out.println(spaces+"Json array");
String newSpace = spaces+space;
int size = array.size();
for (int i = 0; i < size; i++) {
JsonBaseObject object = array.get(i);
display(object, newSpace, space);
}
}
}
<file_sep>/src/util/tool/score/Analyzer.java
package util.tool.score;
import org.eclipse.jdt.core.dom.AST;
import org.eclipse.jdt.core.dom.ASTParser;
import org.eclipse.jdt.core.dom.CompilationUnit;
import util.FileProcesser;
import java.io.File;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Created by Zhanghr on 2016/8/6.
*/
public class Analyzer {
private Map<String, List<String>> imports;
/**
*
* @param javaPath a directory or file path
* @return
*/
public Map<String, List<String>> getImports(String javaPath) {
imports = new HashMap<>();
parseJava(javaPath);
return imports;
}
/**
* In this method, there is one point we need to consider carefully.
* We can get relative path of children, maybe we want to process children file,
* but we can't directly use new File(child_path). Since child_path is a relative path,
* in fact, File(child_path) is current_dir/child_path rather than expected javaPath/child_path.
* Therefore, we need to append absolute prefix.
* We could use dir.listFiles() to get exactly children files, but I want to reduce the time to hold
* these file with concern for concurrency.
*
* @param javaPath directory or file path
*/
private void parseJava(String javaPath){
File dir = new File(javaPath);
if (dir.isDirectory()) {
String[] children = dir.list();
String dirAbsolutePath = dir.getAbsolutePath();
dir = null;
for (String path : children) {
path = dirAbsolutePath+"\\"+path;
File file =new File(path);
if (file.isDirectory()) {
file = null;
parseJava(path);
} else {
file = null;
parseJavaFile(path);
}
}
}else {
String path = dir.getAbsolutePath();
dir = null;
parseJavaFile(path);
}
}
/**
* This method only process a java file, so it will filter .java,
* but it doesn't check whether it is a file or directory.
*
* @param filePath path of a file rather than directory
*/
private void parseJavaFile(String filePath) {
if (!filePath.endsWith(".java"))
return;
String fileName = pickFileName(filePath);
ASTParser parser = ASTParser.newParser(AST.JLS3);
parser.setResolveBindings(true);
parser.setSource(FileProcesser.getContent(filePath).toCharArray());
parser.setKind(ASTParser.K_COMPILATION_UNIT);
CompilationUnit result = (CompilationUnit) parser.createAST(null);
ImportVisitor visitor = new ImportVisitor();
result.accept(visitor);
List<String> importedClasses = visitor.imports();
String packageName = visitor.getPackageName();
imports.put(packageName+","+fileName, importedClasses);
}
private String pickFileName(String path) {
if (path.indexOf("/")>=0)
return path.substring(path.lastIndexOf("/")+1);
else if (path.indexOf("\\")>=0)
return path.substring(path.lastIndexOf("\\")+1);
else
return path;
}
public static void main(String[] args){
Analyzer analyzer = new Analyzer();
Map<String, List<String>> imports = analyzer.getImports("E:\\Java code\\codeExercise\\src\\util\\tool\\score\\ImportVisitor.java");
imports.toString();
}
}
<file_sep>/README.md
# codeStudy
本仓库主要用于研究各种实现机制,粒度多样,根据网上看到的内容或者想到的问题。
- 细的比如Java语法糖(如i++, for等)的字节码、String.intern()、Integer等Java原生实现,动态代理等基本技术,
- 中的,小玩具比如自己实现的简单 json parser
- 大的比如Disruptor源代码(为了方便查看和记录,这里直接导入了源代码,然后加了注释)。
----
**update 2018/08/02** : 部分代码从codeExercise迁移过来,codeExercise作为算法题的专用仓库。被迁移代码的相关介绍日后补充。
-----
## 实验记录
+ ### System.gc()导致的full gc操作是否立即执行?
测试版本:HotSpot JDK 1.8
测试代码:Tutorial.essential.TestSystemGc
测试过程与结论:分别打印调用和不调用System.gc()时进行的gc信息,结论是**立即执行**,另外java doc里也描述说When control returns from the method call, the Java Virtual Machine has made a best effort to reclaim space from all discarded objects.
不调用System.gc()
```
Java HotSpot(TM) 64-Bit Server VM (25.45-b02) for windows-amd64 JRE (1.8.0_45-b15), built on Apr 30 2015 12:40:44 by "java_re" with MS VC++ 10.0 (VS2010)
Memory: 4k page, physical 8257216k(2231256k free), swap 18742976k(6884924k free)
CommandLine flags: -XX:InitialHeapSize=132115456 -XX:MaxHeapSize=2113847296 -XX:+PrintGC -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:-UseLargePagesIndividualAllocation -XX:+UseParallelGC
Heap
PSYoungGen total 37888K, used 4714K [0x00000000d6000000, 0x00000000d8a00000, 0x0000000100000000)
eden space 32768K, 14% used [0x00000000d6000000,0x00000000d649a878,0x00000000d8000000)
from space 5120K, 0% used [0x00000000d8500000,0x00000000d8500000,0x00000000d8a00000)
to space 5120K, 0% used [0x00000000d8000000,0x00000000d8000000,0x00000000d8500000)
ParOldGen total 86016K, used 0K [0x0000000082000000, 0x0000000087400000, 0x00000000d6000000)
object space 86016K, 0% used [0x0000000082000000,0x0000000082000000,0x0000000087400000)
Metaspace used 3294K, capacity 4496K, committed 4864K, reserved 1056768K
class space used 354K, capacity 388K, committed 512K, reserved 1048576K
```
调用System.gc()
```
Java HotSpot(TM) 64-Bit Server VM (25.45-b02) for windows-amd64 JRE (1.8.0_45-b15), built on Apr 30 2015 12:40:44 by "java_re" with MS VC++ 10.0 (VS2010)
Memory: 4k page, physical 8257216k(2684248k free), swap 18742976k(7393960k free)
CommandLine flags: -XX:InitialHeapSize=132115456 -XX:MaxHeapSize=2113847296 -XX:+PrintGC -XX:+PrintGCDateStamps -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:-UseLargePagesIndividualAllocation -XX:+UseParallelGC
2018-08-10T23:09:10.805+0800: 0.164: [GC (System.gc()) [PSYoungGen: 4323K->904K(37888K)] 4323K->912K(123904K), 0.0012514 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
2018-08-10T23:09:10.806+0800: 0.165: [Full GC (System.gc()) [PSYoungGen: 904K->0K(37888K)] [ParOldGen: 8K->809K(86016K)] 912K->809K(123904K), [Metaspace: 3327K->3327K(1056768K)], 0.0077709 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
Heap
PSYoungGen total 37888K, used 1920K [0x00000000d6000000, 0x00000000d8a00000, 0x0000000100000000)
eden space 32768K, 5% used [0x00000000d6000000,0x00000000d61e00d0,0x00000000d8000000)
from space 5120K, 0% used [0x00000000d8000000,0x00000000d8000000,0x00000000d8500000)
to space 5120K, 0% used [0x00000000d8500000,0x00000000d8500000,0x00000000d8a00000)
ParOldGen total 86016K, used 809K [0x0000000082000000, 0x0000000087400000, 0x00000000d6000000)
object space 86016K, 0% used [0x0000000082000000,0x00000000820ca530,0x0000000087400000)
Metaspace used 3346K, capacity 4496K, committed 4864K, reserved 1056768K
class space used 361K, capacity 388K, committed 512K, reserved 1048576K
```
+ ### 同样语法,在不同的JDK版本下编译结果不一样可能会导致错误。
经验:**使用明确的写法**
背景:需要集成与修改一个老旧的学术界系统,该系统只提供了一部分java文件,其他的都是class文件。对于class的类,当我需要修改它时就需要反编译再修改。我遇到了一个奇怪的情况:修改后系统的运行结果不同。最终确定原因是原始class是JDK 1.5下编译的,反编译后一些语句在JDK 1.7下编译结果不同。
```
public static void setSrcInfo(SourceInfo srcInfo) { srcInfo = srcInfo; }
public static void setMr(ModelRepository mr) { mr = mr; }
```
上面的语句在原始class文件中会调用putstatic字节码给static变量赋值,在新的class文件中则没有。
java 1.7 (major version = 51)
```
public static void setSrcInfo(recoder.service.SourceInfo);
descriptor: (Lrecoder/service/SourceInfo;)V
fags: ACC_PUBLIC, ACC_STATIC
Code: stack=1, locals=1, args_size=1
0: aload_0
1: astore_0
2: return
LineNumberTable:
line 246: 0
line 247: 2
LocalVariableTable:
Start Length Slot Name Signature
0 3 0 srcInfo Lrecoder/service/SourceInfo;
```
java 1.5(major version = 49)
```
public static void setSrcInfo(recoder.service.SourceInfo);
descriptor: (Lrecoder/service/SourceInfo;)V
flags: ACC_PUBLIC, ACC_STATIC
Code: stack=1, locals=1, args_size=1
0: aload_0
1: putstatic #12 // Field srcInfo:Lrecoder/service/SourceInfo;
4: return
LineNumberTable:
line 219: 0
line 220: 4
LocalVariableTable:
Start Length Slot Name Signature
0 5 0 srcInfo Lrecoder/service/SourceInfo;
```
解决方案:明确```ReferenceConverter.mr=mr```。就可以
+ ### MySQL内联测试的一个例子
背景:5.7.14-log MySQL Community Server,对于两张表class(主键classid),classmetric(主键id,一般列classid),对该两张表进行内联操作。两张表存在一一对应关系,所以数据量一致。
```
select * from class,classmetric where class.classid=classmetric.classid and classmetric.classid >= 89630 and classmetric.classid<= 90813;
```
耗时:~0.4s
```
select * from class,classmetric where classmetric.classid=class.classid and class.classid >=89630 and class.classid<= 90813 ;
```
耗时:~1s
原因:通过explain查看执行计划,发现执行顺序:先对classmetric表进行完全遍历,然后在class表上使用classid索引,区别在于第一条语句的extra是using where表示对classmetric表进行完全遍历时还进行了where过滤,而第二条是在class表上进行过滤。 比较好奇的事情在于:**把class,classmetric改成classmetric,class后并不会修改执行顺序**
```
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
| 1 | SIMPLE | classmetric | NULL | ALL | NULL | NULL | NULL | NULL | 85599 | 11.11 | Using where |
| 1 | SIMPLE | class | NULL | eq_ref | PRIMARY | PRIMARY | 8 | classmetric.classid | 1 | 100.00 | Using where |
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
```
```
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra |
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
| 1 | SIMPLE | classmetric | NULL | ALL | NULL | NULL | NULL | NULL | 85599 | 100.00 | NULL |
| 1 | SIMPLE | class | NULL | eq_ref | PRIMARY | PRIMARY | 8 | classmetric.classid | 1 | 100.00 | Using where |
+----+-------------+-------------+------------+--------+---------------+---------+---------+-------------------------------+-------+----------+-------------+
```
<file_sep>/src/toy/json/token/Token.java
package toy.json.token;
import java.util.LinkedList;
import java.util.List;
/**
* Created by zhanghr on 2016/12/3.
*/
public abstract class Token {
List<Class> nextTokens = new LinkedList<>();
Token closeToken;
Byte symbol;
int position;
String label;
public String getLabel() {
return label;
}
public List<Class> getNextTokens() {
return nextTokens;
}
public Token getCloseToken() {
return closeToken;
}
public Byte getByte() {
return symbol;
}
public int compareTo(Token s){
return symbol-s.getByte();
}
public int getPosition() {
return position;
}
public void setPosition(int position) {
this.position = position;
}
public String getSymbol(){
return new String(new byte[]{symbol});
}
}
<file_sep>/src/l2t/serialization/Test.java
package l2t.serialization;
import java.io.Serializable;
public class Test {
public int i;
}
<file_sep>/src/l2t/interProcessCommunication/Client.java
package l2t.interProcessCommunication;
import java.io.IOException;
import java.io.OutputStream;
import java.net.Socket;
import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
public class Client {
public static void main(String[] args) {
String ip = "127.0.0.1"; //localhost
Socket socket = null;
try {
Collection<Object> list = new LinkedList<>();
Bean b1 = new Bean(new int[]{1,2,3,4});
Bean b2 = new Bean(new int[]{5,6,8,9,10});
list.add(b1);
list.add(b2);
socket = new Socket(ip, Server.port);
System.out.println("client open socket");
OutputStream os = socket.getOutputStream();
StreamHandler.writeStream(os, list);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
if (socket !=null)
try {
socket.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
System.out.println("client close!");
}
}
<file_sep>/src/l2t/disruptor/example/human/MyDataEventFactory.java
package l2t.disruptor.example.human;
import com.lmax.disruptor.EventFactory;
/**
* Created by zhanghr on 2018/4/20.
*/
public class MyDataEventFactory implements EventFactory<MyDataEvent>{
@Override
public MyDataEvent newInstance() {
return new MyDataEvent();
}
}
| 3f53d50cbfa89df7173cb59d8e2405a544d257b1 | [
"Markdown",
"Java",
"JavaScript"
] | 45 | Java | ZhangHarry/codeStudy | cbbecdcf388c4c88c362472c761e7f1e0f0411b1 | a8c7950cc4179c1de19d6f21522b771787feaa85 |
refs/heads/master | <repo_name>bleek42/supp-buddy-frontend<file_sep>/src/Context.js
import React from "react";
const Context = React.createContext({
email: "",
handleSetEmail: () => {},
});
export default Context;
<file_sep>/src/components/Application.js
import React, { useState, useContext, Component } from "react";
// import { Router } from "@reach/router";
import ReactDOM from "react-dom";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import SignIn from "./SignIn";
import SignUp from "./SignUp";
import Quiz from "./Quiz";
import LandingPage from "./LandingPage";
import { UserContext } from "../providers/UserProvider";
import ProfilePage from "./ProfilePage";
import PasswordReset from "./PasswordReset";
import Dashboard from "./Dashboard";
import { DataContext } from "../Context/DataContext";
class Application extends Component {
// static contextType = DataContext;
state = {
email: "",
};
render() {
return (
<div className="App">
<Router>
<Switch>
<Route exact path={"/"} component={LandingPage} />
<Route exact path={"/signUp"} component={SignUp} />
<Route exact path={"/signIn"} component={SignIn} />
<Route exact path={"/passwordReset"} component={PasswordReset} />
<Route exact path={"/quiz"} component={Quiz} />
<Route exact path={"/dashboard"} component={Dashboard} />
</Switch>
</Router>
</div>
);
}
}
export default Application;
<file_sep>/src/components/Quiz.js
import React, { useContext, Component } from "react";
// import config from "../config";
class Quiz extends Component {
static defaultProps = {
error: null,
email: "",
setEmail: () => {},
};
// sendUserData(userData) {
// return fetch(`${config.API_ENDPOINT}/user_data`, {
// method: "POST",
// headers: {
// "content-type": "application/json",
// },
// body: JSON.stringify({ ...userData }),
// }).then(() => {
// this.props.history.push("/dashboard");
// });
// }
// add to context email
handleSubmit = (e) => {
e.preventDefault();
const {
email,
gender,
money,
height,
weight,
activity,
fruits,
sun,
vegan,
weightLoss,
weightGain,
buildMuscle,
fish,
pregnancy,
dairy,
bloodPressure,
gluten,
diabetes,
smoke,
arthritis,
osteoporosis,
sex,
digestion,
detox,
joint,
sleep,
focus,
memory,
drowsiness,
lowEnergy,
stress,
preworkout,
postworkout,
results,
intraworkout,
wrinkle,
hair,
hydration,
} = e.target;
const payload1 = {
email: email.value,
gender: gender.value,
money: money.value,
height: height.value,
weight: weight.value,
activity: activity.value,
fruits: fruits.checked ? "true" : "false",
sun: sun.checked ? "true" : "false",
vegan: vegan.checked ? "true" : "false",
weightLoss: weightLoss.checked ? "true" : "false",
weightGain: weightGain.checked ? "true" : "false",
buildMuscle: buildMuscle.checked ? "true" : "false",
// fish we want true/false to be reversed*
fish: fish.checked ? "false" : "true",
pregnancy: pregnancy.checked ? "true" : "false",
dairy: dairy.checked ? "true" : "false",
bloodPressure: bloodPressure.checked ? "true" : "false",
gluten: gluten.checked ? "true" : "false",
diabetes: diabetes.checked ? "true" : "false",
smoke: smoke.checked ? "true" : "false",
arthritis: arthritis.checked ? "true" : "false",
osteoporosis: osteoporosis.checked ? "true" : "false",
sex: sex.checked ? "true" : "false",
digestion: digestion.checked ? "true" : "false",
detox: detox.checked ? "true" : "false",
joint: joint.checked ? "true" : "false",
sleep: sleep.checked ? "true" : "false",
focus: focus.checked ? "true" : "false",
memory: memory.checked ? "true" : "false",
drowsiness: drowsiness.checked ? "true" : "false",
lowEnergy: lowEnergy.checked ? "true" : "false",
stress: stress.checked ? "true" : "false",
preworkout: preworkout.checked ? "true" : "false",
postworkout: postworkout.checked ? "true" : "false",
results: results.checked ? "true" : "false",
intraworkout: intraworkout.checked ? "true" : "false",
wrinkle: wrinkle.checked ? "true" : "false",
hair: hair.checked ? "true" : "false",
hydration: hydration.checked ? "true" : "false",
};
// console.log(email.value);
this.context.setEmail(email.value);
this.sendUserData(payload1);
};
render() {
return (
<div className="quiz-container">
<h1>Supplement Personalization Quiz</h1>
<form className="quiz" onSubmit={this.handleSubmit}>
<label>
Check all of the following that apply for each of the following
categories:
</label>
<h2>General Health</h2>
<br />
<input type="checkbox" name="fruits" />
<label>
Do you ever not eat the recommended daily number of fruits and
vegetables?
</label>
<br />
<input type="checkbox" name="sun" />
<label>Do you get 15 minutes of exposure to sunlight daily?</label>
<br />
<input type="checkbox" name="vegan" />
<label>Are you vegan?</label>
<br />
<input type="checkbox" name="weightLoss" />
<label>Do you have trouble losing weight?</label>
<br />
<input type="checkbox" name="weightGain" />
<label>Do you having trouble gaining weight?</label>
<br />
<input type="checkbox" name="buildMuscle" />
<label>Do you have trouble building muscle?</label>
<br />
<input type="checkbox" name="fish" />
<label>Do you regularly eat fish?</label>
<br />
<input type="checkbox" name="pregnancy" />
<label>Are you pregnant?</label>
<br />
<input type="checkbox" name="dairy" />
<label>Do you consume dairy products daily?</label>
<br />
<h2>Specific Ailments</h2>
<input type="checkbox" name="bloodPressure" />
<label>Do you have high blood pressure?</label>
<br />
<input type="checkbox" name="gluten" />
<label>Do you have a gluten allergy?</label>
<br />
<input type="checkbox" name="diabetes" />
<label>Do you have diabetes (Type I or II?)</label>
<br />
<input type="checkbox" name="smoke" />
<label>Do you smoke?</label>
<br />
<input type="checkbox" name="arthritis" />
<label>Do you suffer from arthritis?</label>
<br />
<input type="checkbox" name="osteoporosis" />
<label>Do you have osteoporosis?</label>
<br />
<input type="checkbox" name="sex" />
<label>Are you interested in improving your sexual health?</label>
<br />
<input type="checkbox" name="digestion" />
<label>Do you have trouble with digestion?</label>
<br />
<input type="checkbox" name="detox" />
<label>
Are you interested in detoxifying or cleansing your digestive tract?
</label>
<br />
<input type="checkbox" name="joint" />
<label>Do you have joint pain?</label>
<br />
<h2>Mental Health & Cognition</h2>
<input type="checkbox" name="sleep" />
<label>Do you have trouble sleeping?</label>
<br />
<input type="checkbox" name="focus" />
<label>Do you find yourself getting distracted easily?</label>
<br />
<input type="checkbox" name="memory" />
<label>Would you like to improve your memory?</label>
<br />
<input type="checkbox" name="drowsiness" />
<label>Do you get drowsy during the day?</label>
<br />
<input type="checkbox" name="lowEnergy" />
<label>Do you experience low energy levels?</label>
<br />
<input type="checkbox" name="stress" />
<label>Do you have trouble relaxing or controlling stress?</label>
<br />
<h2>Workout Related</h2>
<input type="checkbox" name="preworkout" />
<label>Do you lack motivation to work out?</label>
<br />
<input type="checkbox" name="postworkout" />
<label>Do you have a hard time recovering from your workouts?</label>
<br />
<input type="checkbox" name="results" />
<label>
Do you feel like you are not seeing results fast enough?
</label>
<br />
<input type="checkbox" name="intraworkout" />
<label>Do you lack energy during workouts?</label>
<br />
<h2>Skin & Beauty</h2>
<input type="checkbox" name="wrinkle" />
<label>Would you like to reduce wrinkles?</label>
<br />
<input type="checkbox" name="hair" />
<label>Do you experience more than typical hair loss?</label>
<br />
<input type="checkbox" name="hydration" />
<label>Does your skin and/or hair lack hydration?</label>
<br />
<br />
<label>Select your gender</label>
<select name="gender">
<option value="male" name="gender">
Male
</option>
<option value="female" name="gender">
Female
</option>
</select>
<label>
How much money are you willing to dedicate to purchasing
supplements?
</label>
<select name="money">
<option value="51" name="money">
$50
</option>
<option value="100" name="money">
$100
</option>
<option value="200" name="money">
$200
</option>
<option value="201" name="money">
Whatever is needed to optimize my results
</option>
</select>
<br />
<br />
<label>How much do you weigh?</label>
<input type="number" name="weight" required />
<br />
<br />
<label>How tall are you?</label>
<input type="number" name="height" required />
<br />
<br />
<label>How active are you on a regular basis?</label>
<select name="activity">
<option value="false" name="activity">
Not active (Sedentary)
</option>
<option value="false" name="activity">
Some activity (working out 1-2 times a week)
</option>
<option value="true" name="activity">
Moderate activity (working out 2-3 times a week)
</option>
<option value="true" name="activity">
High activity (working out 4+ times a week)
</option>
</select>
<br />
<label>Enter Email*:</label>
<input type="email" name="email" required />
<p>Fields with an * are required</p>
<button type="submit">Submit Quiz</button>
</form>
</div>
);
}
}
export default Quiz;
<file_sep>/src/components/LandingPage.js
import React, { useContext, Component } from "react";
import { Link } from "react-router-dom";
import Context from "../Context";
import './styles/LandingPage.scss';
class LandingPage extends Component {
static contextType = Context;
handleSetEmail = (ev) => {
ev.preventDefault();
const { email } = ev.target;
console.log(email.value);
this.context.handleSetEmail(email.value);
};
render() {
const { email } = this.context;
return (
<div className="landing-page">
<h1 className="title">SuppBuddy</h1>
<h3 className="tagline">
People who supplement with a personalized stack realize their goals
85% faster.
</h3>
<img
src="https://www.vitafoodsinsights.com/sites/vitafoodsinsights.com/files/styles/article_featured_wide/public/07_18INS_WhySupplement_1540x800_v2-1_6.jpg?itok=AjqV0Mqa"
alt="hero"
/>
<h3 className="call-to-action">
Take our quiz to learn about YOUR body's specific supplemental needs!
</h3>
<img
id="hero"
src="http://blogs.uww.edu/fitfabandfine/files/2017/02/run.jpg"
alt="hero"
/>
<p>
Through machine learning and specific nutrition algorithms, we have
discovered the ideal formula for finding individuals' prime supplement
stack to add on to your life routine. Beyond sport performance, anyone
can benenfit from adding a stack to their diet.{" "}
</p>
<Link to="/quiz">Take the Quiz</Link>
<form onSubmit={this.handleSetEmail}>
<input type="email" name="email"></input>
<button className="email-btn" type="submit">
Submit
</button>
</form>
</div>
);
}
}
export default LandingPage;
<file_sep>/src/App.js
import React, { useState, useContext, Component } from "react";
// import { Router } from "@reach/router";
import ReactDOM from "react-dom";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
// import SignIn from "./components/SignIn";
// import SignUp from "./components/SignUp";
import Quiz from "./components/Quiz";
import LandingPage from "./components/LandingPage";
import Context from "./Context";
// import PasswordReset from "./components/PasswordReset";
import Dashboard from "./components/Dashboard";
class App extends Component {
state = {
email: "",
};
handleSetEmail = (email) => {
this.setState({
email: email,
});
};
render() {
return (
<Context.Provider
value={{
email: this.state.email,
handleSetEmail: this.handleSetEmail,
}}
>
<Router>
<Switch>
<Route
exact
path={"/"}
render={(routeProps) => {
return (
<LandingPage
handleSetEmail={this.handleSetEmail}
{...routeProps}
/>
);
}}
/>
{/* <Route path={"/signUp"} component={SignUp} />
<Route path={"/signIn"} component={SignIn} />
<Route path={"/passwordReset"} component={PasswordReset} />
<Route
path={"/quiz"}
render={(routeProps) => {
return (
<Quiz handleSetEmail={this.handleSetEmail} {...routeProps} />
);
}}
/> */}
<Route path={"/dashboard"} component={Dashboard} />
</Switch>
</Router>
</Context.Provider>
);
}
}
export default App;
| ce2191e8824918d33f5494e191263497b78c7c39 | [
"JavaScript"
] | 5 | JavaScript | bleek42/supp-buddy-frontend | 2156896bd488a8eacfccbd5992bcbf863262fd81 | 5ed8d56166fa22d08a1b24fb976d14307c314023 |
refs/heads/master | <file_sep>import test from "ava";
import { GetBool } from "./GetBool";
test("GetBool happy path", t => {
process.env.TEST_STRING = "Hi";
t.is(GetBool("TEST_STRING"), true);
});
test("GetBool on int", t => {
// @ts-ignore
process.env.TEST_STRING = 123;
t.is(GetBool("TEST_STRING"), true);
});
test("GetBool with missing env", t => {
delete process.env.TEST_STRING;
t.is(GetBool("TEST_STRING"), false);
});
test("GetBool === false", t => {
process.env.TEST_STRING = "false"
t.is(GetBool("TEST_STRING"), false);
});
test("GetBool === true", t => {
process.env.TEST_STRING = "true"
t.is(GetBool("TEST_STRING"), true);
});
<file_sep>export const GetBool = (key: string): boolean => {
if (!process.env[key]) {
return false;
}
if (process.env[key] === "true") {
return true
}
if (process.env[key] === "false") {
return false
}
return Boolean(process.env[key]);
};
<file_sep>import test from "ava";
import { GetString } from "./GetString";
test("GetString happy path", t => {
process.env.TEST_STRING = "Hi";
t.is(GetString("TEST_STRING"), "Hi");
// @ts-ignore
process.env.TEST_STRING = 123;
t.is(GetString("TEST_STRING"), "123");
});
test("GetString with missing env", t => {
delete process.env.TEST_STRING;
t.is(GetString("TEST_STRING"), "");
});
<file_sep>export const GetString = (key: string): string => {
if (!process.env[key]) {
return "";
}
return String(process.env[key]);
};
<file_sep># Mamushi
[](https://cloud.drone.io/fallion/mamushi)
[](https://app.codacy.com/app/simon_26/mamushi?utm_source=github.com&utm_medium=referral&utm_content=Fallion/mamushi&utm_campaign=Badge_Grade_Dashboard)
[](https://codecov.io/gh/Fallion/mamushi)
Port of [https://github.com/spf13/viper](https://github.com/spf13/viper). More info coming soon.
<file_sep>export { GetBool } from "./GetBool";
export { GetString } from "./GetString";
| 5bca3706204ff6015f166d7162e8bbd945bc6efa | [
"Markdown",
"TypeScript"
] | 6 | TypeScript | fallion/mamushi | 78a618c515e27b224b45d9c39fbf96bb2c8ab824 | 45d2549c4b17a4dc220cd837b88347a450122358 |
refs/heads/master | <file_sep># miniloadinfo
信息录入小程序
<file_sep>// pages/common/common.js
const app = getApp();
Page({
/**
* 页面的初始数据
*/
data: {
isAgree: false,
name: "",
requestAmount: "",
phoneNum: "",
validateCode: "",
timer: "",
countDownNum: "30",
flag: true,
word: "获取验证码",
topimg: "",
loantype: "",
imageUrls: {
online: "../../img/0102online.png",
credit: "../../img/0103credit.png",
house: "../../img/0104house.png",
company: "../../img/0105company.png"
},
grids: [{
img: "../../img/loaninfo/11.png",
line1:"高额度",
line2:"一次授信",
line3:"终身使用"
},
{
img: "../../img/loaninfo/12.png",
line1: "低压力",
line2: "利息负担小",
line3: "资金利用大"
},
{
img: "../../img/loaninfo/13.png",
line1: "产品多样",
line2: "百家机构合作",
line3: "多种方案选择"
},
{
img: "../../img/loaninfo/21.png",
line1: "方便快捷",
line2: "三步申请 条件宽松",
line3: "审核迅速 闪电放款"
},
{
img: "../../img/loaninfo/22.png",
line1: "服务至上",
line2: "品质服务",
line3: "专业一对一无隐形费用"
},
{
img: "../../img/loaninfo/23.png",
line1: "诚信合规",
line2: "长久品质",
line3: "合作均为正规机构"
}
]
},
bindNameInput: function(e) {
this.setData({
name: e.detail.value
})
},
bindMoneyInput: function(e) {
this.setData({
requestAmount: e.detail.value
})
},
bindPhoneInput: function(e) {
this.setData({
phoneNum: e.detail.value
})
},
bindCodeInput: function(e) {
this.setData({
validateCode: e.detail.value
})
},
bindAgreeChange: function(e) {
this.setData({
isAgree: !!e.detail.value.length
});
},
bindAgreeClick: function(e) {
},
bindGetValidateCode: function() {
if (!this.data.flag) return;
if ("" === this.data.name || "" === this.data.requestAmount || "" === this.data.phoneNum) wx.showToast({
title: "请完善信息",
icon: "none",
duration: 2e3
})
else if (/^1(3|4|5|6|7|8|9)\d{9}$/.test(this.data.phoneNum)) {
var t = this;
t.setData({
flag: false,
word: t.data.countDownNum + "s"
})
this.sendValidateCode(t, this.data.phoneNum)
} else wx.showToast({
title: "请填写正确的手机号码",
icon: "none",
duration: 2e3
});
},
sendValidateCode: function(t, phoneNumber) {
wx.request({
url: app.globalData.url + "/Home/SendMessage",
data: {
phone: phoneNumber
},
header: {
'content-type': 'application/x-www-form-urlencoded' // 默认值
},
method: "get",
success: function(e) {
console.log(e.data)
if (true === e.data.isSuccess) {
console.log(e.data.isSuccess)
wx.showToast({
title: e.data.message,
icon: "success",
duration: 2e3
})
} else {
wx.showToast({
title: e.data.message,
icon: "none",
duration: 2e3
})
}
t.countDown()
},
fail: function(t) {
wx.showModal({
title: "提示",
content: t.data.message,
success: function(t) {
t.confirm ? console.log("用户点击确定") : t.cancel && console.log("用户点击取消");
}
});
}
});
},
countDown: function() {
var t = this
var e = t.data.countDownNum;
t.setData({
timer: setInterval(function() {
e--, t.setData({
word: e + "s"
}), e <= 0 && (t.setData({
word: "获取验证码",
flag: true
}), clearInterval(t.data.timer));
}, 1e3)
});
},
bindSubmit: function() {
if ("" === this.data.name || this.data.index1 < 0 || "" === this.data.phoneNum || this.data.validateCode === "") {
wx.showToast({
title: "请完善信息",
icon: "none",
duration: 2e3
})
} else if (!this.data.isAgree) {
wx.showToast({
title: "同意《相关条款》后才能提交结果",
icon: "none",
duration: 2e3
})
} else {
var t = app.globalData.sets
t.Name = this.data.name
t.PhoneNumber = this.data.phoneNum
t.ValidateCode = this.data.validateCode
t.RequestAmount = this.data.requestAmount
t.LoanType = this.data.loantype
wx.request({
url: app.globalData.url + '/Home/AddClientInfo',
data: t,
method: "post",
success: function(e) {
if (true === e.data.isSuccess) {
wx.navigateTo({
url: '../result/result'
})
} else {
wx.showToast({
title: e.data.message,
icon: "none",
duration: 2e3
})
}
},
fail: function(t) {
wx.showModal({
title: "提示",
content: t.data.message,
success: function(t) {
t.confirm ? console.log("用户点击确定") : t.cancel && console.log("用户点击取消");
}
});
}
});
}
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function() {
this.setData({
isAgree: app.globalData.isAgree
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
this.setData({
loantype: options.loantype,
topimg: this.data.imageUrls[options.loantype],
})
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function() {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function() {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function() {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function() {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function() {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function() {
}
})<file_sep>//app.js
App({
globalData: {
isAgree: false,
sets:{},
screenWidth: 750,
screenHeight: wx.getSystemInfoSync().screenHeight / wx.getSystemInfoSync().screenWidth * 750,
url: "https://www.gxph.org.cn",
//url: "Http://10.1.3.222:8096",
"navigationBarBackgroundColor": "#DE2910",
"navigationBarTextStyle": "white"
}
}) | 73270933d240ef5664634cdc6754bb98af0daa7b | [
"Markdown",
"JavaScript"
] | 3 | Markdown | orglangxiaoh/miniloadinfo | fa58686f38adebdd90a6655e184b4be151ae8c7d | 138a3745f6c3a6685e318ae4a974aaa2241656cb |
refs/heads/master | <file_sep>import cv2
def umbralize(frame,threshold = 127):
ret, frame_umbralized = cv2.threshold(frame, threshold, 255, cv2.THRESH_BINARY)
return frame_umbralized
def erode_and_dilate(frame,structuringElementSize = 3):
erosion_type = cv2.MORPH_RECT
element = cv2.getStructuringElement(erosion_type, (structuringElementSize,structuringElementSize))
frame = cv2.erode(frame,element,iterations=2)
frame = cv2.dilate(frame, element, iterations=1)
return frame
def dilate_and_erode(frame,structuringElementSize = 3):
erosion_type = cv2.MORPH_RECT
element = cv2.getStructuringElement(erosion_type, (structuringElementSize,structuringElementSize))
frame = cv2.dilate(frame, element, iterations=1)
frame = cv2.erode(frame, element, iterations=1)
# frame = cv2.dilate(frame, element, iterations=1)
return frame
class BgSubstractor:
def __init__(self,bgSubstractor="MOG2"):
if bgSubstractor == "MOG2":
self.bgSubs = cv2.createBackgroundSubtractorMOG2()
elif bgSubstractor == "KNN":
self.bgSubs = cv2.createBackgroundSubtractorKNN()
else:
raise Exception("No correct Backgroung Substractor selected")
def __call__(self,frame):
return self.bgSubs.apply(frame)
<file_sep>import numpy as np
import cv2 as cv
import os
from scipy.signal import find_peaks
from scipy import stats
from matplotlib import pyplot as plt
class DenseOpFlow:
def __init__(self,frame):
self.prvs_img = cv.cvtColor(frame,cv.COLOR_BGR2GRAY)
self.next_img = None
self.hsv = np.zeros_like(frame)
self.ones = np.ones([frame.shape[0],frame.shape[1]])
self.aux = np.zeros_like(self.ones)
self.hsv[...,1] = 255
self.thr = 5 # 50
self.th_bin = 10
def __call__(self, frame, imageName):
self.next_img = cv.cvtColor(frame,cv.COLOR_BGR2GRAY)
flow = cv.calcOpticalFlowFarneback(self.prvs_img,self.next_img, None, 0.5, 3, 20, 5, 7, 1.5, 0)
mag, ang = cv.cartToPolar(flow[...,0], flow[...,1])
# El color de la imagen se establece en funcion del angulo de movimiento de cada pixel
self.hsv[..., 0] = cv.normalize(ang * 180 / np.pi / 2.0, None, 0, 255, cv.NORM_MINMAX)
# print(self.hsv)
# La intensidad de la imagen se establece en funcion de la magnitud del movimiento de cada pixel
self.hsv[..., 2] = cv.normalize(mag, None, 0, 255, cv.NORM_MINMAX)
# Se filtra la imagen
kernel = np.ones((5, 5), np.float32) / 25
self.hsv[...,2] = cv.filter2D(self.hsv[...,2], -1, kernel)
# Se muestra la imagen filtrada
bgr = cv.cvtColor(self.hsv, cv.COLOR_HSV2BGR)
cv.imshow('Ang + Mag - Filtrados', bgr)
cv.imwrite("./Images/" + imageName, bgr)
# Eliminar los pixels que tengan como angulo el valor mas repetido en la imagen (fondo)
m = stats.mode(self.hsv[..., 0], axis=None)
thr = (np.max(self.hsv[..., 0]) - np.min(self.hsv[..., 0])) / 2
thr = 50
hist = cv.calcHist([self.hsv], [0], None, [255], [0, 255])
# plt.plot(hist, color='b')
# plt.xlim([0, 255])
# plt.show()
# zeros = hist[0]
# k = cv.waitKey() & 0xff
# Se calcula el angulo de desplazamiento del fondo
n_ang_fondo = np.max(hist)
# Se elimina el fondo del histograma
# hist[np.where(hist == ang_fondo)]
peaks, _ = find_peaks(hist.T[0],height=10000, distance = 20)
# print(peaks)
# if(peaks.shape[0] >= 2):
# dist = abs(peaks[1]-peaks[0])
# if dist < 255/2:
# thr = dist/2
# else:
# thr = (255 - dist)/2
#
# print("dist",dist)
# print("thr",thr)
self.aux[...] = abs(self.hsv[..., 0] - self.ones * m[0])
if m[0] < thr or m[0] > 255 - thr:
self.aux[self.aux > (255 - thr)] = 0
self.aux[...] -= self.ones * thr
self.aux[self.aux < 0] = 0
self.aux[self.aux > self.th_bin] = 255
# bckgF = cv.bitwise_and(self.hsv, self.hsv, mask=self.aux.astype('uint8'))
# hist = cv.calcHist([bckgF], [0], None, [255], [0, 255])
# hist[0] = n_ang_fondo
# plt.plot(hist, color='b')
# plt.xlim([0, 255])
# bckgF = cv.cvtColor(bckgF, cv.COLOR_HSV2BGR)
# cv.imshow('bckgF',bckgF)
# plt.show()
# Se muestra la imagen eliminando angulos
##cv.imshow('aux', self.aux)
# k = cv.waitKey() & 0xff
# for i in range(0,self.hsv.shape[0]):
# for j in range(0, self.hsv.shape[1]):
# if (self.hsv[i, j, 0] >= (m[0] - thr)) and (self.hsv[i, j, 0] <= (m[0] + thr)):
# self.hsv[i, j, 2] = 0
# Se transforma la imagen a formato BGR
bgr = cv.cvtColor(self.hsv, cv.COLOR_HSV2BGR)
# Se convierte a escala de grises
gray = cv.cvtColor(bgr, cv.COLOR_BGR2GRAY)
# Se binariza la imagen
ret, th = cv.threshold(gray, 10, 255, cv.THRESH_BINARY)
# th = cv.adaptiveThreshold(gray, 255, cv.ADAPTIVE_THRESH_GAUSSIAN_C, cv.THRESH_BINARY, 11, 2)
res = cv.bitwise_and(self.next_img, self.next_img, mask=self.aux.astype('uint8'))
# cv.imshow('img', self.next_img)
# cv.imshow('gray', gray)
# cv.imshow('frame2', bgr)
# cv.imshow('resultado', res)
# k = cv.waitKey(30) & 0xff
# print(self.hsv[:,:,0])
# print(self.hsv[:,:,2])
# if k == 27:
# break
self.prvs_img = self.next_img
return self.aux<file_sep>import numpy as np
import cv2
K = 300
maxCorners = max([K, 1]);
qualityLevel = 0.1
minDistance = 25
blockSize = 3
gradientSize = 3
useHarrisDetector = False
k = 0.04
feature_params = dict( maxCorners = maxCorners,
qualityLevel = qualityLevel,
minDistance = minDistance,
blockSize = blockSize,
gradientSize=gradientSize,
useHarrisDetector=useHarrisDetector,
k=k)
# Parameters for lucas kanade optical flow
lk_params = dict( winSize = (15,15),
maxLevel = 2,
criteria = (cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 10, 0.03))
class HomographyFilter:
def __init__(self):
self.old_gray = None
def __call__(self,frame):
if self.old_gray is None:
print("oldGray is none")
self.old_gray = cv2.cvtColor(frame,cv2.COLOR_BGR2GRAY)
return self.old_gray
p0 = cv2.goodFeaturesToTrack(self.old_gray, mask=None, **feature_params)
frame_gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# calculate optical flow
p1, st, err = cv2.calcOpticalFlowPyrLK(self.old_gray, frame_gray, p0, None, **lk_params)
# Select good points
good_new = p1[st == 1]
good_old = p0[st == 1]
H, _ = cv2.findHomography(good_old, good_new, cv2.RANSAC)
# print(H)
height, width, channels = frame.shape
img_est = cv2.warpPerspective(self.old_gray, H, (width, height))
img = cv2.absdiff(frame_gray, img_est)
self.old_gray = frame_gray.copy()
# self.p0 = good_new.reshape(-1, 1, 2)
return img
<file_sep>import cv2 as cv
import cv2
import os
import numpy as np
# params for ShiTomasi corner detection
feature_params = dict( maxCorners = 100,
qualityLevel = 0.3,
minDistance = 7,
blockSize = 7 )
# Parameters for lucas kanade optical flow
lk_params = dict( winSize = (15,15),
maxLevel = 2,
criteria = (cv2.TERM_CRITERIA_EPS | cv2.TERM_CRITERIA_COUNT, 10, 0.03))
# Create some random colors
color = np.random.randint(0,255,(100,3))
backSub = cv2.createBackgroundSubtractorMOG2()
# backSub = cv2.createBackgroundSubtractorKNN()
PATH = "../DAVIS/JPEGImages/480p/kite-walk/"
elements=sorted(os.listdir(PATH))
old_frame = cv2.imread(PATH + elements[0])
filter_strenght = 30
for i in range(len(elements)):
frame = cv2.imread(PATH + elements[i])
f = old_frame - frame
f_ = (f < 120).astype(np.uint8)
f *= f_
frame_gray=cv.cvtColor(f, cv.COLOR_BGR2GRAY)
if i == 0:
p0 = cv.goodFeaturesToTrack(frame_gray, mask=None, **feature_params)
old_gray = frame_gray.copy()
print(f)
dst = cv2.fastNlMeansDenoisingColored(f, None, filter_strenght, filter_strenght, 7, 21)
cv2.imshow('sub', dst)
p1, st, err = cv.calcOpticalFlowPyrLK(old_gray, frame_gray, p0, None, **lk_params)
good_new = p1[st == 1]
good_old = p0[st == 1]
# draw the tracks
for i, (new, old) in enumerate(zip(good_new, good_old)):
a, b = new.ravel()
c, d = old.ravel()
mask = cv.line(mask, (a, b), (c, d), color[i].tolist(), 2)
frame = cv.circle(frame, (a, b), 5, color[i].tolist(), -1)
img = cv.add(frame, mask)
old_gray = frame_gray.copy()
p0 = good_new.reshape(-1, 1, 2)
keyboard = cv2.waitKey(2)
old_frame=frame
<file_sep>from HomographyFilter import *
from Carlos import *
from tools import *
import cv2
import os
# filename = "train"
BASE_PATH = "./DAVIS"
all_filenames = os.listdir(BASE_PATH + "/JPEGImages/480p/")
all_filenames = sorted(all_filenames)
f=open("resultados3.txt","w")
TotalPrecision = []
TotalRecall = []
TotalF = []
filenumber = 0
for k, filename in enumerate(all_filenames):
PATH = BASE_PATH + "/JPEGImages/480p/" + filename + "/"
ANNOTATIONS_PATH = BASE_PATH + "/Annotations/480p/" + filename + "/"
elements = os.listdir(PATH)
annotations_elements = os.listdir(ANNOTATIONS_PATH)
frame = cv2.imread(PATH+elements[0])
# sort frames
elements = sorted(elements)
annotations_elements = sorted(annotations_elements)
filter1 = HomographyFilter()
filter2 = BgSubstractor()
filter3 = DenseOpFlow(frame)
n_img = 0
precision = []
recall = []
F = []
for i, names in enumerate(elements):
frame = cv2.imread(PATH+names)
annotation = cv2.imread(ANNOTATIONS_PATH + annotations_elements[n_img], 0)
n_img += 1
# resultMask = filter1(frame)
# resultMask = umbralize(resultMask,threshold=30)
# resultMask = dilate_and_erode(resultMask,5)
#
# # cv2.imshow('frame1', resultMask)
# bgSubstracted=filter2(frame)
# bgSubstracted = erode_and_dilate(bgSubstracted, 3)
# # cv2.imshow('frame2', bgSubstracted)
#
# finalMask = bgSubstracted + resultMask
# finalMask= erode_and_dilate(finalMask,3)
#
# # cv2.imshow('frame3', finalMask)
resultMask_Carl = filter3(frame)
res = cv2.bitwise_and(frame, frame, mask=resultMask_Carl.astype('uint8'))
# cv2.imshow('image', frame)
cv2.imshow('mask', resultMask_Carl)
# cv2.imshow('result', res)
cv2.imshow('annotation', annotation)
comp = cv2.bitwise_and(resultMask_Carl, resultMask_Carl, mask=annotation.astype('uint8'))
cv2.imshow('validation', comp)
# print(comp)
# hist = cv.calcHist(annotation, [0], None, [256], [0, 256])
# plt.plot(hist, color='b')
# plt.xlim([0, 256])
# plt.show()
tp = len(comp[comp > 0])
TotalPositive = len(resultMask_Carl[resultMask_Carl > 0])
GroundTruthPositives = len(annotation[annotation > 0])
if TotalPositive != 0:
precision.append(1.0*tp/TotalPositive)
else:
precision.append(0)
if GroundTruthPositives != 0:
recall.append(1.0 * tp / GroundTruthPositives)
else:
recall.append(1.0)
# print('Verdaderos Positivos', tp)
# print('Verdaderos Positivos + Falsos Positivos', TotalPositive)
# print('Verdaderos Positivos + Falsos Negativos', GroundTruthPositives)
# print('Precision', precision[n_img-1])
# print('Recall', recall[n_img - 1])
k = cv2.waitKey(1) & 0xff
if k == 27:
break
# print('Moda de la precision', stats.mode(precision, axis=None))
print(filename)
print('Media de la precision', np.mean(precision))
print('Media de la exhaustividad', np.mean(recall))
print("\n")
TotalPrecision.append(np.mean(precision))
TotalRecall.append(np.mean(recall))
TotalF.append(2*TotalRecall[filenumber]*TotalPrecision[filenumber]/(TotalRecall[filenumber]+TotalPrecision[filenumber]))
filenumber += 1
TotalF, all_filenames, TotalPrecision, TotalRecall = zip(*sorted(zip(TotalF, all_filenames, TotalPrecision, TotalRecall)))
filenumber = 0
for i in range(len(all_filenames)):
f.write(all_filenames[i])
f.write("\n")
f.write('Media de la precision: ')
f.write(str(TotalPrecision[i]))
f.write("\n")
f.write('Media de la exhaustividad: ')
f.write(str(TotalRecall[i]))
f.write("\n")
f.write('F: ')
f.write(str(TotalF[i]))
f.write("\n")
f.write("\n")
filenumber += 1
f.close()
<file_sep>from HomographyFilter import *
from Carlos import *
from KNN import *
from MOG1 import *
from MOG2 import *
from FrameComparison import *
from tools import *
import cv2
import os
# filename = "train"
BASE_PATH = "./DAVIS"
all_filenames = os.listdir(BASE_PATH + "/JPEGImages/480p/")
all_filenames = sorted(all_filenames)
resultsFilename = "resultDOF_1.txt"
resultsPath = "./Resultados/" + resultsFilename
respuesta = 'respuesta'
respuesta = raw_input("Quieres realizar la validacion? s/n: ")
if respuesta == 's' or respuesta == 'S':
if not os.path.isfile(resultsPath):
f = open(resultsPath, "w")
else:
print("Ya existe un archivo con el nombre ", resultsFilename)
while respuesta != 's' and respuesta != 'S' and respuesta != 'n' and respuesta != 'N' and respuesta != 'exit' and respuesta != 'EXIT' and respuesta!= 'none' and respuesta!='NONE':
print("Desea sobreescribirlo?: s/n")
respuesta = raw_input()
if respuesta == 'exit' or respuesta == 'EXIT':
exit()
elif respuesta == 's' or respuesta == 'S':
f = open(resultsPath, "w")
elif respuesta == 'n' or respuesta == 'N':
respuesta = raw_input("Escriba el nombre del nuevo archivo sin la extension: ")
if respuesta == 'exit' or respuesta == 'EXIT':
exit()
elif respuesta == 'none' or respuesta == 'NONE':
resultsFilename = respuesta
else:
resultsFilename = respuesta
resultsPath = "./Resultados/" + resultsFilename
f = open(resultsPath, "w")
else:
print('Responda s/n/exit:')
else:
resultsFilename = 'none'
all_filenames = ["bear"]
TotalPrecision = []
TotalRecall = []
TotalF = []
filenumber = 0
for k, filename in enumerate(all_filenames):
PATH = BASE_PATH + "/JPEGImages/480p/" + filename + "/"
ANNOTATIONS_PATH = BASE_PATH + "/Annotations/480p/" + filename + "/"
elements = os.listdir(PATH)
annotations_elements = os.listdir(ANNOTATIONS_PATH)
frame = cv2.imread(PATH+elements[0])
# sort frames
elements = sorted(elements)
annotations_elements = sorted(annotations_elements)
filter1 = HomographyFilter()
filter2 = BgSubstractor()
filterDOF = DenseOpFlow(frame)
filterKNN = KNN()
filterMOG1 = MOG1()
filterMOG2 = MOG2()
filterFrameComparison = FrameComparison()
n_img = 0
precision = []
recall = []
F = []
for i, names in enumerate(elements):
frame = cv2.imread(PATH+names)
annotation = cv2.imread(ANNOTATIONS_PATH + annotations_elements[n_img], 0)
n_img += 1
#----- HOMOGRAPHY FLITER -----#
# resultMask = filter1(frame)
# resultMask = umbralize(resultMask,threshold=30)
# resultMask = dilate_and_erode(resultMask,5)
#
# # cv2.imshow('frame1', resultMask)
# bgSubstracted=filter2(frame)
# bgSubstracted = erode_and_dilate(bgSubstracted, 3)
# # cv2.imshow('frame2', bgSubstracted)
#
# finalMask = bgSubstracted + resultMask
# finalMask= erode_and_dilate(finalMask,3)
# cv2.imshow('frame3', finalMask)
#----- DENSE OPTICAL FLOW -----#
resultMask_Carl = filterDOF(frame, filename + "_" + names)
res = cv2.bitwise_and(frame, frame, mask=resultMask_Carl.astype('uint8'))
cv2.imshow('image', frame)
cv2.imshow('mask', resultMask_Carl)
cv2.imshow('result', res)
cv2.imshow('annotation', annotation)
cv2.imwrite("./Mascaras/" + filename + "_" + names, resultMask_Carl)
cv2.imwrite("./MaskResults/" + filename + "_" + names, res)
#----- KNN -----#
# resultKNN = filterKNN(frame)
#
# res = cv2.bitwise_and(frame, frame, mask=resultKNN.astype('uint8'))
#
# cv2.imshow('image', frame)
# cv2.imshow('mask', resultKNN)
# cv2.imshow('result', res)
# cv2.imshow('annotation', annotation)
# ----- MOG1 -----#
# resultMOG1 = filterMOG1(frame)
#
# res = cv2.bitwise_and(frame, frame, mask=resultMOG1.astype('uint8'))
#
# cv2.imshow('image', frame)
# cv2.imshow('mask', resultMOG1)
# cv2.imshow('result', res)
# cv2.imshow('annotation', annotation)
# ----- MOG2 -----#
# resultMOG2 = filterMOG2(frame)
#
# res = cv2.bitwise_and(frame, frame, mask=resultMOG2.astype('uint8'))
#
# cv2.imshow('image', frame)
# cv2.imshow('mask', resultMOG2)
# cv2.imshow('result', res)
# cv2.imshow('annotation', annotation)
# ----- FrameComparison -----#
# resultFrameComparison = filterFrameComparison(frame)
#
# res = cv2.bitwise_and(frame, frame, mask=resultFrameComparison.astype('uint8'))
#
# cv2.imshow('image', frame)
# cv2.imshow('mask', resultFrameComparison)
# cv2.imshow('result', res)
# cv2.imshow('annotation', annotation)
# Calculate validation parameters
resultForValidation = resultMask_Carl
comp = cv2.bitwise_and(resultForValidation, resultForValidation, mask=annotation.astype('uint8'))
tp = len(comp[comp > 0])
TotalPositive = len(resultForValidation[resultForValidation > 0])
GroundTruthPositives = len(annotation[annotation > 0])
if TotalPositive != 0:
precision.append(1.0*tp/TotalPositive)
else:
precision.append(0)
if GroundTruthPositives != 0:
recall.append(1.0 * tp / GroundTruthPositives)
else:
recall.append(1.0)
# print('Verdaderos Positivos', tp)
# print('Verdaderos Positivos + Falsos Positivos', TotalPositive)
# print('Verdaderos Positivos + Falsos Negativos', GroundTruthPositives)
# print('Precision', precision[n_img-1])
# print('Recall', recall[n_img - 1])
k = cv2.waitKey(1) & 0xff
if k == 27:
break
# Calculate Validation Parameters for the Video
TotalPrecision.append(np.mean(precision))
TotalRecall.append(np.mean(recall))
TotalF.append(2*TotalRecall[filenumber]*TotalPrecision[filenumber]/(TotalRecall[filenumber]+TotalPrecision[filenumber]))
# print('Moda de la precision', stats.mode(precision, axis=None))
print(filename)
print('Media de la precision', TotalPrecision[filenumber])
print('Media de la exhaustividad', TotalRecall[filenumber])
print('F', TotalF[filenumber])
print("\n")
filenumber += 1
if resultsFilename != 'none' and resultsFilename != 'NONE':
TotalF, all_filenames, TotalPrecision, TotalRecall = zip(*sorted(zip(TotalF, all_filenames, TotalPrecision, TotalRecall)))
filenumber = 0
for i in range(len(all_filenames)):
f.write(all_filenames[i])
f.write("\n")
f.write('Media de la precision: ')
f.write(str(TotalPrecision[i]))
f.write("\n")
f.write('Media de la exhaustividad: ')
f.write(str(TotalRecall[i]))
f.write("\n")
f.write('F: ')
f.write(str(TotalF[i]))
f.write("\n")
f.write("\n")
filenumber += 1
f.close()
<file_sep>import numpy as np
import cv2
class FrameComparison:
def __init__(self):
self.prev_gray = None
def __call__(self, frame):
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) # Convertir a escala de grises
gray = cv2.GaussianBlur(gray, (5, 5), 0) # Convertir a escala de grises
if self.prev_gray is None:
self.prev_gray = gray
difference = cv2.absdiff(self.prev_gray, gray) # Resta absoluta
_, thres = cv2.threshold(difference, 25, 255, cv2.THRESH_BINARY) # Aplicar umbral
# thres2 = cv2.dilate(thres, None, iterations=2)
###
frame, contours, hierarchy = cv2.findContours(thres, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE) # Buscar contornos
for c in contours:
# Eliminamos los contornos mas pequenos
if cv2.contourArea(c) < 500:
continue
# Obtenemos el bounds del contorno, el rectangulo mayor que engloba al contorno
(x, y, w, h) = cv2.boundingRect(c)
# Dibujamos el rectangulo del bounds
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
###
# cv2.imshow("Prev frame", thres)
# cv2.imshow("Frame", frame)
# cv2.imshow("Difference", difference)
self.prev_gray = gray
# Mostramos las capturas
# cv2.imshow('Camara', frame)
# cv2.imshow('Umbral', fgmask)
# cv2.imshow('Contornos', contornosimg)
# Sentencias para salir, pulsa 's' y sale
k = cv2.waitKey(1) & 0xff
return gray<file_sep>import cv2 as cv
import numpy as np
import os
from PreviousTest.utils import ComparativeBackgroundSubstract
# params for ShiTomasi corner detection
feature_params = dict( maxCorners = 100,
qualityLevel = 0.3,
minDistance = 7,
blockSize = 7 )
# Parameters for lucas kanade optical flow
lk_params = dict( winSize = (15,15),
maxLevel = 2,
criteria = (cv.TERM_CRITERIA_EPS | cv.TERM_CRITERIA_COUNT, 10, 0.03))
# Create some random colors
color = np.random.randint(0,255,(100,3))
# Take first frame and find corners in it
PATH = "../DAVIS/JPEGImages/480p/dog/"
elements = os.listdir(PATH)
# sort frames
elements=sorted(elements)
#backSub = cv.createBackgroundSubtractorMOG2()
backSub = cv.createBackgroundSubtractorKNN()
filter_strenght = 60
print(elements)
# ret, old_frame = cap.read()
old_frame=cv.imread(PATH+elements[0])
frame = cv.imread(PATH+elements[1])
old_gray=ComparativeBackgroundSubstract(old_frame,frame)
# old_gray = cv.cvtColor(dst, cv.COLOR_BGR2GRAY)
# old_gray = cv.cvtColor(old_frame, cv.COLOR_BGR2GRAY)
p0 = cv.goodFeaturesToTrack(old_gray, mask = None, **feature_params)
# Create a mask image for drawing purposes
mask = np.zeros_like(old_frame)
elements=elements[2:]
for names in elements:
# ret,frame = cap.read()
frame=cv.imread(PATH+names)
# frame_gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)
frame_gray = ComparativeBackgroundSubstract(old_frame, frame)
frame_ = frame_gray.copy()
# calculate optical flow
# p1, st, err = cv.calcOpticalFlowPyrLK(old_gray, frame_gray, p0, None, **lk_params)
#
# # Select good points
# good_new = p1[st==1]
# good_old = p0[st==1]
# # draw the tracks
# for i,(new,old) in enumerate(zip(good_new, good_old)):
# a,b = new.ravel()
# c,d = old.ravel()
# # mask = cv.line(mask, (a,b),(c,d), color[i].tolist(), 2)
# frame_ = cv.circle(frame_,(a,b),5,color[i].tolist(),-1)
# # img = cv.add(frame_,mask)
# canny = cv.Canny(frame_gray,3,5)
contours, hierarchy = cv.findContours(canny, cv.RETR_TREE, cv.CHAIN_APPROX_NONE)
area = []
goodContours = []
try:
for i in range(len(contours)):
area = area + [cv.contourArea(contours[i])]
# print(area[i])
if area[i] > 1000:
goodContours += [contours[i]]
im2 = cv.drawContours(frame_gray, goodContours, 5, (0, 255, 0), 3)
cv.imshow('im2', im2)
except :
a=1
# cv.imshow('canny', canny)
cv.imshow('frame',frame_)
# cv.imshow('frame2',fgMask)
k = cv.waitKey() & 0xff
if k == 27:
break
# Now update the previous frame and previous points
old_gray = frame_gray.copy()
old_frame =frame.copy()
# p0 = good_new.reshape(-1,1,2)
<file_sep>
import cv2 as cv
import numpy as np
import argparse
import os
# params for ShiTomasi corner detection
K = 300
maxCorners = max([K, 1]);
qualityLevel = 0.1
minDistance = 25
blockSize = 3
gradientSize = 3
useHarrisDetector = False
k = 0.04
feature_params = dict( maxCorners = maxCorners,
qualityLevel = qualityLevel,
minDistance = minDistance,
blockSize = blockSize,
gradientSize=gradientSize,
useHarrisDetector=useHarrisDetector,
k=k)
# Parameters for lucas kanade optical flow
lk_params = dict( winSize = (15,15),
maxLevel = 2,
criteria = (cv.TERM_CRITERIA_EPS | cv.TERM_CRITERIA_COUNT, 10, 0.03))
# Create some random colors
color = np.random.randint(0,255,(100,3))
# Take first frame and find corners in it
PATH = "../DAVIS/JPEGImages/480p/kite-walk/"
elements = os.listdir(PATH)
# sort frames
elements=sorted(elements)
# ret, old_frame = cap.read()
old_frame=cv.imread(PATH+elements[0])
old_gray = cv.cvtColor(old_frame, cv.COLOR_BGR2GRAY)
kernel = np.ones((3, 3), np.float32) / 9
# old_gray = cv.filter2D(old_gray, -1, kernel)
# Create a mask image for drawing purposes
# mask = np.zeros_like(old_frame)
bckrmv1 = cv.createBackgroundSubtractorKNN()
bckrmv2 = cv.createBackgroundSubtractorMOG2()
for i, names in enumerate(elements):
if i==0:
continue
# old_gray = cv.filter2D(old_gray, -1, kernel)
p0 = cv.goodFeaturesToTrack(old_gray, mask = None, **feature_params)
# ret,frame = cap.read()
frame=cv.imread(PATH+names)
frame_gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)
# calculate optical flow
p1, st, err = cv.calcOpticalFlowPyrLK(old_gray, frame_gray, p0, None, **lk_params)
# Select good points
good_new = p1[st==1]
good_old = p0[st==1]
H,_=cv.findHomography(good_old,good_new,cv.RANSAC)
# print(H)
height, width, channels = frame.shape
img_est = cv.warpPerspective(old_gray,H,(width,height))
img=cv.absdiff(frame_gray,img_est)
# H = cv::findHomography( corners_prev, corners, cv::RANSAC );
"""
# draw the tracks
for i,(new,old) in enumerate(zip(good_new, good_old)):
a,b = new.ravel()
c,d = old.ravel()
mask = cv.line(mask, (a,b),(c,d), color[i].tolist(), 2)
frame = cv.circle(frame,(a,b),5,color[i].tolist(),-1)
img = cv.add(frame,mask)
"""
kernel_a = np.ones((3,3))
kernel_b = np.ones((5,5))
# img = np.ones((img.shape))*(img > 10)
img = cv.dilate(img, kernel_a, iterations=2)
#
# cv.imshow('frameb', img)
#
img = cv.erode(img, kernel_b, iterations=2)
img = cv.dilate(img, kernel_a, iterations=2)
# kernel_a = np.ones((2, 2))
# img = cv.erode(img, kernel_a, iterations=1)
#
# cv.imshow('framee', img)
#
# kernel_a = np.array([[1,1,1],[1,1,1],[1,1,1]])
# img = cv.dilate(img, kernel_a, iterations=1)
cv.imshow('frame',img)
# img=cv.medianBlur(img,3)
# img = cv.edgePreservingFilter(img)*3
fgMask = bckrmv1.apply(frame)
fgMask = cv.bitwise_and(frame,frame,mask = fgMask)
img=np.ones((img.shape),dtype=np.uint8)*(img>20)
fgMask = cv.bitwise_and(fgMask,fgMask,mask = img )
#
# fgMask = cv.dilate(fgMask, kernel_a, iterations=2)
#
# fgMask = cv.erode(fgMask, kernel_a,iterations=4)
#
#
# fgMask=cv.medianBlur(fgMask,3)
# fgMask=cv.Canny(fgMask,400,600)
# fgMask=cv.borderInterpolate()
# fgMask = fgMask * (fgMask > 20)
cv.imshow('frame2',fgMask)
k = cv.waitKey() & 0xff
if k == 27:
break
# Now update the previous frame and previous points
old_gray = frame_gray.copy()
p0 = good_new.reshape(-1,1,2)
"""
cv::goodFeaturesToTrack( prev_img_,
corners_prev,
maxCorners,
qualityLevel,
minDistance,
cv::Mat(),
blockSize,
/*gradientSize,*/
useHarrisDetector,
k );
/// Local motion estimation (DOUBT: is it bi-directional?)
cv::calcOpticalFlowPyrLK(prev_img_, img, corners_prev, corners, status, err, cv::Size(15,15), 2, criteria);
/// Global motion estimation
H = cv::Mat::zeros( img.rows, img.cols, img.type() );
// Get the Perspective Transform Matrix i.e. H
H = cv::findHomography( corners_prev, corners, cv::RANSAC );
// Compute background substracted image
cv::warpPerspective(prev_img_, img_estimated, H, img_estimated.size());
cv::absdiff(img, img_estimated, E_img);
"""
<file_sep># OpticalFlowAproach
Run evaluate.py code for seeing Homography filter performance in DAVIS 2016 test<file_sep>import numpy as np
import cv2
class MOG1:
def __init__(self):
# Llamada al metodo
self.fgbg = cv2.bgsegm.createBackgroundSubtractorMOG(history=200, nmixtures=5, backgroundRatio=0.7, noiseSigma=0)
# Deshabilitamos OpenCL, si no hacemos esto no funciona
cv2.ocl.setUseOpenCL(False)
def __call__(self, frame):
# Aplicamos el algoritmo
fgmask = self.fgbg.apply(frame)
# Copiamos el umbral para detectar los contornos
contornosimg = fgmask.copy()
# Buscamos contorno en la imagen
frame, contornos, hierarchy = cv2.findContours(contornosimg, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# Recorremos todos los contornos encontrados
for c in contornos:
# Eliminamos los contornos mas pequenos
if cv2.contourArea(c) < 500:
continue
# Obtenemos el bounds del contorno, el rectangulo mayor que engloba al contorno
(x, y, w, h) = cv2.boundingRect(c)
# Dibujamos el rectangulo del bounds
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
# Mostramos las capturas
# cv2.imshow('Camara', frame)
# cv2.imshow('Umbral', fgmask)
# cv2.imshow('Contornos', contornosimg)
# Sentencias para salir, pulsa 's' y sale
k = cv2.waitKey(1) & 0xff
return fgmask<file_sep>import cv2,os
import numpy as np
# median = cv2.medianBlur(img,5)
def ComparativeBackgroundSubstract(frame0,frame1,threshold = 30):
# kernel = np.ones((3, 3), np.float32) / 9
# backSub = cv2.createBackgroundSubtractorMOG2()
mask0 = backSub.apply(frame0)
frame0 = cv2.cvtColor(frame0, cv2.COLOR_BGR2GRAY)
frame0 = cv2.bitwise_and(frame0, frame0, mask=mask0)
# frame0 = cv2.filter2D(frame0, -1, kernel)
# frame0 = cv2.medianBlur(frame0, 5)
mask1 = backSub.apply(frame1)
frame1 = cv2.cvtColor(frame1, cv2.COLOR_BGR2GRAY)
# frame1 = cv2.medianBlur(frame1, 5)
frame1 = cv2.bitwise_and(frame1,frame1, mask=mask1)
# frame1 = cv2.filter2D(frame1, -1, kernel)
subs = np.abs(frame0.astype(int)- frame1.astype(int)).astype(np.uint8)
subs = cv2.medianBlur(subs, 5)
# print(frame0[0][0],frame1[0][0],subs[0][0])
# subs = cv2.filter2D(subs, -1, kernel)
_, mask = cv2.threshold(subs, thresh=threshold, maxval=255, type=cv2.THRESH_BINARY)
result_im = cv2.bitwise_and(subs,mask)
return result_im
PATH = "../DAVIS/JPEGImages/480p/bus/"
elements = os.listdir(PATH)
# sort frames
elements=sorted(elements)
for k in range(len(elements)):
kernel = np.ones((9,9), np.float32) / 81
frame0 = cv2.imread(PATH+elements[k+0])
frame1 = cv2.imread(PATH+elements[k+1])
frame0 = cv2.filter2D(frame0, -1, kernel)
frame0 = cv2.filter2D(frame0, -1, kernel)
frame0 = cv2.filter2D(frame0, -1, kernel)
frame0 = cv2.filter2D(frame0, -1, kernel)
# backSub = cv2.createBackgroundSubtractorKNN()
# mask0 = backSub.apply(frame0)
# print(fra0)
# frame0 = cv2.bitwise_and(frame0, frame0, mask=mask0)
cv2.imshow("res2", frame0)
img=ComparativeBackgroundSubstract(frame0,frame1)
# im = img.copy()
area = []
goodContours = []
edged = cv2.Canny(img, 30, 200)
contours, hierarchy = cv2.findContours(img, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
print(len(contours))
for i in range(len(contours)):
if contours[i] is not None:
area_ = cv2.contourArea(contours[i])
print(area_)
if area_ > 200 and area_ <2000:
goodContours += [contours[i]]
area += [area_]
im=np.zeros(img.shape)
im2=im.copy()
cv2.drawContours(im, goodContours, -1, (255, 255, 255), 3)
cv2.drawContours(im2, contours, -1, (255, 255, 255), 3)
# cv2.drawContours(im, contours, -1, (0,255,0), 3)
cv2.imshow("bestContours", im)
cv2.imshow("contours", im2)
cv2.waitKey() | 7c4d28ad64916805b012c67f019abd4ba616a9b4 | [
"Markdown",
"Python"
] | 12 | Python | miferco97/OpticalFlowAproach | 2bc6516e63b6bbce2f3a6e62271c01641330c973 | 1cd463cb510983d90edad3193ab47626cadd9c4a |
refs/heads/main | <file_sep>using Abstractions;
using System;
namespace Models
{
public class ATMMachine: ATMState
{
public ATMState atmMachineState { get; set; }
public ATMMachine()
{
atmMachineState = new DebitCardNotInsertedState();
}
public void InsertDebitCard()
{
atmMachineState.InsertDebitCard();
if(atmMachineState is DebitCardNotInsertedState)
{
atmMachineState = new DebitCardNotInsertedState();
Console.WriteLine($"ATM changed state to {atmMachineState.GetType().Name}");
}
}
public void EjectDebitCard()
{
atmMachineState.EjectDebitCard();
if (atmMachineState is DebitCardNotInsertedState)
{
atmMachineState = new DebitCardInsertedState();
Console.WriteLine($"ATM changed state to {atmMachineState.GetType().Name}");
}
}
public void EnterPin()
{
atmMachineState.EnterPin();
}
public void WithdrawMoney()
{
atmMachineState.WithdrawMoney();
}
}
}
<file_sep>"# StateExample"
<file_sep>using Abstractions;
using System;
namespace Models
{
public class DebitCardNotInsertedState : ATMState
{
public void EjectDebitCard()
{
Console.WriteLine("You cannot eject a debit card, as no debit card was inserted");
}
public void EnterPin()
{
Console.WriteLine("You cannot enter any pin, as you don't have a debit card inserted");
}
public void InsertDebitCard()
{
Console.WriteLine("Debit card Inserted");
}
public void WithdrawMoney()
{
Console.WriteLine("You can't withdraw money, as no debit card was inserted");
}
}
}
<file_sep>using Abstractions;
using System;
namespace Models
{
public class DebitCardInsertedState : ATMState
{
public void EjectDebitCard()
{
Console.WriteLine("Debit card ejected");
}
public void EnterPin()
{
Console.WriteLine("Pin number typed in successfully");
}
public void InsertDebitCard()
{
Console.WriteLine("You cannot insert a debit card, as it is already inserted");
}
public void WithdrawMoney()
{
Console.WriteLine("Money withdrawn");
}
}
}
| 70ffcf0737e77d4b4fd6aa8f955d2a4a42da8903 | [
"Markdown",
"C#"
] | 4 | C# | AndreiTuguiu/StateExample | 9041063b53e1564d82c1fc66177ab39dc251fc10 | d1a385385b3439fb2db010ec9e8c096c244c6e89 |
refs/heads/master | <file_sep>DEBUG = True
TESTING = True
BCRYPT_LEVEL = 12
MAIL_FROM_EMAIL = '<EMAIL>'
SECRET_KEY = '&%^%&12o)!JHGHVJBK671i2lkj;^*&:'
SQLALCHEMY_DATABASE_URI = 'mysql://root:abc!@#ABC@localhost/flask_intro'
SQLALCHEMY_TRACK_MODIFICATIONS = True
WTF_CSRF_CHECK_DEFAULT = True
SAVE_DIR = '/apps/media/'
<file_sep>import sys
from apps import manager, db
from apps.users.models import User
if __name__ == '__main__':
# parser = argparse.ArgumentParser()
# parser.add_argument('createsuperuser', nargs='+')
# if len(sys.argv) == 1:
# parser.print_help()
# sys.exit(1)
# args = parser.parse_args()
CRUSER = 'createsuperuser'
if CRUSER in sys.argv:
# Get information
username = raw_input('Username: ')
if not username:
print('Username is require!')
sys.exit(False)
email = raw_input('Email: ')
if not email:
print('Email is require!')
sys.exit(False)
password = raw_input('Password: ')
if not password:
print('Password is require!')
sys.exit(False)
re_password = raw_input('Re password: ')
if password != re_password:
print('Re Password is not equal password!')
sys.exit(False)
# Save information to database
try:
user = User(username=username, email=email)
user.set_password(<PASSWORD>)
db.session.add(user)
db.session.commit()
except Exception as error:
print('Create superuser error!', error)
sys.exit(False)
print('Create superuser success!')
sys.exit(True)
manager.run()
<file_sep>from flask.ext.login import UserMixin
from apps import db, bcrypt
from apps.core.models import Timestampable
class User(Timestampable, UserMixin):
# Require Information
id = db.Column('user_id', db.Integer, primary_key=True)
username = db.Column('username', db.String(20), unique=True, index=True)
password = db.Column('password', db.Text())
email = db.Column('email', db.String(50), unique=True, index=True)
is_superuser = db.Column('is_superuser', db.Boolean(), nullable=False, default=False)
is_active = db.Column('is_active', db.Boolean(), nullable=False, default=False)
is_staff = db.Column('is_staff', db.Boolean(), nullable=False, default=False)
# Name Information
first_name = db.Column('first_name', db.String(255), nullable=False, server_default='')
last_name = db.Column('last_name', db.String(255), nullable=False, server_default='')
avatar = db.Column('avatar', db.String(255))
def __init__(self, username, email, password=<PASSWORD>, first_name='', last_name='', avatar=None, is_superuser=False,
is_active=False, is_staff=False):
self.username = username
if password:
self.password = <PASSWORD>
self.email = email
self.first_name = first_name
self.last_name = last_name
self.avatar = avatar
self.is_superuser = is_superuser
self.is_active = is_active
self.is_staff = is_staff
def set_password(self, password):
try:
pw_hash = bcrypt.generate_password_hash(password)
self.password = pw_hash
except:
raise ValueError("Can't set password!")
def check_password(self, password):
try:
return bcrypt.check_password_hash(self.password, password)
except:
return False
<file_sep>from flask import render_template, redirect, url_for
from flask.ext.uploads import UploadSet, IMAGES
from flask_wtf import Form
from flask_wtf.file import FileAllowed
from flask_wtf.file import FileField
from werkzeug.utils import secure_filename
from wtforms import StringField, SelectField
from wtforms.validators import DataRequired, Regexp, InputRequired
from apps import db, app
from apps.admin import admin_blueprint
from apps.categories.models import Category
from apps.posts.models import Post
from apps.core.views import AdminRequireMixin
import os
class PostForm(Form):
"""
Form View Post
"""
category_id = SelectField('category', coerce=int, choices=[(item.id, item.name) for item in Category.query.all()],
validators=[InputRequired()])
name = StringField('name', validators=[DataRequired()])
slug = StringField('slug', validators=[DataRequired(), Regexp(r'[\w-]+$', message='Slug is not validate!')])
description = StringField('description')
content = StringField('content')
image = FileField('image')
class PostListView(AdminRequireMixin):
"""
Show List Post
Paginate Post
"""
route_base = '/post'
def get_context_data(self):
context = {
'info': {
'title': 'Post List',
'sidebar': ['post']
},
'object_list': Post.query.all(),
}
return context
def index(self):
return render_template('/admin/post_index.html', **self.get_context_data())
PostListView.register(admin_blueprint)
class PostCreateView(AdminRequireMixin):
"""
Create Post
"""
route_base = '/post/create'
def get_context_data(self):
context = {
'info': {
'title': 'Post Create',
'sidebar': ['post']
},
'form': PostForm(),
}
return context
def index(self):
return render_template('/admin/post_create.html', **self.get_context_data())
def post(self):
form = PostForm()
if form.validate_on_submit():
post = Post(
name=form.name.data,
slug=form.slug.data,
description=form.description.data,
content=form.content.data,
category_id=form.category_id.data
)
if form.image.data:
filename = secure_filename(form.image.data.filename)
dir_save = os.path.join('media/posts/', filename)
form.image.data.save(dir_save)
post.image = dir_save
db.session.add(post)
db.session.commit()
return redirect(url_for('admin.PostListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/post_create.html', **context)
PostCreateView.register(admin_blueprint)
class PostUpdateView(AdminRequireMixin):
"""
Update Post
"""
route_base = '/post/update/<id>'
def get_context_data(self):
context = {
'info': {
'title': 'Post Update',
'sidebar': ['post']
},
'form': PostForm()
}
return context
def get(self, id):
post = Post.query.get(id)
context = self.get_context_data()
context['form'] = PostForm(obj=post)
return render_template('/admin/post_update.html', **context)
def post(self, id):
form = PostForm()
if form.validate_on_submit():
post = Post.query.filter_by(id=id).first()
post.category_id = form.category_id.data
post.name = form.name.data
post.slug = form.slug.data
post.description = form.description.data
post.content = form.content.data
db.session.commit()
return redirect(url_for('admin.PostListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/post_update.html', **context)
PostUpdateView.register(admin_blueprint)
class PostDeleteView(AdminRequireMixin):
"""
Delete Post
"""
route_base = '/post/delete/<id>'
def get(self, id):
try:
post = Post.query.get(id)
db.session.delete(post)
db.session.commit()
return redirect(url_for('admin.PostListView:index'))
except:
return redirect(url_for('admin.PostListView:index'))
PostDeleteView.register(admin_blueprint)
<file_sep>from flask import render_template, redirect, url_for
from flask_wtf import Form
from wtforms import StringField, PasswordField
from wtforms.validators import DataRequired, Regexp, Email, EqualTo
from apps import db
from apps.core.views import AdminRequireMixin
from apps.admin import admin_blueprint
from apps.users.models import User
class UserForm(Form):
"""
Form View Create User
"""
username = StringField('username')
password1 = PasswordField('<PASSWORD>', validators=[DataRequired()])
password2 = PasswordField('<PASSWORD>', validators=[DataRequired(),
EqualTo('password1', message='Re password not equal password!')])
email = StringField('email', validators=[DataRequired(), Email()])
first_name = StringField('first_name')
last_name = StringField('last_name')
def validate(self):
rv = Form.validate(self)
if not rv:
return False
username = User.query.filter_by(username=self.username.data).first()
email = User.query.filter_by(email=self.email.data).first()
if username:
self.username.errors.append('Username is already exit!')
return False
if email:
self.email.errors.append('Email is already exit!')
return False
if self.password1 == self.password2:
self.password2.errors.append('Re password is not equal password!')
return False
return True
class UserUpdateForm(Form):
"""
Form View User
"""
username = StringField('username')
password = PasswordField('<PASSWORD>')
email = StringField('email')
first_name = StringField('first_name')
last_name = StringField('last_name')
class UserListView(AdminRequireMixin):
"""
Show List User
Paginate User
"""
route_base = '/user'
def get_context_data(self):
context = {
'info': {
'title': 'User List',
'sidebar': ['user']
},
'object_list': User.query.all(),
}
return context
def index(self):
return render_template('/admin/user_index.html', **self.get_context_data())
UserListView.register(admin_blueprint)
class UserCreateView(AdminRequireMixin):
"""
Create User
"""
route_base = '/user/create'
def get_context_data(self):
context = {
'info': {
'title': 'User Create',
'sidebar': ['user']
},
'form': UserForm()
}
return context
def index(self):
return render_template('/admin/user_create.html', **self.get_context_data())
def post(self):
form = UserForm()
if form.validate_on_submit():
user = User(
username=form.username.data,
email=form.email.data,
first_name=form.first_name.data,
last_name=form.last_name.data,
avatar='',
is_active=True
)
user.set_password(<PASSWORD>)
db.session.add(user)
db.session.commit()
return redirect(url_for('admin.UserListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/user_create.html', **context)
UserCreateView.register(admin_blueprint)
class UserUpdateView(AdminRequireMixin):
"""
Update User
"""
route_base = '/user/update/<id>'
def get_context_data(self):
context = {
'info': {
'title': 'User Update',
'sidebar': ['user']
},
'form': UserUpdateForm()
}
return context
def get(self, id):
user = User.query.get(id)
context = self.get_context_data()
context['form'] = UserUpdateForm(obj=user)
return render_template('/admin/user_update.html', **context)
def post(self, id):
form = UserUpdateForm()
if form.validate_on_submit():
user = User.query.get(id)
user.first_name = form.first_name.data
user.last_name = form.last_name.data
if form.password.data:
user.set_password(form.password.data)
db.session.commit()
return redirect(url_for('admin.UserListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/user_update.html', **context)
UserUpdateView.register(admin_blueprint)
class UserDeleteView(AdminRequireMixin):
"""
Delete User
"""
route_base = '/user/delete/<id>'
def get(self, id):
try:
user = User.query.get(id)
db.session.delete(user)
db.session.commit()
return redirect(url_for('admin.UserListView:index'))
except:
return redirect(url_for('admin.UserListView:index'))
UserDeleteView.register(admin_blueprint)
<file_sep>from flask import Blueprint
users_blueprint = Blueprint('users', __name__, static_folder='static', template_folder='templates', url_prefix='/user')
from . import views, models
<file_sep>from flask import Blueprint
categories_blueprint = Blueprint('categories', __name__, template_folder='templates', static_folder='static',
url_prefix='/category')
from . import models, views
<file_sep># flask-intro
Flask Intro Demo
<file_sep>"""empty message
Revision ID: <PASSWORD>
Revises: <PASSWORD>
Create Date: 2015-11-30 13:51:40.741708
"""
# revision identifiers, used by Alembic.
revision = '<PASSWORD>'
down_revision = '<PASSWORD>'
from alembic import op
import sqlalchemy as sa
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('user', sa.Column('active', sa.Boolean(), nullable=True))
op.add_column('user', sa.Column('staff', sa.Boolean(), nullable=True))
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_column('user', 'staff')
op.drop_column('user', 'active')
### end Alembic commands ###
<file_sep>{% extends 'layout/base.html' %}
{% block content %}
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
{% for item in object_list %}
<div class="row post-preview">
{# <div class="col-xs-3">#}
{# <img src="{{ url_for('static', filename='' + item.image) }}" width="100%">#}
{# </div>#}
{# <div class="col-xs-8">#}
{# <a href="post.html">#}
{# <h2 class="post-title">#}
{# {{ item.name[:50] }}#}
{# </h2>#}
{##}
{# <h3 class="post-subtitle">#}
{# {{ item.description }}#}
{# </h3>#}
{# </a>#}
{# <p class="post-meta">Posted by <a href="#">Administrator</a> on {{ item.created_date }}</p>#}
{# </div>#}
<a href="{{ url_for('posts.DetailPostView:get', id=item.id, slug=item.slug) }}">
<h2 class="post-title">
{{ item.name[:50] }}
</h2>
<h3 class="post-subtitle">
{{ item.description }}
</h3>
</a>
<p class="post-meta">Posted by <a href="#">Administrator</a> on {{ item.created_date }}</p>
</div>
<hr>
{% endfor %}
<!-- Pager -->
<ul class="pager">
{% if pagination.has_prev %}
<li class="previous">
<a href="?page={{ pagination.page - 1 }}">← New Posts</a>
</li>
{% endif %}
{% if pagination.has_next %}
<li class="next">
<a href="?page={{ pagination.page + 1 }}">Older Posts →</a>
</li>
{% endif %}
</ul>
</div>
{% endblock %}<file_sep>from flask import Blueprint
abouts_bluesrprints = Blueprint('abouts', __name__, template_folder='templates', static_folder='static',
url_prefix='/about')
from . import views
<file_sep>from flask import render_template, request
from flask.ext.classy import FlaskView
from sqlalchemy import desc
from . import homes_bluesrprints
from apps.posts.models import Post
from flask.ext.paginate import Pagination
class HomePageView(FlaskView):
route_base = '/'
def get_context_data(self):
context = {
'info': {
'title': 'Clean Blog',
'head': 'Clean Blog',
'sub': 'Blog for you',
'image': 'home-bg.jpg',
},
}
return context
def index(self):
context = self.get_context_data()
try:
page = int(request.args.get('page', 1))
except ValueError:
page = 1
pagination = Pagination(page=page, total=Post.query.count(), per_page=6)
context['pagination'] = pagination
if page == 1:
context['object_list'] = Post.query.order_by(desc(Post.id)).limit(6)
else:
offset = (page - 1) * 6
context['object_list'] = Post.query.order_by(desc(Post.id)).offset(offset).limit(6)
return render_template('homes/index.html', **context)
HomePageView.register(homes_bluesrprints)<file_sep>from flask import render_template, request
from flask.ext.classy import FlaskView
from . import abouts_bluesrprints
class AboutView(FlaskView):
route_base = '/'
def get_context_data(self):
context = {
'info': {
'title': 'Clean Blog - About',
'head': 'About Me',
'sub': 'This is what I do.',
'image': 'about-bg.jpg',
},
}
return context
def index(self):
context = self.get_context_data()
return render_template('abouts/index.html', **context)
AboutView.register(abouts_bluesrprints)<file_sep>from flask import render_template, redirect, url_for
from flask_wtf import Form
from wtforms import StringField
from wtforms.validators import DataRequired, Regexp
from apps import db
from apps.core.views import AdminRequireMixin
from apps.admin import admin_blueprint
from apps.categories.models import Category
class CategoryForm(Form):
"""
Form View Category
"""
name = StringField('name', validators=[DataRequired()])
slug = StringField('slug', validators=[DataRequired(), Regexp(r'[\w-]+$', message='Slug is not validate!')])
description = StringField('description')
class CategoryListView(AdminRequireMixin):
"""
Show List Category
Paginate Category
"""
route_base = '/category'
def get_context_data(self):
context = {
'info': {
'title': 'Category List',
'sidebar': ['category']
},
'object_list': Category.query.all(),
}
return context
def index(self):
return render_template('/admin/category_index.html', **self.get_context_data())
CategoryListView.register(admin_blueprint)
class CategoryCreateView(AdminRequireMixin):
"""
Create Category
"""
route_base = '/category/create'
def get_context_data(self):
context = {
'info': {
'title': 'Category Create',
'sidebar': ['category']
},
'form': CategoryForm()
}
return context
def index(self):
return render_template('/admin/category_create.html', **self.get_context_data())
def post(self):
form = CategoryForm()
if form.validate_on_submit():
category = Category(
name=form.name.data,
slug=form.slug.data,
description=form.description.data
)
db.session.add(category)
db.session.commit()
return redirect(url_for('admin.CategoryListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/category_create.html', **context)
CategoryCreateView.register(admin_blueprint)
class CategoryUpdateView(AdminRequireMixin):
"""
Update Category
"""
route_base = '/category/update/<id>'
def get_context_data(self):
context = {
'info': {
'title': 'Category Update',
'sidebar': ['category']
},
'form': CategoryForm()
}
return context
def get(self, id):
category = Category.query.get(id)
context = self.get_context_data()
context['form'] = CategoryForm(obj=category)
return render_template('/admin/category_update.html', **context)
def post(self, id):
form = CategoryForm()
if form.validate_on_submit():
category = Category.query.get(id)
category.name = form.name.data
category.slug = form.slug.data
category.description = form.description.data
db.session.commit()
return redirect(url_for('admin.CategoryListView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/category_update.html', **context)
CategoryUpdateView.register(admin_blueprint)
class CategoryDeleteView(AdminRequireMixin):
"""
Delete Category
"""
route_base = '/category/delete/<id>'
def get(self, id):
try:
category = Category.query.get(id)
db.session.delete(category)
db.session.commit()
return redirect(url_for('admin.CategoryListView:index'))
except:
return redirect(url_for('admin.CategoryListView:index'))
CategoryDeleteView.register(admin_blueprint)
<file_sep>alembic==0.8.3
bcrypt==2.0.0
blinker==1.4
cffi==1.3.1
Flask==0.10.1
Flask-Bcrypt==0.7.1
Flask-Classy==0.6.10
Flask-Login==0.3.2
Flask-Mail==0.9.1
Flask-Migrate==1.6.0
flask-paginate==0.4.1
Flask-Script==2.0.5
Flask-SQLAlchemy==2.1
Flask-Uploads==0.1.3
Flask-User==0.6.8
Flask-WTF==0.12
itsdangerous==0.24
Jinja2==2.8
Mako==1.0.3
MarkupSafe==0.23
MySQL-python==1.2.5
mysqlclient==1.3.7
passlib==1.6.5
pycparser==2.14
pycrypto==2.6.1
python-editor==0.4
six==1.10.0
SQLAlchemy==1.0.9
Werkzeug==0.11.2
wheel==0.24.0
WTForms==2.0.2
<file_sep>from flask import Flask, request, redirect, url_for
from flask.ext.migrate import Migrate, MigrateCommand
from flask.ext.script import Manager
from flask.ext.sqlalchemy import SQLAlchemy
from flask.ext.bcrypt import Bcrypt
from flask.ext.login import LoginManager
# Init App
app = Flask(__name__)
app.config.from_object('config.dev')
# SQL Alchemy and Flask Migrate
db = SQLAlchemy(app)
migrate = Migrate(app, db)
manager = Manager(app)
manager.add_command('db', MigrateCommand)
# Bcrypt
bcrypt = Bcrypt(app)
# Login manager
login_manager = LoginManager()
login_manager.init_app(app)
# Register blueprint
from .admin import admin_blueprint
from .categories import categories_blueprint
from .posts import posts_blueprint
from .users import users_blueprint
from .homes import homes_bluesrprints
from .contacts import contacts_bluesrprints
from .abouts import abouts_bluesrprints
app.register_blueprint(admin_blueprint)
app.register_blueprint(categories_blueprint)
app.register_blueprint(posts_blueprint)
app.register_blueprint(users_blueprint)
app.register_blueprint(homes_bluesrprints)
app.register_blueprint(contacts_bluesrprints)
app.register_blueprint(abouts_bluesrprints)
@login_manager.unauthorized_handler
def unauthorized_handler():
if request.blueprint == 'admin':
return redirect(url_for('admin.LoginView:index', next=request.path))
else:
pass
from apps.users.models import User
@login_manager.user_loader
def load_user(user_id):
return User.query.get(user_id)
<file_sep>from apps import db
from apps.core.models import Timestampable, Describable
class Post(Describable, Timestampable):
image = db.Column(db.String(255), nullable=False, server_default='')
content = db.Column(db.Text)
category_id = db.Column(db.Integer, db.ForeignKey('category.id'))
category = db.relationship('Category', backref=db.backref('posts', lazy='dynamic'))
def __init__(self, name, slug, description, content, category_id):
self.name = name
self.slug = slug
self.description = description
self.content = content
self.category_id = category_id
def __repr__(self):
return '<Post %r>', self.name<file_sep>from apps import db
from apps.core.models import Timestampable, Describable
class Category(Describable, Timestampable):
def __init__(self, name, slug, description):
self.name = name
self.slug = slug
self.description = description
def __repr__(self):
return '<Category %r>', self.name
<file_sep>from flask import render_template, redirect, url_for, session, request
from flask.ext.classy import FlaskView
from flask.ext.login import logout_user
from flask_wtf import Form
from wtforms import StringField, PasswordField
from wtforms.validators import DataRequired, EqualTo
from apps import db
from apps.admin import admin_blueprint
from apps.core.views import AdminRequireMixin
from apps.users.models import User
class LoginForm(Form):
username = StringField('username', validators=[DataRequired()])
password = PasswordField('<PASSWORD>', validators=[DataRequired()])
def __init__(self, *args, **kwargs):
Form.__init__(self, *args, **kwargs)
self.user = None
def validate(self):
rv = Form.validate(self)
if not rv:
return False
if not self.username.data or not self.password.data:
return False
user = User.query.filter_by(username=self.username.data).first()
if user is None:
self.username.errors.append('Unknown username')
return False
if not user.check_password(self.password.data):
self.password.errors.append('Invalid password')
return False
self.user = user
return True
class LoginView(FlaskView):
route_base = '/login'
def get_context_data(self):
context = {
'info': {
'title': 'Administrator'
},
'form': LoginForm()
}
return context
def index(self):
return render_template('/admin/login.html', **self.get_context_data())
def post(self):
form = LoginForm()
if form.validate_on_submit():
session['user_id'] = form.user.id
return redirect(url_for('admin.DashboardView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/login.html', **context)
LoginView.register(admin_blueprint)
class LogoutView(AdminRequireMixin):
route_base = '/logout'
def index(self):
logout_user()
session.clear()
return redirect(url_for('admin.LoginView:index'))
LogoutView.register(admin_blueprint)
class DashboardView(AdminRequireMixin):
"""
Dashboard View
"""
route_base = '/'
def get_context_data(self):
context = {
'info': {
'title': 'Dashboard',
'sidebar': ['dashboard']
},
}
return context
def index(self):
return render_template('/admin/dashboard.html', **self.get_context_data())
DashboardView.register(admin_blueprint)
class ProfileForm(Form):
"""
Profile Form: Change password form
"""
old_password = PasswordField('<PASSWORD>', validators=[DataRequired()])
password1 = PasswordField('<PASSWORD>', validators=[DataRequired()])
password2 = PasswordField('<PASSWORD>', validators=[DataRequired(),
EqualTo('password1', message='Re password not equal password!')])
def __init__(self, *args, **kwargs):
Form.__init__(self, *args, **kwargs)
self.user = None
def validate(self):
rv = Form.validate(self)
if not rv:
return False
user = User.query.filter_by(id=session['user_id']).first()
if not user.check_password(self.old_password.data):
self.old_password.errors.append('Invalid old password!')
return False
self.user = user
return True
class ProfileView(AdminRequireMixin):
"""
Profile View: Change password
"""
route_base = '/profile'
def get_context_data(self):
context = {
'info': {
'title': 'Change Profile',
'sidebar': ['dashboard']
},
'form': ProfileForm(),
}
return context
def index(self):
return render_template('/admin/profile.html', **self.get_context_data())
def post(self):
form = ProfileForm()
if form.validate_on_submit():
user = form.user
user.set_password(form.password1.data)
db.session.commit()
# Logout and redirect to login page
logout_user()
session.clear()
return redirect(url_for('admin.LoginView:index'))
else:
context = self.get_context_data()
context['form'] = form
return render_template('/admin/profile.html', **context)
ProfileView.register(admin_blueprint)<file_sep>"""empty message
Revision ID: 59b1983baaa0
Revises: <PASSWORD>
Create Date: 2015-12-01 11:00:44.599240
"""
# revision identifiers, used by Alembic.
revision = '<KEY>'
down_revision = '<PASSWORD>'
from alembic import op
import sqlalchemy as sa
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('post', sa.Column('image', sa.String(length=255), server_default='', nullable=False))
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.drop_column('post', 'image')
### end Alembic commands ###
<file_sep>from flask.ext.classy import FlaskView
from flask.ext.login import current_user, current_app
from functools import wraps
def login_required(func):
"""
Decorator check required login and active user
:param func:
:return:
"""
@wraps(func)
def decorated_view(*args, **kwargs):
if current_app.login_manager._login_disabled:
return func(*args, **kwargs)
elif not current_user.is_authenticated and not current_user.is_active:
return current_app.login_manager.unauthorized()
return func(*args, **kwargs)
return decorated_view
def admin_required(func):
"""
Decorator check required login and hava staff or superuser permission
:param func:
:return:
"""
@wraps(func)
def decorated_view(*args, **kwargs):
if current_app.login_manager._login_disabled:
return func(*args, **kwargs)
elif not current_user.is_authenticated and not current_user.is_active:
return current_app.login_manager.unauthorized()
elif not current_user.is_staff and not current_user.is_superuser:
return current_app.login_manager.unauthorized()
return func(*args, **kwargs)
return decorated_view
class LoginRequireMixin(FlaskView):
decorators = [login_required]
class AdminRequireMixin(LoginRequireMixin):
decorators = [admin_required]
<file_sep>from flask import Blueprint
contacts_bluesrprints = Blueprint('contacts', __name__, template_folder='templates', static_folder='static',
url_prefix='/contact')
from . import views
<file_sep>from flask import Blueprint
posts_blueprint = Blueprint('posts', __name__, template_folder='templates', static_folder='static', url_prefix='/post')
from . import views, models
<file_sep>from apps import db
class Describable(db.Model):
__abstract__ = True
id = db.Column(db.Integer, primary_key=True, autoincrement=True)
name = db.Column(db.String(255))
slug = db.Column(db.String(255))
description = db.Column(db.Text)
class Timestampable(db.Model):
__abstract__ = True
created_date = db.Column(db.DateTime, default=db.func.now())
modified_date = db.Column(db.DateTime, default=db.func.now(), onupdate=db.func.now())
<file_sep>"""empty message
Revision ID: <KEY>cb
Revises: <PASSWORD>
Create Date: 2015-11-30 13:53:29.212438
"""
# revision identifiers, used by Alembic.
revision = '<KEY>'
down_revision = '<PASSWORD>'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import mysql
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.alter_column('user', 'active',
existing_type=mysql.TINYINT(display_width=1),
nullable=False)
op.alter_column('user', 'staff',
existing_type=mysql.TINYINT(display_width=1),
nullable=False)
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.alter_column('user', 'staff',
existing_type=mysql.TINYINT(display_width=1),
nullable=True)
op.alter_column('user', 'active',
existing_type=mysql.TINYINT(display_width=1),
nullable=True)
### end Alembic commands ###
<file_sep>"""empty message
Revision ID: 44b4fd37b54e
Revises: 293c6eae1bb7
Create Date: 2015-12-01 09:12:21.569936
"""
# revision identifiers, used by Alembic.
revision = '4<PASSWORD>'
down_revision = '293c6eae<PASSWORD>'
from alembic import op
import sqlalchemy as sa
from sqlalchemy.dialects import mysql
def upgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('user', sa.Column('is_active', sa.Boolean(), nullable=False))
op.add_column('user', sa.Column('is_staff', sa.Boolean(), nullable=False))
op.add_column('user', sa.Column('is_superuser', sa.Boolean(), nullable=False))
op.drop_column('user', 'active')
op.drop_column('user', 'superuser')
op.drop_column('user', 'staff')
### end Alembic commands ###
def downgrade():
### commands auto generated by Alembic - please adjust! ###
op.add_column('user', sa.Column('staff', mysql.TINYINT(display_width=1), autoincrement=False, nullable=False))
op.add_column('user', sa.Column('superuser', mysql.TINYINT(display_width=1), autoincrement=False, nullable=False))
op.add_column('user', sa.Column('active', mysql.TINYINT(display_width=1), autoincrement=False, nullable=False))
op.drop_column('user', 'is_superuser')
op.drop_column('user', 'is_staff')
op.drop_column('user', 'is_active')
### end Alembic commands ###
<file_sep>from flask import render_template, request
from flask.ext.classy import FlaskView
from . import contacts_bluesrprints
class ContactView(FlaskView):
route_base = '/'
def get_context_data(self):
context = {
'info': {
'title': 'Contact - Clean Blog',
'head': 'Contact Me',
'sub': 'Have questions? I have answers (maybe).',
'image': 'contact-bg.jpg',
},
}
return context
def index(self):
context = self.get_context_data()
return render_template('contacts/index.html', **context)
ContactView.register(contacts_bluesrprints)<file_sep>from flask import Blueprint
homes_bluesrprints = Blueprint('homes', __name__, template_folder='templates', static_folder='static', url_prefix='/')
from . import views<file_sep>from flask import render_template, request
from flask.ext.classy import FlaskView
from . import posts_blueprint
from apps.posts.models import Post
class DetailPostView(FlaskView):
route_base = '/<id>-<slug>'
def get_context_data(self):
context = {
'info': {
'title': 'Clean Blog',
'head': 'Clean Blog',
'sub': 'Blog for you',
'image': 'home-bg.jpg',
},
}
return context
def get(self, id, slug):
context = self.get_context_data()
post = Post.query.get(id)
context['object'] = post
context['info']['title'] = post.name
context['info']['head'] = post.name
context['info']['sub'] = post.description
return render_template('posts/detail.html', **context)
DetailPostView.register(posts_blueprint)
<file_sep>from flask import Blueprint
admin_blueprint = Blueprint('admin', __name__, static_folder='static', template_folder='templates', url_prefix='/admin')
from .views import dashboard, category, post, user
| 7c6051d59f84b0446d4d316858041093af3fc900 | [
"Markdown",
"Python",
"Text",
"HTML"
] | 30 | Python | tuanquanghpvn/flask-intro | 4dbc6bfbbdee13bc601b7ba8f10ede3635a2cfaf | 67d59af8228e734de68e40fbf65c29fd05780938 |
refs/heads/master | <repo_name>inz/step-buildpack<file_sep>/run.sh
#!/bin/bash
detect_default_buildpacks() {
buildpacks_path=$1
case ${target_platform} in
heroku)
# Officially supported buildpacks from Heroku
# (https://devcenter.heroku.com/articles/buildpacks#officially-supported-buildpacks)
default_buildpacks=(
"https://github.com/heroku/heroku-buildpack-ruby"
"https://github.com/heroku/heroku-buildpack-nodejs"
"https://github.com/heroku/heroku-buildpack-clojure"
"https://github.com/heroku/heroku-buildpack-python"
"https://github.com/heroku/heroku-buildpack-java"
"https://github.com/heroku/heroku-buildpack-gradle"
"https://github.com/heroku/heroku-buildpack-grails"
"https://github.com/heroku/heroku-buildpack-scala"
"https://github.com/heroku/heroku-buildpack-play"
"https://github.com/heroku/heroku-buildpack-php"
"https://github.com/heroku/heroku-buildpack-go"
)
;;
cloud-foundry)
# Cloud Foundry System Buildpacks
# (https://docs.cloudfoundry.org/buildpacks/#system-buildpacks)
default_buildpacks=(
"https://github.com/cloudfoundry/java-buildpack"
"https://github.com/cloudfoundry/ruby-buildpack"
"https://github.com/cloudfoundry/nodejs-buildpack"
"https://github.com/cloudfoundry/go-buildpack"
"https://github.com/cloudfoundry/php-buildpack"
"https://github.com/cloudfoundry/python-buildpack"
"https://github.com/cloudfoundry/staticfile-buildpack"
"https://github.com/cloudfoundry/binary-buildpack"
)
;;
esac
for buildpack in "${default_buildpacks[@]}"; do
buildpack_path=${buildpacks_path}/${buildpack##*/}
fetch_buildpack ${buildpacks_path} ${buildpack}
if ${buildpack_path}/bin/detect . &>/dev/null; then
echo ${buildpack}
break
else
continue
fi
done
}
fetch_buildpack() {
buildpacks_path=$1
buildpack_url=$2
buildpack_path=${buildpacks_path}/${buildpack##*/}
if ! [ -d ${buildpack_path} ]; then
git clone --depth 1 ${buildpack} ${buildpack_path} 1>&2
else
pushd ${buildpack_path} &>/dev/null
git fetch origin master 1>&2
git reset --hard FETCH_HEAD 1>&2
git clean -fd 1>&2
popd &>/dev/null
fi
}
fix_buildpack_compile() {
mkdir -p bin
export PATH=$PWD/bin:$PATH
# Work around timeout set for curl in buildpack compile calls
echo '/usr/bin/curl $@ --max-time 300' >bin/curl
chmod +x bin/curl
# Work around tar permission issue
echo '/bin/tar $@ --no-same-owner' >bin/tar
chmod +x bin/tar
# Silence bundler root warning
export BUNDLE_SILENCE_ROOT_WARNING=true
}
main() {
set -e
fix_buildpack_compile
[ "${WERCKER_BUILDPACK_BUILD_DEBUG}" = "true" ] && set -x
buildpacks_path=${WERCKER_CACHE_DIR/buildpacks}
target_platform=${WERCKER_BUILDPACK_BUILD_PLATFORM:-heroku}
case ${target_platform} in
heroku)
stack="cedar-14"
;;
cloudfoundry)
stack="cflinuxfs2"
;;
esac
export STACK=${WERCKER_BUILDPACK_BUILD_STACK:-$stack}
buildpacks=${WERCKER_BUILDPACK_BUILD_BUILDPACKS:-$(ruby -rjson -e 'puts JSON.parse(File.read("app.json"))["buildpacks"].map {|u| u["url"]}' || true)}
# If app.json does not specify buildpacks, detect application type using
# default buildpacks.
if [ "${buildpacks}" = "" ]; then
buildpacks=$(detect_default_buildpacks ${buildpacks_path})
fi
rm -f .slugignore
for buildpack in ${buildpacks}; do
fetch_buildpack ${buildpacks_path} ${buildpack}
buildpack_path=${buildpacks_path}/${buildpack##*/}
buildpack_cache_path=${buildpack_path}/buildpack-cache/${buildpack##*/}
${buildpack_path}/bin/detect .
${buildpack_path}/bin/compile . ${buildpack_cache_path}
done
}
main<file_sep>/README.md
# Build Buildpack applications in Wercker
This step will mimic the Heroku/Cloud Foundry buildpack compilation process.
To mostly replicate the Heroku build process, use `heroku/cedar:14` as base box for your build.
## Options
* `platform`: (optional, default: `heroku`) The target build platform. Supported values: `heroku`, `cloudfoundry`
* `stack`: (optional, default: `cedar-14` for Heroku, `cflinuxfs2` for Cloud Foundry) The build stack
* `buildpacks`: (optional) If you use custom buildpacks but have not listed them in `app.json`, you can list the URLs of required buildpacks here, separated by spaces.
## Example
build:
steps:
- inz/buildpack-build
## License
The MIT License
## Changelog
### 0.0.3
* Add test apps to step build. We now dry-run builds for several Heroku sample apps
### 0.0.2
* Work around curl timeout and tar permission error in build.
### 0.0.1
* Initial Release<file_sep>/test.sh
#!/bin/bash
set -e
export WERCKER_BUILDPACK_BUILD_DEBUG=true
for dir in test/*; do
pushd $dir
../../run.sh
popd
done
echo "All done." | ef3748802baebe3e6d8e136e22c63eb0cc911e16 | [
"Markdown",
"Shell"
] | 3 | Shell | inz/step-buildpack | a83c432438633a066db95b9293a99b0d69cd0967 | 16a8baf1d34d1c0c7282c37404ff7e8a1a5c1b90 |
refs/heads/master | <repo_name>NaszvadiG/Chat-CI<file_sep>/docs/chat.sql
-- phpMyAdmin SQL Dump
-- version 3.3.3
-- http://www.phpmyadmin.net
--
-- Servidor: mysql09.uni5.net
-- Tempo de Geração: Nov 11, 2011 as 01:33 PM
-- Versão do Servidor: 5.1.56
-- Versão do PHP: 5.2.9
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Banco de Dados: `zorbit02`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `msg`
--
CREATE TABLE IF NOT EXISTS `msg` (
`id_msg` int(11) NOT NULL AUTO_INCREMENT,
`nome_msg` varchar(64) NOT NULL,
`texto_msg` text NOT NULL,
`data_msg` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id_msg`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Extraindo dados da tabela `msg`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `sessao`
--
CREATE TABLE IF NOT EXISTS `sessao` (
`session_id` varchar(40) NOT NULL DEFAULT '0',
`ip_address` varchar(16) NOT NULL DEFAULT '0',
`user_agent` varchar(120) NOT NULL,
`last_activity` int(10) unsigned NOT NULL DEFAULT '0',
`user_data` text NOT NULL,
PRIMARY KEY (`session_id`),
KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Extraindo dados da tabela `sessao`
--
<file_sep>/application/logs/log-2011-05-11.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-05-11 14:17:40 --> Config Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:17:40 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:17:40 --> URI Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Router Class Initialized
DEBUG - 2011-05-11 14:17:40 --> No URI present. Default controller set.
DEBUG - 2011-05-11 14:17:40 --> Output Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Input Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:17:40 --> Language Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Loader Class Initialized
DEBUG - 2011-05-11 14:17:40 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:17:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:17:41 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:17:41 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Upload Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:41 --> Controller Class Initialized
DEBUG - 2011-05-11 14:17:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:17:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:17:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-11 14:17:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:17:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:17:41 --> Final output sent to browser
DEBUG - 2011-05-11 14:17:41 --> Total execution time: 1.8484
DEBUG - 2011-05-11 14:17:47 --> Config Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:17:47 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:17:47 --> URI Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Router Class Initialized
DEBUG - 2011-05-11 14:17:47 --> No URI present. Default controller set.
DEBUG - 2011-05-11 14:17:47 --> Output Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Input Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:17:47 --> Language Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Loader Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:17:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:17:47 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:17:47 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Upload Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:47 --> Controller Class Initialized
DEBUG - 2011-05-11 14:17:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:17:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:17:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-11 14:17:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:17:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:17:47 --> Final output sent to browser
DEBUG - 2011-05-11 14:17:47 --> Total execution time: 0.0690
DEBUG - 2011-05-11 14:17:49 --> Config Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:17:49 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:17:49 --> URI Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Router Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Output Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Input Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:17:49 --> Language Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Loader Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:17:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:17:49 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:17:49 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Upload Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:49 --> Controller Class Initialized
DEBUG - 2011-05-11 14:17:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:17:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:17:49 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-11 14:17:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:17:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:17:49 --> Final output sent to browser
DEBUG - 2011-05-11 14:17:49 --> Total execution time: 0.1515
DEBUG - 2011-05-11 14:17:50 --> Config Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:17:50 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:17:50 --> URI Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Router Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Output Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Input Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:17:50 --> Language Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Loader Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:17:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:17:50 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:17:50 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Upload Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Model Class Initialized
DEBUG - 2011-05-11 14:17:50 --> Controller Class Initialized
DEBUG - 2011-05-11 14:17:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:17:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:17:50 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-11 14:17:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:17:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:17:50 --> Final output sent to browser
DEBUG - 2011-05-11 14:17:50 --> Total execution time: 0.1590
DEBUG - 2011-05-11 14:18:20 --> Config Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:18:20 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:18:20 --> URI Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Router Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Output Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Input Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:18:20 --> Language Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Loader Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:18:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:18:20 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:18:20 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Upload Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Model Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Model Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Controller Class Initialized
DEBUG - 2011-05-11 14:18:20 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-11 14:18:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:18:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:18:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:18:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:18:20 --> Final output sent to browser
DEBUG - 2011-05-11 14:18:20 --> Total execution time: 0.2983
DEBUG - 2011-05-11 14:23:38 --> Config Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:23:38 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:23:38 --> URI Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Router Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Output Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Input Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:23:38 --> Language Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Loader Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:23:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:23:38 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:23:38 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Upload Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Model Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Model Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Controller Class Initialized
DEBUG - 2011-05-11 14:23:38 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-11 14:23:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:23:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:23:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:23:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:23:38 --> Final output sent to browser
DEBUG - 2011-05-11 14:23:38 --> Total execution time: 0.5248
DEBUG - 2011-05-11 14:26:00 --> Config Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:26:00 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:26:00 --> URI Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Router Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Output Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Input Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:26:00 --> Language Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Loader Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:26:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:26:00 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:26:00 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Upload Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Model Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Model Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Controller Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-11 14:26:00 --> Security Class Initialized
DEBUG - 2011-05-11 14:26:00 --> XSS Filtering completed
DEBUG - 2011-05-11 14:26:00 --> XSS Filtering completed
DEBUG - 2011-05-11 14:26:00 --> XSS Filtering completed
DEBUG - 2011-05-11 14:26:00 --> Config Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:26:00 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:26:00 --> URI Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Router Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Output Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Input Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:26:00 --> Language Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Loader Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:26:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:26:00 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:26:00 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Upload Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Model Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Model Class Initialized
DEBUG - 2011-05-11 14:26:00 --> Controller Class Initialized
DEBUG - 2011-05-11 14:26:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:26:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:26:00 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-11 14:26:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:26:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:26:00 --> Final output sent to browser
DEBUG - 2011-05-11 14:26:00 --> Total execution time: 0.0643
DEBUG - 2011-05-11 14:29:08 --> Config Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:29:08 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:29:08 --> URI Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Router Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Output Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Input Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:29:08 --> Language Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Loader Class Initialized
DEBUG - 2011-05-11 14:29:08 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:29:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:29:08 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:29:09 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Upload Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:09 --> Controller Class Initialized
DEBUG - 2011-05-11 14:29:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:29:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:29:09 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-11 14:29:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:29:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:29:09 --> Final output sent to browser
DEBUG - 2011-05-11 14:29:09 --> Total execution time: 0.0477
DEBUG - 2011-05-11 14:29:24 --> Config Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:29:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:29:24 --> URI Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Router Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Output Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Input Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:29:24 --> Language Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Loader Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:29:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:29:24 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:29:24 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Upload Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Controller Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-11 14:29:24 --> Security Class Initialized
DEBUG - 2011-05-11 14:29:24 --> XSS Filtering completed
DEBUG - 2011-05-11 14:29:24 --> XSS Filtering completed
DEBUG - 2011-05-11 14:29:24 --> XSS Filtering completed
DEBUG - 2011-05-11 14:29:24 --> Config Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:29:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:29:24 --> URI Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Router Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Output Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Input Class Initialized
DEBUG - 2011-05-11 14:29:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:29:24 --> Language Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Loader Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:29:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:29:25 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:29:25 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Upload Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:25 --> Controller Class Initialized
DEBUG - 2011-05-11 14:29:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:29:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:29:25 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-11 14:29:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:29:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:29:25 --> Final output sent to browser
DEBUG - 2011-05-11 14:29:25 --> Total execution time: 0.0484
DEBUG - 2011-05-11 14:29:26 --> Config Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:29:26 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:29:26 --> URI Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Router Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Output Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Input Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:29:26 --> Language Class Initialized
DEBUG - 2011-05-11 14:29:26 --> Loader Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:29:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:29:27 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:29:27 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Upload Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Model Class Initialized
DEBUG - 2011-05-11 14:29:27 --> Controller Class Initialized
DEBUG - 2011-05-11 14:29:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:29:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:29:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-11 14:29:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:29:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:29:27 --> Final output sent to browser
DEBUG - 2011-05-11 14:29:27 --> Total execution time: 0.1337
DEBUG - 2011-05-11 14:32:56 --> Config Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:32:56 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:32:56 --> URI Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Router Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Output Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Input Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:32:56 --> Language Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Loader Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:32:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:32:56 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:32:56 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Upload Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Model Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Model Class Initialized
DEBUG - 2011-05-11 14:32:56 --> Controller Class Initialized
DEBUG - 2011-05-11 14:32:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:32:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:32:56 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-11 14:32:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:32:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:32:56 --> Final output sent to browser
DEBUG - 2011-05-11 14:32:56 --> Total execution time: 0.0632
DEBUG - 2011-05-11 14:32:57 --> Config Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Hooks Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Utf8 Class Initialized
DEBUG - 2011-05-11 14:32:57 --> UTF-8 Support Enabled
DEBUG - 2011-05-11 14:32:57 --> URI Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Router Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Output Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Input Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-11 14:32:57 --> Language Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Loader Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Helper loaded: url_helper
DEBUG - 2011-05-11 14:32:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-11 14:32:57 --> Database Driver Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Helper loaded: form_helper
DEBUG - 2011-05-11 14:32:57 --> Form Validation Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Upload Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Image Lib Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Model Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Model Class Initialized
DEBUG - 2011-05-11 14:32:57 --> Controller Class Initialized
DEBUG - 2011-05-11 14:32:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-11 14:32:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-11 14:32:57 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-11 14:32:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-11 14:32:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-11 14:32:57 --> Final output sent to browser
DEBUG - 2011-05-11 14:32:57 --> Total execution time: 0.0558
<file_sep>/application/logs/log-2011-02-04.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-04 00:36:06 --> Config Class Initialized
DEBUG - 2011-02-04 00:36:06 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:36:06 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:36:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:36:06 --> URI Class Initialized
DEBUG - 2011-02-04 00:36:06 --> Router Class Initialized
DEBUG - 2011-02-04 00:36:06 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:36:06 --> Output Class Initialized
DEBUG - 2011-02-04 00:36:06 --> Input Class Initialized
DEBUG - 2011-02-04 00:36:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:36:06 --> Language Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Config Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:38:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:38:24 --> URI Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Router Class Initialized
DEBUG - 2011-02-04 00:38:24 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:38:24 --> Output Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Input Class Initialized
DEBUG - 2011-02-04 00:38:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:38:24 --> Language Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Config Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:39:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:39:03 --> URI Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Router Class Initialized
DEBUG - 2011-02-04 00:39:03 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:39:03 --> Output Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Input Class Initialized
DEBUG - 2011-02-04 00:39:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:39:03 --> Language Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Config Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:41:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:41:30 --> URI Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Router Class Initialized
DEBUG - 2011-02-04 00:41:30 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:41:30 --> Output Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Input Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:41:30 --> Language Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Loader Class Initialized
DEBUG - 2011-02-04 00:41:30 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:42:51 --> Config Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:42:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:42:51 --> URI Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Router Class Initialized
DEBUG - 2011-02-04 00:42:51 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:42:51 --> Output Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Input Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:42:51 --> Language Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Loader Class Initialized
DEBUG - 2011-02-04 00:42:51 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:42:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:42:51 --> Database Driver Class Initialized
ERROR - 2011-02-04 00:42:51 --> Severity: Warning --> mysqli_connect() [<a href='function.mysqli-connect'>function.mysqli-connect</a>]: (42000/1049): Unknown database 'artigos' /Applications/MAMP/htdocs/ci2/system/database/drivers/mysqli/mysqli_driver.php 73
ERROR - 2011-02-04 00:42:51 --> Unable to connect to the database
DEBUG - 2011-02-04 00:42:51 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-02-04 00:43:38 --> Config Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:43:38 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:43:38 --> URI Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Router Class Initialized
DEBUG - 2011-02-04 00:43:38 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:43:38 --> Output Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Input Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:43:38 --> Language Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Loader Class Initialized
DEBUG - 2011-02-04 00:43:38 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:43:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:43:38 --> Database Driver Class Initialized
ERROR - 2011-02-04 00:43:38 --> Unable to load the requested class: validation
DEBUG - 2011-02-04 00:45:19 --> Config Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:45:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:45:19 --> URI Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Router Class Initialized
DEBUG - 2011-02-04 00:45:19 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:45:19 --> Output Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Input Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:45:19 --> Language Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Loader Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:45:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:45:19 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:45:19 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:45:19 --> Model Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Config Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:45:41 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:45:41 --> URI Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Router Class Initialized
DEBUG - 2011-02-04 00:45:41 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:45:41 --> Output Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Input Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:45:41 --> Language Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Loader Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:45:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:45:41 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:45:41 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:45:41 --> Model Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Config Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:45:52 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:45:52 --> URI Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Router Class Initialized
DEBUG - 2011-02-04 00:45:52 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:45:52 --> Output Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Input Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:45:52 --> Language Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Loader Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:45:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:45:52 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:45:52 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:45:52 --> Model Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Config Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:46:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:46:08 --> URI Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Router Class Initialized
DEBUG - 2011-02-04 00:46:08 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:46:08 --> Output Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Input Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:46:08 --> Language Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Loader Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:46:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:46:08 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:46:08 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:46:08 --> Model Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Config Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:49:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:49:27 --> URI Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Router Class Initialized
DEBUG - 2011-02-04 00:49:27 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:49:27 --> Output Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Input Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:49:27 --> Language Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Loader Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:49:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:49:27 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:49:27 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:49:27 --> Model Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Config Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:49:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:49:45 --> URI Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Router Class Initialized
DEBUG - 2011-02-04 00:49:45 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:49:45 --> Output Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Input Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:49:45 --> Language Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Loader Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:49:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:49:45 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:49:45 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Model Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Model Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Controller Class Initialized
DEBUG - 2011-02-04 00:49:45 --> Final output sent to browser
DEBUG - 2011-02-04 00:49:45 --> Total execution time: 0.0277
DEBUG - 2011-02-04 00:50:01 --> Config Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:50:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:50:01 --> URI Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Router Class Initialized
DEBUG - 2011-02-04 00:50:01 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:50:01 --> Output Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Input Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:50:01 --> Language Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Loader Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:50:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:50:01 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:50:01 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Model Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Model Class Initialized
DEBUG - 2011-02-04 00:50:01 --> Controller Class Initialized
ERROR - 2011-02-04 00:50:01 --> Severity: Notice --> Undefined property: home::$vet_dados /Applications/MAMP/htdocs/ci2/application/controllers/home.php 9
DEBUG - 2011-02-04 00:50:01 --> File loaded: application/views/topo_view.php
ERROR - 2011-02-04 00:50:01 --> Severity: Warning --> Invalid argument supplied for foreach() /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 93
DEBUG - 2011-02-04 00:50:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:50:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:50:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:50:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:50:01 --> Final output sent to browser
DEBUG - 2011-02-04 00:50:01 --> Total execution time: 0.0623
DEBUG - 2011-02-04 00:50:13 --> Config Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:50:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:50:13 --> URI Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Router Class Initialized
DEBUG - 2011-02-04 00:50:13 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:50:13 --> Output Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Input Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:50:13 --> Language Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Loader Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:50:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:50:13 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:50:13 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Model Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Model Class Initialized
DEBUG - 2011-02-04 00:50:13 --> Controller Class Initialized
DEBUG - 2011-02-04 00:50:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:50:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:50:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:50:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:50:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:50:13 --> Final output sent to browser
DEBUG - 2011-02-04 00:50:13 --> Total execution time: 0.0151
DEBUG - 2011-02-04 00:53:01 --> Config Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:53:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:53:01 --> URI Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Router Class Initialized
DEBUG - 2011-02-04 00:53:01 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:53:01 --> Output Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Input Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:53:01 --> Language Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Loader Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:53:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:53:01 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:53:01 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:01 --> Controller Class Initialized
DEBUG - 2011-02-04 00:53:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:53:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:53:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:53:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:53:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:53:01 --> Final output sent to browser
DEBUG - 2011-02-04 00:53:01 --> Total execution time: 0.0151
DEBUG - 2011-02-04 00:53:02 --> Config Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:53:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:53:02 --> URI Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Router Class Initialized
DEBUG - 2011-02-04 00:53:02 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:53:02 --> Output Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Input Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:53:02 --> Language Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Loader Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:53:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:53:02 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:53:02 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:02 --> Controller Class Initialized
DEBUG - 2011-02-04 00:53:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:53:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:53:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:53:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:53:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:53:02 --> Final output sent to browser
DEBUG - 2011-02-04 00:53:02 --> Total execution time: 0.0120
DEBUG - 2011-02-04 00:53:19 --> Config Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:53:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:53:19 --> URI Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Router Class Initialized
DEBUG - 2011-02-04 00:53:19 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:53:19 --> Output Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Input Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:53:19 --> Language Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Loader Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:53:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:53:19 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:53:19 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Model Class Initialized
DEBUG - 2011-02-04 00:53:19 --> Controller Class Initialized
DEBUG - 2011-02-04 00:53:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:53:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:53:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:53:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:53:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:53:19 --> Final output sent to browser
DEBUG - 2011-02-04 00:53:19 --> Total execution time: 0.0185
DEBUG - 2011-02-04 00:54:54 --> Config Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:54:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:54:54 --> URI Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Router Class Initialized
DEBUG - 2011-02-04 00:54:54 --> No URI present. Default controller set.
DEBUG - 2011-02-04 00:54:54 --> Output Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Input Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:54:54 --> Language Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Loader Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:54:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:54:54 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:54:54 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Model Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Model Class Initialized
DEBUG - 2011-02-04 00:54:54 --> Controller Class Initialized
DEBUG - 2011-02-04 00:54:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:54:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:54:54 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 00:54:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:54:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:54:54 --> Final output sent to browser
DEBUG - 2011-02-04 00:54:54 --> Total execution time: 0.0121
DEBUG - 2011-02-04 00:54:56 --> Config Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:54:56 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:54:56 --> URI Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Router Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Output Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Input Class Initialized
DEBUG - 2011-02-04 00:54:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:54:56 --> Language Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Config Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:55:58 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:55:58 --> URI Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Router Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Output Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Input Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:55:58 --> Language Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Loader Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:55:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:55:58 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:55:58 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Model Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Model Class Initialized
DEBUG - 2011-02-04 00:55:58 --> Controller Class Initialized
DEBUG - 2011-02-04 00:55:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:55:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:55:58 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-04 00:55:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:55:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:55:58 --> Final output sent to browser
DEBUG - 2011-02-04 00:55:58 --> Total execution time: 0.1400
DEBUG - 2011-02-04 00:56:00 --> Config Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:56:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:56:00 --> URI Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Router Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Output Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Input Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:56:00 --> Language Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Loader Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:56:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:56:00 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:56:00 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Model Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Model Class Initialized
DEBUG - 2011-02-04 00:56:00 --> Controller Class Initialized
DEBUG - 2011-02-04 00:56:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:56:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:56:36 --> Config Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:56:36 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:56:36 --> URI Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Router Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Output Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Input Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:56:36 --> Language Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Loader Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:56:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:56:36 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:56:36 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Model Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Model Class Initialized
DEBUG - 2011-02-04 00:56:36 --> Controller Class Initialized
DEBUG - 2011-02-04 00:56:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:56:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:57:47 --> Config Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:57:47 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:57:47 --> URI Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Router Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Output Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Input Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:57:47 --> Language Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Loader Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:57:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:57:47 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:57:47 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Model Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Model Class Initialized
DEBUG - 2011-02-04 00:57:47 --> Controller Class Initialized
DEBUG - 2011-02-04 00:57:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:57:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 00:57:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 00:57:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 00:57:47 --> Final output sent to browser
DEBUG - 2011-02-04 00:57:47 --> Total execution time: 0.0169
DEBUG - 2011-02-04 00:57:51 --> Config Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Hooks Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Utf8 Class Initialized
DEBUG - 2011-02-04 00:57:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 00:57:51 --> URI Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Router Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Output Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Input Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 00:57:51 --> Language Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Loader Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Helper loaded: url_helper
DEBUG - 2011-02-04 00:57:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 00:57:51 --> Database Driver Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Helper loaded: form_helper
DEBUG - 2011-02-04 00:57:51 --> Form Validation Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Model Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Model Class Initialized
DEBUG - 2011-02-04 00:57:51 --> Controller Class Initialized
DEBUG - 2011-02-04 00:57:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 00:57:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:07:53 --> Config Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:07:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:07:53 --> URI Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Router Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Output Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Input Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:07:53 --> Language Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Loader Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:07:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:07:53 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:07:53 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Model Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Model Class Initialized
DEBUG - 2011-02-04 01:07:53 --> Controller Class Initialized
DEBUG - 2011-02-04 01:07:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:07:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:08:54 --> Config Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:08:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:08:54 --> URI Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Router Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Output Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Input Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:08:54 --> Language Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Loader Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:08:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:08:54 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:08:54 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Model Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Model Class Initialized
DEBUG - 2011-02-04 01:08:54 --> Controller Class Initialized
DEBUG - 2011-02-04 01:08:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:08:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:09:56 --> Config Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:09:56 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:09:56 --> URI Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Router Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Output Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Input Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:09:56 --> Language Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Loader Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:09:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:09:56 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:09:56 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Model Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Model Class Initialized
DEBUG - 2011-02-04 01:09:56 --> Controller Class Initialized
DEBUG - 2011-02-04 01:09:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:09:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:11:27 --> Config Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:11:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:11:27 --> URI Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Router Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Output Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Input Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:11:27 --> Language Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Loader Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:11:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:11:27 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:11:27 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Model Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Model Class Initialized
DEBUG - 2011-02-04 01:11:27 --> Controller Class Initialized
DEBUG - 2011-02-04 01:11:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:11:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:15:44 --> Config Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:15:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:15:44 --> URI Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Router Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Output Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Input Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:15:44 --> Language Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Loader Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:15:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:15:44 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:15:44 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Model Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Model Class Initialized
DEBUG - 2011-02-04 01:15:44 --> Controller Class Initialized
DEBUG - 2011-02-04 01:15:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:15:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:16:05 --> Config Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:16:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:16:05 --> URI Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Router Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Output Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Input Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:16:05 --> Language Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Loader Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:16:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:16:05 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:16:05 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Model Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Model Class Initialized
DEBUG - 2011-02-04 01:16:05 --> Controller Class Initialized
DEBUG - 2011-02-04 01:16:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:16:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:16:30 --> Config Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:16:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:16:30 --> URI Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Router Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Output Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Input Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:16:30 --> Language Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Loader Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:16:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:16:30 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:16:30 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Model Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Model Class Initialized
DEBUG - 2011-02-04 01:16:30 --> Controller Class Initialized
DEBUG - 2011-02-04 01:16:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:16:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:21:45 --> Config Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:21:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:21:45 --> URI Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Router Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Output Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Input Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:21:45 --> Language Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Loader Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:21:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:21:45 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:21:45 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Model Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Model Class Initialized
DEBUG - 2011-02-04 01:21:45 --> Controller Class Initialized
DEBUG - 2011-02-04 01:21:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:21:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:21:54 --> Config Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:21:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:21:54 --> URI Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Router Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Output Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Input Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:21:54 --> Language Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Loader Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:21:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:21:54 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:21:54 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Model Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Model Class Initialized
DEBUG - 2011-02-04 01:21:54 --> Controller Class Initialized
DEBUG - 2011-02-04 01:21:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:21:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:22:01 --> Config Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:22:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:22:01 --> URI Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Router Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Output Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Input Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:22:01 --> Language Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Loader Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:22:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:22:01 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:22:01 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:01 --> Controller Class Initialized
DEBUG - 2011-02-04 01:22:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:22:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:22:13 --> Config Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:22:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:22:13 --> URI Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Router Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Output Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Input Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:22:13 --> Language Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Loader Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:22:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:22:13 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:22:13 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:13 --> Controller Class Initialized
DEBUG - 2011-02-04 01:22:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:22:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:22:49 --> Config Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:22:49 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:22:49 --> URI Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Router Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Output Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Input Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:22:49 --> Language Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Loader Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:22:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:22:49 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:22:49 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Model Class Initialized
DEBUG - 2011-02-04 01:22:49 --> Controller Class Initialized
DEBUG - 2011-02-04 01:22:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:22:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:22:49 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:22:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:22:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:22:49 --> Final output sent to browser
DEBUG - 2011-02-04 01:22:49 --> Total execution time: 0.0290
DEBUG - 2011-02-04 01:23:01 --> Config Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:23:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:23:01 --> URI Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Router Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Output Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Input Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:23:01 --> Language Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Loader Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:23:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:23:01 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:23:01 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:01 --> Controller Class Initialized
DEBUG - 2011-02-04 01:23:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:23:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:23:01 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:23:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:23:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:23:01 --> Final output sent to browser
DEBUG - 2011-02-04 01:23:01 --> Total execution time: 0.0178
DEBUG - 2011-02-04 01:23:21 --> Config Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:23:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:23:21 --> URI Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Router Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Output Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Input Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:23:21 --> Language Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Loader Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:23:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:23:21 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:23:21 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:21 --> Controller Class Initialized
DEBUG - 2011-02-04 01:23:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:23:21 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-04 01:23:21 --> Severity: Notice --> Undefined variable: categoria /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 36
DEBUG - 2011-02-04 01:23:21 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:23:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:23:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:23:21 --> Final output sent to browser
DEBUG - 2011-02-04 01:23:21 --> Total execution time: 0.0151
DEBUG - 2011-02-04 01:23:31 --> Config Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:23:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:23:31 --> URI Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Router Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Output Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Input Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:23:31 --> Language Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Loader Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:23:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:23:31 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:23:31 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:31 --> Controller Class Initialized
DEBUG - 2011-02-04 01:23:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:23:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:23:43 --> Config Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:23:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:23:43 --> URI Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Router Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Output Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Input Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:23:43 --> Language Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Loader Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:23:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:23:43 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:23:43 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Model Class Initialized
DEBUG - 2011-02-04 01:23:43 --> Controller Class Initialized
DEBUG - 2011-02-04 01:23:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:23:43 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-04 01:23:43 --> Severity: Notice --> Undefined variable: categoria /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 36
DEBUG - 2011-02-04 01:23:43 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:23:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:23:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:23:43 --> Final output sent to browser
DEBUG - 2011-02-04 01:23:43 --> Total execution time: 0.0129
DEBUG - 2011-02-04 01:24:14 --> Config Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:24:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:24:14 --> URI Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Router Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Output Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Input Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:24:14 --> Language Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Loader Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:24:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:24:14 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:24:14 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Model Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Model Class Initialized
DEBUG - 2011-02-04 01:24:14 --> Controller Class Initialized
DEBUG - 2011-02-04 01:24:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:24:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:25:59 --> Config Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:25:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:25:59 --> URI Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Router Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Output Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Input Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:25:59 --> Language Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Loader Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:25:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:25:59 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:25:59 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Model Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Model Class Initialized
DEBUG - 2011-02-04 01:25:59 --> Controller Class Initialized
DEBUG - 2011-02-04 01:25:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:25:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:26:16 --> Config Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:26:16 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:26:16 --> URI Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Router Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Output Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Input Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:26:16 --> Language Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Loader Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:26:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:26:16 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:26:16 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:16 --> Controller Class Initialized
DEBUG - 2011-02-04 01:26:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:26:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:26:16 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:26:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:26:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:26:16 --> Final output sent to browser
DEBUG - 2011-02-04 01:26:16 --> Total execution time: 0.0153
DEBUG - 2011-02-04 01:26:22 --> Config Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:26:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:26:22 --> URI Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Router Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Output Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Input Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:26:22 --> Language Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Loader Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:26:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:26:22 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:26:22 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:22 --> Controller Class Initialized
DEBUG - 2011-02-04 01:26:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:26:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:26:22 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:26:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:26:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:26:22 --> Final output sent to browser
DEBUG - 2011-02-04 01:26:22 --> Total execution time: 0.0124
DEBUG - 2011-02-04 01:26:34 --> Config Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:26:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:26:34 --> URI Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Router Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Output Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Input Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:26:34 --> Language Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Loader Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:26:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:26:34 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:26:34 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:34 --> Controller Class Initialized
DEBUG - 2011-02-04 01:26:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:26:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:26:34 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:26:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:26:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:26:34 --> Final output sent to browser
DEBUG - 2011-02-04 01:26:34 --> Total execution time: 0.0126
DEBUG - 2011-02-04 01:26:48 --> Config Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:26:48 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:26:48 --> URI Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Router Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Output Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Input Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:26:48 --> Language Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Loader Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:26:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:26:48 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:26:48 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Model Class Initialized
DEBUG - 2011-02-04 01:26:48 --> Controller Class Initialized
DEBUG - 2011-02-04 01:26:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:26:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:26:48 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:26:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:26:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:26:48 --> Final output sent to browser
DEBUG - 2011-02-04 01:26:48 --> Total execution time: 0.0148
DEBUG - 2011-02-04 01:27:00 --> Config Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:27:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:27:00 --> URI Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Router Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Output Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Input Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:27:00 --> Language Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Loader Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:27:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:27:00 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:27:00 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Model Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Model Class Initialized
DEBUG - 2011-02-04 01:27:00 --> Controller Class Initialized
DEBUG - 2011-02-04 01:27:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:27:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:27:00 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:27:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:27:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:27:00 --> Final output sent to browser
DEBUG - 2011-02-04 01:27:00 --> Total execution time: 0.0122
DEBUG - 2011-02-04 01:27:59 --> Config Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:27:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:27:59 --> URI Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Router Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Output Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Input Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:27:59 --> Language Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Loader Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:27:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:27:59 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:27:59 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Model Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Model Class Initialized
DEBUG - 2011-02-04 01:27:59 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:17 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:17 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:17 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:17 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-04 01:31:17 --> Security Class Initialized
DEBUG - 2011-02-04 01:31:17 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:17 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:17 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:17 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:17 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:17 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:17 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:17 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:17 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:17 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-04 01:31:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:17 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:17 --> Total execution time: 0.0239
DEBUG - 2011-02-04 01:31:22 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:22 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:22 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:22 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:22 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:22 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:22 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:31:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:22 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:22 --> Total execution time: 0.0134
DEBUG - 2011-02-04 01:31:24 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:24 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:24 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:24 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:24 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-04 01:31:24 --> Security Class Initialized
DEBUG - 2011-02-04 01:31:24 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:24 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:24 --> XSS Filtering completed
DEBUG - 2011-02-04 01:31:24 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:24 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:24 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:24 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:24 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:24 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:24 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-04 01:31:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:24 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:24 --> Total execution time: 0.0133
DEBUG - 2011-02-04 01:31:31 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:31 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:31 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:31 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:31 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:31 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-04 01:31:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:31 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:31 --> Total execution time: 0.0130
DEBUG - 2011-02-04 01:31:33 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:33 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:33 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:33 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:33 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:33 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:33 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:33 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-04 01:31:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:33 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:33 --> Total execution time: 0.0161
DEBUG - 2011-02-04 01:31:37 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:37 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:37 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:37 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:37 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:37 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Config Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:31:37 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:31:37 --> URI Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Router Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Output Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Input Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:31:37 --> Language Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Loader Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:31:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:31:37 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:31:37 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Model Class Initialized
DEBUG - 2011-02-04 01:31:37 --> Controller Class Initialized
DEBUG - 2011-02-04 01:31:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:31:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:31:37 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-04 01:31:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:31:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:31:37 --> Final output sent to browser
DEBUG - 2011-02-04 01:31:37 --> Total execution time: 0.0094
DEBUG - 2011-02-04 01:33:35 --> Config Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:33:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:33:35 --> URI Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Router Class Initialized
DEBUG - 2011-02-04 01:33:35 --> No URI present. Default controller set.
DEBUG - 2011-02-04 01:33:35 --> Output Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Input Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:33:35 --> Language Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Loader Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:33:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:33:35 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:33:35 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Model Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Model Class Initialized
DEBUG - 2011-02-04 01:33:35 --> Controller Class Initialized
DEBUG - 2011-02-04 01:33:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:33:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:33:35 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 01:33:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:33:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:33:35 --> Final output sent to browser
DEBUG - 2011-02-04 01:33:35 --> Total execution time: 0.0178
DEBUG - 2011-02-04 01:33:52 --> Config Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Hooks Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Utf8 Class Initialized
DEBUG - 2011-02-04 01:33:52 --> UTF-8 Support Enabled
DEBUG - 2011-02-04 01:33:52 --> URI Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Router Class Initialized
DEBUG - 2011-02-04 01:33:52 --> No URI present. Default controller set.
DEBUG - 2011-02-04 01:33:52 --> Output Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Input Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-04 01:33:52 --> Language Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Loader Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Helper loaded: url_helper
DEBUG - 2011-02-04 01:33:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-04 01:33:52 --> Database Driver Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Helper loaded: form_helper
DEBUG - 2011-02-04 01:33:52 --> Form Validation Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Model Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Model Class Initialized
DEBUG - 2011-02-04 01:33:52 --> Controller Class Initialized
DEBUG - 2011-02-04 01:33:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-04 01:33:52 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-04 01:33:52 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-04 01:33:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-04 01:33:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-04 01:33:52 --> Final output sent to browser
DEBUG - 2011-02-04 01:33:52 --> Total execution time: 0.0200
<file_sep>/application/logs/log-2011-02-15.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-15 10:33:04 --> Config Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:33:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:33:04 --> URI Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Router Class Initialized
DEBUG - 2011-02-15 10:33:04 --> No URI present. Default controller set.
DEBUG - 2011-02-15 10:33:04 --> Output Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Input Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:33:04 --> Language Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Loader Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:33:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:33:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:33:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:04 --> Controller Class Initialized
DEBUG - 2011-02-15 10:33:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:33:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:33:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 10:33:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:33:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:33:04 --> Final output sent to browser
DEBUG - 2011-02-15 10:33:04 --> Total execution time: 0.0187
DEBUG - 2011-02-15 10:33:13 --> Config Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:33:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:33:13 --> URI Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Router Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Output Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Input Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:33:13 --> Language Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Loader Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:33:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:33:13 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:33:13 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:13 --> Controller Class Initialized
DEBUG - 2011-02-15 10:33:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:33:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:33:13 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 10:33:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:33:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:33:13 --> Final output sent to browser
DEBUG - 2011-02-15 10:33:13 --> Total execution time: 0.0189
DEBUG - 2011-02-15 10:33:28 --> Config Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:33:28 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:33:28 --> URI Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Router Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Output Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Input Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:33:28 --> Language Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Loader Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:33:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:33:28 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:33:28 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Model Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Controller Class Initialized
DEBUG - 2011-02-15 10:33:28 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 10:33:28 --> Security Class Initialized
DEBUG - 2011-02-15 10:33:28 --> XSS Filtering completed
DEBUG - 2011-02-15 10:33:28 --> XSS Filtering completed
DEBUG - 2011-02-15 10:33:28 --> XSS Filtering completed
DEBUG - 2011-02-15 10:35:02 --> Config Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:35:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:35:02 --> URI Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Router Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Output Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Input Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:35:02 --> Language Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Loader Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:35:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:35:02 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:35:02 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:02 --> Controller Class Initialized
DEBUG - 2011-02-15 10:35:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:35:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:35:02 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 10:35:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:35:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:35:02 --> Final output sent to browser
DEBUG - 2011-02-15 10:35:02 --> Total execution time: 0.0315
DEBUG - 2011-02-15 10:35:17 --> Config Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:35:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:35:17 --> URI Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Router Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Output Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Input Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:35:17 --> Language Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Loader Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:35:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:35:17 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:35:17 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:17 --> Controller Class Initialized
DEBUG - 2011-02-15 10:35:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:35:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:35:17 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 10:35:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:35:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:35:17 --> Final output sent to browser
DEBUG - 2011-02-15 10:35:17 --> Total execution time: 0.0445
DEBUG - 2011-02-15 10:35:19 --> Config Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:35:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:35:19 --> URI Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Router Class Initialized
DEBUG - 2011-02-15 10:35:19 --> No URI present. Default controller set.
DEBUG - 2011-02-15 10:35:19 --> Output Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Input Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:35:19 --> Language Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Loader Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:35:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:35:19 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:35:19 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:19 --> Controller Class Initialized
DEBUG - 2011-02-15 10:35:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:35:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:35:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 10:35:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:35:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:35:19 --> Final output sent to browser
DEBUG - 2011-02-15 10:35:19 --> Total execution time: 0.0127
DEBUG - 2011-02-15 10:35:34 --> Config Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Hooks Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Utf8 Class Initialized
DEBUG - 2011-02-15 10:35:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 10:35:34 --> URI Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Router Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Output Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Input Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 10:35:34 --> Language Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Loader Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Helper loaded: url_helper
DEBUG - 2011-02-15 10:35:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 10:35:34 --> Database Driver Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Helper loaded: form_helper
DEBUG - 2011-02-15 10:35:34 --> Form Validation Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Model Class Initialized
DEBUG - 2011-02-15 10:35:34 --> Controller Class Initialized
DEBUG - 2011-02-15 10:35:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 10:35:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 10:35:34 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 10:35:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 10:35:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 10:35:34 --> Final output sent to browser
DEBUG - 2011-02-15 10:35:34 --> Total execution time: 0.0145
DEBUG - 2011-02-15 11:06:09 --> Config Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:06:09 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:06:09 --> URI Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Router Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Output Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Input Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:06:09 --> Language Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Loader Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:06:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:06:09 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:06:09 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Controller Class Initialized
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/noticia/noticia_cad_view.php
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:06:09 --> Final output sent to browser
DEBUG - 2011-02-15 11:06:09 --> Total execution time: 0.1257
DEBUG - 2011-02-15 11:06:09 --> Config Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:06:09 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:06:09 --> URI Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Router Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Output Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Input Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:06:09 --> Language Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Loader Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:06:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:06:09 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:06:09 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:09 --> Controller Class Initialized
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Trying to get property of non-object /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php 57
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/noticia/noticia_cad_view.php
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: 4096 --> Object of class stdClass could not be converted to string /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
ERROR - 2011-02-15 11:06:09 --> Severity: Notice --> Object of class stdClass to string conversion /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 143
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:06:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:06:09 --> Final output sent to browser
DEBUG - 2011-02-15 11:06:09 --> Total execution time: 0.0417
DEBUG - 2011-02-15 11:06:21 --> Config Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:06:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:06:21 --> URI Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Router Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Output Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Input Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:06:21 --> Language Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Loader Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:06:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:06:21 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:06:21 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:21 --> Controller Class Initialized
DEBUG - 2011-02-15 11:06:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:06:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:06:21 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 11:06:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:06:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:06:21 --> Final output sent to browser
DEBUG - 2011-02-15 11:06:21 --> Total execution time: 0.0156
DEBUG - 2011-02-15 11:06:23 --> Config Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:06:23 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:06:23 --> URI Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Router Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Output Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Input Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:06:23 --> Language Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Loader Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:06:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:06:23 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:06:23 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:23 --> Controller Class Initialized
DEBUG - 2011-02-15 11:06:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:06:23 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:06:23 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:06:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:06:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:06:23 --> Final output sent to browser
DEBUG - 2011-02-15 11:06:23 --> Total execution time: 0.0173
DEBUG - 2011-02-15 11:06:44 --> Config Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:06:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:06:44 --> URI Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Router Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Output Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Input Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:06:44 --> Language Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Loader Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:06:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:06:44 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:06:44 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Model Class Initialized
DEBUG - 2011-02-15 11:06:44 --> Controller Class Initialized
DEBUG - 2011-02-15 11:06:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:06:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:06:44 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:06:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:06:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:06:44 --> Final output sent to browser
DEBUG - 2011-02-15 11:06:44 --> Total execution time: 0.0295
DEBUG - 2011-02-15 11:07:06 --> Config Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:07:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:07:06 --> URI Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Router Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Output Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Input Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:07:06 --> Language Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Loader Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:07:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:07:06 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:07:06 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:06 --> Controller Class Initialized
DEBUG - 2011-02-15 11:07:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:07:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:07:06 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:07:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:07:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:07:06 --> Final output sent to browser
DEBUG - 2011-02-15 11:07:06 --> Total execution time: 0.0291
DEBUG - 2011-02-15 11:07:34 --> Config Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:07:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:07:34 --> URI Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Router Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Output Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Input Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:07:34 --> Language Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Loader Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:07:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:07:34 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:07:34 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Controller Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 11:07:34 --> Security Class Initialized
DEBUG - 2011-02-15 11:07:34 --> XSS Filtering completed
DEBUG - 2011-02-15 11:07:34 --> XSS Filtering completed
DEBUG - 2011-02-15 11:07:34 --> XSS Filtering completed
DEBUG - 2011-02-15 11:07:34 --> Config Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:07:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:07:34 --> URI Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Router Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Output Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Input Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:07:34 --> Language Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Loader Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:07:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:07:34 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:07:34 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 11:07:34 --> Controller Class Initialized
DEBUG - 2011-02-15 11:07:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:07:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:07:34 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 11:07:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:07:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:07:34 --> Final output sent to browser
DEBUG - 2011-02-15 11:07:34 --> Total execution time: 0.0128
DEBUG - 2011-02-15 11:08:06 --> Config Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:08:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:08:06 --> URI Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Router Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Output Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Input Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:08:06 --> Language Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Loader Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:08:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:08:06 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:08:06 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Model Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Model Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Controller Class Initialized
DEBUG - 2011-02-15 11:08:06 --> Language file loaded: language/english/form_validation_lang.php
ERROR - 2011-02-15 11:08:06 --> Severity: Notice --> Undefined property: noticia::$upload /Applications/MAMP/htdocs/ci2/system/core/Model.php 50
DEBUG - 2011-02-15 11:08:38 --> Config Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:08:38 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:08:38 --> URI Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Router Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Output Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Input Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:08:38 --> Language Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Loader Class Initialized
DEBUG - 2011-02-15 11:08:38 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:08:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:08:39 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:08:39 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Upload Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Model Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Model Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Controller Class Initialized
DEBUG - 2011-02-15 11:08:39 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 11:08:39 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 11:08:39 --> You did not select a file to upload.
DEBUG - 2011-02-15 11:08:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:08:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:08:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:08:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:08:39 --> Final output sent to browser
DEBUG - 2011-02-15 11:08:39 --> Total execution time: 0.0855
DEBUG - 2011-02-15 11:10:57 --> Config Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:10:57 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:10:57 --> URI Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Router Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Output Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Input Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:10:57 --> Language Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Loader Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:10:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:10:57 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:10:57 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Upload Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Model Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Model Class Initialized
DEBUG - 2011-02-15 11:10:57 --> Controller Class Initialized
DEBUG - 2011-02-15 11:10:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:10:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:10:57 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:10:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:10:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:10:57 --> Final output sent to browser
DEBUG - 2011-02-15 11:10:57 --> Total execution time: 0.0173
DEBUG - 2011-02-15 11:11:12 --> Config Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:11:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:11:12 --> URI Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Router Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Output Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Input Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:11:12 --> Language Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Loader Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:11:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:11:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:11:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Upload Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Model Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Model Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Controller Class Initialized
DEBUG - 2011-02-15 11:11:12 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 11:11:12 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 11:11:12 --> You did not select a file to upload.
DEBUG - 2011-02-15 11:11:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:11:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:11:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:11:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:11:12 --> Final output sent to browser
DEBUG - 2011-02-15 11:11:12 --> Total execution time: 0.0201
DEBUG - 2011-02-15 11:13:12 --> Config Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:13:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:13:12 --> URI Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Router Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Output Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Input Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:13:12 --> Language Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Loader Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:13:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:13:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:13:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Upload Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Controller Class Initialized
DEBUG - 2011-02-15 11:13:12 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 11:13:12 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 11:13:12 --> You did not select a file to upload.
DEBUG - 2011-02-15 11:13:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:13:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:13:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:13:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:13:12 --> Final output sent to browser
DEBUG - 2011-02-15 11:13:12 --> Total execution time: 0.0220
DEBUG - 2011-02-15 11:13:14 --> Config Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:13:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:13:14 --> URI Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Router Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Output Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Input Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:13:14 --> Language Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Loader Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:13:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:13:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:13:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Upload Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:14 --> Controller Class Initialized
DEBUG - 2011-02-15 11:13:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:13:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:13:14 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 11:13:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:13:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:13:14 --> Final output sent to browser
DEBUG - 2011-02-15 11:13:14 --> Total execution time: 0.0166
DEBUG - 2011-02-15 11:13:16 --> Config Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:13:16 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:13:16 --> URI Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Router Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Output Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Input Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:13:16 --> Language Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Loader Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:13:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:13:16 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:13:16 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Upload Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:16 --> Controller Class Initialized
DEBUG - 2011-02-15 11:13:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:13:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:13:16 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:13:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:13:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:13:16 --> Final output sent to browser
DEBUG - 2011-02-15 11:13:16 --> Total execution time: 0.0213
DEBUG - 2011-02-15 11:13:27 --> Config Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:13:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:13:27 --> URI Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Router Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Output Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Input Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:13:27 --> Language Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Loader Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:13:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:13:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:13:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Upload Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Model Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Controller Class Initialized
DEBUG - 2011-02-15 11:13:27 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 11:13:27 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 11:13:27 --> You did not select a file to upload.
DEBUG - 2011-02-15 11:13:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:13:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:13:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:13:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:13:27 --> Final output sent to browser
DEBUG - 2011-02-15 11:13:27 --> Total execution time: 0.0184
DEBUG - 2011-02-15 11:41:09 --> Config Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:41:09 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:41:09 --> URI Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Router Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Output Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Input Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:41:09 --> Language Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Loader Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:41:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:41:09 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:41:09 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Upload Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Model Class Initialized
DEBUG - 2011-02-15 11:41:09 --> Controller Class Initialized
DEBUG - 2011-02-15 11:41:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:41:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:41:09 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:41:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:41:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:41:09 --> Final output sent to browser
DEBUG - 2011-02-15 11:41:09 --> Total execution time: 0.0172
DEBUG - 2011-02-15 11:42:53 --> Config Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:42:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:42:53 --> URI Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Router Class Initialized
DEBUG - 2011-02-15 11:42:53 --> No URI present. Default controller set.
DEBUG - 2011-02-15 11:42:53 --> Output Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Input Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:42:53 --> Language Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Loader Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:42:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:42:53 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:42:53 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Upload Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Model Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Model Class Initialized
DEBUG - 2011-02-15 11:42:53 --> Controller Class Initialized
DEBUG - 2011-02-15 11:42:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:42:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:42:53 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 11:42:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:42:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:42:53 --> Final output sent to browser
DEBUG - 2011-02-15 11:42:53 --> Total execution time: 0.2587
DEBUG - 2011-02-15 11:42:59 --> Config Class Initialized
DEBUG - 2011-02-15 11:42:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:43:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:43:00 --> URI Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Router Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Output Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Input Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:43:00 --> Language Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Loader Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:43:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:43:00 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:43:00 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Upload Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:00 --> Controller Class Initialized
DEBUG - 2011-02-15 11:43:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:43:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:43:00 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 11:43:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:43:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:43:00 --> Final output sent to browser
DEBUG - 2011-02-15 11:43:00 --> Total execution time: 0.5310
DEBUG - 2011-02-15 11:43:08 --> Config Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:43:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:43:08 --> URI Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Router Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Output Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Input Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:43:08 --> Language Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Loader Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:43:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:43:08 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:43:08 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Upload Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:08 --> Controller Class Initialized
DEBUG - 2011-02-15 11:43:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 11:43:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 11:43:08 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 11:43:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 11:43:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 11:43:08 --> Final output sent to browser
DEBUG - 2011-02-15 11:43:08 --> Total execution time: 0.2527
DEBUG - 2011-02-15 11:43:21 --> Config Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Hooks Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Utf8 Class Initialized
DEBUG - 2011-02-15 11:43:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 11:43:21 --> URI Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Router Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Output Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Input Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 11:43:21 --> Language Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Loader Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Helper loaded: url_helper
DEBUG - 2011-02-15 11:43:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 11:43:21 --> Database Driver Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Helper loaded: form_helper
DEBUG - 2011-02-15 11:43:21 --> Form Validation Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Upload Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Model Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Controller Class Initialized
DEBUG - 2011-02-15 11:43:21 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 12:43:18 --> Security Class Initialized
DEBUG - 2011-02-15 12:43:18 --> XSS Filtering completed
DEBUG - 2011-02-15 12:53:20 --> XSS Filtering completed
DEBUG - 2011-02-15 12:53:20 --> XSS Filtering completed
DEBUG - 2011-02-15 12:58:55 --> Config Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Hooks Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Utf8 Class Initialized
DEBUG - 2011-02-15 12:58:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 12:58:55 --> URI Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Router Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Output Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Input Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 12:58:55 --> Language Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Loader Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Helper loaded: url_helper
DEBUG - 2011-02-15 12:58:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 12:58:55 --> Database Driver Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Helper loaded: form_helper
DEBUG - 2011-02-15 12:58:55 --> Form Validation Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Upload Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Model Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Model Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Controller Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 12:58:55 --> Security Class Initialized
DEBUG - 2011-02-15 12:58:55 --> XSS Filtering completed
DEBUG - 2011-02-15 12:58:55 --> XSS Filtering completed
DEBUG - 2011-02-15 12:58:55 --> XSS Filtering completed
DEBUG - 2011-02-15 12:58:55 --> Config Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Hooks Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Utf8 Class Initialized
DEBUG - 2011-02-15 12:58:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 12:58:55 --> URI Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Router Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Output Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Input Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 12:58:55 --> Language Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Loader Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Helper loaded: url_helper
DEBUG - 2011-02-15 12:58:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 12:58:55 --> Database Driver Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Helper loaded: form_helper
DEBUG - 2011-02-15 12:58:55 --> Form Validation Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Upload Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Model Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Model Class Initialized
DEBUG - 2011-02-15 12:58:55 --> Controller Class Initialized
DEBUG - 2011-02-15 12:58:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 12:58:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 12:58:55 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 12:58:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 12:58:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 12:58:55 --> Final output sent to browser
DEBUG - 2011-02-15 12:58:55 --> Total execution time: 0.0131
DEBUG - 2011-02-15 13:00:03 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:03 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:03 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:03 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:03 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:03 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:00:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:00:03 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:00:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:00:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:00:03 --> Final output sent to browser
DEBUG - 2011-02-15 13:00:03 --> Total execution time: 0.0163
DEBUG - 2011-02-15 13:00:05 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:05 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:05 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:05 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:05 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:05 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:00:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:00:05 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:00:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:00:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:00:05 --> Final output sent to browser
DEBUG - 2011-02-15 13:00:05 --> Total execution time: 0.0165
DEBUG - 2011-02-15 13:00:12 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:12 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:12 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:12 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 13:00:12 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 13:00:12 --> You did not select a file to upload.
DEBUG - 2011-02-15 13:00:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:00:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:00:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:00:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:00:12 --> Final output sent to browser
DEBUG - 2011-02-15 13:00:12 --> Total execution time: 0.0205
DEBUG - 2011-02-15 13:00:18 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:18 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:18 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:18 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:18 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:18 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:18 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:00:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:00:18 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:00:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:00:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:00:18 --> Final output sent to browser
DEBUG - 2011-02-15 13:00:18 --> Total execution time: 0.0170
DEBUG - 2011-02-15 13:00:25 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:25 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:25 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:25 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:25 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 13:00:25 --> Security Class Initialized
DEBUG - 2011-02-15 13:00:25 --> XSS Filtering completed
DEBUG - 2011-02-15 13:00:25 --> XSS Filtering completed
DEBUG - 2011-02-15 13:00:25 --> XSS Filtering completed
DEBUG - 2011-02-15 13:00:25 --> Config Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:00:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:00:25 --> URI Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Router Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Output Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Input Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:00:25 --> Language Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Loader Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:00:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:00:25 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:00:25 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Upload Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:00:25 --> Controller Class Initialized
DEBUG - 2011-02-15 13:00:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:00:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:00:25 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:00:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:00:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:00:25 --> Final output sent to browser
DEBUG - 2011-02-15 13:00:25 --> Total execution time: 0.0137
DEBUG - 2011-02-15 13:02:41 --> Config Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:02:41 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:02:41 --> URI Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Router Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Output Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Input Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:02:41 --> Language Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Loader Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:02:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:02:41 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:02:41 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Upload Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:41 --> Controller Class Initialized
DEBUG - 2011-02-15 13:02:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:02:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:02:41 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:02:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:02:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:02:41 --> Final output sent to browser
DEBUG - 2011-02-15 13:02:41 --> Total execution time: 0.0201
DEBUG - 2011-02-15 13:02:42 --> Config Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:02:42 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:02:42 --> URI Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Router Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Output Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Input Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:02:42 --> Language Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Loader Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:02:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:02:42 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:02:42 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Upload Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:42 --> Controller Class Initialized
DEBUG - 2011-02-15 13:02:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:02:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:02:42 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:02:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:02:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:02:42 --> Final output sent to browser
DEBUG - 2011-02-15 13:02:42 --> Total execution time: 0.0173
DEBUG - 2011-02-15 13:02:51 --> Config Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:02:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:02:51 --> URI Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Router Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Output Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Input Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:02:51 --> Language Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Loader Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:02:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:02:51 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:02:51 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Upload Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Controller Class Initialized
DEBUG - 2011-02-15 13:02:51 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 13:02:51 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 13:02:51 --> You did not select a file to upload.
DEBUG - 2011-02-15 13:02:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:02:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:02:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:02:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:02:51 --> Final output sent to browser
DEBUG - 2011-02-15 13:02:51 --> Total execution time: 0.0190
DEBUG - 2011-02-15 13:02:58 --> Config Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:02:58 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:02:58 --> URI Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Router Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Output Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Input Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:02:58 --> Language Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Loader Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:02:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:02:58 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:02:58 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Upload Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Model Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Controller Class Initialized
DEBUG - 2011-02-15 13:02:58 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 13:02:58 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-15 13:02:58 --> You did not select a file to upload.
DEBUG - 2011-02-15 13:02:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:02:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:02:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:02:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:02:58 --> Final output sent to browser
DEBUG - 2011-02-15 13:02:58 --> Total execution time: 0.0263
DEBUG - 2011-02-15 13:03:01 --> Config Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:03:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:03:01 --> URI Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Router Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Output Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Input Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:03:01 --> Language Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Loader Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:03:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:03:01 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:03:01 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Upload Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Controller Class Initialized
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:03:01 --> Final output sent to browser
DEBUG - 2011-02-15 13:03:01 --> Total execution time: 0.0169
DEBUG - 2011-02-15 13:03:01 --> Config Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:03:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:03:01 --> URI Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Router Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Output Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Input Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:03:01 --> Language Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Loader Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:03:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:03:01 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:03:01 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Upload Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:01 --> Controller Class Initialized
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:03:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:03:01 --> Final output sent to browser
DEBUG - 2011-02-15 13:03:01 --> Total execution time: 0.0164
DEBUG - 2011-02-15 13:03:04 --> Config Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:03:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:03:04 --> URI Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Router Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Output Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Input Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:03:04 --> Language Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Loader Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:03:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:03:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:03:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Upload Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 13:03:04 --> Controller Class Initialized
DEBUG - 2011-02-15 13:03:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:03:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:03:04 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:03:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:03:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:03:04 --> Final output sent to browser
DEBUG - 2011-02-15 13:03:04 --> Total execution time: 0.0165
DEBUG - 2011-02-15 13:04:06 --> Config Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:04:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:04:06 --> URI Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Router Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Output Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Input Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:04:06 --> Language Class Initialized
DEBUG - 2011-02-15 13:04:06 --> Loader Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:04:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:04:07 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:04:07 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Upload Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:07 --> Controller Class Initialized
DEBUG - 2011-02-15 13:04:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:04:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:04:07 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 13:04:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:04:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:04:07 --> Final output sent to browser
DEBUG - 2011-02-15 13:04:07 --> Total execution time: 0.0455
DEBUG - 2011-02-15 13:04:10 --> Config Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:04:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:04:10 --> URI Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Router Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Output Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Input Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:04:10 --> Language Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Loader Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:04:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:04:10 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:04:10 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Upload Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:10 --> Controller Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Config Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:04:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:04:11 --> URI Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Router Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Output Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Input Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:04:11 --> Language Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Loader Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:04:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:04:11 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:04:11 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Upload Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:11 --> Controller Class Initialized
DEBUG - 2011-02-15 13:04:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:04:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:04:11 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:04:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:04:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:04:11 --> Final output sent to browser
DEBUG - 2011-02-15 13:04:11 --> Total execution time: 0.0137
DEBUG - 2011-02-15 13:04:14 --> Config Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:04:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:04:14 --> URI Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Router Class Initialized
DEBUG - 2011-02-15 13:04:14 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:04:14 --> Output Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Input Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:04:14 --> Language Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Loader Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:04:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:04:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:04:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Upload Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Model Class Initialized
DEBUG - 2011-02-15 13:04:14 --> Controller Class Initialized
DEBUG - 2011-02-15 13:04:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:04:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:04:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:04:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:04:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:04:14 --> Final output sent to browser
DEBUG - 2011-02-15 13:04:14 --> Total execution time: 0.0141
DEBUG - 2011-02-15 13:06:43 --> Config Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:06:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:06:43 --> URI Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Router Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Output Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Input Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:06:43 --> Language Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Loader Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:06:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:06:43 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:06:43 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Upload Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:43 --> Controller Class Initialized
DEBUG - 2011-02-15 13:06:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:06:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:06:43 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:06:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:06:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:06:43 --> Final output sent to browser
DEBUG - 2011-02-15 13:06:43 --> Total execution time: 0.0159
DEBUG - 2011-02-15 13:06:45 --> Config Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:06:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:06:45 --> URI Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Router Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Output Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Input Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:06:45 --> Language Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Loader Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:06:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:06:45 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:06:45 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Upload Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:45 --> Controller Class Initialized
DEBUG - 2011-02-15 13:06:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:06:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:06:45 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:06:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:06:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:06:45 --> Final output sent to browser
DEBUG - 2011-02-15 13:06:45 --> Total execution time: 0.0222
DEBUG - 2011-02-15 13:06:57 --> Config Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:06:57 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:06:57 --> URI Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Router Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Output Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Input Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:06:57 --> Language Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Loader Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:06:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:06:57 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:06:57 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Upload Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Controller Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-15 13:06:57 --> Security Class Initialized
DEBUG - 2011-02-15 13:06:57 --> XSS Filtering completed
DEBUG - 2011-02-15 13:06:57 --> XSS Filtering completed
DEBUG - 2011-02-15 13:06:57 --> XSS Filtering completed
DEBUG - 2011-02-15 13:06:57 --> Config Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:06:57 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:06:57 --> URI Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Router Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Output Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Input Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:06:57 --> Language Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Loader Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:06:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:06:57 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:06:57 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Upload Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Model Class Initialized
DEBUG - 2011-02-15 13:06:57 --> Controller Class Initialized
DEBUG - 2011-02-15 13:06:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:06:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:06:57 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:06:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:06:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:06:57 --> Final output sent to browser
DEBUG - 2011-02-15 13:06:57 --> Total execution time: 0.0171
DEBUG - 2011-02-15 13:09:25 --> Config Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:09:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:09:25 --> URI Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Router Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Output Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Input Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:09:25 --> Language Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Loader Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:09:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:09:25 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:09:25 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Upload Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:09:25 --> Controller Class Initialized
DEBUG - 2011-02-15 13:09:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:09:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:09:25 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:09:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:09:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:09:25 --> Final output sent to browser
DEBUG - 2011-02-15 13:09:25 --> Total execution time: 0.0165
DEBUG - 2011-02-15 13:18:05 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:05 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:05 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:08 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:08 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:08 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:08 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:14 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:14 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:14 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:27 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:27 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:27 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:27 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:18:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:27 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:27 --> Total execution time: 0.0320
DEBUG - 2011-02-15 13:18:48 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:48 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:48 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:48 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:48 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:48 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:48 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:48 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:48 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:18:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:48 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:48 --> Total execution time: 0.0229
DEBUG - 2011-02-15 13:18:54 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:54 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:54 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:54 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:54 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:54 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:54 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:54 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:18:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:54 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:54 --> Total execution time: 0.0159
DEBUG - 2011-02-15 13:18:55 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:55 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:55 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:55 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:55 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:55 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:55 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:55 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:18:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:55 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:55 --> Total execution time: 0.0163
DEBUG - 2011-02-15 13:18:59 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:59 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:59 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:59 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:59 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:59 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:59 --> Total execution time: 0.0202
DEBUG - 2011-02-15 13:18:59 --> Config Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:18:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:18:59 --> URI Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Router Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Output Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Input Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:18:59 --> Language Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Loader Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:18:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:18:59 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:18:59 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Upload Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Model Class Initialized
DEBUG - 2011-02-15 13:18:59 --> Controller Class Initialized
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:18:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:18:59 --> Final output sent to browser
DEBUG - 2011-02-15 13:18:59 --> Total execution time: 0.0156
DEBUG - 2011-02-15 13:19:00 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:00 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:00 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:00 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:00 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:00 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:00 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:00 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:00 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:00 --> Total execution time: 0.0160
DEBUG - 2011-02-15 13:19:19 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:19 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:19 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:19 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:19 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:19 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:19 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:19 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:19 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:19 --> Total execution time: 0.0180
DEBUG - 2011-02-15 13:19:27 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:27 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:27 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:27 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:27 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:27 --> Total execution time: 0.0696
DEBUG - 2011-02-15 13:19:31 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:31 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:31 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:31 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:31 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:31 --> Total execution time: 0.0298
DEBUG - 2011-02-15 13:19:33 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:33 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:33 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:33 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:33 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:33 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:33 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:33 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:19:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:33 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:33 --> Total execution time: 0.0178
DEBUG - 2011-02-15 13:19:35 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:35 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:35 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:35 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:35 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:35 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:35 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:35 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:35 --> Total execution time: 0.0178
DEBUG - 2011-02-15 13:19:58 --> Config Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:19:58 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:19:58 --> URI Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Router Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Output Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Input Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:19:58 --> Language Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Loader Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:19:58 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:19:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:19:58 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:19:58 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Upload Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Model Class Initialized
DEBUG - 2011-02-15 13:19:58 --> Controller Class Initialized
DEBUG - 2011-02-15 13:19:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:19:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:19:58 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:19:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:19:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:19:58 --> Final output sent to browser
DEBUG - 2011-02-15 13:19:58 --> Total execution time: 0.0193
DEBUG - 2011-02-15 13:20:20 --> Config Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:20:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:20:20 --> URI Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Router Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Output Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Input Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:20:20 --> Language Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Loader Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:20:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:20:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:20:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:20:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Upload Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:20 --> Controller Class Initialized
DEBUG - 2011-02-15 13:20:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:20:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:20:20 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:20:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:20:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:20:20 --> Final output sent to browser
DEBUG - 2011-02-15 13:20:20 --> Total execution time: 0.0205
DEBUG - 2011-02-15 13:20:22 --> Config Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:20:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:20:22 --> URI Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Router Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Output Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Input Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:20:22 --> Language Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Loader Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:20:22 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:20:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:20:22 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:20:22 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Upload Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:22 --> Controller Class Initialized
DEBUG - 2011-02-15 13:20:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:20:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:20:22 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:20:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:20:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:20:22 --> Final output sent to browser
DEBUG - 2011-02-15 13:20:22 --> Total execution time: 0.0231
DEBUG - 2011-02-15 13:20:26 --> Config Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:20:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:20:26 --> URI Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Router Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Output Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Input Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:20:26 --> Language Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Loader Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:20:26 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:20:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:20:26 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:20:26 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Upload Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Model Class Initialized
DEBUG - 2011-02-15 13:20:26 --> Controller Class Initialized
DEBUG - 2011-02-15 13:20:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:20:26 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 86
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 87
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 88
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 89
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 90
ERROR - 2011-02-15 13:20:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 91
DEBUG - 2011-02-15 13:21:30 --> Config Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:21:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:21:30 --> URI Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Router Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Output Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Input Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:21:30 --> Language Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Loader Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:21:30 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:21:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:21:30 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:21:30 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Upload Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:21:30 --> Controller Class Initialized
DEBUG - 2011-02-15 13:21:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:21:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:21:30 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:21:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:21:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:21:30 --> Final output sent to browser
DEBUG - 2011-02-15 13:21:30 --> Total execution time: 0.1442
DEBUG - 2011-02-15 13:21:33 --> Config Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:21:33 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:21:33 --> URI Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Router Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Output Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Input Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:21:33 --> Language Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Loader Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:21:33 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:21:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:21:33 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:21:33 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Upload Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:21:33 --> Controller Class Initialized
DEBUG - 2011-02-15 13:21:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:21:33 --> File loaded: application/views/menu_view.php
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 86
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 87
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 88
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 89
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 90
ERROR - 2011-02-15 13:21:33 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/download_helper.php 91
DEBUG - 2011-02-15 13:22:15 --> Config Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:22:15 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:22:15 --> URI Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Router Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Output Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Input Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:22:15 --> Language Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Loader Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:22:15 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:22:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:22:15 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:22:15 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Upload Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Model Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Model Class Initialized
DEBUG - 2011-02-15 13:22:15 --> Controller Class Initialized
DEBUG - 2011-02-15 13:22:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:22:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:22:15 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:22:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:22:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:22:15 --> Final output sent to browser
DEBUG - 2011-02-15 13:22:15 --> Total execution time: 0.0184
DEBUG - 2011-02-15 13:25:31 --> Config Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:25:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:25:31 --> URI Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Router Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Output Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Input Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:25:31 --> Language Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Loader Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:25:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:25:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:25:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:25:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Upload Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:25:31 --> Controller Class Initialized
DEBUG - 2011-02-15 13:25:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:25:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:25:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:25:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:25:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:25:31 --> Final output sent to browser
DEBUG - 2011-02-15 13:25:31 --> Total execution time: 0.0268
DEBUG - 2011-02-15 13:26:20 --> Config Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:26:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:26:20 --> URI Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Router Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Output Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Input Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:26:20 --> Language Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Loader Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:26:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:26:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:26:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:26:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Upload Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Model Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Model Class Initialized
DEBUG - 2011-02-15 13:26:20 --> Controller Class Initialized
DEBUG - 2011-02-15 13:26:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:26:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:26:20 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:26:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:26:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:26:20 --> Final output sent to browser
DEBUG - 2011-02-15 13:26:20 --> Total execution time: 0.0203
DEBUG - 2011-02-15 13:26:21 --> Config Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:26:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:26:21 --> URI Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Router Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Output Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Input Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:26:21 --> Language Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Loader Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:26:21 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:26:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:26:21 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:26:21 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Upload Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Model Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Model Class Initialized
DEBUG - 2011-02-15 13:26:21 --> Controller Class Initialized
DEBUG - 2011-02-15 13:26:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:26:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:26:21 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:26:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:26:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:26:21 --> Final output sent to browser
DEBUG - 2011-02-15 13:26:21 --> Total execution time: 0.0183
DEBUG - 2011-02-15 13:27:31 --> Config Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:27:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:27:31 --> URI Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Router Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Output Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Input Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:27:31 --> Language Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Loader Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:27:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:27:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:27:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:27:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Upload Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:27:31 --> Controller Class Initialized
DEBUG - 2011-02-15 13:27:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:27:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:27:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:27:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:27:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:27:31 --> Final output sent to browser
DEBUG - 2011-02-15 13:27:31 --> Total execution time: 0.0188
DEBUG - 2011-02-15 13:27:33 --> Config Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:27:33 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:27:33 --> URI Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Router Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Output Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Input Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:27:33 --> Language Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Loader Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:27:33 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:27:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:27:33 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:27:33 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Upload Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Model Class Initialized
DEBUG - 2011-02-15 13:27:33 --> Controller Class Initialized
DEBUG - 2011-02-15 13:27:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:27:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:27:33 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:27:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:27:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:27:33 --> Final output sent to browser
DEBUG - 2011-02-15 13:27:33 --> Total execution time: 0.0213
DEBUG - 2011-02-15 13:30:56 --> Config Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:30:56 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:30:56 --> URI Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Router Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Output Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Input Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:30:56 --> Language Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Loader Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:30:56 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:30:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:30:56 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:30:56 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Upload Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Model Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Model Class Initialized
DEBUG - 2011-02-15 13:30:56 --> Controller Class Initialized
DEBUG - 2011-02-15 13:30:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:30:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:31:08 --> Config Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:31:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:31:08 --> URI Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Router Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Output Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Input Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:31:08 --> Language Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Loader Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:31:08 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:31:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:31:08 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:31:08 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Upload Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Model Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Model Class Initialized
DEBUG - 2011-02-15 13:31:08 --> Controller Class Initialized
DEBUG - 2011-02-15 13:31:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:31:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:32:28 --> Config Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:32:28 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:32:28 --> URI Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Router Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Output Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Input Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:32:28 --> Language Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Loader Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:32:28 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:32:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:32:28 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:32:28 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Upload Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:32:28 --> Controller Class Initialized
DEBUG - 2011-02-15 13:32:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:32:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:32:28 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:32:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:32:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:32:28 --> Final output sent to browser
DEBUG - 2011-02-15 13:32:28 --> Total execution time: 0.0234
DEBUG - 2011-02-15 13:33:22 --> Config Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:33:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:33:22 --> URI Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Router Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Output Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Input Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:33:22 --> Language Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Loader Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:33:22 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:33:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:33:22 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:33:22 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Upload Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Model Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Model Class Initialized
DEBUG - 2011-02-15 13:33:22 --> Controller Class Initialized
DEBUG - 2011-02-15 13:33:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:33:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:33:22 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:33:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:33:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:33:22 --> Final output sent to browser
DEBUG - 2011-02-15 13:33:22 --> Total execution time: 0.0166
DEBUG - 2011-02-15 13:33:30 --> Config Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:33:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:33:30 --> URI Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Router Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Output Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Input Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:33:30 --> Language Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Loader Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:33:30 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:33:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:33:30 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:33:30 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Upload Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:33:30 --> Controller Class Initialized
DEBUG - 2011-02-15 13:33:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:33:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:33:30 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:33:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:33:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:33:30 --> Final output sent to browser
DEBUG - 2011-02-15 13:33:30 --> Total execution time: 0.0199
DEBUG - 2011-02-15 13:34:04 --> Config Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:34:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:34:04 --> URI Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Router Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Output Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Input Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:34:04 --> Language Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Loader Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:34:04 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:34:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:34:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:34:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Upload Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:04 --> Controller Class Initialized
DEBUG - 2011-02-15 13:34:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:34:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:34:25 --> Config Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:34:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:34:25 --> URI Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Router Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Output Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Input Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:34:25 --> Language Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Loader Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:34:25 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:34:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:34:25 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:34:25 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Upload Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:25 --> Controller Class Initialized
DEBUG - 2011-02-15 13:34:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:34:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:34:39 --> Config Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:34:39 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:34:39 --> URI Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Router Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Output Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Input Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:34:39 --> Language Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Loader Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:34:39 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:34:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:34:39 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:34:39 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Upload Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Model Class Initialized
DEBUG - 2011-02-15 13:34:39 --> Controller Class Initialized
DEBUG - 2011-02-15 13:34:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:34:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:34:39 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:34:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:34:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:34:39 --> Final output sent to browser
DEBUG - 2011-02-15 13:34:39 --> Total execution time: 0.0217
DEBUG - 2011-02-15 13:35:39 --> Config Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:35:39 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:35:39 --> URI Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Router Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Output Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Input Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:35:39 --> Language Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Loader Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:35:39 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:35:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:35:39 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:35:39 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Upload Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Model Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Model Class Initialized
DEBUG - 2011-02-15 13:35:39 --> Controller Class Initialized
DEBUG - 2011-02-15 13:35:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:35:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:35:39 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:35:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:35:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:35:39 --> Final output sent to browser
DEBUG - 2011-02-15 13:35:39 --> Total execution time: 0.0228
DEBUG - 2011-02-15 13:35:40 --> Config Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:35:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:35:40 --> URI Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Router Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Output Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Input Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:35:40 --> Language Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Loader Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:35:40 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:35:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:35:40 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:35:40 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Upload Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Model Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Model Class Initialized
DEBUG - 2011-02-15 13:35:40 --> Controller Class Initialized
DEBUG - 2011-02-15 13:35:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:35:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:35:40 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:35:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:35:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:35:40 --> Final output sent to browser
DEBUG - 2011-02-15 13:35:40 --> Total execution time: 0.0173
DEBUG - 2011-02-15 13:36:54 --> Config Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:36:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:36:54 --> URI Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Router Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Output Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Input Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:36:54 --> Language Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Loader Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:36:54 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:36:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:36:54 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:36:54 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Upload Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Model Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Model Class Initialized
DEBUG - 2011-02-15 13:36:54 --> Controller Class Initialized
DEBUG - 2011-02-15 13:36:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:36:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:39:30 --> Config Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:39:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:39:30 --> URI Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Router Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Output Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Input Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:39:30 --> Language Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Loader Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:39:30 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:39:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:39:30 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:39:30 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Upload Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:39:30 --> Controller Class Initialized
DEBUG - 2011-02-15 13:39:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:39:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:39:30 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:39:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:39:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:39:30 --> Final output sent to browser
DEBUG - 2011-02-15 13:39:30 --> Total execution time: 0.0237
DEBUG - 2011-02-15 13:39:55 --> Config Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:39:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:39:55 --> URI Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Router Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Output Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Input Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:39:55 --> Language Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Loader Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:39:55 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:39:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:39:55 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:39:55 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Upload Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:39:55 --> Controller Class Initialized
DEBUG - 2011-02-15 13:39:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:39:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:39:55 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:39:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:39:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:39:55 --> Final output sent to browser
DEBUG - 2011-02-15 13:39:55 --> Total execution time: 0.0199
DEBUG - 2011-02-15 13:40:10 --> Config Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:40:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:40:10 --> URI Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Router Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Output Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Input Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:40:10 --> Language Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Loader Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:40:10 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:40:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:40:10 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:40:10 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Upload Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:10 --> Controller Class Initialized
DEBUG - 2011-02-15 13:40:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:40:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:40:10 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:40:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:40:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:40:10 --> Final output sent to browser
DEBUG - 2011-02-15 13:40:10 --> Total execution time: 0.0327
DEBUG - 2011-02-15 13:40:28 --> Config Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:40:28 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:40:28 --> URI Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Router Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Output Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Input Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:40:28 --> Language Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Loader Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:40:28 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:40:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:40:28 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:40:28 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Upload Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:28 --> Controller Class Initialized
DEBUG - 2011-02-15 13:40:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:40:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:40:28 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:40:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:40:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:40:28 --> Final output sent to browser
DEBUG - 2011-02-15 13:40:28 --> Total execution time: 0.0173
DEBUG - 2011-02-15 13:40:31 --> Config Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:40:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:40:31 --> URI Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Router Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Output Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Input Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:40:31 --> Language Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Loader Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:40:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:40:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:40:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:40:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Upload Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:31 --> Controller Class Initialized
DEBUG - 2011-02-15 13:40:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:40:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:40:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:40:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:40:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:40:31 --> Final output sent to browser
DEBUG - 2011-02-15 13:40:31 --> Total execution time: 0.0305
DEBUG - 2011-02-15 13:40:51 --> Config Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:40:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:40:51 --> URI Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Router Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Output Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Input Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:40:51 --> Language Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Loader Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:40:51 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:40:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:40:51 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:40:51 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Upload Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Model Class Initialized
DEBUG - 2011-02-15 13:40:51 --> Controller Class Initialized
DEBUG - 2011-02-15 13:40:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:40:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:40:51 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 13:40:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:40:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:40:51 --> Final output sent to browser
DEBUG - 2011-02-15 13:40:51 --> Total execution time: 0.0149
DEBUG - 2011-02-15 13:47:21 --> Config Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:47:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:47:21 --> URI Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Router Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Output Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Input Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:47:21 --> Language Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Loader Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:47:21 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:47:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:47:21 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:47:21 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Upload Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Model Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Model Class Initialized
DEBUG - 2011-02-15 13:47:21 --> Controller Class Initialized
DEBUG - 2011-02-15 13:47:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:47:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:47:21 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 13:47:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:47:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:47:21 --> Final output sent to browser
DEBUG - 2011-02-15 13:47:21 --> Total execution time: 0.0195
DEBUG - 2011-02-15 13:47:35 --> Config Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:47:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:47:35 --> URI Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Router Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Output Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Input Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:47:35 --> Language Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Loader Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:47:35 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:47:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:47:35 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:47:35 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Upload Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Model Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Model Class Initialized
DEBUG - 2011-02-15 13:47:35 --> Controller Class Initialized
DEBUG - 2011-02-15 13:47:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:47:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:47:35 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 13:47:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:47:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:47:35 --> Final output sent to browser
DEBUG - 2011-02-15 13:47:35 --> Total execution time: 0.0198
DEBUG - 2011-02-15 13:50:14 --> Config Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:50:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:50:14 --> URI Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Router Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Output Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Input Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:50:14 --> Language Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Loader Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:50:14 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:50:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:50:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:50:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Upload Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:14 --> Controller Class Initialized
DEBUG - 2011-02-15 13:50:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:50:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:50:14 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:50:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:50:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:50:14 --> Final output sent to browser
DEBUG - 2011-02-15 13:50:14 --> Total execution time: 0.0199
DEBUG - 2011-02-15 13:50:24 --> Config Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:50:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:50:24 --> URI Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Router Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Output Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Input Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:50:24 --> Language Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Loader Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:50:24 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:50:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:50:24 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:50:24 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Upload Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:24 --> Controller Class Initialized
DEBUG - 2011-02-15 13:50:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:50:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:50:24 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 13:50:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:50:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:50:24 --> Final output sent to browser
DEBUG - 2011-02-15 13:50:24 --> Total execution time: 0.0205
DEBUG - 2011-02-15 13:50:26 --> Config Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:50:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:50:26 --> URI Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Router Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Output Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Input Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:50:26 --> Language Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Loader Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:50:26 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:50:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:50:26 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:50:26 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Upload Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:26 --> Controller Class Initialized
DEBUG - 2011-02-15 13:50:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:50:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:50:26 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 13:50:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:50:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:50:26 --> Final output sent to browser
DEBUG - 2011-02-15 13:50:26 --> Total execution time: 0.0186
DEBUG - 2011-02-15 13:50:27 --> Config Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:50:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:50:27 --> URI Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Router Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Output Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Input Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:50:27 --> Language Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Loader Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:50:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:50:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:50:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:50:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Upload Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:50:27 --> Controller Class Initialized
DEBUG - 2011-02-15 13:50:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:50:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:50:27 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:50:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:50:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:50:27 --> Final output sent to browser
DEBUG - 2011-02-15 13:50:27 --> Total execution time: 0.0151
DEBUG - 2011-02-15 13:59:12 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:12 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:12 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:12 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:12 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:12 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-15 13:59:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:12 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:12 --> Total execution time: 0.0217
DEBUG - 2011-02-15 13:59:17 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:17 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:17 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:17 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:17 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:17 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:17 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:17 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:17 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:17 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:17 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:17 --> Total execution time: 0.0163
DEBUG - 2011-02-15 13:59:25 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:25 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:25 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:25 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:25 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:25 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:25 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:25 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:25 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:25 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:25 --> Total execution time: 0.0144
DEBUG - 2011-02-15 13:59:27 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:27 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:27 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:27 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:27 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:27 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:27 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:27 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:27 --> Total execution time: 0.0135
DEBUG - 2011-02-15 13:59:28 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:28 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:28 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:28 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:28 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:28 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:28 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:28 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:28 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:28 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:28 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:28 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:28 --> Total execution time: 0.0147
DEBUG - 2011-02-15 13:59:30 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:30 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:30 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:30 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:30 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:30 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:30 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:30 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:30 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:30 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:30 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:30 --> Total execution time: 0.0140
DEBUG - 2011-02-15 13:59:31 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:31 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:31 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:31 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:31 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:31 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:31 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:31 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:31 --> Total execution time: 0.0141
DEBUG - 2011-02-15 13:59:32 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:32 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:32 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:32 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:32 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:32 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:32 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:32 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:32 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:32 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:32 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:32 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:32 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:32 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:32 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:32 --> Total execution time: 0.0129
DEBUG - 2011-02-15 13:59:46 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:46 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:46 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:46 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:46 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:46 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:46 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:46 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:46 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:46 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:46 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:46 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:46 --> Total execution time: 0.0195
DEBUG - 2011-02-15 13:59:47 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:47 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:47 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:47 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:47 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:47 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:47 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:47 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:47 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:47 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:47 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:47 --> Total execution time: 0.0139
DEBUG - 2011-02-15 13:59:49 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:49 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:49 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:49 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:49 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:49 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:49 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:49 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:49 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:49 --> Total execution time: 0.0170
DEBUG - 2011-02-15 13:59:49 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:49 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:49 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:49 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:49 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:49 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:49 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:49 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:49 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:49 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:49 --> Total execution time: 0.0133
DEBUG - 2011-02-15 13:59:50 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:50 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:50 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:50 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:50 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:50 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:50 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:50 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:50 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:50 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:50 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:50 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:50 --> Total execution time: 0.0142
DEBUG - 2011-02-15 13:59:55 --> Config Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Hooks Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Utf8 Class Initialized
DEBUG - 2011-02-15 13:59:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 13:59:55 --> URI Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Router Class Initialized
DEBUG - 2011-02-15 13:59:55 --> No URI present. Default controller set.
DEBUG - 2011-02-15 13:59:55 --> Output Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Input Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 13:59:55 --> Language Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Loader Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Helper loaded: url_helper
DEBUG - 2011-02-15 13:59:55 --> Helper loaded: download_helper
DEBUG - 2011-02-15 13:59:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 13:59:55 --> Database Driver Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Helper loaded: form_helper
DEBUG - 2011-02-15 13:59:55 --> Form Validation Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Upload Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Model Class Initialized
DEBUG - 2011-02-15 13:59:55 --> Controller Class Initialized
DEBUG - 2011-02-15 13:59:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 13:59:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 13:59:55 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 13:59:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 13:59:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 13:59:55 --> Final output sent to browser
DEBUG - 2011-02-15 13:59:55 --> Total execution time: 0.0170
DEBUG - 2011-02-15 14:01:04 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:04 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:04 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:04 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:04 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:04 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:04 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:04 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:04 --> Total execution time: 0.0165
DEBUG - 2011-02-15 14:01:05 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:05 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:05 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:05 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:05 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:05 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:05 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:05 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:05 --> Total execution time: 0.0137
DEBUG - 2011-02-15 14:01:05 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:05 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:05 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:05 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:05 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:05 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:05 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:05 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:05 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:05 --> Total execution time: 0.0133
DEBUG - 2011-02-15 14:01:06 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:06 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:06 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:06 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:06 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:06 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:06 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:06 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:06 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:06 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:06 --> Total execution time: 0.0143
DEBUG - 2011-02-15 14:01:07 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:07 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:07 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:07 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:07 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:07 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:07 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:07 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:07 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:07 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:07 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:07 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:07 --> Total execution time: 0.0147
DEBUG - 2011-02-15 14:01:08 --> Config Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:01:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:01:08 --> URI Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Router Class Initialized
DEBUG - 2011-02-15 14:01:08 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:01:08 --> Output Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Input Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:01:08 --> Language Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Loader Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:01:08 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:01:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:01:08 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:01:08 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Upload Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Model Class Initialized
DEBUG - 2011-02-15 14:01:08 --> Controller Class Initialized
DEBUG - 2011-02-15 14:01:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:01:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:01:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:01:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:01:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:01:08 --> Final output sent to browser
DEBUG - 2011-02-15 14:01:08 --> Total execution time: 0.0149
DEBUG - 2011-02-15 14:02:59 --> Config Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:02:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:02:59 --> URI Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Router Class Initialized
DEBUG - 2011-02-15 14:02:59 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:02:59 --> Output Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Input Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:02:59 --> Language Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Loader Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:02:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:02:59 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:02:59 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Upload Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Model Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Model Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Controller Class Initialized
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:02:59 --> Final output sent to browser
DEBUG - 2011-02-15 14:02:59 --> Total execution time: 0.0143
DEBUG - 2011-02-15 14:02:59 --> Config Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:02:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:02:59 --> URI Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Router Class Initialized
DEBUG - 2011-02-15 14:02:59 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:02:59 --> Output Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Input Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:02:59 --> Language Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Loader Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:02:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:02:59 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:02:59 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Upload Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Model Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Model Class Initialized
DEBUG - 2011-02-15 14:02:59 --> Controller Class Initialized
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:02:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:02:59 --> Final output sent to browser
DEBUG - 2011-02-15 14:02:59 --> Total execution time: 0.0165
DEBUG - 2011-02-15 14:03:01 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:01 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:01 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:01 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:01 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:01 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:01 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:01 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:01 --> Total execution time: 0.0144
DEBUG - 2011-02-15 14:03:01 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:01 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:01 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:01 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:01 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:01 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:01 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:01 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:01 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:01 --> Total execution time: 0.0148
DEBUG - 2011-02-15 14:03:02 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:02 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:02 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:02 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:02 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:02 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:02 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:02 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:02 --> Total execution time: 0.0742
DEBUG - 2011-02-15 14:03:02 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:02 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:02 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:02 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:02 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:02 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:02 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:02 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:02 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:02 --> Total execution time: 0.0139
DEBUG - 2011-02-15 14:03:04 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:04 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:04 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:04 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:04 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:04 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:04 --> Total execution time: 0.0141
DEBUG - 2011-02-15 14:03:04 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:04 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:04 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:04 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:04 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:04 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:04 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:04 --> Total execution time: 0.0150
DEBUG - 2011-02-15 14:03:05 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:05 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:05 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:05 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:05 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:05 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:05 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:05 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:05 --> Total execution time: 0.0144
DEBUG - 2011-02-15 14:03:05 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:05 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:05 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:05 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:05 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:05 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:05 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:05 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:05 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:05 --> Total execution time: 0.0141
DEBUG - 2011-02-15 14:03:42 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:42 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:42 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:42 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:42 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:42 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:42 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:42 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:42 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:42 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:42 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:42 --> Total execution time: 0.0140
DEBUG - 2011-02-15 14:03:44 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:44 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:44 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:44 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:44 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:44 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:44 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:44 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:44 --> Total execution time: 0.0141
DEBUG - 2011-02-15 14:03:44 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:44 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:44 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:44 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:44 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:44 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:44 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:44 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:44 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:44 --> Total execution time: 0.0132
DEBUG - 2011-02-15 14:03:45 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:45 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:45 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:45 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:45 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:45 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:45 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:45 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:45 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:45 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:45 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:45 --> Total execution time: 0.0159
DEBUG - 2011-02-15 14:03:46 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:46 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:46 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:46 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:46 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:46 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:46 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:46 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:46 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:46 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:46 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:46 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:46 --> Total execution time: 0.0203
DEBUG - 2011-02-15 14:03:47 --> Config Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:03:47 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:03:47 --> URI Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Router Class Initialized
DEBUG - 2011-02-15 14:03:47 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:03:47 --> Output Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Input Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:03:47 --> Language Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Loader Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:03:47 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:03:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:03:47 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:03:47 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Upload Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Model Class Initialized
DEBUG - 2011-02-15 14:03:47 --> Controller Class Initialized
DEBUG - 2011-02-15 14:03:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:03:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:03:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:03:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:03:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:03:47 --> Final output sent to browser
DEBUG - 2011-02-15 14:03:47 --> Total execution time: 0.0210
DEBUG - 2011-02-15 14:04:19 --> Config Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:04:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:04:19 --> URI Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Router Class Initialized
DEBUG - 2011-02-15 14:04:19 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:04:19 --> Output Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Input Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:04:19 --> Language Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Loader Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:04:19 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:04:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:04:19 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:04:19 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Upload Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:19 --> Controller Class Initialized
DEBUG - 2011-02-15 14:04:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:04:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:04:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:04:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:04:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:04:19 --> Final output sent to browser
DEBUG - 2011-02-15 14:04:19 --> Total execution time: 0.0142
DEBUG - 2011-02-15 14:04:20 --> Config Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:04:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:04:20 --> URI Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Router Class Initialized
DEBUG - 2011-02-15 14:04:20 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:04:20 --> Output Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Input Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:04:20 --> Language Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Loader Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:04:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:04:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:04:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:04:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Upload Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:20 --> Controller Class Initialized
DEBUG - 2011-02-15 14:04:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:04:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:04:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:04:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:04:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:04:20 --> Final output sent to browser
DEBUG - 2011-02-15 14:04:20 --> Total execution time: 0.0150
DEBUG - 2011-02-15 14:04:21 --> Config Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:04:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:04:21 --> URI Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Router Class Initialized
DEBUG - 2011-02-15 14:04:21 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:04:21 --> Output Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Input Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:04:21 --> Language Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Loader Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:04:21 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:04:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:04:21 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:04:21 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Upload Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:21 --> Controller Class Initialized
DEBUG - 2011-02-15 14:04:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:04:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:04:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:04:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:04:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:04:21 --> Final output sent to browser
DEBUG - 2011-02-15 14:04:21 --> Total execution time: 0.0138
DEBUG - 2011-02-15 14:04:22 --> Config Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:04:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:04:22 --> URI Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Router Class Initialized
DEBUG - 2011-02-15 14:04:22 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:04:22 --> Output Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Input Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:04:22 --> Language Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Loader Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:04:22 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:04:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:04:22 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:04:22 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Upload Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:22 --> Controller Class Initialized
DEBUG - 2011-02-15 14:04:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:04:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:04:22 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:04:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:04:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:04:22 --> Final output sent to browser
DEBUG - 2011-02-15 14:04:22 --> Total execution time: 0.0136
DEBUG - 2011-02-15 14:04:24 --> Config Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:04:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:04:24 --> URI Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Router Class Initialized
DEBUG - 2011-02-15 14:04:24 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:04:24 --> Output Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Input Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:04:24 --> Language Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Loader Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:04:24 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:04:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:04:24 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:04:24 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Upload Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Model Class Initialized
DEBUG - 2011-02-15 14:04:24 --> Controller Class Initialized
DEBUG - 2011-02-15 14:04:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:04:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:04:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:04:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:04:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:04:24 --> Final output sent to browser
DEBUG - 2011-02-15 14:04:24 --> Total execution time: 0.0149
DEBUG - 2011-02-15 14:06:38 --> Config Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:06:38 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:06:38 --> URI Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Router Class Initialized
DEBUG - 2011-02-15 14:06:38 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:06:38 --> Output Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Input Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:06:38 --> Language Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Loader Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:06:38 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:06:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:06:38 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:06:38 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Upload Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:38 --> Controller Class Initialized
DEBUG - 2011-02-15 14:06:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:06:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:06:38 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:06:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:06:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:06:38 --> Final output sent to browser
DEBUG - 2011-02-15 14:06:38 --> Total execution time: 0.0160
DEBUG - 2011-02-15 14:06:39 --> Config Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:06:39 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:06:39 --> URI Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Router Class Initialized
DEBUG - 2011-02-15 14:06:39 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:06:39 --> Output Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Input Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:06:39 --> Language Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Loader Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:06:39 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:06:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:06:39 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:06:39 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Upload Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:39 --> Controller Class Initialized
DEBUG - 2011-02-15 14:06:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:06:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:06:39 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:06:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:06:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:06:39 --> Final output sent to browser
DEBUG - 2011-02-15 14:06:39 --> Total execution time: 0.0159
DEBUG - 2011-02-15 14:06:40 --> Config Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:06:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:06:40 --> URI Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Router Class Initialized
DEBUG - 2011-02-15 14:06:40 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:06:40 --> Output Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Input Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:06:40 --> Language Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Loader Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:06:40 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:06:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:06:40 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:06:40 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Upload Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:40 --> Controller Class Initialized
DEBUG - 2011-02-15 14:06:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:06:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:06:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:06:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:06:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:06:40 --> Final output sent to browser
DEBUG - 2011-02-15 14:06:40 --> Total execution time: 0.0144
DEBUG - 2011-02-15 14:06:42 --> Config Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:06:42 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:06:42 --> URI Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Router Class Initialized
DEBUG - 2011-02-15 14:06:42 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:06:42 --> Output Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Input Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:06:42 --> Language Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Loader Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:06:42 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:06:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:06:42 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:06:42 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Upload Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Model Class Initialized
DEBUG - 2011-02-15 14:06:42 --> Controller Class Initialized
DEBUG - 2011-02-15 14:06:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:06:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:06:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:06:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:06:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:06:42 --> Final output sent to browser
DEBUG - 2011-02-15 14:06:42 --> Total execution time: 0.0136
DEBUG - 2011-02-15 14:07:09 --> Config Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:07:09 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:07:09 --> URI Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Router Class Initialized
DEBUG - 2011-02-15 14:07:09 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:07:09 --> Output Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Input Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:07:09 --> Language Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Loader Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:07:09 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:07:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:07:09 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:07:09 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Upload Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Model Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Model Class Initialized
DEBUG - 2011-02-15 14:07:09 --> Controller Class Initialized
DEBUG - 2011-02-15 14:07:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:07:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:07:09 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:07:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:07:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:07:09 --> Final output sent to browser
DEBUG - 2011-02-15 14:07:09 --> Total execution time: 0.2652
DEBUG - 2011-02-15 14:07:14 --> Config Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:07:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:07:14 --> URI Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Router Class Initialized
DEBUG - 2011-02-15 14:07:14 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:07:14 --> Output Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Input Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:07:14 --> Language Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Loader Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:07:14 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:07:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:07:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:07:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Upload Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Model Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Model Class Initialized
DEBUG - 2011-02-15 14:07:14 --> Controller Class Initialized
DEBUG - 2011-02-15 14:07:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:07:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:07:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:07:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:07:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:07:14 --> Final output sent to browser
DEBUG - 2011-02-15 14:07:14 --> Total execution time: 0.2506
DEBUG - 2011-02-15 14:38:40 --> Config Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:38:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:38:40 --> URI Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Router Class Initialized
DEBUG - 2011-02-15 14:38:40 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:38:40 --> Output Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Input Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:38:40 --> Language Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Loader Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:38:40 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:38:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:38:40 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:38:40 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Upload Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Model Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Model Class Initialized
DEBUG - 2011-02-15 14:38:40 --> Controller Class Initialized
DEBUG - 2011-02-15 14:38:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:38:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:38:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:38:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:38:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:38:40 --> Final output sent to browser
DEBUG - 2011-02-15 14:38:40 --> Total execution time: 0.0153
DEBUG - 2011-02-15 14:38:56 --> Config Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Hooks Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Utf8 Class Initialized
DEBUG - 2011-02-15 14:38:56 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 14:38:56 --> URI Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Router Class Initialized
DEBUG - 2011-02-15 14:38:56 --> No URI present. Default controller set.
DEBUG - 2011-02-15 14:38:56 --> Output Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Input Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 14:38:56 --> Language Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Loader Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Helper loaded: url_helper
DEBUG - 2011-02-15 14:38:56 --> Helper loaded: download_helper
DEBUG - 2011-02-15 14:38:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 14:38:56 --> Database Driver Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Helper loaded: form_helper
DEBUG - 2011-02-15 14:38:56 --> Form Validation Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Upload Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Model Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Model Class Initialized
DEBUG - 2011-02-15 14:38:56 --> Controller Class Initialized
DEBUG - 2011-02-15 14:38:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 14:38:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 14:38:56 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 14:38:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 14:38:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 14:38:56 --> Final output sent to browser
DEBUG - 2011-02-15 14:38:56 --> Total execution time: 0.0145
DEBUG - 2011-02-15 18:30:24 --> Config Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Hooks Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Utf8 Class Initialized
DEBUG - 2011-02-15 18:30:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 18:30:24 --> URI Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Router Class Initialized
DEBUG - 2011-02-15 18:30:24 --> No URI present. Default controller set.
DEBUG - 2011-02-15 18:30:24 --> Output Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Input Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 18:30:24 --> Language Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Loader Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Helper loaded: url_helper
DEBUG - 2011-02-15 18:30:24 --> Helper loaded: download_helper
DEBUG - 2011-02-15 18:30:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 18:30:24 --> Database Driver Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Helper loaded: form_helper
DEBUG - 2011-02-15 18:30:24 --> Form Validation Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Upload Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Model Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Model Class Initialized
DEBUG - 2011-02-15 18:30:24 --> Controller Class Initialized
DEBUG - 2011-02-15 18:30:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 18:30:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 18:30:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 18:30:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 18:30:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 18:30:24 --> Final output sent to browser
DEBUG - 2011-02-15 18:30:24 --> Total execution time: 0.3060
DEBUG - 2011-02-15 19:07:29 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:29 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:29 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:29 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:29 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:29 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:29 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:29 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:29 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:29 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:29 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:29 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:29 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:29 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:29 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:29 --> Total execution time: 0.0159
DEBUG - 2011-02-15 19:07:30 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:30 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:30 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:30 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:30 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:30 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:30 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:30 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:30 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:30 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:30 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:30 --> Total execution time: 0.0191
DEBUG - 2011-02-15 19:07:31 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:31 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:31 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:31 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:31 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:31 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:31 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:31 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:31 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:31 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:31 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:31 --> Total execution time: 0.0124
DEBUG - 2011-02-15 19:07:34 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:34 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:34 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:34 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:34 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:34 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:34 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:34 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:34 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:34 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:34 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:34 --> Total execution time: 0.0142
DEBUG - 2011-02-15 19:07:37 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:37 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:37 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:37 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:37 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:37 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:37 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:37 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:37 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:37 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:37 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:37 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:37 --> Total execution time: 0.0142
DEBUG - 2011-02-15 19:07:40 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:40 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:40 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:40 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:40 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:40 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:40 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:40 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:40 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:40 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:40 --> Total execution time: 0.0155
DEBUG - 2011-02-15 19:07:41 --> Config Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:07:41 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:07:41 --> URI Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Router Class Initialized
DEBUG - 2011-02-15 19:07:41 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:07:41 --> Output Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Input Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:07:41 --> Language Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Loader Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:07:41 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:07:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:07:41 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:07:41 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Upload Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Model Class Initialized
DEBUG - 2011-02-15 19:07:41 --> Controller Class Initialized
DEBUG - 2011-02-15 19:07:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:07:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:07:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:07:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:07:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:07:41 --> Final output sent to browser
DEBUG - 2011-02-15 19:07:41 --> Total execution time: 0.0157
DEBUG - 2011-02-15 19:08:10 --> Config Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:08:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:08:10 --> URI Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Router Class Initialized
DEBUG - 2011-02-15 19:08:10 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:08:10 --> Output Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Input Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:08:10 --> Language Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Loader Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:08:10 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:08:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:08:10 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:08:10 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Upload Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:10 --> Controller Class Initialized
DEBUG - 2011-02-15 19:08:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:08:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:08:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:08:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:08:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:08:10 --> Final output sent to browser
DEBUG - 2011-02-15 19:08:10 --> Total execution time: 0.0158
DEBUG - 2011-02-15 19:08:12 --> Config Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:08:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:08:12 --> URI Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Router Class Initialized
DEBUG - 2011-02-15 19:08:12 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:08:12 --> Output Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Input Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:08:12 --> Language Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Loader Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:08:12 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:08:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:08:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:08:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Upload Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:12 --> Controller Class Initialized
DEBUG - 2011-02-15 19:08:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:08:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:08:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:08:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:08:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:08:12 --> Final output sent to browser
DEBUG - 2011-02-15 19:08:12 --> Total execution time: 0.0154
DEBUG - 2011-02-15 19:08:13 --> Config Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:08:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:08:13 --> URI Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Router Class Initialized
DEBUG - 2011-02-15 19:08:13 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:08:13 --> Output Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Input Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:08:13 --> Language Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Loader Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:08:13 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:08:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:08:13 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:08:13 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Upload Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:13 --> Controller Class Initialized
DEBUG - 2011-02-15 19:08:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:08:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:08:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:08:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:08:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:08:13 --> Final output sent to browser
DEBUG - 2011-02-15 19:08:13 --> Total execution time: 0.0165
DEBUG - 2011-02-15 19:08:14 --> Config Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:08:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:08:14 --> URI Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Router Class Initialized
DEBUG - 2011-02-15 19:08:14 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:08:14 --> Output Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Input Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:08:14 --> Language Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Loader Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:08:14 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:08:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:08:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:08:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Upload Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:08:14 --> Controller Class Initialized
DEBUG - 2011-02-15 19:08:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:08:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:08:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:08:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:08:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:08:14 --> Final output sent to browser
DEBUG - 2011-02-15 19:08:14 --> Total execution time: 0.0148
DEBUG - 2011-02-15 19:10:49 --> Config Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:10:49 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:10:49 --> URI Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Router Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Output Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Input Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:10:49 --> Language Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Loader Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:10:49 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:10:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:10:49 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:10:49 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Upload Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Model Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Model Class Initialized
DEBUG - 2011-02-15 19:10:49 --> Controller Class Initialized
DEBUG - 2011-02-15 19:10:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:10:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:10:49 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-15 19:10:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:10:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:10:49 --> Final output sent to browser
DEBUG - 2011-02-15 19:10:49 --> Total execution time: 0.0976
DEBUG - 2011-02-15 19:10:54 --> Config Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:10:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:10:54 --> URI Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Router Class Initialized
DEBUG - 2011-02-15 19:10:54 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:10:54 --> Output Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Input Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:10:54 --> Language Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Loader Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:10:54 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:10:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:10:54 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:10:54 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Upload Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:10:54 --> Controller Class Initialized
DEBUG - 2011-02-15 19:10:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:10:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:10:54 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:10:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:10:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:10:54 --> Final output sent to browser
DEBUG - 2011-02-15 19:10:54 --> Total execution time: 0.0159
DEBUG - 2011-02-15 19:11:03 --> Config Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:11:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:11:03 --> URI Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Router Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Output Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Input Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:11:03 --> Language Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Loader Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:11:03 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:11:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:11:03 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:11:03 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Upload Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Model Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Model Class Initialized
DEBUG - 2011-02-15 19:11:03 --> Controller Class Initialized
DEBUG - 2011-02-15 19:11:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:11:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:11:03 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-15 19:11:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:11:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:11:03 --> Final output sent to browser
DEBUG - 2011-02-15 19:11:03 --> Total execution time: 0.0208
DEBUG - 2011-02-15 19:12:10 --> Config Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:12:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:12:10 --> URI Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Router Class Initialized
DEBUG - 2011-02-15 19:12:10 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:12:10 --> Output Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Input Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:12:10 --> Language Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Loader Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:12:10 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:12:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:12:10 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:12:10 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Upload Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:10 --> Controller Class Initialized
DEBUG - 2011-02-15 19:12:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:12:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:12:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:12:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:12:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:12:10 --> Final output sent to browser
DEBUG - 2011-02-15 19:12:10 --> Total execution time: 0.3745
DEBUG - 2011-02-15 19:12:11 --> Config Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:12:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:12:11 --> URI Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Router Class Initialized
DEBUG - 2011-02-15 19:12:11 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:12:11 --> Output Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Input Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:12:11 --> Language Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Loader Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:12:11 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:12:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:12:11 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:12:11 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Upload Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:11 --> Controller Class Initialized
DEBUG - 2011-02-15 19:12:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:12:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:12:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:12:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:12:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:12:11 --> Final output sent to browser
DEBUG - 2011-02-15 19:12:11 --> Total execution time: 0.0158
DEBUG - 2011-02-15 19:12:12 --> Config Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:12:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:12:12 --> URI Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Router Class Initialized
DEBUG - 2011-02-15 19:12:12 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:12:12 --> Output Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Input Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:12:12 --> Language Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Loader Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:12:12 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:12:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:12:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:12:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Upload Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:12 --> Controller Class Initialized
DEBUG - 2011-02-15 19:12:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:12:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:12:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:12:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:12:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:12:12 --> Final output sent to browser
DEBUG - 2011-02-15 19:12:12 --> Total execution time: 0.0153
DEBUG - 2011-02-15 19:12:13 --> Config Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:12:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:12:13 --> URI Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Router Class Initialized
DEBUG - 2011-02-15 19:12:13 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:12:13 --> Output Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Input Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:12:13 --> Language Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Loader Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:12:13 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:12:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:12:13 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:12:13 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Upload Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:13 --> Controller Class Initialized
DEBUG - 2011-02-15 19:12:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:12:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:12:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:12:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:12:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:12:13 --> Final output sent to browser
DEBUG - 2011-02-15 19:12:13 --> Total execution time: 0.0146
DEBUG - 2011-02-15 19:12:14 --> Config Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:12:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:12:14 --> URI Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Router Class Initialized
DEBUG - 2011-02-15 19:12:14 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:12:14 --> Output Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Input Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:12:14 --> Language Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Loader Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:12:14 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:12:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:12:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:12:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Upload Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:12:14 --> Controller Class Initialized
DEBUG - 2011-02-15 19:12:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:12:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:12:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:12:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:12:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:12:14 --> Final output sent to browser
DEBUG - 2011-02-15 19:12:14 --> Total execution time: 0.0149
DEBUG - 2011-02-15 19:34:39 --> Config Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:34:39 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:34:39 --> URI Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Router Class Initialized
DEBUG - 2011-02-15 19:34:39 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:34:39 --> Output Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Input Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:34:39 --> Language Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Loader Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:34:39 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:34:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:34:39 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:34:39 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Upload Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Model Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Model Class Initialized
DEBUG - 2011-02-15 19:34:39 --> Controller Class Initialized
DEBUG - 2011-02-15 19:34:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:34:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:34:39 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:34:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:34:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:34:39 --> Final output sent to browser
DEBUG - 2011-02-15 19:34:39 --> Total execution time: 0.0201
DEBUG - 2011-02-15 19:35:11 --> Config Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:35:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:35:11 --> URI Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Router Class Initialized
DEBUG - 2011-02-15 19:35:11 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:35:11 --> Output Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Input Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:35:11 --> Language Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Loader Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:35:11 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:35:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:35:11 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:35:11 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Upload Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:35:11 --> Controller Class Initialized
DEBUG - 2011-02-15 19:35:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:35:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:35:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:35:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:35:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:35:11 --> Final output sent to browser
DEBUG - 2011-02-15 19:35:11 --> Total execution time: 0.0205
DEBUG - 2011-02-15 19:36:11 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:11 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:11 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:11 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:11 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:11 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:11 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:11 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:11 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:11 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:11 --> Total execution time: 0.0207
DEBUG - 2011-02-15 19:36:12 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:12 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:12 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:12 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:12 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:12 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:12 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:12 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:12 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:12 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:12 --> Total execution time: 0.0147
DEBUG - 2011-02-15 19:36:13 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:13 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:13 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:13 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:13 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:13 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:13 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:13 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:13 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:13 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:13 --> Total execution time: 0.0127
DEBUG - 2011-02-15 19:36:14 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:14 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:14 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:14 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:14 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:14 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:14 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:14 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:14 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:14 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:14 --> Total execution time: 0.0141
DEBUG - 2011-02-15 19:36:20 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:20 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:20 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:20 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:20 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:20 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:20 --> Total execution time: 0.0145
DEBUG - 2011-02-15 19:36:20 --> Config Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:36:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:36:20 --> URI Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Router Class Initialized
DEBUG - 2011-02-15 19:36:20 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:36:20 --> Output Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Input Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:36:20 --> Language Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Loader Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:36:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:36:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:36:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Upload Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Model Class Initialized
DEBUG - 2011-02-15 19:36:20 --> Controller Class Initialized
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:36:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:36:20 --> Final output sent to browser
DEBUG - 2011-02-15 19:36:20 --> Total execution time: 0.0147
DEBUG - 2011-02-15 19:38:23 --> Config Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:38:23 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:38:23 --> URI Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Router Class Initialized
DEBUG - 2011-02-15 19:38:23 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:38:23 --> Output Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Input Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:38:23 --> Language Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Loader Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:38:23 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:38:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:38:23 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:38:23 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Upload Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Model Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Model Class Initialized
DEBUG - 2011-02-15 19:38:23 --> Controller Class Initialized
DEBUG - 2011-02-15 19:38:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:38:23 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:38:23 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:38:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:38:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:38:23 --> Final output sent to browser
DEBUG - 2011-02-15 19:38:23 --> Total execution time: 0.0258
DEBUG - 2011-02-15 19:39:53 --> Config Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:39:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:39:53 --> URI Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Router Class Initialized
DEBUG - 2011-02-15 19:39:53 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:39:53 --> Output Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Input Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:39:53 --> Language Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Loader Class Initialized
DEBUG - 2011-02-15 19:39:53 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:39:53 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:39:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:39:53 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:39:54 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Upload Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Controller Class Initialized
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:39:54 --> Final output sent to browser
DEBUG - 2011-02-15 19:39:54 --> Total execution time: 0.0210
DEBUG - 2011-02-15 19:39:54 --> Config Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:39:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:39:54 --> URI Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Router Class Initialized
DEBUG - 2011-02-15 19:39:54 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:39:54 --> Output Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Input Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:39:54 --> Language Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Loader Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:39:54 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:39:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:39:54 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:39:54 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Upload Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Model Class Initialized
DEBUG - 2011-02-15 19:39:54 --> Controller Class Initialized
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:39:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:39:54 --> Final output sent to browser
DEBUG - 2011-02-15 19:39:54 --> Total execution time: 0.0148
DEBUG - 2011-02-15 19:43:10 --> Config Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:43:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:43:10 --> URI Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Router Class Initialized
DEBUG - 2011-02-15 19:43:10 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:43:10 --> Output Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Input Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:43:10 --> Language Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Loader Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:43:10 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:43:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:43:10 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:43:10 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Upload Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Model Class Initialized
DEBUG - 2011-02-15 19:43:10 --> Controller Class Initialized
DEBUG - 2011-02-15 19:43:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:43:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:43:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:43:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:43:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:43:10 --> Final output sent to browser
DEBUG - 2011-02-15 19:43:10 --> Total execution time: 0.0157
DEBUG - 2011-02-15 19:45:23 --> Config Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:45:23 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:45:23 --> URI Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Router Class Initialized
DEBUG - 2011-02-15 19:45:23 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:45:23 --> Output Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Input Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:45:23 --> Language Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Loader Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:45:23 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:45:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:45:23 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:45:23 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Upload Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:23 --> Controller Class Initialized
DEBUG - 2011-02-15 19:45:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:45:23 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:45:23 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:45:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:45:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:45:23 --> Final output sent to browser
DEBUG - 2011-02-15 19:45:23 --> Total execution time: 0.1447
DEBUG - 2011-02-15 19:45:24 --> Config Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:45:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:45:24 --> URI Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Router Class Initialized
DEBUG - 2011-02-15 19:45:24 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:45:24 --> Output Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Input Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:45:24 --> Language Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Loader Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:45:24 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:45:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:45:24 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:45:24 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Upload Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:24 --> Controller Class Initialized
DEBUG - 2011-02-15 19:45:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:45:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:45:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:45:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:45:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:45:24 --> Final output sent to browser
DEBUG - 2011-02-15 19:45:24 --> Total execution time: 0.0151
DEBUG - 2011-02-15 19:45:26 --> Config Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:45:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:45:26 --> URI Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Router Class Initialized
DEBUG - 2011-02-15 19:45:26 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:45:26 --> Output Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Input Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:45:26 --> Language Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Loader Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:45:26 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:45:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:45:26 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:45:26 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Upload Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:26 --> Controller Class Initialized
DEBUG - 2011-02-15 19:45:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:45:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:45:26 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:45:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:45:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:45:26 --> Final output sent to browser
DEBUG - 2011-02-15 19:45:26 --> Total execution time: 0.0152
DEBUG - 2011-02-15 19:45:27 --> Config Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:45:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:45:27 --> URI Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Router Class Initialized
DEBUG - 2011-02-15 19:45:27 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:45:27 --> Output Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Input Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:45:27 --> Language Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Loader Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:45:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:45:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:45:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Upload Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Controller Class Initialized
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:45:27 --> Final output sent to browser
DEBUG - 2011-02-15 19:45:27 --> Total execution time: 0.0160
DEBUG - 2011-02-15 19:45:27 --> Config Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:45:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:45:27 --> URI Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Router Class Initialized
DEBUG - 2011-02-15 19:45:27 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:45:27 --> Output Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Input Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:45:27 --> Language Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Loader Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:45:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:45:27 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:45:27 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Upload Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Model Class Initialized
DEBUG - 2011-02-15 19:45:27 --> Controller Class Initialized
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:45:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:45:27 --> Final output sent to browser
DEBUG - 2011-02-15 19:45:27 --> Total execution time: 0.0167
DEBUG - 2011-02-15 19:47:00 --> Config Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:47:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:47:00 --> URI Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Router Class Initialized
DEBUG - 2011-02-15 19:47:00 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:47:00 --> Output Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Input Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:47:00 --> Language Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Loader Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:47:00 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:47:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:47:00 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:47:00 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Upload Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:00 --> Controller Class Initialized
DEBUG - 2011-02-15 19:47:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:47:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:47:00 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:47:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:47:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:47:00 --> Final output sent to browser
DEBUG - 2011-02-15 19:47:00 --> Total execution time: 0.1515
DEBUG - 2011-02-15 19:47:02 --> Config Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:47:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:47:02 --> URI Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Router Class Initialized
DEBUG - 2011-02-15 19:47:02 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:47:02 --> Output Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Input Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:47:02 --> Language Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Loader Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:47:02 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:47:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:47:02 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:47:02 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Upload Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:02 --> Controller Class Initialized
DEBUG - 2011-02-15 19:47:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:47:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:47:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:47:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:47:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:47:02 --> Final output sent to browser
DEBUG - 2011-02-15 19:47:02 --> Total execution time: 0.0170
DEBUG - 2011-02-15 19:47:03 --> Config Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:47:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:47:03 --> URI Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Router Class Initialized
DEBUG - 2011-02-15 19:47:03 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:47:03 --> Output Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Input Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:47:03 --> Language Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Loader Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:47:03 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:47:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:47:03 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:47:03 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Upload Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:03 --> Controller Class Initialized
DEBUG - 2011-02-15 19:47:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:47:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:47:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:47:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:47:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:47:03 --> Final output sent to browser
DEBUG - 2011-02-15 19:47:03 --> Total execution time: 0.0144
DEBUG - 2011-02-15 19:47:04 --> Config Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:47:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:47:04 --> URI Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Router Class Initialized
DEBUG - 2011-02-15 19:47:04 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:47:04 --> Output Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Input Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:47:04 --> Language Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Loader Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:47:04 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:47:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:47:04 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:47:04 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Upload Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Model Class Initialized
DEBUG - 2011-02-15 19:47:04 --> Controller Class Initialized
DEBUG - 2011-02-15 19:47:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:47:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:47:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:47:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:47:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:47:04 --> Final output sent to browser
DEBUG - 2011-02-15 19:47:04 --> Total execution time: 0.0153
DEBUG - 2011-02-15 19:56:59 --> Config Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:56:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:56:59 --> URI Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Router Class Initialized
DEBUG - 2011-02-15 19:56:59 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:56:59 --> Output Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Input Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:56:59 --> Language Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Loader Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:56:59 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:56:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:56:59 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:56:59 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Upload Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Model Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Model Class Initialized
DEBUG - 2011-02-15 19:56:59 --> Controller Class Initialized
DEBUG - 2011-02-15 19:56:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:56:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:56:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:56:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:56:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:56:59 --> Final output sent to browser
DEBUG - 2011-02-15 19:56:59 --> Total execution time: 0.0212
DEBUG - 2011-02-15 19:57:00 --> Config Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:57:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:57:00 --> URI Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Router Class Initialized
DEBUG - 2011-02-15 19:57:00 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:57:00 --> Output Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Input Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:57:00 --> Language Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Loader Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:57:00 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:57:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:57:00 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:57:00 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Upload Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Model Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Model Class Initialized
DEBUG - 2011-02-15 19:57:00 --> Controller Class Initialized
DEBUG - 2011-02-15 19:57:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:57:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:57:00 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:57:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:57:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:57:00 --> Final output sent to browser
DEBUG - 2011-02-15 19:57:00 --> Total execution time: 0.0170
DEBUG - 2011-02-15 19:57:01 --> Config Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Hooks Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Utf8 Class Initialized
DEBUG - 2011-02-15 19:57:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 19:57:01 --> URI Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Router Class Initialized
DEBUG - 2011-02-15 19:57:01 --> No URI present. Default controller set.
DEBUG - 2011-02-15 19:57:01 --> Output Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Input Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 19:57:01 --> Language Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Loader Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Helper loaded: url_helper
DEBUG - 2011-02-15 19:57:01 --> Helper loaded: download_helper
DEBUG - 2011-02-15 19:57:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 19:57:01 --> Database Driver Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Helper loaded: form_helper
DEBUG - 2011-02-15 19:57:01 --> Form Validation Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Upload Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Model Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Model Class Initialized
DEBUG - 2011-02-15 19:57:01 --> Controller Class Initialized
DEBUG - 2011-02-15 19:57:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 19:57:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 19:57:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 19:57:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 19:57:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 19:57:01 --> Final output sent to browser
DEBUG - 2011-02-15 19:57:01 --> Total execution time: 0.0152
DEBUG - 2011-02-15 20:37:20 --> Config Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Hooks Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Utf8 Class Initialized
DEBUG - 2011-02-15 20:37:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-15 20:37:20 --> URI Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Router Class Initialized
DEBUG - 2011-02-15 20:37:20 --> No URI present. Default controller set.
DEBUG - 2011-02-15 20:37:20 --> Output Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Input Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-15 20:37:20 --> Language Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Loader Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Helper loaded: url_helper
DEBUG - 2011-02-15 20:37:20 --> Helper loaded: download_helper
DEBUG - 2011-02-15 20:37:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-15 20:37:20 --> Database Driver Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Helper loaded: form_helper
DEBUG - 2011-02-15 20:37:20 --> Form Validation Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Upload Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Model Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Model Class Initialized
DEBUG - 2011-02-15 20:37:20 --> Controller Class Initialized
DEBUG - 2011-02-15 20:37:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-15 20:37:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-15 20:37:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-15 20:37:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-15 20:37:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-15 20:37:20 --> Final output sent to browser
DEBUG - 2011-02-15 20:37:20 --> Total execution time: 0.0219
<file_sep>/application/logs/log-2011-07-10.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-07-10 00:52:06 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:06 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:06 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:06 --> No URI present. Default controller set.
DEBUG - 2011-07-10 00:52:06 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:06 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:06 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:06 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:06 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-07-10 00:52:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:06 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:06 --> Total execution time: 0.4193
DEBUG - 2011-07-10 00:52:08 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:08 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:08 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:08 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:08 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:08 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:08 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:08 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-07-10 00:52:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:08 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:08 --> Total execution time: 0.2930
DEBUG - 2011-07-10 00:52:10 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:10 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:10 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:10 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:10 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:10 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:11 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:11 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:11 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-07-10 00:52:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:11 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:11 --> Total execution time: 0.3157
DEBUG - 2011-07-10 00:52:13 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:13 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:13 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:13 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:13 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:13 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:13 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:13 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-07-10 00:52:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:13 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:13 --> Total execution time: 0.0622
DEBUG - 2011-07-10 00:52:16 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:16 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:16 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:16 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:16 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:16 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:16 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:16 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-07-10 00:52:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:16 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:16 --> Total execution time: 0.0450
DEBUG - 2011-07-10 00:52:23 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:23 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:23 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:23 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:23 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:23 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:23 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-07-10 00:52:23 --> Security Class Initialized
DEBUG - 2011-07-10 00:52:23 --> XSS Filtering completed
DEBUG - 2011-07-10 00:52:23 --> XSS Filtering completed
DEBUG - 2011-07-10 00:52:23 --> XSS Filtering completed
DEBUG - 2011-07-10 00:52:24 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:24 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:24 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:24 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:24 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:24 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:24 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:24 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-07-10 00:52:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:24 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:24 --> Total execution time: 0.0490
DEBUG - 2011-07-10 00:52:31 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:31 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:31 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:31 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:31 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:31 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:31 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-07-10 00:52:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-07-10 00:52:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:31 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:31 --> Total execution time: 0.0485
DEBUG - 2011-07-10 00:52:51 --> Config Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Hooks Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Utf8 Class Initialized
DEBUG - 2011-07-10 00:52:51 --> UTF-8 Support Enabled
DEBUG - 2011-07-10 00:52:51 --> URI Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Router Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Output Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Input Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-07-10 00:52:51 --> Language Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Loader Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Helper loaded: url_helper
DEBUG - 2011-07-10 00:52:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-07-10 00:52:51 --> Database Driver Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Helper loaded: form_helper
DEBUG - 2011-07-10 00:52:51 --> Form Validation Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Upload Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Image Lib Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Model Class Initialized
DEBUG - 2011-07-10 00:52:51 --> Controller Class Initialized
DEBUG - 2011-07-10 00:52:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-07-10 00:52:51 --> File loaded: application/views/menu_view.php
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 58
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 58
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 58
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 58
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 58
ERROR - 2011-07-10 00:52:51 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 79
DEBUG - 2011-07-10 00:52:51 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-07-10 00:52:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-07-10 00:52:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-07-10 00:52:51 --> Final output sent to browser
DEBUG - 2011-07-10 00:52:51 --> Total execution time: 0.0938
<file_sep>/application/controllers/chat.php
<?php
class chat extends CI_Controller {
private $vet_dados = array();
public function __construct() {
parent::__construct();
//$this->session->set_userdata('nome', 'Andreus');
/*echo '<pre>';
print_r($this->session->all_userdata());
echo date('d/m/Y H:i:s',$this->session->userdata('last_activity'));
echo '</pre>';*/
}
public function chat() {
$this->__construct();
}
public function index() {
$this->vet_dados["topo"] = $this->parser->parse("topo_view", $this->vet_dados, TRUE);
$this->vet_dados["menu"] = $this->chat_model->get_user();
$this->vet_dados["conteudo"] = $this->chat_model->mostrar();//tela inicial
$this->vet_dados["rodape"] = $this->chat_model->rodape();
$this->parser->parse("template_view", $this->vet_dados);
}
public function login() {
if ($this->input->post('login_usuario')) {
$this->session->set_userdata('nome', $this->input->post('login_usuario'));
redirect(base_url());
} else {
$this->vet_dados["conteudo"] = 'Erro ao se cadastra no sistema!';
$this->parser->parse("template_view", $this->vet_dados);
}
}
public function enviar() {
if ($this->chat_model->enviar()) {
}
}
public function get_log() {
echo $this->chat_model->get_texto();
}
public function get_user() {
echo $this->chat_model->get_user();
}
public function logoff() {
$this->session->sess_destroy();
}
public function mostrar_senha() {
echo $this->encrypt->encode(123);
}
}
/* End of file chat.php */
/* Location: ./system/application/controllers/chat.php */
<file_sep>/application/logs/log-2011-11-07.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-11-07 00:00:35 --> Config Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:00:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:00:35 --> URI Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Router Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Output Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Input Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:00:35 --> Language Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Loader Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:00:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:00:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Session Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:00:35 --> Session routines successfully run
DEBUG - 2011-11-07 00:00:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Model Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Model Class Initialized
DEBUG - 2011-11-07 00:00:35 --> Controller Class Initialized
DEBUG - 2011-11-07 00:00:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:00:35 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:00:35 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 00:00:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:00:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:00:35 --> Final output sent to browser
DEBUG - 2011-11-07 00:00:35 --> Total execution time: 0.0599
DEBUG - 2011-11-07 00:07:56 --> Config Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:07:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:07:56 --> URI Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Router Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Output Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Input Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:07:56 --> Language Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Loader Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:07:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:07:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Session Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:07:56 --> Session routines successfully run
DEBUG - 2011-11-07 00:07:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Model Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Model Class Initialized
DEBUG - 2011-11-07 00:07:56 --> Controller Class Initialized
DEBUG - 2011-11-07 00:07:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:07:56 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:07:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:07:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:07:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:07:56 --> Final output sent to browser
DEBUG - 2011-11-07 00:07:56 --> Total execution time: 0.0734
DEBUG - 2011-11-07 00:08:09 --> Config Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:08:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:08:09 --> URI Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Router Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Output Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Input Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:08:09 --> Language Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Loader Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:08:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:08:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Session Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:08:09 --> Session routines successfully run
DEBUG - 2011-11-07 00:08:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Model Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Model Class Initialized
DEBUG - 2011-11-07 00:08:09 --> Controller Class Initialized
DEBUG - 2011-11-07 00:08:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:08:09 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:08:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:08:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:08:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:08:09 --> Final output sent to browser
DEBUG - 2011-11-07 00:08:09 --> Total execution time: 0.0475
DEBUG - 2011-11-07 00:08:58 --> Config Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:08:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:08:58 --> URI Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Router Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Output Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Input Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:08:58 --> Language Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Loader Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:08:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:08:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Session Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:08:58 --> Session routines successfully run
DEBUG - 2011-11-07 00:08:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 00:08:58 --> Controller Class Initialized
DEBUG - 2011-11-07 00:08:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:08:58 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:08:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:08:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:08:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:08:58 --> Final output sent to browser
DEBUG - 2011-11-07 00:08:58 --> Total execution time: 0.0440
DEBUG - 2011-11-07 00:09:57 --> Config Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:09:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:09:57 --> URI Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Router Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Output Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Input Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:09:57 --> Language Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Loader Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:09:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:09:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Session Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:09:57 --> Session routines successfully run
DEBUG - 2011-11-07 00:09:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Model Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Model Class Initialized
DEBUG - 2011-11-07 00:09:57 --> Controller Class Initialized
DEBUG - 2011-11-07 00:09:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:09:57 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:09:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:09:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:09:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:09:57 --> Final output sent to browser
DEBUG - 2011-11-07 00:09:57 --> Total execution time: 0.0409
DEBUG - 2011-11-07 00:11:57 --> Config Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:11:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:11:57 --> URI Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Router Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Output Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Input Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:11:57 --> Language Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Loader Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:11:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:11:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Session Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:11:57 --> Session routines successfully run
DEBUG - 2011-11-07 00:11:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Model Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Model Class Initialized
DEBUG - 2011-11-07 00:11:57 --> Controller Class Initialized
DEBUG - 2011-11-07 00:11:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:11:57 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:11:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:11:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:11:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:11:57 --> Final output sent to browser
DEBUG - 2011-11-07 00:11:57 --> Total execution time: 0.0553
DEBUG - 2011-11-07 00:12:08 --> Config Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:12:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:12:08 --> URI Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Router Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Output Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Input Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:12:08 --> Language Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Loader Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:12:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:12:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Session Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:12:08 --> Session routines successfully run
DEBUG - 2011-11-07 00:12:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:08 --> Controller Class Initialized
DEBUG - 2011-11-07 00:12:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:12:08 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:12:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:12:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:12:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:12:08 --> Final output sent to browser
DEBUG - 2011-11-07 00:12:08 --> Total execution time: 0.0489
DEBUG - 2011-11-07 00:12:39 --> Config Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:12:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:12:39 --> URI Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Router Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Output Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Input Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:12:39 --> Language Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Loader Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:12:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:12:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Session Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:12:39 --> Session routines successfully run
DEBUG - 2011-11-07 00:12:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:39 --> Controller Class Initialized
DEBUG - 2011-11-07 00:12:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:12:39 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:12:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:12:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:12:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:12:39 --> Final output sent to browser
DEBUG - 2011-11-07 00:12:39 --> Total execution time: 0.0657
DEBUG - 2011-11-07 00:12:46 --> Config Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:12:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:12:46 --> URI Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Router Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Output Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Input Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:12:46 --> Language Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Loader Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:12:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:12:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Session Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:12:46 --> Session garbage collection performed.
DEBUG - 2011-11-07 00:12:46 --> Session routines successfully run
DEBUG - 2011-11-07 00:12:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Model Class Initialized
DEBUG - 2011-11-07 00:12:46 --> Controller Class Initialized
DEBUG - 2011-11-07 00:12:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:12:46 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:12:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:12:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:12:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:12:46 --> Final output sent to browser
DEBUG - 2011-11-07 00:12:46 --> Total execution time: 0.0378
DEBUG - 2011-11-07 00:13:12 --> Config Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:13:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:13:12 --> URI Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Router Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Output Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Input Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:13:12 --> Language Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Loader Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:13:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:13:12 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Session Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:13:12 --> Session routines successfully run
DEBUG - 2011-11-07 00:13:12 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:12 --> Controller Class Initialized
DEBUG - 2011-11-07 00:13:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:13:12 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:13:12 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:13:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:13:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:13:12 --> Final output sent to browser
DEBUG - 2011-11-07 00:13:12 --> Total execution time: 0.0421
DEBUG - 2011-11-07 00:13:40 --> Config Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:13:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:13:40 --> URI Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Router Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Output Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Input Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:13:40 --> Language Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Loader Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:13:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:13:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Session Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:13:40 --> Session routines successfully run
DEBUG - 2011-11-07 00:13:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:40 --> Controller Class Initialized
DEBUG - 2011-11-07 00:13:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:13:40 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:13:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:13:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:13:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:13:40 --> Final output sent to browser
DEBUG - 2011-11-07 00:13:40 --> Total execution time: 0.0546
DEBUG - 2011-11-07 00:13:52 --> Config Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 00:13:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 00:13:52 --> URI Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Router Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Output Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Input Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 00:13:52 --> Language Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Loader Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 00:13:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 00:13:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Session Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 00:13:52 --> Session routines successfully run
DEBUG - 2011-11-07 00:13:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Model Class Initialized
DEBUG - 2011-11-07 00:13:52 --> Controller Class Initialized
DEBUG - 2011-11-07 00:13:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 00:13:52 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 00:13:52 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 00:13:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 00:13:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 00:13:52 --> Final output sent to browser
DEBUG - 2011-11-07 00:13:52 --> Total execution time: 0.0395
DEBUG - 2011-11-07 01:16:53 --> Config Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:16:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:16:53 --> URI Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Router Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Output Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Input Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:16:53 --> Language Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Loader Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:16:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:16:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Session Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:16:53 --> Session routines successfully run
DEBUG - 2011-11-07 01:16:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Model Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Model Class Initialized
DEBUG - 2011-11-07 01:16:53 --> Controller Class Initialized
DEBUG - 2011-11-07 01:16:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:16:53 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:16:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:16:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:16:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:16:53 --> Final output sent to browser
DEBUG - 2011-11-07 01:16:53 --> Total execution time: 0.1061
DEBUG - 2011-11-07 01:16:54 --> Config Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:16:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:16:54 --> URI Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Router Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Output Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Input Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:16:54 --> Language Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Loader Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:16:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:16:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Session Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:16:54 --> Session routines successfully run
DEBUG - 2011-11-07 01:16:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Model Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Model Class Initialized
DEBUG - 2011-11-07 01:16:54 --> Controller Class Initialized
DEBUG - 2011-11-07 01:16:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:16:54 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:16:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:16:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:16:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:16:54 --> Final output sent to browser
DEBUG - 2011-11-07 01:16:54 --> Total execution time: 0.0722
DEBUG - 2011-11-07 01:17:02 --> Config Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:17:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:17:02 --> URI Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Router Class Initialized
DEBUG - 2011-11-07 01:17:02 --> No URI present. Default controller set.
DEBUG - 2011-11-07 01:17:02 --> Output Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Input Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:17:02 --> Language Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Loader Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:17:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:17:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Session Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:17:02 --> Session routines successfully run
DEBUG - 2011-11-07 01:17:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Model Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Model Class Initialized
DEBUG - 2011-11-07 01:17:02 --> Controller Class Initialized
DEBUG - 2011-11-07 01:17:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:17:05 --> Config Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:17:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:17:05 --> URI Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Router Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Output Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Input Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:17:05 --> Language Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Loader Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:17:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:17:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Session Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:17:05 --> Session routines successfully run
DEBUG - 2011-11-07 01:17:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Model Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Model Class Initialized
DEBUG - 2011-11-07 01:17:05 --> Controller Class Initialized
DEBUG - 2011-11-07 01:17:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:17:05 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:17:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:17:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:17:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:17:05 --> Final output sent to browser
DEBUG - 2011-11-07 01:17:05 --> Total execution time: 0.0438
DEBUG - 2011-11-07 01:18:15 --> Config Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:18:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:18:15 --> URI Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Router Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Output Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Input Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:18:15 --> Language Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Loader Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:18:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:18:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Session Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:18:15 --> Session garbage collection performed.
DEBUG - 2011-11-07 01:18:15 --> Session routines successfully run
DEBUG - 2011-11-07 01:18:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:15 --> Controller Class Initialized
DEBUG - 2011-11-07 01:18:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:18:15 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:18:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:18:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:18:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:18:15 --> Final output sent to browser
DEBUG - 2011-11-07 01:18:15 --> Total execution time: 0.0432
DEBUG - 2011-11-07 01:18:21 --> Config Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:18:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:18:21 --> URI Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Router Class Initialized
DEBUG - 2011-11-07 01:18:21 --> No URI present. Default controller set.
DEBUG - 2011-11-07 01:18:21 --> Output Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Input Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:18:21 --> Language Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Loader Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:18:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:18:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Session Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:18:21 --> Session routines successfully run
DEBUG - 2011-11-07 01:18:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:21 --> Controller Class Initialized
DEBUG - 2011-11-07 01:18:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:18:23 --> Config Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:18:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:18:23 --> URI Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Router Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Output Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Input Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:18:23 --> Language Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Loader Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:18:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:18:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Session Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:18:23 --> Session routines successfully run
DEBUG - 2011-11-07 01:18:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Model Class Initialized
DEBUG - 2011-11-07 01:18:23 --> Controller Class Initialized
DEBUG - 2011-11-07 01:18:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:18:23 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:18:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:18:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:18:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:18:23 --> Final output sent to browser
DEBUG - 2011-11-07 01:18:23 --> Total execution time: 0.0402
DEBUG - 2011-11-07 01:20:47 --> Config Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:20:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:20:47 --> URI Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Router Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Output Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Input Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:20:47 --> Language Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Loader Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:20:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:20:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Session Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:20:47 --> Session routines successfully run
DEBUG - 2011-11-07 01:20:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Model Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Model Class Initialized
DEBUG - 2011-11-07 01:20:47 --> Controller Class Initialized
DEBUG - 2011-11-07 01:20:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:20:47 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:20:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:20:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:20:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:20:47 --> Final output sent to browser
DEBUG - 2011-11-07 01:20:47 --> Total execution time: 0.0430
DEBUG - 2011-11-07 01:20:53 --> Config Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:20:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:20:53 --> URI Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Router Class Initialized
DEBUG - 2011-11-07 01:20:53 --> No URI present. Default controller set.
DEBUG - 2011-11-07 01:20:53 --> Output Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Input Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:20:53 --> Language Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Loader Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:20:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:20:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Session Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:20:53 --> Session routines successfully run
DEBUG - 2011-11-07 01:20:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 01:20:53 --> Controller Class Initialized
DEBUG - 2011-11-07 01:20:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:21:31 --> Config Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:21:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:21:31 --> URI Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Router Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Output Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Input Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:21:31 --> Language Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Loader Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:21:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:21:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Session Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:21:31 --> Session routines successfully run
DEBUG - 2011-11-07 01:21:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:31 --> Controller Class Initialized
DEBUG - 2011-11-07 01:21:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:21:31 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:21:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:21:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:21:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:21:31 --> Final output sent to browser
DEBUG - 2011-11-07 01:21:31 --> Total execution time: 0.0521
DEBUG - 2011-11-07 01:21:41 --> Config Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:21:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:21:41 --> URI Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Router Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Output Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Input Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:21:41 --> Language Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Loader Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:21:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:21:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Session Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:21:41 --> Session routines successfully run
DEBUG - 2011-11-07 01:21:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Controller Class Initialized
DEBUG - 2011-11-07 01:21:41 --> Security Class Initialized
DEBUG - 2011-11-07 01:21:41 --> XSS Filtering completed
DEBUG - 2011-11-07 01:21:41 --> DB Transaction Failure
ERROR - 2011-11-07 01:21:41 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:21:42 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:21:43 --> Config Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:21:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:21:43 --> URI Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Router Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Output Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Input Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:21:43 --> Language Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Loader Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:21:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:21:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Session Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:21:43 --> Session garbage collection performed.
DEBUG - 2011-11-07 01:21:43 --> Session routines successfully run
DEBUG - 2011-11-07 01:21:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:43 --> Controller Class Initialized
DEBUG - 2011-11-07 01:21:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:21:43 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:21:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:21:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:21:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:21:43 --> Final output sent to browser
DEBUG - 2011-11-07 01:21:43 --> Total execution time: 0.0493
DEBUG - 2011-11-07 01:21:44 --> Config Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:21:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:21:44 --> URI Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Router Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Output Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Input Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:21:44 --> Language Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Loader Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:21:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:21:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Session Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:21:44 --> Session routines successfully run
DEBUG - 2011-11-07 01:21:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 01:21:44 --> Controller Class Initialized
DEBUG - 2011-11-07 01:21:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:21:44 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:21:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:21:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:21:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:21:44 --> Final output sent to browser
DEBUG - 2011-11-07 01:21:44 --> Total execution time: 0.0455
DEBUG - 2011-11-07 01:22:59 --> Config Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:22:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:22:59 --> URI Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Router Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Output Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Input Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:22:59 --> Language Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Loader Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:22:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:22:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Session Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:22:59 --> Session garbage collection performed.
DEBUG - 2011-11-07 01:22:59 --> Session routines successfully run
DEBUG - 2011-11-07 01:22:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 01:22:59 --> Controller Class Initialized
DEBUG - 2011-11-07 01:22:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:22:59 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:22:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:22:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:22:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:22:59 --> Final output sent to browser
DEBUG - 2011-11-07 01:22:59 --> Total execution time: 0.0624
DEBUG - 2011-11-07 01:23:05 --> Config Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:23:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:23:05 --> URI Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Router Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Output Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Input Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:23:05 --> Language Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Loader Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:23:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:23:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Session Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:23:05 --> Session routines successfully run
DEBUG - 2011-11-07 01:23:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Controller Class Initialized
DEBUG - 2011-11-07 01:23:05 --> Security Class Initialized
DEBUG - 2011-11-07 01:23:05 --> XSS Filtering completed
DEBUG - 2011-11-07 01:23:05 --> DB Transaction Failure
ERROR - 2011-11-07 01:23:05 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:23:05 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:23:09 --> Config Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:23:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:23:09 --> URI Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Router Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Output Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Input Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:23:09 --> Language Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Loader Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:23:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:23:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Session Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:23:09 --> Session routines successfully run
DEBUG - 2011-11-07 01:23:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:09 --> Controller Class Initialized
DEBUG - 2011-11-07 01:23:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:23:09 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:23:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:23:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:23:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:23:09 --> Final output sent to browser
DEBUG - 2011-11-07 01:23:09 --> Total execution time: 0.0417
DEBUG - 2011-11-07 01:23:46 --> Config Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:23:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:23:46 --> URI Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Router Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Output Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Input Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:23:46 --> Language Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Loader Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:23:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:23:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Session Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:23:46 --> Session routines successfully run
DEBUG - 2011-11-07 01:23:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Model Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Controller Class Initialized
DEBUG - 2011-11-07 01:23:46 --> Security Class Initialized
DEBUG - 2011-11-07 01:23:46 --> XSS Filtering completed
DEBUG - 2011-11-07 01:23:46 --> DB Transaction Failure
ERROR - 2011-11-07 01:23:46 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:23:46 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:24:42 --> Config Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:24:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:24:42 --> URI Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Router Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Output Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Input Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:24:42 --> Language Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Loader Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:24:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:24:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Session Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:24:42 --> Session routines successfully run
DEBUG - 2011-11-07 01:24:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Model Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Model Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Controller Class Initialized
DEBUG - 2011-11-07 01:24:42 --> Security Class Initialized
DEBUG - 2011-11-07 01:24:42 --> XSS Filtering completed
DEBUG - 2011-11-07 01:24:42 --> DB Transaction Failure
ERROR - 2011-11-07 01:24:42 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:24:42 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:26:16 --> Config Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:26:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:26:16 --> URI Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Router Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Output Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Input Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:26:16 --> Language Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Loader Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:26:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:26:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Session Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:26:16 --> Session routines successfully run
DEBUG - 2011-11-07 01:26:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Model Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Model Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Controller Class Initialized
DEBUG - 2011-11-07 01:26:16 --> Final output sent to browser
DEBUG - 2011-11-07 01:26:16 --> Total execution time: 0.0309
DEBUG - 2011-11-07 01:26:40 --> Config Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:26:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:26:40 --> URI Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Router Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Output Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Input Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:26:40 --> Language Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Loader Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:26:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:26:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Session Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:26:40 --> Session garbage collection performed.
DEBUG - 2011-11-07 01:26:40 --> Session routines successfully run
DEBUG - 2011-11-07 01:26:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Model Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Model Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Controller Class Initialized
DEBUG - 2011-11-07 01:26:40 --> Security Class Initialized
DEBUG - 2011-11-07 01:26:40 --> XSS Filtering completed
DEBUG - 2011-11-07 01:26:40 --> DB Transaction Failure
ERROR - 2011-11-07 01:26:40 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:26:40 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:27:28 --> Config Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:27:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:27:28 --> URI Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Router Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Output Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Input Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:27:28 --> Language Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Loader Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:27:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:27:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Session Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:27:28 --> Session routines successfully run
DEBUG - 2011-11-07 01:27:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Model Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Model Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Controller Class Initialized
DEBUG - 2011-11-07 01:27:28 --> Security Class Initialized
DEBUG - 2011-11-07 01:27:28 --> XSS Filtering completed
DEBUG - 2011-11-07 01:27:28 --> DB Transaction Failure
ERROR - 2011-11-07 01:27:28 --> Query error: Table 'chat.chat' doesn't exist
DEBUG - 2011-11-07 01:27:28 --> Language file loaded: language/english/db_lang.php
DEBUG - 2011-11-07 01:28:38 --> Config Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:28:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:28:38 --> URI Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Router Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Output Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Input Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:28:38 --> Language Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Loader Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:28:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:28:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Session Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:28:38 --> Session routines successfully run
DEBUG - 2011-11-07 01:28:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Controller Class Initialized
DEBUG - 2011-11-07 01:28:38 --> Security Class Initialized
DEBUG - 2011-11-07 01:28:38 --> XSS Filtering completed
DEBUG - 2011-11-07 01:28:38 --> Final output sent to browser
DEBUG - 2011-11-07 01:28:38 --> Total execution time: 0.0376
DEBUG - 2011-11-07 01:28:43 --> Config Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:28:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:28:43 --> URI Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Router Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Output Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Input Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:28:43 --> Language Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Loader Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:28:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:28:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Session Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:28:43 --> Session routines successfully run
DEBUG - 2011-11-07 01:28:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:43 --> Controller Class Initialized
DEBUG - 2011-11-07 01:28:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:28:43 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:28:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:28:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:28:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:28:43 --> Final output sent to browser
DEBUG - 2011-11-07 01:28:43 --> Total execution time: 0.0499
DEBUG - 2011-11-07 01:28:57 --> Config Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:28:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:28:57 --> URI Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Router Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Output Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Input Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:28:57 --> Language Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Loader Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:28:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:28:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Session Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:28:57 --> Session routines successfully run
DEBUG - 2011-11-07 01:28:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Model Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Controller Class Initialized
DEBUG - 2011-11-07 01:28:57 --> Security Class Initialized
DEBUG - 2011-11-07 01:28:57 --> XSS Filtering completed
DEBUG - 2011-11-07 01:28:57 --> Final output sent to browser
DEBUG - 2011-11-07 01:28:57 --> Total execution time: 0.0349
DEBUG - 2011-11-07 01:29:00 --> Config Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:29:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:29:00 --> URI Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Router Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Output Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Input Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:29:00 --> Language Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Loader Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:29:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:29:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Session Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:29:00 --> Session routines successfully run
DEBUG - 2011-11-07 01:29:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Model Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Model Class Initialized
DEBUG - 2011-11-07 01:29:00 --> Controller Class Initialized
DEBUG - 2011-11-07 01:29:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:29:00 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:29:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:29:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:29:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:29:00 --> Final output sent to browser
DEBUG - 2011-11-07 01:29:00 --> Total execution time: 0.0374
DEBUG - 2011-11-07 01:29:54 --> Config Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:29:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:29:54 --> URI Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Router Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Output Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Input Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:29:54 --> Language Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Loader Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:29:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:29:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Session Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:29:54 --> Session routines successfully run
DEBUG - 2011-11-07 01:29:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Model Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Model Class Initialized
DEBUG - 2011-11-07 01:29:54 --> Controller Class Initialized
DEBUG - 2011-11-07 01:29:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:29:54 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:29:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:29:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:29:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:29:54 --> Final output sent to browser
DEBUG - 2011-11-07 01:29:54 --> Total execution time: 0.0476
DEBUG - 2011-11-07 01:30:00 --> Config Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:30:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:30:00 --> URI Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Router Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Output Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Input Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:30:00 --> Language Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Loader Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:30:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:30:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Session Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:30:00 --> Session garbage collection performed.
DEBUG - 2011-11-07 01:30:00 --> Session routines successfully run
DEBUG - 2011-11-07 01:30:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Controller Class Initialized
DEBUG - 2011-11-07 01:30:00 --> Security Class Initialized
DEBUG - 2011-11-07 01:30:00 --> XSS Filtering completed
DEBUG - 2011-11-07 01:30:00 --> Final output sent to browser
DEBUG - 2011-11-07 01:30:00 --> Total execution time: 0.0404
DEBUG - 2011-11-07 01:30:04 --> Config Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:30:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:30:04 --> URI Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Router Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Output Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Input Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:30:04 --> Language Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Loader Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:30:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:30:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Session Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:30:04 --> Session routines successfully run
DEBUG - 2011-11-07 01:30:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:04 --> Controller Class Initialized
DEBUG - 2011-11-07 01:30:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:30:04 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:30:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:30:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:30:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:30:04 --> Final output sent to browser
DEBUG - 2011-11-07 01:30:04 --> Total execution time: 0.0438
DEBUG - 2011-11-07 01:30:14 --> Config Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:30:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:30:14 --> URI Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Router Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Output Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Input Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:30:14 --> Language Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Loader Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:30:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:30:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Session Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:30:14 --> Session routines successfully run
DEBUG - 2011-11-07 01:30:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Controller Class Initialized
DEBUG - 2011-11-07 01:30:14 --> Security Class Initialized
DEBUG - 2011-11-07 01:30:14 --> XSS Filtering completed
DEBUG - 2011-11-07 01:30:14 --> Final output sent to browser
DEBUG - 2011-11-07 01:30:14 --> Total execution time: 0.0353
DEBUG - 2011-11-07 01:30:16 --> Config Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:30:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:30:16 --> URI Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Router Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Output Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Input Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:30:16 --> Language Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Loader Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:30:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:30:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Session Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:30:16 --> Session routines successfully run
DEBUG - 2011-11-07 01:30:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:16 --> Controller Class Initialized
DEBUG - 2011-11-07 01:30:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:30:16 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:30:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:30:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:30:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:30:16 --> Final output sent to browser
DEBUG - 2011-11-07 01:30:16 --> Total execution time: 0.0460
DEBUG - 2011-11-07 01:30:35 --> Config Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 01:30:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 01:30:35 --> URI Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Router Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Output Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Input Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 01:30:35 --> Language Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Loader Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 01:30:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 01:30:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Session Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 01:30:35 --> Session routines successfully run
DEBUG - 2011-11-07 01:30:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Model Class Initialized
DEBUG - 2011-11-07 01:30:35 --> Controller Class Initialized
DEBUG - 2011-11-07 01:30:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 01:30:35 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 01:30:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 01:30:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 01:30:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 01:30:35 --> Final output sent to browser
DEBUG - 2011-11-07 01:30:35 --> Total execution time: 0.0405
DEBUG - 2011-11-07 11:44:29 --> Config Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:44:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:44:29 --> URI Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Router Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Output Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Input Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:44:29 --> Language Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Loader Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:44:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:44:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Session Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:44:29 --> A session cookie was not found.
DEBUG - 2011-11-07 11:44:29 --> Session routines successfully run
DEBUG - 2011-11-07 11:44:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:29 --> Controller Class Initialized
DEBUG - 2011-11-07 11:44:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:44:29 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 11:44:29 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:44:29 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:44:29 --> Final output sent to browser
DEBUG - 2011-11-07 11:44:29 --> Total execution time: 0.0623
DEBUG - 2011-11-07 11:44:34 --> Config Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:44:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:44:34 --> URI Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Router Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Output Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Input Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:44:34 --> Language Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Loader Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:44:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:44:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Session Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:44:34 --> Session routines successfully run
DEBUG - 2011-11-07 11:44:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Controller Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Config Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:44:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:44:34 --> URI Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Router Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Output Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Input Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:44:34 --> Language Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Loader Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:44:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:44:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Session Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:44:34 --> Session routines successfully run
DEBUG - 2011-11-07 11:44:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:34 --> Controller Class Initialized
DEBUG - 2011-11-07 11:44:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:44:34 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:44:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:44:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:44:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:44:34 --> Final output sent to browser
DEBUG - 2011-11-07 11:44:34 --> Total execution time: 0.0371
DEBUG - 2011-11-07 11:44:45 --> Config Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:44:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:44:45 --> URI Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Router Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Output Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Input Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:44:45 --> Language Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Loader Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:44:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:44:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Session Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:44:45 --> Session routines successfully run
DEBUG - 2011-11-07 11:44:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Model Class Initialized
DEBUG - 2011-11-07 11:44:45 --> Controller Class Initialized
DEBUG - 2011-11-07 11:44:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:44:45 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:44:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:44:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:44:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:44:45 --> Final output sent to browser
DEBUG - 2011-11-07 11:44:45 --> Total execution time: 0.0413
DEBUG - 2011-11-07 11:45:04 --> Config Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:45:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:45:04 --> URI Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Router Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Output Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Input Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:45:04 --> Language Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Loader Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:45:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:45:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Session Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:45:04 --> Session routines successfully run
DEBUG - 2011-11-07 11:45:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Model Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Model Class Initialized
DEBUG - 2011-11-07 11:45:04 --> Controller Class Initialized
DEBUG - 2011-11-07 11:45:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:45:04 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:45:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:45:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:45:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:45:04 --> Final output sent to browser
DEBUG - 2011-11-07 11:45:04 --> Total execution time: 0.0418
DEBUG - 2011-11-07 11:46:11 --> Config Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:46:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:46:11 --> URI Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Router Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Output Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Input Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:46:11 --> Language Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Loader Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:46:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:46:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Session Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:46:11 --> Session routines successfully run
DEBUG - 2011-11-07 11:46:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Model Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Model Class Initialized
DEBUG - 2011-11-07 11:46:11 --> Controller Class Initialized
DEBUG - 2011-11-07 11:46:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:46:11 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:46:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:46:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:46:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:46:11 --> Final output sent to browser
DEBUG - 2011-11-07 11:46:11 --> Total execution time: 0.0654
DEBUG - 2011-11-07 11:47:00 --> Config Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:47:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:47:00 --> URI Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Router Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Output Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Input Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:47:00 --> Language Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Loader Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:47:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:47:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Session Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:47:00 --> Session routines successfully run
DEBUG - 2011-11-07 11:47:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Model Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Model Class Initialized
DEBUG - 2011-11-07 11:47:00 --> Controller Class Initialized
DEBUG - 2011-11-07 11:47:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:47:00 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:47:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:47:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:47:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:47:00 --> Final output sent to browser
DEBUG - 2011-11-07 11:47:00 --> Total execution time: 0.0476
DEBUG - 2011-11-07 11:48:53 --> Config Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:48:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:48:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:48:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:48:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:48:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:48:53 --> Session garbage collection performed.
DEBUG - 2011-11-07 11:48:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:48:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:48:53 --> Controller Class Initialized
DEBUG - 2011-11-07 11:48:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:48:53 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:48:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:48:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:48:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:48:53 --> Final output sent to browser
DEBUG - 2011-11-07 11:48:53 --> Total execution time: 0.0372
DEBUG - 2011-11-07 11:49:01 --> Config Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:49:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:49:01 --> URI Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Router Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Output Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Input Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:49:01 --> Language Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Loader Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:49:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:49:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Session Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:49:01 --> Session routines successfully run
DEBUG - 2011-11-07 11:49:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Controller Class Initialized
DEBUG - 2011-11-07 11:49:01 --> Security Class Initialized
DEBUG - 2011-11-07 11:49:01 --> XSS Filtering completed
DEBUG - 2011-11-07 11:49:01 --> Final output sent to browser
DEBUG - 2011-11-07 11:49:01 --> Total execution time: 0.0387
DEBUG - 2011-11-07 11:49:25 --> Config Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:49:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:49:25 --> URI Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Router Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Output Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Input Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:49:25 --> Language Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Loader Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:49:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:49:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Session Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:49:25 --> Session routines successfully run
DEBUG - 2011-11-07 11:49:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:25 --> Controller Class Initialized
DEBUG - 2011-11-07 11:49:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:49:25 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:49:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:49:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:49:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:49:25 --> Final output sent to browser
DEBUG - 2011-11-07 11:49:25 --> Total execution time: 0.0399
DEBUG - 2011-11-07 11:49:30 --> Config Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:49:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:49:30 --> URI Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Router Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Output Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Input Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:49:30 --> Language Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Loader Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:49:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:49:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Session Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:49:30 --> Session routines successfully run
DEBUG - 2011-11-07 11:49:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Controller Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Security Class Initialized
DEBUG - 2011-11-07 11:49:30 --> XSS Filtering completed
DEBUG - 2011-11-07 11:49:30 --> Final output sent to browser
DEBUG - 2011-11-07 11:49:30 --> Total execution time: 0.0353
DEBUG - 2011-11-07 11:49:30 --> Config Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:49:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:49:30 --> URI Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Router Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Output Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Input Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:49:30 --> Language Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Loader Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:49:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:49:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Session Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:49:30 --> Session routines successfully run
DEBUG - 2011-11-07 11:49:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:30 --> Controller Class Initialized
DEBUG - 2011-11-07 11:49:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:49:30 --> Final output sent to browser
DEBUG - 2011-11-07 11:49:30 --> Total execution time: 0.0301
DEBUG - 2011-11-07 11:49:40 --> Config Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:49:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:49:40 --> URI Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Router Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Output Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Input Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:49:40 --> Language Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Loader Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:49:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:49:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Session Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:49:40 --> A session cookie was not found.
DEBUG - 2011-11-07 11:49:40 --> Session routines successfully run
DEBUG - 2011-11-07 11:49:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Model Class Initialized
DEBUG - 2011-11-07 11:49:40 --> Controller Class Initialized
DEBUG - 2011-11-07 11:49:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:49:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 11:49:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:49:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:49:40 --> Final output sent to browser
DEBUG - 2011-11-07 11:49:40 --> Total execution time: 0.0419
DEBUG - 2011-11-07 11:50:07 --> Config Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:50:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:50:07 --> URI Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Router Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Output Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Input Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:50:07 --> Language Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Loader Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:50:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:50:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Session Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:50:07 --> Session garbage collection performed.
DEBUG - 2011-11-07 11:50:07 --> Session routines successfully run
DEBUG - 2011-11-07 11:50:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Controller Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Config Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:50:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:50:07 --> URI Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Router Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Output Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Input Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:50:07 --> Language Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Loader Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:50:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:50:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Session Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:50:07 --> Session garbage collection performed.
DEBUG - 2011-11-07 11:50:07 --> Session routines successfully run
DEBUG - 2011-11-07 11:50:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:07 --> Controller Class Initialized
DEBUG - 2011-11-07 11:50:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:50:07 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:50:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:50:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:50:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:50:07 --> Final output sent to browser
DEBUG - 2011-11-07 11:50:07 --> Total execution time: 0.0568
DEBUG - 2011-11-07 11:50:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:50:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:50:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:50:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:50:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:50:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:50:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:50:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Security Class Initialized
DEBUG - 2011-11-07 11:50:18 --> XSS Filtering completed
DEBUG - 2011-11-07 11:50:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:50:18 --> Total execution time: 0.0335
DEBUG - 2011-11-07 11:50:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:50:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:50:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:50:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:50:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:50:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:50:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:50:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:50:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:50:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:50:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:50:18 --> Total execution time: 0.0300
DEBUG - 2011-11-07 11:51:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:51:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:51:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:51:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:51:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:51:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Session Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:51:57 --> Session routines successfully run
DEBUG - 2011-11-07 11:51:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:51:57 --> Controller Class Initialized
DEBUG - 2011-11-07 11:51:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:51:57 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:51:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:51:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:51:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:51:57 --> Final output sent to browser
DEBUG - 2011-11-07 11:51:57 --> Total execution time: 0.0491
DEBUG - 2011-11-07 11:52:00 --> Config Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:52:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:52:00 --> URI Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Router Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Output Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Input Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:52:00 --> Language Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Loader Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:52:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:52:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Session Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:52:00 --> Session routines successfully run
DEBUG - 2011-11-07 11:52:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:00 --> Controller Class Initialized
DEBUG - 2011-11-07 11:52:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:52:00 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:52:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:52:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:52:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:52:00 --> Final output sent to browser
DEBUG - 2011-11-07 11:52:00 --> Total execution time: 0.0477
DEBUG - 2011-11-07 11:52:08 --> Config Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:52:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:52:08 --> URI Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Router Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Output Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Input Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:52:08 --> Language Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Loader Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:52:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:52:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Session Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:52:08 --> Session routines successfully run
DEBUG - 2011-11-07 11:52:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Controller Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Security Class Initialized
DEBUG - 2011-11-07 11:52:08 --> XSS Filtering completed
DEBUG - 2011-11-07 11:52:08 --> Final output sent to browser
DEBUG - 2011-11-07 11:52:08 --> Total execution time: 0.0351
DEBUG - 2011-11-07 11:52:08 --> Config Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:52:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:52:08 --> URI Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Router Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Output Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Input Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:52:08 --> Language Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Loader Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:52:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:52:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Session Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:52:08 --> Session routines successfully run
DEBUG - 2011-11-07 11:52:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:08 --> Controller Class Initialized
DEBUG - 2011-11-07 11:52:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:52:08 --> Final output sent to browser
DEBUG - 2011-11-07 11:52:08 --> Total execution time: 0.0323
DEBUG - 2011-11-07 11:52:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:52:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:52:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:52:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:52:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:52:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:52:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:52:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Security Class Initialized
DEBUG - 2011-11-07 11:52:18 --> XSS Filtering completed
DEBUG - 2011-11-07 11:52:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:52:18 --> Total execution time: 0.0341
DEBUG - 2011-11-07 11:52:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:52:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:52:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:52:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:52:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:52:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:52:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:52:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:52:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:52:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:52:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:52:18 --> Total execution time: 0.0351
DEBUG - 2011-11-07 11:56:33 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:33 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:33 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:33 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:33 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:56:33 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:56:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:56:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:56:33 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:33 --> Total execution time: 0.0476
DEBUG - 2011-11-07 11:56:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:38 --> Total execution time: 0.0604
DEBUG - 2011-11-07 11:56:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Security Class Initialized
DEBUG - 2011-11-07 11:56:38 --> XSS Filtering completed
DEBUG - 2011-11-07 11:56:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:38 --> Total execution time: 0.0790
DEBUG - 2011-11-07 11:56:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:38 --> Total execution time: 0.0381
DEBUG - 2011-11-07 11:56:43 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:43 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:43 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:43 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:43 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:43 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:43 --> Total execution time: 0.0395
DEBUG - 2011-11-07 11:56:47 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:47 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:47 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:47 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:47 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:56:47 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:56:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:56:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:56:47 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:47 --> Total execution time: 0.0514
DEBUG - 2011-11-07 11:56:48 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:48 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:48 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:48 --> Total execution time: 0.0406
DEBUG - 2011-11-07 11:56:51 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:51 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:51 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:51 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Security Class Initialized
DEBUG - 2011-11-07 11:56:51 --> XSS Filtering completed
DEBUG - 2011-11-07 11:56:51 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:51 --> Total execution time: 0.0409
DEBUG - 2011-11-07 11:56:51 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:51 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:51 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:51 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:51 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:51 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:51 --> Total execution time: 0.0337
DEBUG - 2011-11-07 11:56:52 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:52 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:52 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:52 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:52 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:52 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:52 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:52 --> Total execution time: 0.0379
DEBUG - 2011-11-07 11:56:53 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:53 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:53 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:53 --> Total execution time: 0.0343
DEBUG - 2011-11-07 11:56:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:57 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:57 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:57 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:57 --> Total execution time: 0.0314
DEBUG - 2011-11-07 11:56:58 --> Config Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:56:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:56:58 --> URI Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Router Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Output Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Input Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:56:58 --> Language Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Loader Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:56:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:56:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Session Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:56:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:56:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:56:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:56:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:56:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:56:58 --> Total execution time: 0.0364
DEBUG - 2011-11-07 11:57:02 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:02 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:02 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:02 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:02 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:02 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:02 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:02 --> Total execution time: 0.0387
DEBUG - 2011-11-07 11:57:03 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:03 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:03 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:03 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:03 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:03 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:03 --> Total execution time: 0.0373
DEBUG - 2011-11-07 11:57:05 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:05 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:05 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:05 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Security Class Initialized
DEBUG - 2011-11-07 11:57:05 --> XSS Filtering completed
DEBUG - 2011-11-07 11:57:05 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:05 --> Total execution time: 0.0335
DEBUG - 2011-11-07 11:57:05 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:05 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:05 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:05 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:05 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:05 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:05 --> Total execution time: 0.0363
DEBUG - 2011-11-07 11:57:07 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:07 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:07 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:07 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:07 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:07 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:07 --> Total execution time: 0.0322
DEBUG - 2011-11-07 11:57:08 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:08 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:08 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:08 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:08 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:08 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:08 --> Total execution time: 0.0419
DEBUG - 2011-11-07 11:57:12 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:12 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:12 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:12 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:12 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:12 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:12 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:12 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:12 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:12 --> Total execution time: 0.0313
DEBUG - 2011-11-07 11:57:13 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:13 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:13 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:13 --> Session garbage collection performed.
DEBUG - 2011-11-07 11:57:13 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:13 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:13 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:13 --> Total execution time: 0.0352
DEBUG - 2011-11-07 11:57:17 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:17 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:17 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:17 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:17 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:17 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:17 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:17 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:17 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:17 --> Total execution time: 0.0403
DEBUG - 2011-11-07 11:57:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:18 --> Total execution time: 0.0348
DEBUG - 2011-11-07 11:57:22 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:22 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:22 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:22 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:22 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:22 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:22 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:22 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:22 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:22 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:22 --> Total execution time: 0.0324
DEBUG - 2011-11-07 11:57:23 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:23 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:23 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:23 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:23 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:23 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:23 --> Total execution time: 0.0474
DEBUG - 2011-11-07 11:57:27 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:27 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:27 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:27 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:27 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:27 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:27 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:27 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:27 --> Total execution time: 0.0324
DEBUG - 2011-11-07 11:57:28 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:28 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:28 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:28 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:28 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:28 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:28 --> Total execution time: 0.0426
DEBUG - 2011-11-07 11:57:32 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:32 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:32 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:32 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:32 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:32 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:32 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:32 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:32 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:32 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:32 --> Total execution time: 0.0414
DEBUG - 2011-11-07 11:57:33 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:33 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:33 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:33 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:33 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:33 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:33 --> Total execution time: 0.0402
DEBUG - 2011-11-07 11:57:37 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:37 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:37 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:37 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:37 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:37 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:37 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:37 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:37 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:37 --> Total execution time: 0.0318
DEBUG - 2011-11-07 11:57:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:38 --> Total execution time: 0.0338
DEBUG - 2011-11-07 11:57:42 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:42 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:42 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:42 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:42 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:42 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:42 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:42 --> Total execution time: 0.0458
DEBUG - 2011-11-07 11:57:43 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:43 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:43 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:43 --> Session garbage collection performed.
DEBUG - 2011-11-07 11:57:43 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:43 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:43 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:43 --> Total execution time: 0.0985
DEBUG - 2011-11-07 11:57:47 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:47 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:47 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:47 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:47 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:47 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:47 --> Total execution time: 0.0378
DEBUG - 2011-11-07 11:57:48 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:48 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:48 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:48 --> Total execution time: 0.0340
DEBUG - 2011-11-07 11:57:52 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:52 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:52 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:52 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:52 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:52 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:52 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:52 --> Total execution time: 0.0370
DEBUG - 2011-11-07 11:57:53 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:53 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:53 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:53 --> Total execution time: 0.0368
DEBUG - 2011-11-07 11:57:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:57 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:57 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:57 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:57 --> Total execution time: 0.0328
DEBUG - 2011-11-07 11:57:58 --> Config Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:57:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:57:58 --> URI Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Router Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Output Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Input Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:57:58 --> Language Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Loader Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:57:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:57:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Session Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:57:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:57:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:57:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:57:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:57:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:57:58 --> Total execution time: 0.0428
DEBUG - 2011-11-07 11:58:02 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:02 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:02 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:02 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:02 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:02 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:02 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:02 --> Total execution time: 0.0359
DEBUG - 2011-11-07 11:58:03 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:03 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:03 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:03 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:03 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:03 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:03 --> Total execution time: 0.0338
DEBUG - 2011-11-07 11:58:07 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:07 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:07 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:07 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:07 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:07 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:07 --> Total execution time: 0.0370
DEBUG - 2011-11-07 11:58:08 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:08 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:08 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:08 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:08 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:08 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:08 --> Total execution time: 0.0334
DEBUG - 2011-11-07 11:58:12 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:12 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:12 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:12 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:12 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:12 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:12 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:12 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:12 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:12 --> Total execution time: 0.0314
DEBUG - 2011-11-07 11:58:13 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:13 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:13 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:13 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:13 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:13 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:13 --> Total execution time: 0.0416
DEBUG - 2011-11-07 11:58:17 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:17 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:17 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:17 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:17 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:17 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:17 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:17 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:17 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:17 --> Total execution time: 0.0323
DEBUG - 2011-11-07 11:58:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:18 --> Total execution time: 0.0436
DEBUG - 2011-11-07 11:58:22 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:22 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:22 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:22 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:22 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:22 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:22 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:22 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:22 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:22 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:22 --> Total execution time: 0.0331
DEBUG - 2011-11-07 11:58:23 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:23 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:23 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:23 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:23 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:23 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:23 --> Total execution time: 0.0358
DEBUG - 2011-11-07 11:58:27 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:27 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:27 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:27 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:27 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:27 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:27 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:27 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:27 --> Total execution time: 0.0420
DEBUG - 2011-11-07 11:58:28 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:28 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:28 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:28 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:28 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:28 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:28 --> Total execution time: 0.0399
DEBUG - 2011-11-07 11:58:32 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:32 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:32 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:33 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:33 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:33 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:33 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:33 --> Total execution time: 0.6020
DEBUG - 2011-11-07 11:58:33 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:33 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:33 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:33 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:33 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:33 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:33 --> Total execution time: 0.1453
DEBUG - 2011-11-07 11:58:37 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:37 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:37 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:37 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:37 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:38 --> Total execution time: 0.2592
DEBUG - 2011-11-07 11:58:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:38 --> Total execution time: 0.1997
DEBUG - 2011-11-07 11:58:42 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:43 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:43 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:43 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:44 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:43 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:44 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:44 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:44 --> Total execution time: 1.1173
DEBUG - 2011-11-07 11:58:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:44 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:44 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:44 --> Total execution time: 0.5495
DEBUG - 2011-11-07 11:58:47 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:47 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:47 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:47 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:48 --> Total execution time: 0.1001
DEBUG - 2011-11-07 11:58:48 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:48 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:48 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:48 --> Total execution time: 0.1949
DEBUG - 2011-11-07 11:58:52 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:53 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:53 --> Total execution time: 0.1928
DEBUG - 2011-11-07 11:58:53 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:54 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:54 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:54 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:54 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:54 --> Total execution time: 0.4142
DEBUG - 2011-11-07 11:58:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:58 --> Total execution time: 0.1051
DEBUG - 2011-11-07 11:58:58 --> Config Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:58:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:58:58 --> URI Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Router Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Output Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Input Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:58:58 --> Language Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Loader Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:58:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:58:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Session Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:58:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:58:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:58:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:58:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:58:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:58:58 --> Total execution time: 0.0398
DEBUG - 2011-11-07 11:59:02 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:02 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:03 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:03 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:03 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:03 --> Total execution time: 0.1569
DEBUG - 2011-11-07 11:59:03 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:03 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:03 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:03 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:03 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:03 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:03 --> Total execution time: 0.1814
DEBUG - 2011-11-07 11:59:07 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:07 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:07 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:07 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:07 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:07 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:07 --> Total execution time: 0.0433
DEBUG - 2011-11-07 11:59:08 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:08 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:08 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:08 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:08 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:08 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:08 --> Total execution time: 0.0324
DEBUG - 2011-11-07 11:59:12 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:12 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:12 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:13 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:13 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:13 --> Total execution time: 0.3292
DEBUG - 2011-11-07 11:59:13 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:13 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:13 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:13 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:13 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:13 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:14 --> Total execution time: 0.2316
DEBUG - 2011-11-07 11:59:17 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:17 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:17 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:17 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:17 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:18 --> Total execution time: 0.0913
DEBUG - 2011-11-07 11:59:18 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:18 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:18 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:18 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:18 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:18 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:18 --> Total execution time: 0.1146
DEBUG - 2011-11-07 11:59:22 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:22 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:23 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:23 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:23 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:23 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:23 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:23 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:23 --> Total execution time: 0.9679
DEBUG - 2011-11-07 11:59:23 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:24 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:24 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:24 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:24 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:24 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:24 --> Total execution time: 0.3746
DEBUG - 2011-11-07 11:59:27 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:27 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:27 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:27 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:28 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:28 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:28 --> Total execution time: 0.0486
DEBUG - 2011-11-07 11:59:28 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:28 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:28 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:28 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:28 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:28 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:28 --> Total execution time: 0.0486
DEBUG - 2011-11-07 11:59:32 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:32 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:32 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:32 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:32 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:32 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:32 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:32 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:32 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:32 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:32 --> Total execution time: 0.0347
DEBUG - 2011-11-07 11:59:33 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:33 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:33 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:33 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:33 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:33 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:33 --> Total execution time: 0.1742
DEBUG - 2011-11-07 11:59:37 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:37 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:38 --> Total execution time: 0.1132
DEBUG - 2011-11-07 11:59:38 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:38 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:38 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:38 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:38 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:38 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:38 --> Total execution time: 0.0601
DEBUG - 2011-11-07 11:59:42 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:42 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:42 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:42 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:43 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:43 --> Total execution time: 0.0581
DEBUG - 2011-11-07 11:59:43 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:43 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:43 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:43 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:43 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:43 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:43 --> Total execution time: 0.0335
DEBUG - 2011-11-07 11:59:47 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:47 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:47 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:47 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:48 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:48 --> Total execution time: 0.0922
DEBUG - 2011-11-07 11:59:48 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:48 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:48 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:48 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:48 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:48 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:48 --> Total execution time: 0.0468
DEBUG - 2011-11-07 11:59:52 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:52 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:52 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:52 --> A session cookie was not found.
DEBUG - 2011-11-07 11:59:52 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:59:52 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 11:59:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:59:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:59:52 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:52 --> Total execution time: 0.0926
DEBUG - 2011-11-07 11:59:52 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:52 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:52 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:52 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:52 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:52 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:52 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:52 --> Total execution time: 0.0394
DEBUG - 2011-11-07 11:59:53 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:53 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:53 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:53 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:53 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:53 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:53 --> Total execution time: 0.0318
DEBUG - 2011-11-07 11:59:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:57 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:57 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:57 --> Total execution time: 0.0714
DEBUG - 2011-11-07 11:59:57 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:57 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:57 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:58 --> Total execution time: 0.0511
DEBUG - 2011-11-07 11:59:58 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:58 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:58 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:58 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:58 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:58 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:58 --> Total execution time: 0.0361
DEBUG - 2011-11-07 11:59:59 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:59 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:59 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:59 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Config Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 11:59:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 11:59:59 --> URI Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Router Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Output Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Input Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 11:59:59 --> Language Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Loader Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 11:59:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 11:59:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Session Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 11:59:59 --> Session routines successfully run
DEBUG - 2011-11-07 11:59:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Model Class Initialized
DEBUG - 2011-11-07 11:59:59 --> Controller Class Initialized
DEBUG - 2011-11-07 11:59:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 11:59:59 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 11:59:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 11:59:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 11:59:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 11:59:59 --> Final output sent to browser
DEBUG - 2011-11-07 11:59:59 --> Total execution time: 0.0432
DEBUG - 2011-11-07 12:00:02 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:02 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:02 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:02 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:02 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:02 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:02 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:02 --> Total execution time: 0.0398
DEBUG - 2011-11-07 12:00:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:03 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:00:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:05 --> Total execution time: 0.0477
DEBUG - 2011-11-07 12:00:07 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:07 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:07 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:08 --> Total execution time: 0.0502
DEBUG - 2011-11-07 12:00:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:08 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:00:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Security Class Initialized
DEBUG - 2011-11-07 12:00:09 --> XSS Filtering completed
DEBUG - 2011-11-07 12:00:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:09 --> Total execution time: 0.0900
DEBUG - 2011-11-07 12:00:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:09 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:00:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:10 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:00:12 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:12 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:12 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:12 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:12 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:12 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:12 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:12 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:12 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:12 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:00:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:13 --> Total execution time: 0.1275
DEBUG - 2011-11-07 12:00:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:15 --> Total execution time: 0.0668
DEBUG - 2011-11-07 12:00:17 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:17 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:18 --> Total execution time: 0.1056
DEBUG - 2011-11-07 12:00:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:18 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:00:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:20 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:00:22 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:22 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:22 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:22 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:22 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:22 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:22 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:22 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:22 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:23 --> Total execution time: 0.0501
DEBUG - 2011-11-07 12:00:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:23 --> Total execution time: 0.0530
DEBUG - 2011-11-07 12:00:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:25 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:00:27 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:27 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:27 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:27 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:27 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:27 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:27 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:27 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:27 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:00:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:28 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:00:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:30 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:00:32 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:32 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:32 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:32 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:32 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:32 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:32 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:32 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:32 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:32 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:32 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:00:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:33 --> Total execution time: 0.0391
DEBUG - 2011-11-07 12:00:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:35 --> Total execution time: 0.0455
DEBUG - 2011-11-07 12:00:37 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:37 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:37 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:37 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:37 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:37 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:37 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:37 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:38 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:00:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:38 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:00:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:40 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:00:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:43 --> Total execution time: 0.0591
DEBUG - 2011-11-07 12:00:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:43 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:00:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:45 --> Total execution time: 0.0389
DEBUG - 2011-11-07 12:00:47 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:47 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:47 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:47 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:47 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:47 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:48 --> Total execution time: 0.0356
DEBUG - 2011-11-07 12:00:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:48 --> Total execution time: 0.0326
DEBUG - 2011-11-07 12:00:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:50 --> Total execution time: 0.0843
DEBUG - 2011-11-07 12:00:52 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:52 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:52 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:52 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:52 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:53 --> Total execution time: 0.0375
DEBUG - 2011-11-07 12:00:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:53 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:00:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:55 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:00:57 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:57 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:57 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:57 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:58 --> Total execution time: 0.0398
DEBUG - 2011-11-07 12:00:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:00:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:00:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:00:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:00:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:00:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:00:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:00:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:00:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:00:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:00:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:00:58 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:01:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:00 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:01:02 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:02 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:02 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:02 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:02 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:03 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:01:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:03 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:01:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:05 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:01:07 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:07 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:07 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:07 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:08 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:01:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:08 --> Total execution time: 0.0381
DEBUG - 2011-11-07 12:01:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:10 --> Total execution time: 0.0305
DEBUG - 2011-11-07 12:01:12 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:12 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:12 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:13 --> Total execution time: 0.0456
DEBUG - 2011-11-07 12:01:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:13 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:01:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:15 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:01:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:18 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:01:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:18 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:01:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:20 --> Total execution time: 0.0310
DEBUG - 2011-11-07 12:01:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:23 --> Total execution time: 0.0403
DEBUG - 2011-11-07 12:01:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:23 --> Total execution time: 0.0371
DEBUG - 2011-11-07 12:01:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:25 --> Total execution time: 0.0314
DEBUG - 2011-11-07 12:01:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:28 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:01:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:28 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:01:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:30 --> Total execution time: 0.0514
DEBUG - 2011-11-07 12:01:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:33 --> Total execution time: 0.0352
DEBUG - 2011-11-07 12:01:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:33 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:01:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:35 --> Total execution time: 0.0386
DEBUG - 2011-11-07 12:01:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:38 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:01:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:38 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:01:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:40 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:01:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:43 --> Total execution time: 0.0419
DEBUG - 2011-11-07 12:01:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:43 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:01:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:45 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:01:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:48 --> Total execution time: 0.0399
DEBUG - 2011-11-07 12:01:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:48 --> Total execution time: 0.0353
DEBUG - 2011-11-07 12:01:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:50 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:01:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:53 --> Total execution time: 0.0454
DEBUG - 2011-11-07 12:01:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:53 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:01:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:55 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:01:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:58 --> Total execution time: 0.0462
DEBUG - 2011-11-07 12:01:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:01:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:01:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:01:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:01:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:01:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:01:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:01:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:01:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:01:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:01:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:01:58 --> Total execution time: 0.0305
DEBUG - 2011-11-07 12:02:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:00 --> Total execution time: 0.0543
DEBUG - 2011-11-07 12:02:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:03 --> Total execution time: 0.0399
DEBUG - 2011-11-07 12:02:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:03 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:02:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:05 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:02:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:08 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:02:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:08 --> Total execution time: 0.0430
DEBUG - 2011-11-07 12:02:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:08 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:02:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:08 --> Total execution time: 0.0352
DEBUG - 2011-11-07 12:02:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:10 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:02:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:13 --> Total execution time: 0.0774
DEBUG - 2011-11-07 12:02:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:13 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:02:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:15 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:02:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:18 --> Total execution time: 0.0862
DEBUG - 2011-11-07 12:02:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:18 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:02:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:20 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:02:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:23 --> Total execution time: 0.0489
DEBUG - 2011-11-07 12:02:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:23 --> Total execution time: 0.0392
DEBUG - 2011-11-07 12:02:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:25 --> Total execution time: 0.0367
DEBUG - 2011-11-07 12:02:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:28 --> Total execution time: 0.0375
DEBUG - 2011-11-07 12:02:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:28 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:02:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:30 --> Total execution time: 0.0397
DEBUG - 2011-11-07 12:02:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:33 --> Total execution time: 0.0373
DEBUG - 2011-11-07 12:02:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:33 --> Total execution time: 0.0408
DEBUG - 2011-11-07 12:02:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:35 --> Total execution time: 0.1299
DEBUG - 2011-11-07 12:02:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:38 --> Total execution time: 0.2408
DEBUG - 2011-11-07 12:02:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:38 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:02:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:02:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:02:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:02:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:02:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:40 --> Total execution time: 0.8698
DEBUG - 2011-11-07 12:02:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:40 --> Total execution time: 0.4222
DEBUG - 2011-11-07 12:02:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Total execution time: 1.4487
DEBUG - 2011-11-07 12:02:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:45 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:02:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:45 --> Total execution time: 0.1773
DEBUG - 2011-11-07 12:02:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:45 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:02:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:45 --> Total execution time: 0.7180
DEBUG - 2011-11-07 12:02:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:49 --> Total execution time: 0.8912
DEBUG - 2011-11-07 12:02:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:51 --> Total execution time: 0.8985
DEBUG - 2011-11-07 12:02:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:51 --> Total execution time: 0.6670
DEBUG - 2011-11-07 12:02:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:54 --> Total execution time: 0.7565
DEBUG - 2011-11-07 12:02:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:02:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:02:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:02:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:55 --> Total execution time: 0.5802
DEBUG - 2011-11-07 12:02:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:02:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:02:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:02:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:02:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:02:55 --> Total execution time: 0.3254
DEBUG - 2011-11-07 12:02:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:02:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:02:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:02:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:02:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:02:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:02:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:02:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:02:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:02:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:00 --> Total execution time: 1.6440
DEBUG - 2011-11-07 12:03:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:00 --> Total execution time: 0.7388
DEBUG - 2011-11-07 12:03:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:01 --> Total execution time: 0.7595
DEBUG - 2011-11-07 12:03:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:04 --> Total execution time: 0.8178
DEBUG - 2011-11-07 12:03:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:06 --> Total execution time: 0.8244
DEBUG - 2011-11-07 12:03:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:06 --> Total execution time: 0.4325
DEBUG - 2011-11-07 12:03:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:10 --> Total execution time: 1.2946
DEBUG - 2011-11-07 12:03:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:11 --> Total execution time: 1.3580
DEBUG - 2011-11-07 12:03:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:11 --> Total execution time: 0.9038
DEBUG - 2011-11-07 12:03:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:13 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:03:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:16 --> Total execution time: 0.9640
DEBUG - 2011-11-07 12:03:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:16 --> Total execution time: 0.4999
DEBUG - 2011-11-07 12:03:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:19 --> Total execution time: 0.7239
DEBUG - 2011-11-07 12:03:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:03:19 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:03:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:03:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:03:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:20 --> Total execution time: 1.4175
DEBUG - 2011-11-07 12:03:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:21 --> Total execution time: 0.8303
DEBUG - 2011-11-07 12:03:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:21 --> Total execution time: 0.4375
DEBUG - 2011-11-07 12:03:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:24 --> Total execution time: 0.9986
DEBUG - 2011-11-07 12:03:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:25 --> Total execution time: 0.3080
DEBUG - 2011-11-07 12:03:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:25 --> Total execution time: 0.0557
DEBUG - 2011-11-07 12:03:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:27 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:27 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:27 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:27 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:03:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:03:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:03:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:28 --> Total execution time: 1.4420
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:03:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:28 --> Total execution time: 0.2932
DEBUG - 2011-11-07 12:03:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:28 --> Total execution time: 0.1252
DEBUG - 2011-11-07 12:03:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:31 --> Total execution time: 0.8697
DEBUG - 2011-11-07 12:03:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:33 --> Total execution time: 0.5480
DEBUG - 2011-11-07 12:03:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:33 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:03:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:36 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:03:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:36 --> Total execution time: 0.8958
DEBUG - 2011-11-07 12:03:37 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:38 --> Total execution time: 0.2760
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:03:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:38 --> Total execution time: 0.5860
DEBUG - 2011-11-07 12:03:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:38 --> Total execution time: 0.0373
DEBUG - 2011-11-07 12:03:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:41 --> Total execution time: 1.1553
DEBUG - 2011-11-07 12:03:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:44 --> Total execution time: 1.0303
DEBUG - 2011-11-07 12:03:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:45 --> Total execution time: 1.2629
DEBUG - 2011-11-07 12:03:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:46 --> Total execution time: 1.1806
DEBUG - 2011-11-07 12:03:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:49 --> Total execution time: 0.2928
DEBUG - 2011-11-07 12:03:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:49 --> Total execution time: 0.3378
DEBUG - 2011-11-07 12:03:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:51 --> Total execution time: 0.5830
DEBUG - 2011-11-07 12:03:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:54 --> Total execution time: 0.7479
DEBUG - 2011-11-07 12:03:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:54 --> Total execution time: 0.7736
DEBUG - 2011-11-07 12:03:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:56 --> Total execution time: 1.2103
DEBUG - 2011-11-07 12:03:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:03:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:03:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:03:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:03:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:03:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:03:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:03:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:58 --> Total execution time: 0.1016
DEBUG - 2011-11-07 12:03:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:03:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:03:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:03:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:03:58 --> Total execution time: 0.0942
DEBUG - 2011-11-07 12:04:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:00 --> Total execution time: 0.1311
DEBUG - 2011-11-07 12:04:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:04 --> Total execution time: 0.3932
DEBUG - 2011-11-07 12:04:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:04 --> Total execution time: 0.5189
DEBUG - 2011-11-07 12:04:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:05 --> Total execution time: 0.0462
DEBUG - 2011-11-07 12:04:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:09 --> Total execution time: 0.4649
DEBUG - 2011-11-07 12:04:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:09 --> Total execution time: 0.4979
DEBUG - 2011-11-07 12:04:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:10 --> Total execution time: 0.0947
DEBUG - 2011-11-07 12:04:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:13 --> Total execution time: 0.0726
DEBUG - 2011-11-07 12:04:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:13 --> Total execution time: 0.0672
DEBUG - 2011-11-07 12:04:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:15 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:04:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:15 --> Total execution time: 0.0745
DEBUG - 2011-11-07 12:04:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Total execution time: 0.0758
DEBUG - 2011-11-07 12:04:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:18 --> Total execution time: 0.1008
DEBUG - 2011-11-07 12:04:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:20 --> Total execution time: 0.0425
DEBUG - 2011-11-07 12:04:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:23 --> Total execution time: 0.1307
DEBUG - 2011-11-07 12:04:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:23 --> Total execution time: 0.1584
DEBUG - 2011-11-07 12:04:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:25 --> Total execution time: 0.0858
DEBUG - 2011-11-07 12:04:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:28 --> Total execution time: 0.0860
DEBUG - 2011-11-07 12:04:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:28 --> Total execution time: 0.0722
DEBUG - 2011-11-07 12:04:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:30 --> Total execution time: 0.0457
DEBUG - 2011-11-07 12:04:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:33 --> Total execution time: 0.0698
DEBUG - 2011-11-07 12:04:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:33 --> Total execution time: 0.0628
DEBUG - 2011-11-07 12:04:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:35 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:04:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:38 --> Total execution time: 0.0444
DEBUG - 2011-11-07 12:04:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:40 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:04:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:43 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:04:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:04:45 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:04:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:04:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:04:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:45 --> Total execution time: 0.0879
DEBUG - 2011-11-07 12:04:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:48 --> Total execution time: 0.0434
DEBUG - 2011-11-07 12:04:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:50 --> Total execution time: 0.0509
DEBUG - 2011-11-07 12:04:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:53 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:04:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:55 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:58 --> Total execution time: 0.1388
DEBUG - 2011-11-07 12:04:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:58 --> Total execution time: 0.2211
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:58 --> Total execution time: 0.2351
DEBUG - 2011-11-07 12:04:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:58 --> Total execution time: 0.2432
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:04:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:04:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:59 --> Total execution time: 0.1531
DEBUG - 2011-11-07 12:04:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:04:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:04:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:04:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:04:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:04:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:04:59 --> Total execution time: 0.1341
DEBUG - 2011-11-07 12:05:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:00 --> Total execution time: 0.2180
DEBUG - 2011-11-07 12:05:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:03 --> Total execution time: 0.1655
DEBUG - 2011-11-07 12:05:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:04 --> Total execution time: 0.1874
DEBUG - 2011-11-07 12:05:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:05 --> Total execution time: 0.1822
DEBUG - 2011-11-07 12:05:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:08 --> Total execution time: 0.1649
DEBUG - 2011-11-07 12:05:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:09 --> Total execution time: 0.1865
DEBUG - 2011-11-07 12:05:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:11 --> Total execution time: 1.2324
DEBUG - 2011-11-07 12:05:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:14 --> Total execution time: 0.2548
DEBUG - 2011-11-07 12:05:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:14 --> Total execution time: 0.2249
DEBUG - 2011-11-07 12:05:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:15 --> Total execution time: 0.2940
DEBUG - 2011-11-07 12:05:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Total execution time: 0.0981
DEBUG - 2011-11-07 12:05:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:19 --> Total execution time: 0.2027
DEBUG - 2011-11-07 12:05:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:05:20 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:05:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:05:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:05:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:20 --> Total execution time: 0.2832
DEBUG - 2011-11-07 12:05:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:23 --> Total execution time: 0.1857
DEBUG - 2011-11-07 12:05:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:24 --> Total execution time: 0.1487
DEBUG - 2011-11-07 12:05:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:25 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:05:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:28 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:05:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:28 --> Total execution time: 0.0616
DEBUG - 2011-11-07 12:05:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:30 --> Total execution time: 0.0439
DEBUG - 2011-11-07 12:05:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:33 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:05:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:33 --> Total execution time: 0.0613
DEBUG - 2011-11-07 12:05:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:33 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:05:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:33 --> Total execution time: 0.0472
DEBUG - 2011-11-07 12:05:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:35 --> Total execution time: 0.0406
DEBUG - 2011-11-07 12:05:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:38 --> Total execution time: 0.0428
DEBUG - 2011-11-07 12:05:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:38 --> Total execution time: 0.0424
DEBUG - 2011-11-07 12:05:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:40 --> Total execution time: 0.0406
DEBUG - 2011-11-07 12:05:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:43 --> Total execution time: 0.1370
DEBUG - 2011-11-07 12:05:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:43 --> Total execution time: 0.0473
DEBUG - 2011-11-07 12:05:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:45 --> Total execution time: 0.0390
DEBUG - 2011-11-07 12:05:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:48 --> Total execution time: 0.0365
DEBUG - 2011-11-07 12:05:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:48 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:05:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:50 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:05:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:53 --> Total execution time: 0.0519
DEBUG - 2011-11-07 12:05:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:53 --> Total execution time: 0.0384
DEBUG - 2011-11-07 12:05:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:55 --> Total execution time: 0.0373
DEBUG - 2011-11-07 12:05:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:58 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:05:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:05:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:05:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:05:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:05:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:05:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:05:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:05:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:05:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:05:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:05:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:05:58 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:06:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:00 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:06:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:00 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:06:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:03 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:06:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:03 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:06:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:05 --> Total execution time: 0.0356
DEBUG - 2011-11-07 12:06:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:08 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:06:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:08 --> Total execution time: 0.0392
DEBUG - 2011-11-07 12:06:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:10 --> Total execution time: 0.0422
DEBUG - 2011-11-07 12:06:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:13 --> Total execution time: 0.0371
DEBUG - 2011-11-07 12:06:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:13 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:06:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:15 --> Total execution time: 0.0400
DEBUG - 2011-11-07 12:06:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:18 --> Total execution time: 0.0416
DEBUG - 2011-11-07 12:06:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:18 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:06:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:20 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:06:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:23 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:06:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:23 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:06:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:25 --> Total execution time: 0.1226
DEBUG - 2011-11-07 12:06:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:28 --> Total execution time: 0.1894
DEBUG - 2011-11-07 12:06:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:29 --> Total execution time: 0.1926
DEBUG - 2011-11-07 12:06:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:31 --> Total execution time: 0.2228
DEBUG - 2011-11-07 12:06:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:33 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:06:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:33 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:06:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:35 --> Total execution time: 0.0444
DEBUG - 2011-11-07 12:06:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:38 --> Total execution time: 0.0407
DEBUG - 2011-11-07 12:06:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:38 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:06:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:40 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:06:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:44 --> Total execution time: 0.2214
DEBUG - 2011-11-07 12:06:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:44 --> Total execution time: 0.1678
DEBUG - 2011-11-07 12:06:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:45 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:06:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:45 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:06:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:48 --> Total execution time: 0.0592
DEBUG - 2011-11-07 12:06:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:48 --> Total execution time: 0.0487
DEBUG - 2011-11-07 12:06:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:50 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:06:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:53 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:06:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:53 --> Total execution time: 0.0454
DEBUG - 2011-11-07 12:06:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:55 --> Total execution time: 0.0382
DEBUG - 2011-11-07 12:06:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:58 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:06:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:06:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:06:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:06:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:06:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:06:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:06:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:06:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:06:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:06:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:06:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:06:58 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:07:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:00 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:07:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:03 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:07:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:03 --> Total execution time: 0.0429
DEBUG - 2011-11-07 12:07:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:03 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:07:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:03 --> Total execution time: 0.0482
DEBUG - 2011-11-07 12:07:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:07:05 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:07:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:07:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:07:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:05 --> Total execution time: 0.0558
DEBUG - 2011-11-07 12:07:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:08 --> Total execution time: 0.0365
DEBUG - 2011-11-07 12:07:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:08 --> Total execution time: 0.0481
DEBUG - 2011-11-07 12:07:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:10 --> Total execution time: 0.0666
DEBUG - 2011-11-07 12:07:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:13 --> Total execution time: 0.0614
DEBUG - 2011-11-07 12:07:13 --> A session cookie was not found.
DEBUG - 2011-11-07 12:07:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:13 --> Total execution time: 0.1616
DEBUG - 2011-11-07 12:07:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:07:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 12:07:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:07:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:07:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:14 --> Total execution time: 0.1692
DEBUG - 2011-11-07 12:07:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:15 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:07:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:18 --> Total execution time: 0.0912
DEBUG - 2011-11-07 12:07:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:18 --> Total execution time: 0.0534
DEBUG - 2011-11-07 12:07:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:19 --> Total execution time: 0.0774
DEBUG - 2011-11-07 12:07:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:20 --> Total execution time: 0.0406
DEBUG - 2011-11-07 12:07:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:23 --> Total execution time: 0.0381
DEBUG - 2011-11-07 12:07:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:23 --> Total execution time: 0.0449
DEBUG - 2011-11-07 12:07:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:24 --> Total execution time: 0.0425
DEBUG - 2011-11-07 12:07:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:25 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:07:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:28 --> Total execution time: 0.0417
DEBUG - 2011-11-07 12:07:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:29 --> Total execution time: 0.1359
DEBUG - 2011-11-07 12:07:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:29 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:07:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:30 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:07:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:33 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:07:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:33 --> Total execution time: 0.0536
DEBUG - 2011-11-07 12:07:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:34 --> Total execution time: 0.0373
DEBUG - 2011-11-07 12:07:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:35 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:07:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:38 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:07:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:38 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:07:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:39 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:07:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:07:40 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:07:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:07:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:07:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:40 --> Total execution time: 0.0478
DEBUG - 2011-11-07 12:07:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:07:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-07 12:07:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:07:42 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:42 --> Total execution time: 0.0624
DEBUG - 2011-11-07 12:07:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:43 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:07:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:43 --> Total execution time: 0.0500
DEBUG - 2011-11-07 12:07:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:45 --> Total execution time: 0.1757
DEBUG - 2011-11-07 12:07:47 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:47 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:47 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:47 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:47 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:47 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:47 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:07:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:48 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:07:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:48 --> Total execution time: 0.0457
DEBUG - 2011-11-07 12:07:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:50 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:07:52 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:52 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:52 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:52 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:52 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:52 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:52 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:52 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:52 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:52 --> Total execution time: 0.0432
DEBUG - 2011-11-07 12:07:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:53 --> Total execution time: 0.0495
DEBUG - 2011-11-07 12:07:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:53 --> Total execution time: 0.0549
DEBUG - 2011-11-07 12:07:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:55 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:07:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:55 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:07:57 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:57 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:57 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:57 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:57 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:57 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:57 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:57 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:57 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:57 --> Total execution time: 0.0444
DEBUG - 2011-11-07 12:07:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:58 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:07:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:07:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:07:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:07:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:07:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:07:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:07:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:07:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:07:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:07:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:07:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:07:58 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:08:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:00 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:08:02 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:02 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:02 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:02 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:02 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:02 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:02 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:02 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:02 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:02 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:02 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:02 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:02 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:02 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:08:02 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:02 --> Total execution time: 0.0853
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:08:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:08:02 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:02 --> Total execution time: 0.0563
DEBUG - 2011-11-07 12:08:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:03 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:08:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:03 --> Total execution time: 0.0409
DEBUG - 2011-11-07 12:08:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:05 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:08:07 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:07 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:07 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:07 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:07 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:07 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:07 --> Total execution time: 0.0444
DEBUG - 2011-11-07 12:08:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:08 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:08:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:08 --> Total execution time: 0.0727
DEBUG - 2011-11-07 12:08:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:10 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:08:12 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:12 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:12 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:12 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:12 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:12 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:12 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:12 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:12 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:12 --> Total execution time: 0.0444
DEBUG - 2011-11-07 12:08:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:13 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:08:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:13 --> Total execution time: 0.0698
DEBUG - 2011-11-07 12:08:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:15 --> Total execution time: 0.0468
DEBUG - 2011-11-07 12:08:17 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:17 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:17 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:17 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:17 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:17 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:17 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:17 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:17 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:17 --> Total execution time: 0.0524
DEBUG - 2011-11-07 12:08:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:18 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:08:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:18 --> Total execution time: 0.0437
DEBUG - 2011-11-07 12:08:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:20 --> Total execution time: 0.0614
DEBUG - 2011-11-07 12:08:22 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:22 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:22 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:22 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:22 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:22 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:22 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:22 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:22 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:22 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:22 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:08:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:23 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:08:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:23 --> Total execution time: 0.0514
DEBUG - 2011-11-07 12:08:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:25 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:08:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:08:26 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:08:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:08:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:08:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:26 --> Total execution time: 0.1127
DEBUG - 2011-11-07 12:08:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:28 --> Total execution time: 0.0359
DEBUG - 2011-11-07 12:08:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:28 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:08:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:30 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:08:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:31 --> Total execution time: 0.0668
DEBUG - 2011-11-07 12:08:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:33 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:08:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:33 --> Total execution time: 0.0401
DEBUG - 2011-11-07 12:08:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:35 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:08:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:36 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:08:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:38 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:08:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:38 --> Total execution time: 0.0406
DEBUG - 2011-11-07 12:08:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:40 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:08:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:41 --> Total execution time: 0.0627
DEBUG - 2011-11-07 12:08:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:43 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:08:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:43 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:08:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:45 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:08:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:46 --> Total execution time: 0.3830
DEBUG - 2011-11-07 12:08:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:48 --> Total execution time: 0.0758
DEBUG - 2011-11-07 12:08:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:48 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:08:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:08:49 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:08:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:08:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:08:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:49 --> Total execution time: 0.0440
DEBUG - 2011-11-07 12:08:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:50 --> Total execution time: 0.0396
DEBUG - 2011-11-07 12:08:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:53 --> Total execution time: 0.0774
DEBUG - 2011-11-07 12:08:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:54 --> Total execution time: 0.0909
DEBUG - 2011-11-07 12:08:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:54 --> Total execution time: 0.0420
DEBUG - 2011-11-07 12:08:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:55 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:08:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:58 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:08:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:58 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:08:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:08:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:08:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:08:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:08:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:08:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:08:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:08:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:08:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:08:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:08:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:08:59 --> Total execution time: 0.0875
DEBUG - 2011-11-07 12:09:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:00 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:09:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:03 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:09:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:03 --> Total execution time: 0.0409
DEBUG - 2011-11-07 12:09:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:04 --> Total execution time: 0.0384
DEBUG - 2011-11-07 12:09:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:05 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:09:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:09:06 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:09:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:09:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:09:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:06 --> Total execution time: 0.0709
DEBUG - 2011-11-07 12:09:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:08 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:09:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:08 --> Total execution time: 0.0837
DEBUG - 2011-11-07 12:09:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:09 --> Total execution time: 0.0743
DEBUG - 2011-11-07 12:09:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:10 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:09:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:11 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:09:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:13 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:09:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:13 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:09:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:15 --> Total execution time: 0.0398
DEBUG - 2011-11-07 12:09:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:17 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:17 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:17 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:17 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:17 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:17 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:17 --> Total execution time: 0.4225
DEBUG - 2011-11-07 12:09:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:18 --> Total execution time: 0.0398
DEBUG - 2011-11-07 12:09:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:18 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:09:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:20 --> Total execution time: 0.0395
DEBUG - 2011-11-07 12:09:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:21 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:09:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:23 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:09:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:23 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:09:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:25 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:09:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:26 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:09:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:28 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:09:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:28 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:09:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:30 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:09:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:30 --> Total execution time: 0.0384
DEBUG - 2011-11-07 12:09:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:31 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:09:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:33 --> Total execution time: 0.0359
DEBUG - 2011-11-07 12:09:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:33 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:09:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:35 --> Total execution time: 0.0796
DEBUG - 2011-11-07 12:09:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:42 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:42 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:42 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:42 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:42 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:42 --> Total execution time: 6.2913
DEBUG - 2011-11-07 12:09:42 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:42 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:42 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:42 --> Total execution time: 0.3102
DEBUG - 2011-11-07 12:09:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:42 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:42 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:42 --> Total execution time: 1.3378
DEBUG - 2011-11-07 12:09:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:42 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:42 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:42 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:42 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:42 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:42 --> Total execution time: 4.1913
DEBUG - 2011-11-07 12:09:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:43 --> Total execution time: 4.0730
DEBUG - 2011-11-07 12:09:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:43 --> Total execution time: 0.0457
DEBUG - 2011-11-07 12:09:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:44 --> Total execution time: 0.1166
DEBUG - 2011-11-07 12:09:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:45 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:09:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:46 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:09:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:48 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:09:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:48 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:09:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:50 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:09:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:51 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:09:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:53 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:09:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:53 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:09:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:55 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:09:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:56 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:09:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:58 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:09:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:09:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:09:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:09:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:09:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:09:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:09:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:09:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:09:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:09:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:09:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:09:58 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:10:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:00 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:10:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:01 --> Total execution time: 0.0402
DEBUG - 2011-11-07 12:10:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:03 --> Total execution time: 0.0492
DEBUG - 2011-11-07 12:10:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:03 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:10:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:05 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:10:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:06 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:10:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:08 --> Total execution time: 0.0326
DEBUG - 2011-11-07 12:10:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:08 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:10:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:10 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:10:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:11 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:10:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:13 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:10:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:13 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:10:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:15 --> Total execution time: 0.0451
DEBUG - 2011-11-07 12:10:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:16 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:10:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:18 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:10:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:18 --> Total execution time: 0.0303
DEBUG - 2011-11-07 12:10:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:20 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:10:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:21 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:10:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:23 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:10:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:23 --> Total execution time: 0.0301
DEBUG - 2011-11-07 12:10:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:25 --> Total execution time: 0.0640
DEBUG - 2011-11-07 12:10:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:26 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:10:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:29 --> Total execution time: 0.2467
DEBUG - 2011-11-07 12:10:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:29 --> Total execution time: 0.2416
DEBUG - 2011-11-07 12:10:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:30 --> Total execution time: 0.1469
DEBUG - 2011-11-07 12:10:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:31 --> Total execution time: 0.0887
DEBUG - 2011-11-07 12:10:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:34 --> Total execution time: 0.5385
DEBUG - 2011-11-07 12:10:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:34 --> Total execution time: 0.6958
DEBUG - 2011-11-07 12:10:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:35 --> Total execution time: 0.0711
DEBUG - 2011-11-07 12:10:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:36 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:10:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:38 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:10:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:38 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:10:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:40 --> Total execution time: 0.0473
DEBUG - 2011-11-07 12:10:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:41 --> Total execution time: 0.0482
DEBUG - 2011-11-07 12:10:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:43 --> Total execution time: 0.0414
DEBUG - 2011-11-07 12:10:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:43 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:10:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:45 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:10:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:46 --> Total execution time: 0.0525
DEBUG - 2011-11-07 12:10:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:49 --> Total execution time: 0.3019
DEBUG - 2011-11-07 12:10:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:49 --> Total execution time: 0.4471
DEBUG - 2011-11-07 12:10:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:50 --> Total execution time: 0.0390
DEBUG - 2011-11-07 12:10:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:51 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:10:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:53 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:10:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:53 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:10:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:55 --> Total execution time: 0.0531
DEBUG - 2011-11-07 12:10:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:56 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:10:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:58 --> Total execution time: 0.0617
DEBUG - 2011-11-07 12:10:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:10:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:10:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:10:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:10:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:10:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:10:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:10:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:10:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:10:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:10:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:10:58 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:11:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:00 --> Total execution time: 0.0480
DEBUG - 2011-11-07 12:11:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:01 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:11:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:03 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:11:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:03 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:11:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:05 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:11:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:06 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:11:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:08 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:11:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:09 --> Total execution time: 0.0523
DEBUG - 2011-11-07 12:11:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:10 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:11:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:11 --> Total execution time: 0.0407
DEBUG - 2011-11-07 12:11:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:13 --> Total execution time: 0.0428
DEBUG - 2011-11-07 12:11:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:13 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:11:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:15 --> Total execution time: 0.0471
DEBUG - 2011-11-07 12:11:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:16 --> Total execution time: 0.0401
DEBUG - 2011-11-07 12:11:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:18 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:11:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:18 --> Total execution time: 0.0353
DEBUG - 2011-11-07 12:11:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:20 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:11:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:21 --> Total execution time: 0.0314
DEBUG - 2011-11-07 12:11:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:23 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:11:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:23 --> Total execution time: 0.0393
DEBUG - 2011-11-07 12:11:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:23 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:11:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:23 --> Total execution time: 0.0370
DEBUG - 2011-11-07 12:11:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:25 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:11:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:26 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:11:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:29 --> Total execution time: 0.2172
DEBUG - 2011-11-07 12:11:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:29 --> Total execution time: 0.0763
DEBUG - 2011-11-07 12:11:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:30 --> Total execution time: 0.0313
DEBUG - 2011-11-07 12:11:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:31 --> Total execution time: 0.0474
DEBUG - 2011-11-07 12:11:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:33 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:11:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:33 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:11:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:35 --> Total execution time: 0.0296
DEBUG - 2011-11-07 12:11:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:36 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:11:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:38 --> Total execution time: 0.0427
DEBUG - 2011-11-07 12:11:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:39 --> Total execution time: 0.0449
DEBUG - 2011-11-07 12:11:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:40 --> Total execution time: 0.0491
DEBUG - 2011-11-07 12:11:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:41 --> Total execution time: 0.0625
DEBUG - 2011-11-07 12:11:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:43 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:11:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:43 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:11:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:45 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:11:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:45 --> Total execution time: 0.0693
DEBUG - 2011-11-07 12:11:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:46 --> Total execution time: 0.0452
DEBUG - 2011-11-07 12:11:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:48 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:11:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:49 --> Total execution time: 0.0641
DEBUG - 2011-11-07 12:11:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:50 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:11:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:51 --> Total execution time: 0.0390
DEBUG - 2011-11-07 12:11:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:53 --> Total execution time: 0.0315
DEBUG - 2011-11-07 12:11:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:54 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:11:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:55 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:11:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:56 --> Total execution time: 0.0359
DEBUG - 2011-11-07 12:11:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:58 --> Total execution time: 0.0561
DEBUG - 2011-11-07 12:11:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:11:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:11:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:11:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:11:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:11:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:11:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:11:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:11:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:11:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:11:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:11:58 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:12:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:00 --> Total execution time: 0.0375
DEBUG - 2011-11-07 12:12:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:01 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:12:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:03 --> Total execution time: 0.0392
DEBUG - 2011-11-07 12:12:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:03 --> Total execution time: 0.0299
DEBUG - 2011-11-07 12:12:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:05 --> Total execution time: 0.0441
DEBUG - 2011-11-07 12:12:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:06 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:12:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:09 --> Total execution time: 0.2844
DEBUG - 2011-11-07 12:12:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:09 --> Total execution time: 0.1811
DEBUG - 2011-11-07 12:12:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:10 --> Total execution time: 0.0520
DEBUG - 2011-11-07 12:12:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:11 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:12:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:13 --> Total execution time: 0.1455
DEBUG - 2011-11-07 12:12:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:14 --> Total execution time: 0.0425
DEBUG - 2011-11-07 12:12:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:15 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:12:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:16 --> Total execution time: 0.1092
DEBUG - 2011-11-07 12:12:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:18 --> Total execution time: 0.0409
DEBUG - 2011-11-07 12:12:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:19 --> Total execution time: 0.0435
DEBUG - 2011-11-07 12:12:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:20 --> Total execution time: 0.3052
DEBUG - 2011-11-07 12:12:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:21 --> Total execution time: 0.0542
DEBUG - 2011-11-07 12:12:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:23 --> Total execution time: 0.0582
DEBUG - 2011-11-07 12:12:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:24 --> Total execution time: 0.0408
DEBUG - 2011-11-07 12:12:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:25 --> Total execution time: 0.1217
DEBUG - 2011-11-07 12:12:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:26 --> Total execution time: 0.0391
DEBUG - 2011-11-07 12:12:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:28 --> Total execution time: 0.0662
DEBUG - 2011-11-07 12:12:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:29 --> Total execution time: 0.0630
DEBUG - 2011-11-07 12:12:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:30 --> Total execution time: 0.0396
DEBUG - 2011-11-07 12:12:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:31 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:12:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:33 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:12:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:34 --> Total execution time: 0.0381
DEBUG - 2011-11-07 12:12:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:35 --> Total execution time: 0.0939
DEBUG - 2011-11-07 12:12:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:36 --> Total execution time: 0.0410
DEBUG - 2011-11-07 12:12:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:38 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:12:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:38 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:12:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:40 --> Total execution time: 0.0542
DEBUG - 2011-11-07 12:12:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:41 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:12:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:43 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:12:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:43 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:12:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:45 --> Total execution time: 0.0353
DEBUG - 2011-11-07 12:12:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:46 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:12:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:48 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:12:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:48 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:12:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:50 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:12:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:51 --> Total execution time: 0.0391
DEBUG - 2011-11-07 12:12:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:53 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:12:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:53 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:12:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:53 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:12:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:53 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:12:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:55 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:12:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:56 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:12:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:58 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:12:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:12:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:12:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:12:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:12:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:12:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:12:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:12:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:12:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:12:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:12:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:12:58 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:13:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:00 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:13:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:01 --> Total execution time: 0.0386
DEBUG - 2011-11-07 12:13:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:03 --> Total execution time: 0.0382
DEBUG - 2011-11-07 12:13:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:04 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:13:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:07 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:07 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:07 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:07 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:07 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:07 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:07 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:07 --> Total execution time: 1.8527
DEBUG - 2011-11-07 12:13:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:07 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:07 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:07 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:07 --> Total execution time: 0.5186
DEBUG - 2011-11-07 12:13:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:09 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:13:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:13:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:09 --> Total execution time: 0.2127
DEBUG - 2011-11-07 12:13:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:09 --> Total execution time: 0.0683
DEBUG - 2011-11-07 12:13:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:10 --> Total execution time: 0.0309
DEBUG - 2011-11-07 12:13:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:11 --> Total execution time: 0.0438
DEBUG - 2011-11-07 12:13:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:13 --> Total execution time: 0.0461
DEBUG - 2011-11-07 12:13:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:14 --> Total execution time: 0.0387
DEBUG - 2011-11-07 12:13:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:15 --> Total execution time: 0.0540
DEBUG - 2011-11-07 12:13:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:16 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:13:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:18 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:13:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:18 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:13:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:20 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:13:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:21 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:13:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:23 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:13:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:23 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:13:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:25 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:13:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:26 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:13:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:28 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:13:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:29 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:13:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:30 --> Total execution time: 0.0622
DEBUG - 2011-11-07 12:13:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:31 --> Total execution time: 0.0419
DEBUG - 2011-11-07 12:13:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:33 --> Total execution time: 0.0407
DEBUG - 2011-11-07 12:13:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:33 --> Total execution time: 0.0301
DEBUG - 2011-11-07 12:13:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:35 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:13:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:36 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:13:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:38 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:13:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:38 --> Total execution time: 0.0322
DEBUG - 2011-11-07 12:13:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:40 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:13:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:41 --> Total execution time: 0.0551
DEBUG - 2011-11-07 12:13:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:43 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:13:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:43 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:13:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:45 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:13:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:46 --> Total execution time: 0.0353
DEBUG - 2011-11-07 12:13:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:48 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:13:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:48 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:13:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:50 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:13:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:51 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:13:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:53 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:13:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:13:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:54 --> Total execution time: 0.0652
DEBUG - 2011-11-07 12:13:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:55 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:13:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:56 --> Total execution time: 0.0437
DEBUG - 2011-11-07 12:13:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:58 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:13:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:13:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:13:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:13:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:13:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:13:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:13:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:13:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:13:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:13:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:13:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:13:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:13:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:13:59 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:14:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:00 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:14:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:01 --> Total execution time: 0.0435
DEBUG - 2011-11-07 12:14:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:03 --> Total execution time: 0.0326
DEBUG - 2011-11-07 12:14:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:03 --> Total execution time: 0.0315
DEBUG - 2011-11-07 12:14:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:05 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:14:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:06 --> Total execution time: 0.0596
DEBUG - 2011-11-07 12:14:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:08 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:08 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:14:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:08 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:08 --> Total execution time: 0.0310
DEBUG - 2011-11-07 12:14:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:10 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:14:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:11 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:14:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:13 --> Total execution time: 0.0302
DEBUG - 2011-11-07 12:14:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:14 --> Total execution time: 0.0456
DEBUG - 2011-11-07 12:14:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:15 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:14:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:16 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:14:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:18 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:18 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:14:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:18 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:19 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:14:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:20 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:14:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:21 --> Total execution time: 0.2037
DEBUG - 2011-11-07 12:14:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:23 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:14:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:24 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:14:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:25 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:25 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:14:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:26 --> Total execution time: 0.0427
DEBUG - 2011-11-07 12:14:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:28 --> Total execution time: 0.0563
DEBUG - 2011-11-07 12:14:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:29 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:14:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:30 --> Total execution time: 0.0440
DEBUG - 2011-11-07 12:14:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:31 --> Total execution time: 0.0440
DEBUG - 2011-11-07 12:14:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:33 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:14:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:34 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:14:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:35 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:35 --> Total execution time: 0.0441
DEBUG - 2011-11-07 12:14:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:36 --> Total execution time: 0.0515
DEBUG - 2011-11-07 12:14:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:38 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:38 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:14:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:38 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:39 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:14:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:40 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:40 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:14:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:41 --> Total execution time: 0.0434
DEBUG - 2011-11-07 12:14:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:43 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:14:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:44 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:14:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:45 --> Total execution time: 0.0326
DEBUG - 2011-11-07 12:14:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:46 --> Total execution time: 0.0435
DEBUG - 2011-11-07 12:14:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:48 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:14:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:48 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:14:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:49 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:14:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:50 --> Total execution time: 0.0395
DEBUG - 2011-11-07 12:14:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:51 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:14:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:53 --> Total execution time: 0.0633
DEBUG - 2011-11-07 12:14:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:54 --> Total execution time: 0.0300
DEBUG - 2011-11-07 12:14:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:55 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:14:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:56 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:14:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:58 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:14:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:14:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:14:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:14:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:14:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:14:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:14:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:14:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:14:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:14:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:14:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:14:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:14:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:14:59 --> Total execution time: 0.0491
DEBUG - 2011-11-07 12:15:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:00 --> Total execution time: 0.0569
DEBUG - 2011-11-07 12:15:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:01 --> Total execution time: 0.1892
DEBUG - 2011-11-07 12:15:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:03 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:15:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:04 --> Total execution time: 0.0452
DEBUG - 2011-11-07 12:15:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:05 --> Total execution time: 0.0375
DEBUG - 2011-11-07 12:15:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:06 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:15:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:06 --> Total execution time: 0.0455
DEBUG - 2011-11-07 12:15:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:08 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:15:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:09 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:15:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:10 --> Total execution time: 0.0462
DEBUG - 2011-11-07 12:15:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:11 --> Total execution time: 0.0676
DEBUG - 2011-11-07 12:15:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:13 --> Total execution time: 0.0308
DEBUG - 2011-11-07 12:15:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:14 --> Total execution time: 0.0502
DEBUG - 2011-11-07 12:15:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:15 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:15:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:16 --> Total execution time: 0.0315
DEBUG - 2011-11-07 12:15:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:18 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:15:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:19 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:15:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:20 --> Total execution time: 0.0466
DEBUG - 2011-11-07 12:15:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:21 --> Total execution time: 0.0642
DEBUG - 2011-11-07 12:15:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:23 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:15:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:24 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:15:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:25 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:15:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:26 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:15:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:28 --> Total execution time: 0.0524
DEBUG - 2011-11-07 12:15:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:29 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:15:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:30 --> Total execution time: 0.0914
DEBUG - 2011-11-07 12:15:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:31 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:15:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:33 --> Total execution time: 0.0315
DEBUG - 2011-11-07 12:15:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:34 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:15:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:35 --> Total execution time: 0.0352
DEBUG - 2011-11-07 12:15:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:36 --> Total execution time: 0.1814
DEBUG - 2011-11-07 12:15:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:38 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:15:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:39 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:15:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:40 --> Total execution time: 0.0370
DEBUG - 2011-11-07 12:15:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:41 --> Total execution time: 0.0458
DEBUG - 2011-11-07 12:15:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:43 --> Total execution time: 0.0370
DEBUG - 2011-11-07 12:15:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:44 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:15:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:45 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:15:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:46 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:15:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:49 --> Total execution time: 0.1954
DEBUG - 2011-11-07 12:15:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:49 --> Total execution time: 0.1178
DEBUG - 2011-11-07 12:15:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:50 --> Total execution time: 0.0399
DEBUG - 2011-11-07 12:15:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:51 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:15:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:53 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:15:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:54 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:15:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:55 --> Total execution time: 0.0645
DEBUG - 2011-11-07 12:15:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:56 --> Total execution time: 0.0314
DEBUG - 2011-11-07 12:15:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:58 --> Total execution time: 0.0399
DEBUG - 2011-11-07 12:15:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:15:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:15:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:15:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:15:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:15:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:15:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:15:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:15:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:15:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:15:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:15:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:15:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:15:59 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:16:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:00 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:16:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:01 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:16:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:03 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:16:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:04 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:16:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:05 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:16:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:06 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:16:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:08 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:16:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:09 --> Total execution time: 0.0322
DEBUG - 2011-11-07 12:16:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:10 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:16:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:11 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:16:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:13 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:16:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:14 --> Total execution time: 0.0302
DEBUG - 2011-11-07 12:16:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:15 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:16:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:16 --> Total execution time: 0.0529
DEBUG - 2011-11-07 12:16:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:18 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:16:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:19 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:16:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:20 --> Total execution time: 0.0313
DEBUG - 2011-11-07 12:16:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:21 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:16:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:23 --> Total execution time: 0.0315
DEBUG - 2011-11-07 12:16:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:24 --> Total execution time: 0.0300
DEBUG - 2011-11-07 12:16:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:25 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:16:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:26 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:16:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:28 --> Total execution time: 0.0424
DEBUG - 2011-11-07 12:16:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:29 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:16:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:30 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:16:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:31 --> Total execution time: 0.0353
DEBUG - 2011-11-07 12:16:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:33 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:16:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:34 --> Total execution time: 0.0367
DEBUG - 2011-11-07 12:16:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:35 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:16:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:35 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:16:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:36 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:16:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:36 --> Total execution time: 0.0393
DEBUG - 2011-11-07 12:16:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:38 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:16:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:39 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:16:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:40 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:16:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:41 --> Total execution time: 0.0461
DEBUG - 2011-11-07 12:16:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:43 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:16:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:44 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:16:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:45 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:16:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:46 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:16:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:48 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:16:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:49 --> Total execution time: 0.0388
DEBUG - 2011-11-07 12:16:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:50 --> Total execution time: 0.0397
DEBUG - 2011-11-07 12:16:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:51 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:16:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:53 --> Total execution time: 0.1168
DEBUG - 2011-11-07 12:16:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:16:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:54 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:16:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:55 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:16:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:56 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:16:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:58 --> Total execution time: 0.0401
DEBUG - 2011-11-07 12:16:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:16:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:16:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:16:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:16:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:16:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:16:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:16:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:16:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:16:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:16:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:16:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:16:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:16:59 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:17:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:00 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:17:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:00 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:17:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:01 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:17:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:03 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:17:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:04 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:17:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:05 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:17:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:06 --> Total execution time: 0.0554
DEBUG - 2011-11-07 12:17:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:08 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:17:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:09 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:17:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:10 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:17:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:10 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:17:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:11 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:17:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:13 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:17:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:14 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:17:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:15 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:17:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:16 --> Total execution time: 0.0322
DEBUG - 2011-11-07 12:17:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:18 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:17:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:18 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:17:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:19 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:17:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:19 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:17:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:20 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:17:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:21 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:17:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:23 --> Total execution time: 0.0354
DEBUG - 2011-11-07 12:17:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:24 --> Total execution time: 0.3419
DEBUG - 2011-11-07 12:17:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:25 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:17:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:26 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:17:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:28 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:17:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:29 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:17:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:30 --> Total execution time: 0.0683
DEBUG - 2011-11-07 12:17:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:31 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:17:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:31 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:17:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:33 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:17:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:34 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:17:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:35 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:17:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:36 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:17:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:38 --> Total execution time: 0.0424
DEBUG - 2011-11-07 12:17:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:39 --> Total execution time: 0.0932
DEBUG - 2011-11-07 12:17:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:40 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:17:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:41 --> Total execution time: 0.0689
DEBUG - 2011-11-07 12:17:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:43 --> Total execution time: 0.0341
DEBUG - 2011-11-07 12:17:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:44 --> Total execution time: 0.0362
DEBUG - 2011-11-07 12:17:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:45 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:17:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:46 --> Total execution time: 0.0923
DEBUG - 2011-11-07 12:17:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:48 --> Total execution time: 0.0356
DEBUG - 2011-11-07 12:17:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:49 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:17:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:50 --> Total execution time: 0.0310
DEBUG - 2011-11-07 12:17:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:51 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:17:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:53 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:17:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:54 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:17:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:55 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:17:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:56 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:17:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:58 --> Total execution time: 0.0305
DEBUG - 2011-11-07 12:17:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:17:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:17:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:17:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:17:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:17:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:17:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:17:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:17:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:17:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:17:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:17:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:17:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:17:59 --> Total execution time: 0.0314
DEBUG - 2011-11-07 12:18:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:00 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:18:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:01 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:18:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:03 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:18:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:04 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:18:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:05 --> Total execution time: 0.5632
DEBUG - 2011-11-07 12:18:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:06 --> Total execution time: 0.2596
DEBUG - 2011-11-07 12:18:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:08 --> Total execution time: 0.0309
DEBUG - 2011-11-07 12:18:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:09 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:18:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:10 --> Total execution time: 0.0437
DEBUG - 2011-11-07 12:18:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:11 --> Total execution time: 0.0292
DEBUG - 2011-11-07 12:18:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:13 --> Total execution time: 0.1042
DEBUG - 2011-11-07 12:18:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:14 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:18:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:16 --> Total execution time: 0.9456
DEBUG - 2011-11-07 12:18:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:16 --> Total execution time: 0.1793
DEBUG - 2011-11-07 12:18:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:19 --> Total execution time: 0.2500
DEBUG - 2011-11-07 12:18:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:19 --> Total execution time: 0.1161
DEBUG - 2011-11-07 12:18:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:20 --> Total execution time: 0.0634
DEBUG - 2011-11-07 12:18:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:21 --> Total execution time: 0.0646
DEBUG - 2011-11-07 12:18:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:23 --> Total execution time: 0.0306
DEBUG - 2011-11-07 12:18:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:24 --> Total execution time: 0.0617
DEBUG - 2011-11-07 12:18:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:25 --> Total execution time: 0.3102
DEBUG - 2011-11-07 12:18:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:26 --> Total execution time: 0.0421
DEBUG - 2011-11-07 12:18:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:28 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:28 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:28 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:28 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:28 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:18:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:29 --> Total execution time: 0.0519
DEBUG - 2011-11-07 12:18:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:30 --> Total execution time: 0.1650
DEBUG - 2011-11-07 12:18:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:31 --> Total execution time: 0.0294
DEBUG - 2011-11-07 12:18:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:33 --> Total execution time: 0.1058
DEBUG - 2011-11-07 12:18:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:34 --> Total execution time: 0.1068
DEBUG - 2011-11-07 12:18:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:35 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:18:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:36 --> Total execution time: 0.0829
DEBUG - 2011-11-07 12:18:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:39 --> Total execution time: 0.3713
DEBUG - 2011-11-07 12:18:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:39 --> Total execution time: 0.1928
DEBUG - 2011-11-07 12:18:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:40 --> Total execution time: 0.0408
DEBUG - 2011-11-07 12:18:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:41 --> Total execution time: 0.2397
DEBUG - 2011-11-07 12:18:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:43 --> Total execution time: 0.0387
DEBUG - 2011-11-07 12:18:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:44 --> Total execution time: 0.0804
DEBUG - 2011-11-07 12:18:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:45 --> Total execution time: 0.3154
DEBUG - 2011-11-07 12:18:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:47 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:47 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:47 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:47 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:47 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:47 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:47 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:47 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:47 --> Total execution time: 0.5276
DEBUG - 2011-11-07 12:18:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:48 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:18:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:49 --> Total execution time: 0.1202
DEBUG - 2011-11-07 12:18:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:50 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:18:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:50 --> Total execution time: 0.0870
DEBUG - 2011-11-07 12:18:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:51 --> Total execution time: 0.0476
DEBUG - 2011-11-07 12:18:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:53 --> Total execution time: 0.1468
DEBUG - 2011-11-07 12:18:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:54 --> Total execution time: 0.0306
DEBUG - 2011-11-07 12:18:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:55 --> Total execution time: 0.6065
DEBUG - 2011-11-07 12:18:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:56 --> Total execution time: 0.0902
DEBUG - 2011-11-07 12:18:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:58 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:18:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:58 --> Total execution time: 0.1212
DEBUG - 2011-11-07 12:18:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:18:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:18:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:18:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:18:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:18:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:18:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:18:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:18:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:18:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:18:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:18:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:18:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:18:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:18:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:18:59 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:19:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:00 --> Total execution time: 0.0623
DEBUG - 2011-11-07 12:19:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:01 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:19:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:03 --> Total execution time: 0.0498
DEBUG - 2011-11-07 12:19:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:04 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:19:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:05 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:19:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:06 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:19:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:06 --> Total execution time: 0.0606
DEBUG - 2011-11-07 12:19:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:09 --> Total execution time: 0.3458
DEBUG - 2011-11-07 12:19:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:09 --> Total execution time: 0.2004
DEBUG - 2011-11-07 12:19:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:10 --> Total execution time: 0.0647
DEBUG - 2011-11-07 12:19:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:11 --> Total execution time: 0.0582
DEBUG - 2011-11-07 12:19:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:13 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:19:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:14 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:19:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:15 --> Total execution time: 0.1394
DEBUG - 2011-11-07 12:19:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:16 --> Total execution time: 0.0297
DEBUG - 2011-11-07 12:19:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:18 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:19:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:19 --> Total execution time: 0.0882
DEBUG - 2011-11-07 12:19:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:20 --> Total execution time: 0.5073
DEBUG - 2011-11-07 12:19:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:21 --> Total execution time: 0.0289
DEBUG - 2011-11-07 12:19:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:23 --> Total execution time: 0.0310
DEBUG - 2011-11-07 12:19:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:24 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:19:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:25 --> Total execution time: 0.3104
DEBUG - 2011-11-07 12:19:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:27 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:27 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:27 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:27 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:27 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:27 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:27 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:27 --> Total execution time: 0.4525
DEBUG - 2011-11-07 12:19:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:28 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:28 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:28 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:29 --> Total execution time: 0.0962
DEBUG - 2011-11-07 12:19:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:29 --> Total execution time: 0.0521
DEBUG - 2011-11-07 12:19:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:30 --> Total execution time: 0.1018
DEBUG - 2011-11-07 12:19:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:31 --> Total execution time: 0.0820
DEBUG - 2011-11-07 12:19:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:33 --> Total execution time: 0.1728
DEBUG - 2011-11-07 12:19:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:34 --> Total execution time: 0.1164
DEBUG - 2011-11-07 12:19:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:35 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:19:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:36 --> Total execution time: 0.2936
DEBUG - 2011-11-07 12:19:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:38 --> Total execution time: 0.0645
DEBUG - 2011-11-07 12:19:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:39 --> Total execution time: 0.0314
DEBUG - 2011-11-07 12:19:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:40 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:19:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:41 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:19:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:41 --> Total execution time: 0.0556
DEBUG - 2011-11-07 12:19:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:43 --> Total execution time: 0.0390
DEBUG - 2011-11-07 12:19:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:44 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:19:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:45 --> Total execution time: 0.2428
DEBUG - 2011-11-07 12:19:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:48 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:19:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:48 --> Total execution time: 1.7862
DEBUG - 2011-11-07 12:19:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:48 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:48 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:48 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:19:48 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:48 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:48 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:48 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:48 --> Total execution time: 0.0914
DEBUG - 2011-11-07 12:19:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:48 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:48 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:49 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:19:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:49 --> Total execution time: 0.0389
DEBUG - 2011-11-07 12:19:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:50 --> Total execution time: 0.0304
DEBUG - 2011-11-07 12:19:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:51 --> Total execution time: 0.0386
DEBUG - 2011-11-07 12:19:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:53 --> Total execution time: 0.0310
DEBUG - 2011-11-07 12:19:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:54 --> Total execution time: 0.1556
DEBUG - 2011-11-07 12:19:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:55 --> Total execution time: 0.0699
DEBUG - 2011-11-07 12:19:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:56 --> Total execution time: 0.0305
DEBUG - 2011-11-07 12:19:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:58 --> Total execution time: 0.0833
DEBUG - 2011-11-07 12:19:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:19:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:19:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:19:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:19:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:19:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:19:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:19:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:19:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:19:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:19:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:19:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:19:59 --> Total execution time: 0.2718
DEBUG - 2011-11-07 12:20:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:00 --> Total execution time: 0.0426
DEBUG - 2011-11-07 12:20:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:01 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:20:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:04 --> Total execution time: 0.4866
DEBUG - 2011-11-07 12:20:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:04 --> Total execution time: 0.3321
DEBUG - 2011-11-07 12:20:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:05 --> Total execution time: 0.4143
DEBUG - 2011-11-07 12:20:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:06 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:20:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:08 --> Total execution time: 0.0367
DEBUG - 2011-11-07 12:20:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:09 --> Total execution time: 0.0650
DEBUG - 2011-11-07 12:20:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:10 --> Total execution time: 0.1332
DEBUG - 2011-11-07 12:20:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:11 --> Total execution time: 0.0502
DEBUG - 2011-11-07 12:20:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:13 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:13 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:13 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:13 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:13 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:13 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:13 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:13 --> Total execution time: 0.0675
DEBUG - 2011-11-07 12:20:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:13 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:14 --> Total execution time: 0.1476
DEBUG - 2011-11-07 12:20:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:15 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:20:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:16 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:20:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:19 --> Total execution time: 0.2436
DEBUG - 2011-11-07 12:20:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:19 --> Total execution time: 0.1279
DEBUG - 2011-11-07 12:20:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:20 --> Total execution time: 0.1427
DEBUG - 2011-11-07 12:20:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:21 --> Total execution time: 0.0610
DEBUG - 2011-11-07 12:20:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:23 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:23 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:23 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:23 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:23 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:23 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:23 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:23 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:23 --> Total execution time: 0.0601
DEBUG - 2011-11-07 12:20:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:24 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:20:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:25 --> Total execution time: 0.0304
DEBUG - 2011-11-07 12:20:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:26 --> Total execution time: 0.1120
DEBUG - 2011-11-07 12:20:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:28 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:28 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:28 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:28 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Total execution time: 0.3687
DEBUG - 2011-11-07 12:20:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:29 --> Total execution time: 0.7053
DEBUG - 2011-11-07 12:20:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:30 --> Total execution time: 0.2507
DEBUG - 2011-11-07 12:20:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:31 --> Total execution time: 0.0527
DEBUG - 2011-11-07 12:20:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:33 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:33 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:33 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:33 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:33 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:33 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:33 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:33 --> Total execution time: 0.0510
DEBUG - 2011-11-07 12:20:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:34 --> Total execution time: 0.0461
DEBUG - 2011-11-07 12:20:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:35 --> Total execution time: 0.2764
DEBUG - 2011-11-07 12:20:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:36 --> Total execution time: 0.0750
DEBUG - 2011-11-07 12:20:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:38 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:38 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:38 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:38 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:38 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:38 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:38 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:20:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:38 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:39 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:20:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:40 --> Total execution time: 0.2187
DEBUG - 2011-11-07 12:20:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:41 --> Total execution time: 0.1109
DEBUG - 2011-11-07 12:20:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:43 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:43 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:43 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:43 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:43 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:43 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:43 --> Total execution time: 0.0411
DEBUG - 2011-11-07 12:20:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:43 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:43 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:44 --> Total execution time: 0.0291
DEBUG - 2011-11-07 12:20:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:45 --> Total execution time: 0.3477
DEBUG - 2011-11-07 12:20:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:46 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:20:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:51 --> Total execution time: 1.4139
DEBUG - 2011-11-07 12:20:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:52 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:53 --> Total execution time: 4.1183
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:53 --> Total execution time: 1.5292
DEBUG - 2011-11-07 12:20:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:53 --> Total execution time: 0.5088
DEBUG - 2011-11-07 12:20:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:53 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:53 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:53 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:53 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:53 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:53 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:53 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:53 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:20:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:54 --> Total execution time: 0.1303
DEBUG - 2011-11-07 12:20:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:55 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:20:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:55 --> Total execution time: 0.0687
DEBUG - 2011-11-07 12:20:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:56 --> Total execution time: 0.0682
DEBUG - 2011-11-07 12:20:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:58 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:58 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:58 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:58 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:58 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:58 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:58 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:58 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:58 --> Total execution time: 0.1071
DEBUG - 2011-11-07 12:20:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:20:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:20:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:20:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:20:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:20:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:20:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:20:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:20:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:20:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:20:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:20:59 --> Total execution time: 0.1316
DEBUG - 2011-11-07 12:21:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:00 --> Total execution time: 0.0775
DEBUG - 2011-11-07 12:21:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:01 --> Total execution time: 0.0670
DEBUG - 2011-11-07 12:21:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:03 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:03 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:03 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:03 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:03 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:03 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:03 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:03 --> Total execution time: 0.0689
DEBUG - 2011-11-07 12:21:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:05 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:21:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:05 --> Total execution time: 0.5444
DEBUG - 2011-11-07 12:21:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:05 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:21:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:05 --> Total execution time: 1.7944
DEBUG - 2011-11-07 12:21:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:07 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:07 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:07 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:07 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:07 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:07 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:07 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:07 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:07 --> Total execution time: 0.6805
DEBUG - 2011-11-07 12:21:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:08 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:08 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:08 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:08 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:08 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:08 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:08 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:08 --> Total execution time: 0.0313
DEBUG - 2011-11-07 12:21:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:09 --> Total execution time: 0.0641
DEBUG - 2011-11-07 12:21:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:10 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:21:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:11 --> Total execution time: 0.2453
DEBUG - 2011-11-07 12:21:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:14 --> Total execution time: 0.1423
DEBUG - 2011-11-07 12:21:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:16 --> Total execution time: 0.8088
DEBUG - 2011-11-07 12:21:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:17 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:17 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:17 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:17 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:17 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:17 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:17 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:17 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:17 --> Total execution time: 0.4890
DEBUG - 2011-11-07 12:21:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:19 --> Total execution time: 0.1479
DEBUG - 2011-11-07 12:21:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:20 --> Total execution time: 0.0295
DEBUG - 2011-11-07 12:21:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:21 --> Total execution time: 0.1389
DEBUG - 2011-11-07 12:21:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:24 --> Total execution time: 0.2481
DEBUG - 2011-11-07 12:21:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:24 --> Total execution time: 0.1281
DEBUG - 2011-11-07 12:21:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:25 --> Total execution time: 0.0445
DEBUG - 2011-11-07 12:21:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:27 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:27 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:27 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:27 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:27 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:27 --> Total execution time: 0.4253
DEBUG - 2011-11-07 12:21:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:29 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:21:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:29 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:21:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:30 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:21:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:30 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:21:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:31 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:21:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:34 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:21:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:34 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:21:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:35 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:21:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:36 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:21:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:39 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:21:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:39 --> Total execution time: 0.0351
DEBUG - 2011-11-07 12:21:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:40 --> Total execution time: 0.0602
DEBUG - 2011-11-07 12:21:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:41 --> Total execution time: 0.0538
DEBUG - 2011-11-07 12:21:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:44 --> Total execution time: 0.0349
DEBUG - 2011-11-07 12:21:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:44 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:21:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:45 --> Total execution time: 0.0359
DEBUG - 2011-11-07 12:21:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:46 --> Total execution time: 0.0339
DEBUG - 2011-11-07 12:21:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:48 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:48 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:49 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:21:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:49 --> Total execution time: 0.0365
DEBUG - 2011-11-07 12:21:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:50 --> Total execution time: 0.0303
DEBUG - 2011-11-07 12:21:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:51 --> Total execution time: 0.0730
DEBUG - 2011-11-07 12:21:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:21:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:54 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:21:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:21:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:54 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:21:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:55 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:21:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:56 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:21:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:59 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:21:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:21:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:21:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:21:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:21:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:21:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:21:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:21:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:21:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:21:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:21:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:21:59 --> Total execution time: 0.1187
DEBUG - 2011-11-07 12:22:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:00 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:22:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:01 --> Total execution time: 0.0295
DEBUG - 2011-11-07 12:22:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:04 --> Total execution time: 0.0303
DEBUG - 2011-11-07 12:22:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:04 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:22:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:05 --> Total execution time: 0.0379
DEBUG - 2011-11-07 12:22:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:06 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:22:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:09 --> Total execution time: 0.0563
DEBUG - 2011-11-07 12:22:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:09 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:22:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:10 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:22:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:11 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:22:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:14 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:22:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:14 --> Total execution time: 0.0394
DEBUG - 2011-11-07 12:22:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:15 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:22:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:16 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:22:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:19 --> Total execution time: 0.2383
DEBUG - 2011-11-07 12:22:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:19 --> Total execution time: 0.4668
DEBUG - 2011-11-07 12:22:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:20 --> Total execution time: 0.4718
DEBUG - 2011-11-07 12:22:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:21 --> Total execution time: 0.1662
DEBUG - 2011-11-07 12:22:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:24 --> Total execution time: 0.3219
DEBUG - 2011-11-07 12:22:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:24 --> Total execution time: 0.2460
DEBUG - 2011-11-07 12:22:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:25 --> Total execution time: 0.0356
DEBUG - 2011-11-07 12:22:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:27 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:27 --> Total execution time: 0.5154
DEBUG - 2011-11-07 12:22:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:29 --> Total execution time: 0.0304
DEBUG - 2011-11-07 12:22:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:29 --> Total execution time: 0.0386
DEBUG - 2011-11-07 12:22:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:30 --> Total execution time: 0.0473
DEBUG - 2011-11-07 12:22:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:31 --> Total execution time: 0.2675
DEBUG - 2011-11-07 12:22:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:34 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:22:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:34 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:22:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:35 --> Total execution time: 0.0656
DEBUG - 2011-11-07 12:22:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:36 --> Total execution time: 0.0320
DEBUG - 2011-11-07 12:22:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:38 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:39 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:22:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:39 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:22:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:40 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:22:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:40 --> Total execution time: 0.0312
DEBUG - 2011-11-07 12:22:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:41 --> Total execution time: 0.0367
DEBUG - 2011-11-07 12:22:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:43 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:44 --> Total execution time: 0.0529
DEBUG - 2011-11-07 12:22:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:44 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:22:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:45 --> Total execution time: 0.0668
DEBUG - 2011-11-07 12:22:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:46 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:22:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:49 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:22:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:49 --> Total execution time: 0.0316
DEBUG - 2011-11-07 12:22:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:50 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:22:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:51 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:22:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:51 --> Total execution time: 0.0364
DEBUG - 2011-11-07 12:22:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:54 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:22:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:54 --> Total execution time: 0.0329
DEBUG - 2011-11-07 12:22:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:55 --> Total execution time: 0.0325
DEBUG - 2011-11-07 12:22:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:56 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:22:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:59 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:22:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:22:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:22:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:22:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:22:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:22:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:22:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:22:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:22:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:22:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:22:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:22:59 --> Total execution time: 0.0361
DEBUG - 2011-11-07 12:23:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:00 --> Total execution time: 0.0355
DEBUG - 2011-11-07 12:23:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:01 --> Total execution time: 0.0401
DEBUG - 2011-11-07 12:23:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:04 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:23:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:04 --> Total execution time: 0.0327
DEBUG - 2011-11-07 12:23:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:04 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:23:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:04 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:23:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:05 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:23:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:06 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:23:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:08 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:09 --> Total execution time: 0.0368
DEBUG - 2011-11-07 12:23:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:09 --> Total execution time: 0.0386
DEBUG - 2011-11-07 12:23:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:10 --> Total execution time: 0.2278
DEBUG - 2011-11-07 12:23:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:11 --> Total execution time: 0.0883
DEBUG - 2011-11-07 12:23:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:14 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:23:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:14 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:23:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:14 --> Total execution time: 0.3654
DEBUG - 2011-11-07 12:23:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:14 --> Total execution time: 0.2299
DEBUG - 2011-11-07 12:23:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:15 --> Total execution time: 0.0313
DEBUG - 2011-11-07 12:23:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:16 --> Total execution time: 0.0405
DEBUG - 2011-11-07 12:23:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:19 --> Total execution time: 0.0323
DEBUG - 2011-11-07 12:23:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:19 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:23:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:20 --> Total execution time: 0.0503
DEBUG - 2011-11-07 12:23:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:21 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:23:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:23 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:23 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:24 --> Total execution time: 0.0412
DEBUG - 2011-11-07 12:23:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:24 --> Total execution time: 0.0385
DEBUG - 2011-11-07 12:23:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:25 --> Total execution time: 0.0486
DEBUG - 2011-11-07 12:23:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:26 --> Total execution time: 0.0333
DEBUG - 2011-11-07 12:23:28 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:28 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:28 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:29 --> Total execution time: 0.0322
DEBUG - 2011-11-07 12:23:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:29 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:23:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:30 --> Total execution time: 0.0337
DEBUG - 2011-11-07 12:23:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:31 --> Total execution time: 0.0313
DEBUG - 2011-11-07 12:23:33 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:33 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:33 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:34 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:23:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:34 --> Total execution time: 0.0396
DEBUG - 2011-11-07 12:23:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:35 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:23:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:36 --> Total execution time: 0.0308
DEBUG - 2011-11-07 12:23:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:39 --> Total execution time: 0.0508
DEBUG - 2011-11-07 12:23:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:39 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:23:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:40 --> Total execution time: 0.0455
DEBUG - 2011-11-07 12:23:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:41 --> Total execution time: 0.0567
DEBUG - 2011-11-07 12:23:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:44 --> Total execution time: 0.0445
DEBUG - 2011-11-07 12:23:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:44 --> Total execution time: 0.0579
DEBUG - 2011-11-07 12:23:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:45 --> Total execution time: 0.0350
DEBUG - 2011-11-07 12:23:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:46 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:23:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:49 --> Total execution time: 0.1050
DEBUG - 2011-11-07 12:23:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:49 --> Total execution time: 0.0494
DEBUG - 2011-11-07 12:23:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:50 --> Total execution time: 0.0345
DEBUG - 2011-11-07 12:23:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:51 --> Total execution time: 0.0317
DEBUG - 2011-11-07 12:23:53 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:53 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:53 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:54 --> Total execution time: 0.0363
DEBUG - 2011-11-07 12:23:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:54 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:23:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:55 --> Total execution time: 0.0319
DEBUG - 2011-11-07 12:23:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:56 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:23:58 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:58 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:58 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:59 --> Total execution time: 0.0357
DEBUG - 2011-11-07 12:23:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:23:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:23:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:23:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:23:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:23:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:23:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:23:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:23:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:23:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:23:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:23:59 --> Total execution time: 0.0303
DEBUG - 2011-11-07 12:24:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:00 --> Total execution time: 0.0360
DEBUG - 2011-11-07 12:24:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:01 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:24:03 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:03 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:03 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:04 --> Total execution time: 0.0340
DEBUG - 2011-11-07 12:24:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:04 --> Total execution time: 0.0318
DEBUG - 2011-11-07 12:24:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:05 --> Total execution time: 0.0306
DEBUG - 2011-11-07 12:24:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:06 --> Total execution time: 0.0389
DEBUG - 2011-11-07 12:24:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:09 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:24:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:09 --> Total execution time: 0.0338
DEBUG - 2011-11-07 12:24:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:10 --> Total execution time: 0.0627
DEBUG - 2011-11-07 12:24:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:11 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:24:13 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:13 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:14 --> Total execution time: 0.0348
DEBUG - 2011-11-07 12:24:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:14 --> Total execution time: 0.0343
DEBUG - 2011-11-07 12:24:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:15 --> Total execution time: 0.0322
DEBUG - 2011-11-07 12:24:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:16 --> Total execution time: 0.0411
DEBUG - 2011-11-07 12:24:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:19 --> Total execution time: 0.0450
DEBUG - 2011-11-07 12:24:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:19 --> Total execution time: 0.0411
DEBUG - 2011-11-07 12:24:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:20 --> Total execution time: 0.0594
DEBUG - 2011-11-07 12:24:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:21 --> Total execution time: 0.0332
DEBUG - 2011-11-07 12:24:23 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:23 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:24 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:24 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:24:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:24 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:24 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:24:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:25 --> Total execution time: 0.0675
DEBUG - 2011-11-07 12:24:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:26 --> Total execution time: 0.0346
DEBUG - 2011-11-07 12:24:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:29 --> Total execution time: 0.0344
DEBUG - 2011-11-07 12:24:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:29 --> Total execution time: 0.0303
DEBUG - 2011-11-07 12:24:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:30 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:30 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:24:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:31 --> Total execution time: 0.0334
DEBUG - 2011-11-07 12:24:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:34 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:34 --> Total execution time: 0.0417
DEBUG - 2011-11-07 12:24:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:34 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:34 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:24:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:35 --> Total execution time: 0.0630
DEBUG - 2011-11-07 12:24:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:36 --> Total execution time: 0.0504
DEBUG - 2011-11-07 12:24:38 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:38 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:39 --> Total execution time: 0.0367
DEBUG - 2011-11-07 12:24:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:39 --> Total execution time: 0.0304
DEBUG - 2011-11-07 12:24:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:40 --> Total execution time: 0.0377
DEBUG - 2011-11-07 12:24:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:41 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:24:43 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:44 --> Total execution time: 0.0380
DEBUG - 2011-11-07 12:24:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:44 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:24:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:45 --> Total execution time: 0.0366
DEBUG - 2011-11-07 12:24:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:46 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:24:48 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:49 --> Total execution time: 0.1176
DEBUG - 2011-11-07 12:24:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:49 --> Total execution time: 0.1382
DEBUG - 2011-11-07 12:24:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:50 --> Total execution time: 0.0369
DEBUG - 2011-11-07 12:24:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:51 --> Total execution time: 0.0662
DEBUG - 2011-11-07 12:24:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:54 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:24:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:54 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:24:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:54 --> Total execution time: 0.0506
DEBUG - 2011-11-07 12:24:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:55 --> Total execution time: 0.0501
DEBUG - 2011-11-07 12:24:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:56 --> Total execution time: 0.0567
DEBUG - 2011-11-07 12:24:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:59 --> Total execution time: 0.0387
DEBUG - 2011-11-07 12:24:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:24:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:24:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:24:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:24:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:24:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:24:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:24:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:24:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:24:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:24:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:24:59 --> Total execution time: 0.0889
DEBUG - 2011-11-07 12:25:00 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:00 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:00 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:00 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:00 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:00 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:00 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:00 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:00 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:00 --> Total execution time: 0.0715
DEBUG - 2011-11-07 12:25:01 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:01 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:01 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:01 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:01 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:01 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:01 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:01 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:01 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:01 --> Total execution time: 0.0555
DEBUG - 2011-11-07 12:25:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:04 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:25:04 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:04 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:04 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:04 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:04 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:04 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:04 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:04 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:04 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:04 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:25:05 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:05 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:05 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:05 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:05 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:05 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:05 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:05 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:05 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:05 --> Total execution time: 0.0700
DEBUG - 2011-11-07 12:25:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Security Class Initialized
DEBUG - 2011-11-07 12:25:06 --> XSS Filtering completed
DEBUG - 2011-11-07 12:25:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:06 --> Total execution time: 0.0408
DEBUG - 2011-11-07 12:25:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:06 --> Total execution time: 0.0495
DEBUG - 2011-11-07 12:25:06 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:06 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:06 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:06 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:06 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:06 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:06 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:06 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:06 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:06 --> Total execution time: 0.0628
DEBUG - 2011-11-07 12:25:08 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:08 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:09 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:25:09 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:09 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:09 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:09 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:09 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:09 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:09 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:09 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:09 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:09 --> Total execution time: 0.0301
DEBUG - 2011-11-07 12:25:10 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:10 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:10 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:10 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:10 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:10 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:10 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:10 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:10 --> Total execution time: 0.0358
DEBUG - 2011-11-07 12:25:11 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:11 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:11 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:11 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:11 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:11 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:11 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:11 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:11 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:11 --> Total execution time: 0.0305
DEBUG - 2011-11-07 12:25:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:14 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:25:14 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:14 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:14 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:14 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:14 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:14 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:14 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:14 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:14 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:14 --> Total execution time: 0.0373
DEBUG - 2011-11-07 12:25:15 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:15 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:15 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:15 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:15 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:15 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:15 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:15 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:15 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:15 --> Total execution time: 0.0321
DEBUG - 2011-11-07 12:25:16 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:16 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:16 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:16 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:16 --> Session garbage collection performed.
DEBUG - 2011-11-07 12:25:16 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:16 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:16 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:16 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:16 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:16 --> Total execution time: 0.0378
DEBUG - 2011-11-07 12:25:18 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:18 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:18 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:18 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:18 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:18 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:18 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-07 12:25:18 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-07 12:25:18 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-07 12:25:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-07 12:25:18 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:18 --> Total execution time: 0.0463
DEBUG - 2011-11-07 12:25:19 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:19 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:19 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:19 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:19 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:19 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:19 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:19 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:19 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:19 --> Total execution time: 0.1134
DEBUG - 2011-11-07 12:25:20 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:20 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:20 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:20 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:20 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:20 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:20 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:20 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:20 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:20 --> Total execution time: 0.0423
DEBUG - 2011-11-07 12:25:21 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:21 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:21 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:21 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:21 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:21 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:21 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:21 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:21 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:21 --> Total execution time: 0.0641
DEBUG - 2011-11-07 12:25:24 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:24 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:24 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:24 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:24 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:24 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:24 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:24 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:24 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:24 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:25:25 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:25 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:25 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:25 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:25 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:25 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:25 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:25 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:25 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:25 --> Total execution time: 0.0330
DEBUG - 2011-11-07 12:25:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:26 --> Total execution time: 0.0335
DEBUG - 2011-11-07 12:25:26 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:26 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:26 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:26 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:26 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:26 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:26 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:26 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:26 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:26 --> Total execution time: 0.0374
DEBUG - 2011-11-07 12:25:29 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:29 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:29 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:29 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:29 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:29 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:29 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:29 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:29 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:29 --> Total execution time: 0.0328
DEBUG - 2011-11-07 12:25:30 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:30 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:30 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:30 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:30 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:30 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:30 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:30 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:30 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:30 --> Total execution time: 0.0311
DEBUG - 2011-11-07 12:25:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:31 --> Total execution time: 0.0299
DEBUG - 2011-11-07 12:25:31 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:31 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:31 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:31 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:31 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:31 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:31 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:31 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:31 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:31 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:31 --> Total execution time: 0.0682
DEBUG - 2011-11-07 12:25:34 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:34 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:34 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:34 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:34 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:34 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:34 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:34 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:34 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:34 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:34 --> Total execution time: 0.1372
DEBUG - 2011-11-07 12:25:35 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:35 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:35 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:35 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:35 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:35 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:35 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:35 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:35 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:35 --> Total execution time: 0.0372
DEBUG - 2011-11-07 12:25:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:36 --> Total execution time: 0.0347
DEBUG - 2011-11-07 12:25:36 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:36 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:36 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:36 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:36 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:36 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:36 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:36 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:36 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:36 --> Total execution time: 0.0383
DEBUG - 2011-11-07 12:25:39 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:39 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:39 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:39 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:39 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:39 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:39 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:39 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:39 --> Total execution time: 0.0995
DEBUG - 2011-11-07 12:25:40 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:40 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:40 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:40 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:40 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:40 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:40 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:40 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:40 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:40 --> Total execution time: 0.0342
DEBUG - 2011-11-07 12:25:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:41 --> Total execution time: 0.0382
DEBUG - 2011-11-07 12:25:41 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:41 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:41 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:41 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:41 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:41 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:41 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:41 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:41 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:41 --> Total execution time: 0.0435
DEBUG - 2011-11-07 12:25:44 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:44 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:44 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:44 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:44 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:44 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:44 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:44 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:44 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:44 --> Total execution time: 0.0324
DEBUG - 2011-11-07 12:25:45 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:45 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:45 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:45 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:45 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:45 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:45 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:45 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:45 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:45 --> Total execution time: 0.0424
DEBUG - 2011-11-07 12:25:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:46 --> Total execution time: 0.0352
DEBUG - 2011-11-07 12:25:46 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:46 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:46 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:46 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:46 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:46 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:46 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:46 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:46 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:46 --> Total execution time: 0.1005
DEBUG - 2011-11-07 12:25:49 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:49 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:49 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:49 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:49 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:49 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:49 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:49 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:49 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:49 --> Total execution time: 0.0307
DEBUG - 2011-11-07 12:25:50 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:50 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:50 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:50 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:50 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:50 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:50 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:50 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:50 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:50 --> Total execution time: 0.0465
DEBUG - 2011-11-07 12:25:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:51 --> Total execution time: 0.0529
DEBUG - 2011-11-07 12:25:51 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:51 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:51 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:51 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:51 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:51 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:51 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:51 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:51 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:51 --> Total execution time: 0.0336
DEBUG - 2011-11-07 12:25:54 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:54 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:54 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:54 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:54 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:54 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:54 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:54 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:54 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:54 --> Total execution time: 0.0450
DEBUG - 2011-11-07 12:25:55 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:55 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:55 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:55 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:55 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:55 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:55 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:55 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:55 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:55 --> Total execution time: 0.0376
DEBUG - 2011-11-07 12:25:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:56 --> Total execution time: 0.0331
DEBUG - 2011-11-07 12:25:56 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:56 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:56 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:56 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:56 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:56 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:56 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:56 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:56 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:56 --> Total execution time: 0.0326
DEBUG - 2011-11-07 12:25:59 --> Config Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Hooks Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Utf8 Class Initialized
DEBUG - 2011-11-07 12:25:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-07 12:25:59 --> URI Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Router Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Output Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Input Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-07 12:25:59 --> Language Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Loader Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Helper loaded: url_helper
DEBUG - 2011-11-07 12:25:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-07 12:25:59 --> Database Driver Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Session Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Helper loaded: string_helper
DEBUG - 2011-11-07 12:25:59 --> Session routines successfully run
DEBUG - 2011-11-07 12:25:59 --> Encrypt Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Model Class Initialized
DEBUG - 2011-11-07 12:25:59 --> Controller Class Initialized
DEBUG - 2011-11-07 12:25:59 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-07 12:25:59 --> Final output sent to browser
DEBUG - 2011-11-07 12:25:59 --> Total execution time: 0.0328
<file_sep>/application/models/chat_model.php
<?php
class chat_model extends CI_Model {
private $vet_dados = array();
public function mostrar() {
if ($this->session->userdata('nome')) {
return $this->get_texto();
} else {
return $this->parser->parse('home_view', $this->vet_dados, TRUE);
}
}
public function rodape() {
if ($this->session->userdata('nome')) {
return $this->parser->parse("rodape_view", $this->vet_dados, TRUE);
}
}
public function get_user() {
if ($this->session->userdata('nome')) {
$sessao = $this->getSessao();
for ($i = 0; $i < count($sessao); $i++) {
$nome = '';
$nome = str_replace('a:1:{s:4:"nome";s:','',$sessao[$i]->user_data);
$nome = str_replace('";}','',$nome);
$vet2 = explode(':',$nome);
$vet[$i]['nome'] = str_replace('"','',$vet2[1]);
}
$this->vet_dados['users'] = $vet;
return $this->parser->parse('chat/chat_user_view', $this->vet_dados, TRUE);
}
}
public function get_texto() {
if ($this->session->userdata('nome')) {
$this->vet_dados['chat'] = $this->getMsg();
return $this->parser->parse('chat/chat_view', $this->vet_dados, TRUE);
} else {
$this->session->sess_destroy();
return $this->mostrar();
}
}
public function getMsg($id=null) {
$this->db->from('msg');
$this->db->order_by('id_msg', 'DESC');
if ($id != null) {
$this->db->where('id_msg', $id);
return $this->db->get()->row();
} else {
return $this->db->get()->result();
}
}
public function getSessao($id=null) {
$this->db->from('sessao');
$this->db->where("user_data != ''");
if ($id != null) {
$this->db->where('session_id', $id);
return $this->db->get()->row();
} else {
return $this->db->get()->result();
}
}
public function enviar() {
if ($this->session->userdata('nome')) {
if ($this->input->post('texto_msg')) {
$this->db->set('texto_msg', $this->input->post('texto_msg', TRUE));
}
if ($this->session->userdata('nome')) {
$this->db->set('nome_msg', $this->session->userdata('nome'));
}
$this->db->insert('msg');
return $this->db->insert_id() > 0 ? TRUE : FALSE;
} else {
return false;
}
}
}
/* End of file chat_model.php */
/* Location: ./system/application/models/chat_model.php */
<file_sep>/application/logs/log-2011-06-29.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-06-29 19:25:44 --> Config Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Hooks Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Utf8 Class Initialized
DEBUG - 2011-06-29 19:25:44 --> UTF-8 Support Enabled
DEBUG - 2011-06-29 19:25:44 --> URI Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Router Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Output Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Input Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-29 19:25:44 --> Language Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Loader Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Helper loaded: url_helper
DEBUG - 2011-06-29 19:25:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-29 19:25:44 --> Database Driver Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Helper loaded: form_helper
DEBUG - 2011-06-29 19:25:44 --> Form Validation Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Upload Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Image Lib Class Initialized
DEBUG - 2011-06-29 19:25:44 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:45 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:45 --> Controller Class Initialized
DEBUG - 2011-06-29 19:25:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-29 19:25:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-29 19:25:45 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-29 19:25:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-29 19:25:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-29 19:25:45 --> Final output sent to browser
DEBUG - 2011-06-29 19:25:45 --> Total execution time: 1.5527
DEBUG - 2011-06-29 19:25:51 --> Config Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Hooks Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Utf8 Class Initialized
DEBUG - 2011-06-29 19:25:51 --> UTF-8 Support Enabled
DEBUG - 2011-06-29 19:25:51 --> URI Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Router Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Output Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Input Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-29 19:25:51 --> Language Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Loader Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Helper loaded: url_helper
DEBUG - 2011-06-29 19:25:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-29 19:25:51 --> Database Driver Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Helper loaded: form_helper
DEBUG - 2011-06-29 19:25:51 --> Form Validation Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Upload Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Image Lib Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:51 --> Controller Class Initialized
DEBUG - 2011-06-29 19:25:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-29 19:25:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-29 19:25:51 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-29 19:25:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-29 19:25:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-29 19:25:51 --> Final output sent to browser
DEBUG - 2011-06-29 19:25:51 --> Total execution time: 0.1048
DEBUG - 2011-06-29 19:25:55 --> Config Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Hooks Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Utf8 Class Initialized
DEBUG - 2011-06-29 19:25:55 --> UTF-8 Support Enabled
DEBUG - 2011-06-29 19:25:55 --> URI Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Router Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Output Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Input Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-29 19:25:55 --> Language Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Loader Class Initialized
DEBUG - 2011-06-29 19:25:55 --> Helper loaded: url_helper
DEBUG - 2011-06-29 19:25:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-29 19:25:55 --> Database Driver Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Helper loaded: form_helper
DEBUG - 2011-06-29 19:25:56 --> Form Validation Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Upload Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Image Lib Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:56 --> Controller Class Initialized
DEBUG - 2011-06-29 19:25:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-29 19:25:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-29 19:25:56 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-29 19:25:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-29 19:25:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-29 19:25:56 --> Final output sent to browser
DEBUG - 2011-06-29 19:25:56 --> Total execution time: 0.0801
DEBUG - 2011-06-29 19:25:58 --> Config Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Hooks Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Utf8 Class Initialized
DEBUG - 2011-06-29 19:25:58 --> UTF-8 Support Enabled
DEBUG - 2011-06-29 19:25:58 --> URI Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Router Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Output Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Input Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-29 19:25:58 --> Language Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Loader Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Helper loaded: url_helper
DEBUG - 2011-06-29 19:25:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-29 19:25:58 --> Database Driver Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Helper loaded: form_helper
DEBUG - 2011-06-29 19:25:58 --> Form Validation Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Upload Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Image Lib Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:58 --> Controller Class Initialized
DEBUG - 2011-06-29 19:25:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-29 19:25:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-29 19:25:58 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-29 19:25:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-29 19:25:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-29 19:25:58 --> Final output sent to browser
DEBUG - 2011-06-29 19:25:58 --> Total execution time: 0.0505
DEBUG - 2011-06-29 19:25:59 --> Config Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Hooks Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Utf8 Class Initialized
DEBUG - 2011-06-29 19:25:59 --> UTF-8 Support Enabled
DEBUG - 2011-06-29 19:25:59 --> URI Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Router Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Output Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Input Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-29 19:25:59 --> Language Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Loader Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Helper loaded: url_helper
DEBUG - 2011-06-29 19:25:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-29 19:25:59 --> Database Driver Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Helper loaded: form_helper
DEBUG - 2011-06-29 19:25:59 --> Form Validation Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Upload Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Image Lib Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Model Class Initialized
DEBUG - 2011-06-29 19:25:59 --> Controller Class Initialized
DEBUG - 2011-06-29 19:25:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-29 19:25:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-29 19:25:59 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-29 19:25:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-29 19:25:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-29 19:25:59 --> Final output sent to browser
DEBUG - 2011-06-29 19:25:59 --> Total execution time: 0.0496
<file_sep>/application/logs/log-2011-06-11.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-06-11 15:50:07 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:07 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:07 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:07 --> No URI present. Default controller set.
DEBUG - 2011-06-11 15:50:07 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:07 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:07 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:07 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:07 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:07 --> File loaded: application/views/home_view.php
DEBUG - 2011-06-11 15:50:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:07 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:07 --> Total execution time: 0.4363
DEBUG - 2011-06-11 15:50:12 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:12 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:12 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:12 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:12 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:12 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:12 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:12 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-11 15:50:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:12 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:12 --> Total execution time: 0.1435
DEBUG - 2011-06-11 15:50:15 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:15 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:15 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:15 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:15 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:15 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:15 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:15 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-11 15:50:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:15 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:15 --> Total execution time: 0.0625
DEBUG - 2011-06-11 15:50:16 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:16 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:16 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:16 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:16 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:16 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:16 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:16 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-11 15:50:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:16 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:16 --> Total execution time: 0.5837
DEBUG - 2011-06-11 15:50:27 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:27 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:27 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:27 --> No URI present. Default controller set.
DEBUG - 2011-06-11 15:50:27 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:27 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:27 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:27 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:27 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:27 --> File loaded: application/views/home_view.php
DEBUG - 2011-06-11 15:50:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:27 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:27 --> Total execution time: 0.0475
DEBUG - 2011-06-11 15:50:35 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:35 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:35 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:35 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:35 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:35 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:35 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-11 15:50:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:35 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:35 --> Total execution time: 0.0502
DEBUG - 2011-06-11 15:50:38 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:38 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:38 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:38 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:38 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:38 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:38 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:38 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-11 15:50:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:38 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:38 --> Total execution time: 0.0492
DEBUG - 2011-06-11 15:50:57 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:57 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:57 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:57 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:57 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:57 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:57 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:57 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-11 15:50:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:57 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:57 --> Total execution time: 0.0449
DEBUG - 2011-06-11 15:50:58 --> Config Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:50:58 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:50:58 --> URI Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Router Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Output Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Input Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:50:58 --> Language Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Loader Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:50:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:50:58 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:50:58 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Upload Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Model Class Initialized
DEBUG - 2011-06-11 15:50:58 --> Controller Class Initialized
DEBUG - 2011-06-11 15:50:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:50:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:50:58 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-11 15:50:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:50:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:50:58 --> Final output sent to browser
DEBUG - 2011-06-11 15:50:58 --> Total execution time: 0.0457
DEBUG - 2011-06-11 15:51:32 --> Config Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:51:32 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:51:32 --> URI Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Router Class Initialized
DEBUG - 2011-06-11 15:51:32 --> No URI present. Default controller set.
DEBUG - 2011-06-11 15:51:32 --> Output Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Input Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:51:32 --> Language Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Loader Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:51:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:51:32 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:51:32 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Upload Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:32 --> Controller Class Initialized
DEBUG - 2011-06-11 15:51:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:51:32 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:51:32 --> File loaded: application/views/home_view.php
DEBUG - 2011-06-11 15:51:32 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:51:32 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:51:32 --> Final output sent to browser
DEBUG - 2011-06-11 15:51:32 --> Total execution time: 0.0461
DEBUG - 2011-06-11 15:51:34 --> Config Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:51:34 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:51:34 --> URI Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Router Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Output Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Input Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:51:34 --> Language Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Loader Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:51:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:51:34 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:51:34 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Upload Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:34 --> Controller Class Initialized
DEBUG - 2011-06-11 15:51:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:51:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:51:34 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-11 15:51:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:51:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:51:34 --> Final output sent to browser
DEBUG - 2011-06-11 15:51:34 --> Total execution time: 0.0494
DEBUG - 2011-06-11 15:51:35 --> Config Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Hooks Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Utf8 Class Initialized
DEBUG - 2011-06-11 15:51:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-11 15:51:35 --> URI Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Router Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Output Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Input Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-11 15:51:35 --> Language Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Loader Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Helper loaded: url_helper
DEBUG - 2011-06-11 15:51:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-11 15:51:35 --> Database Driver Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Helper loaded: form_helper
DEBUG - 2011-06-11 15:51:35 --> Form Validation Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Upload Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Image Lib Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Model Class Initialized
DEBUG - 2011-06-11 15:51:35 --> Controller Class Initialized
DEBUG - 2011-06-11 15:51:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-11 15:51:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-11 15:51:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-11 15:51:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-11 15:51:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-11 15:51:35 --> Final output sent to browser
DEBUG - 2011-06-11 15:51:35 --> Total execution time: 0.0477
<file_sep>/application/logs/log-2011-02-16.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-16 00:00:01 --> Config Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Hooks Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Utf8 Class Initialized
DEBUG - 2011-02-16 00:00:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 00:00:01 --> URI Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Router Class Initialized
DEBUG - 2011-02-16 00:00:01 --> No URI present. Default controller set.
DEBUG - 2011-02-16 00:00:01 --> Output Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Input Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 00:00:01 --> Language Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Loader Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Helper loaded: url_helper
DEBUG - 2011-02-16 00:00:01 --> Helper loaded: download_helper
DEBUG - 2011-02-16 00:00:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 00:00:01 --> Database Driver Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Helper loaded: form_helper
DEBUG - 2011-02-16 00:00:01 --> Form Validation Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Upload Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:01 --> Controller Class Initialized
DEBUG - 2011-02-16 00:00:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 00:00:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 00:00:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 00:00:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 00:00:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 00:00:01 --> Final output sent to browser
DEBUG - 2011-02-16 00:00:01 --> Total execution time: 0.0249
DEBUG - 2011-02-16 00:00:11 --> Config Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Hooks Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Utf8 Class Initialized
DEBUG - 2011-02-16 00:00:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 00:00:11 --> URI Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Router Class Initialized
DEBUG - 2011-02-16 00:00:11 --> No URI present. Default controller set.
DEBUG - 2011-02-16 00:00:11 --> Output Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Input Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 00:00:11 --> Language Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Loader Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Helper loaded: url_helper
DEBUG - 2011-02-16 00:00:11 --> Helper loaded: download_helper
DEBUG - 2011-02-16 00:00:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 00:00:11 --> Database Driver Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Helper loaded: form_helper
DEBUG - 2011-02-16 00:00:11 --> Form Validation Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Upload Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:11 --> Controller Class Initialized
DEBUG - 2011-02-16 00:00:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 00:00:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 00:00:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 00:00:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 00:00:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 00:00:11 --> Final output sent to browser
DEBUG - 2011-02-16 00:00:11 --> Total execution time: 0.0177
DEBUG - 2011-02-16 00:00:24 --> Config Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Hooks Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Utf8 Class Initialized
DEBUG - 2011-02-16 00:00:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 00:00:24 --> URI Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Router Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Output Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Input Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 00:00:24 --> Language Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Loader Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Helper loaded: url_helper
DEBUG - 2011-02-16 00:00:24 --> Helper loaded: download_helper
DEBUG - 2011-02-16 00:00:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 00:00:24 --> Database Driver Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Helper loaded: form_helper
DEBUG - 2011-02-16 00:00:24 --> Form Validation Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Upload Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Model Class Initialized
DEBUG - 2011-02-16 00:00:24 --> Controller Class Initialized
DEBUG - 2011-02-16 00:00:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 00:00:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 00:00:24 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 00:00:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 00:00:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 00:00:24 --> Final output sent to browser
DEBUG - 2011-02-16 00:00:24 --> Total execution time: 0.1091
DEBUG - 2011-02-16 11:51:14 --> Config Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Hooks Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Utf8 Class Initialized
DEBUG - 2011-02-16 11:51:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 11:51:14 --> URI Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Router Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Output Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Input Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 11:51:14 --> Language Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Loader Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Helper loaded: url_helper
DEBUG - 2011-02-16 11:51:14 --> Helper loaded: download_helper
DEBUG - 2011-02-16 11:51:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 11:51:14 --> Database Driver Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Helper loaded: form_helper
DEBUG - 2011-02-16 11:51:14 --> Form Validation Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Upload Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Model Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Model Class Initialized
DEBUG - 2011-02-16 11:51:14 --> Controller Class Initialized
DEBUG - 2011-02-16 11:51:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 11:51:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 11:51:14 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 11:51:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 11:51:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 11:51:14 --> Final output sent to browser
DEBUG - 2011-02-16 11:51:14 --> Total execution time: 0.0655
DEBUG - 2011-02-16 12:58:16 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:16 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:16 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:16 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:16 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:16 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:16 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:16 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:16 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:16 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:16 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:16 --> Total execution time: 0.0780
DEBUG - 2011-02-16 12:58:18 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:18 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:18 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:18 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:18 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:18 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:18 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:18 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:18 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:18 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:18 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:18 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:18 --> Total execution time: 0.0170
DEBUG - 2011-02-16 12:58:21 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:21 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:21 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:21 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:21 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:21 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:21 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:21 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:21 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:21 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:21 --> Total execution time: 0.0453
DEBUG - 2011-02-16 12:58:22 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:22 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:22 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:22 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:22 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:22 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:22 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:22 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:22 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:22 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:22 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:22 --> Total execution time: 0.0174
DEBUG - 2011-02-16 12:58:24 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:24 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:24 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:24 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:24 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:24 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:24 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:24 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:24 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:24 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:24 --> Total execution time: 0.0183
DEBUG - 2011-02-16 12:58:25 --> Config Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Hooks Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Utf8 Class Initialized
DEBUG - 2011-02-16 12:58:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 12:58:25 --> URI Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Router Class Initialized
DEBUG - 2011-02-16 12:58:25 --> No URI present. Default controller set.
DEBUG - 2011-02-16 12:58:25 --> Output Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Input Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 12:58:25 --> Language Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Loader Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Helper loaded: url_helper
DEBUG - 2011-02-16 12:58:25 --> Helper loaded: download_helper
DEBUG - 2011-02-16 12:58:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 12:58:25 --> Database Driver Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Helper loaded: form_helper
DEBUG - 2011-02-16 12:58:25 --> Form Validation Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Upload Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Model Class Initialized
DEBUG - 2011-02-16 12:58:25 --> Controller Class Initialized
DEBUG - 2011-02-16 12:58:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 12:58:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 12:58:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 12:58:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 12:58:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 12:58:25 --> Final output sent to browser
DEBUG - 2011-02-16 12:58:25 --> Total execution time: 0.0187
DEBUG - 2011-02-16 13:00:38 --> Config Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:00:38 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:00:38 --> URI Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Router Class Initialized
DEBUG - 2011-02-16 13:00:38 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:00:38 --> Output Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Input Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:00:38 --> Language Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Loader Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:00:38 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:00:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:00:38 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:00:38 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Upload Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:38 --> Controller Class Initialized
DEBUG - 2011-02-16 13:00:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:00:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:00:38 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:00:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:00:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:00:38 --> Final output sent to browser
DEBUG - 2011-02-16 13:00:38 --> Total execution time: 0.0243
DEBUG - 2011-02-16 13:00:40 --> Config Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:00:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:00:40 --> URI Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Router Class Initialized
DEBUG - 2011-02-16 13:00:40 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:00:40 --> Output Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Input Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:00:40 --> Language Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Loader Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:00:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:00:40 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:00:40 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Upload Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Controller Class Initialized
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:00:40 --> Final output sent to browser
DEBUG - 2011-02-16 13:00:40 --> Total execution time: 0.0245
DEBUG - 2011-02-16 13:00:40 --> Config Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:00:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:00:40 --> URI Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Router Class Initialized
DEBUG - 2011-02-16 13:00:40 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:00:40 --> Output Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Input Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:00:40 --> Language Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Loader Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:00:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:00:40 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:00:40 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Upload Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:40 --> Controller Class Initialized
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:00:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:00:40 --> Final output sent to browser
DEBUG - 2011-02-16 13:00:40 --> Total execution time: 0.0166
DEBUG - 2011-02-16 13:00:41 --> Config Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:00:41 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:00:41 --> URI Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Router Class Initialized
DEBUG - 2011-02-16 13:00:41 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:00:41 --> Output Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Input Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:00:41 --> Language Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Loader Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:00:41 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:00:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:00:41 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:00:41 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Upload Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:41 --> Controller Class Initialized
DEBUG - 2011-02-16 13:00:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:00:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:00:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:00:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:00:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:00:41 --> Final output sent to browser
DEBUG - 2011-02-16 13:00:41 --> Total execution time: 0.0150
DEBUG - 2011-02-16 13:00:42 --> Config Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:00:42 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:00:42 --> URI Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Router Class Initialized
DEBUG - 2011-02-16 13:00:42 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:00:42 --> Output Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Input Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:00:42 --> Language Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Loader Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:00:42 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:00:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:00:42 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:00:42 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Upload Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Model Class Initialized
DEBUG - 2011-02-16 13:00:42 --> Controller Class Initialized
DEBUG - 2011-02-16 13:00:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:00:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:00:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:00:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:00:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:00:42 --> Final output sent to browser
DEBUG - 2011-02-16 13:00:42 --> Total execution time: 0.0170
DEBUG - 2011-02-16 13:02:11 --> Config Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:02:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:02:11 --> URI Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Router Class Initialized
DEBUG - 2011-02-16 13:02:11 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:02:11 --> Output Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Input Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:02:11 --> Language Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Loader Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:02:11 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:02:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:02:11 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:02:11 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Upload Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:11 --> Controller Class Initialized
DEBUG - 2011-02-16 13:02:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:02:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:02:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:02:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:02:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:02:11 --> Final output sent to browser
DEBUG - 2011-02-16 13:02:11 --> Total execution time: 0.0230
DEBUG - 2011-02-16 13:02:12 --> Config Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:02:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:02:12 --> URI Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Router Class Initialized
DEBUG - 2011-02-16 13:02:12 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:02:12 --> Output Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Input Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:02:12 --> Language Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Loader Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:02:12 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:02:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:02:12 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:02:12 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Upload Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:12 --> Controller Class Initialized
DEBUG - 2011-02-16 13:02:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:02:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:02:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:02:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:02:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:02:12 --> Final output sent to browser
DEBUG - 2011-02-16 13:02:12 --> Total execution time: 0.0188
DEBUG - 2011-02-16 13:02:13 --> Config Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:02:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:02:13 --> URI Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Router Class Initialized
DEBUG - 2011-02-16 13:02:13 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:02:13 --> Output Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Input Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:02:13 --> Language Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Loader Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:02:13 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:02:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:02:13 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:02:13 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Upload Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Model Class Initialized
DEBUG - 2011-02-16 13:02:13 --> Controller Class Initialized
DEBUG - 2011-02-16 13:02:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:02:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:02:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:02:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:02:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:02:13 --> Final output sent to browser
DEBUG - 2011-02-16 13:02:13 --> Total execution time: 0.0176
DEBUG - 2011-02-16 13:09:17 --> Config Class Initialized
DEBUG - 2011-02-16 13:09:17 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:09:17 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:09:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:09:17 --> URI Class Initialized
DEBUG - 2011-02-16 13:09:17 --> Router Class Initialized
DEBUG - 2011-02-16 13:09:17 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:09:17 --> Output Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Input Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:09:18 --> Language Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Loader Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:09:18 --> Helper loaded: download_helper
DEBUG - 2011-02-16 13:09:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:09:18 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:09:18 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Upload Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Model Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Model Class Initialized
DEBUG - 2011-02-16 13:09:18 --> Controller Class Initialized
DEBUG - 2011-02-16 13:09:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:09:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:09:18 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:09:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:09:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:09:18 --> Final output sent to browser
DEBUG - 2011-02-16 13:09:18 --> Total execution time: 0.0192
DEBUG - 2011-02-16 13:13:25 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:25 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:25 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:13:25 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:25 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:25 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:25 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:25 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:13:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:25 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:25 --> Total execution time: 0.0291
DEBUG - 2011-02-16 13:13:26 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:26 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:26 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:26 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:26 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:26 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:26 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:13:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:26 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:26 --> Total execution time: 0.0232
DEBUG - 2011-02-16 13:13:27 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:27 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:27 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:27 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:27 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:27 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:27 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:13:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:27 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:27 --> Total execution time: 0.0400
DEBUG - 2011-02-16 13:13:29 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:29 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:29 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:29 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:29 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:29 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:29 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:29 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:29 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-16 13:13:29 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:29 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:29 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:29 --> Total execution time: 0.0189
DEBUG - 2011-02-16 13:13:30 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:30 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:30 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:30 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:30 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:30 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:30 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:13:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:30 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:30 --> Total execution time: 0.0169
DEBUG - 2011-02-16 13:13:31 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:31 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:31 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:31 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:31 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:31 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:31 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:13:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:31 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:31 --> Total execution time: 0.0165
DEBUG - 2011-02-16 13:13:36 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:36 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:36 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:36 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:36 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:36 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:36 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:36 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:13:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:36 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:36 --> Total execution time: 0.0163
DEBUG - 2011-02-16 13:13:37 --> Config Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:13:37 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:13:37 --> URI Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Router Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Output Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Input Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:13:37 --> Language Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Loader Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:13:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:13:37 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:13:37 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Upload Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Model Class Initialized
DEBUG - 2011-02-16 13:13:37 --> Controller Class Initialized
DEBUG - 2011-02-16 13:13:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:13:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:13:37 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:13:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:13:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:13:37 --> Final output sent to browser
DEBUG - 2011-02-16 13:13:37 --> Total execution time: 0.0166
DEBUG - 2011-02-16 13:15:51 --> Config Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:15:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:15:51 --> URI Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Router Class Initialized
DEBUG - 2011-02-16 13:15:51 --> No URI present. Default controller set.
DEBUG - 2011-02-16 13:15:51 --> Output Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Input Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:15:51 --> Language Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Loader Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:15:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:15:51 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:15:51 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Upload Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:51 --> Controller Class Initialized
DEBUG - 2011-02-16 13:15:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:15:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:15:51 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 13:15:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:15:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:15:51 --> Final output sent to browser
DEBUG - 2011-02-16 13:15:51 --> Total execution time: 0.0202
DEBUG - 2011-02-16 13:15:53 --> Config Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:15:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:15:53 --> URI Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Router Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Output Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Input Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:15:53 --> Language Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Loader Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:15:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:15:53 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:15:53 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Upload Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Controller Class Initialized
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:15:53 --> Final output sent to browser
DEBUG - 2011-02-16 13:15:53 --> Total execution time: 0.0188
DEBUG - 2011-02-16 13:15:53 --> Config Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:15:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:15:53 --> URI Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Router Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Output Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Input Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:15:53 --> Language Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Loader Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:15:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:15:53 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:15:53 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Upload Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:53 --> Controller Class Initialized
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:15:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:15:53 --> Final output sent to browser
DEBUG - 2011-02-16 13:15:53 --> Total execution time: 0.0169
DEBUG - 2011-02-16 13:15:55 --> Config Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:15:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:15:55 --> URI Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Router Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Output Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Input Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:15:55 --> Language Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Loader Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:15:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:15:55 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:15:55 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Upload Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Model Class Initialized
DEBUG - 2011-02-16 13:15:55 --> Controller Class Initialized
DEBUG - 2011-02-16 13:15:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:15:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:15:55 --> File loaded: application/views/noticia/noticia_cad_view.php
ERROR - 2011-02-16 13:15:55 --> Severity: Warning --> Invalid argument supplied for foreach() /Applications/MAMP/htdocs/ci2/system/libraries/Parser.php 170
DEBUG - 2011-02-16 13:15:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:15:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:15:55 --> Final output sent to browser
DEBUG - 2011-02-16 13:15:55 --> Total execution time: 0.0549
DEBUG - 2011-02-16 13:16:43 --> Config Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:16:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:16:43 --> URI Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Router Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Output Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Input Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:16:43 --> Language Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Loader Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:16:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:16:43 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:16:43 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Upload Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:43 --> Controller Class Initialized
DEBUG - 2011-02-16 13:16:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:16:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:16:43 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:16:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:16:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:16:43 --> Final output sent to browser
DEBUG - 2011-02-16 13:16:43 --> Total execution time: 0.0249
DEBUG - 2011-02-16 13:16:46 --> Config Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:16:46 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:16:46 --> URI Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Router Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Output Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Input Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:16:46 --> Language Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Loader Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:16:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:16:46 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:16:46 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Upload Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:46 --> Controller Class Initialized
DEBUG - 2011-02-16 13:16:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:16:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:16:46 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:16:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:16:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:16:46 --> Final output sent to browser
DEBUG - 2011-02-16 13:16:46 --> Total execution time: 0.0188
DEBUG - 2011-02-16 13:16:48 --> Config Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:16:48 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:16:48 --> URI Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Router Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Output Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Input Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:16:48 --> Language Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Loader Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:16:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:16:48 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:16:48 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Upload Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:48 --> Controller Class Initialized
DEBUG - 2011-02-16 13:16:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:16:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:16:48 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:16:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:16:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:16:48 --> Final output sent to browser
DEBUG - 2011-02-16 13:16:48 --> Total execution time: 0.0164
DEBUG - 2011-02-16 13:16:51 --> Config Class Initialized
DEBUG - 2011-02-16 13:16:51 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:16:51 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:16:51 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:16:51 --> URI Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Router Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Output Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Input Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:16:52 --> Language Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Loader Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:16:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:16:52 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:16:52 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Upload Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:52 --> Controller Class Initialized
DEBUG - 2011-02-16 13:16:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:16:52 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:16:52 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:16:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:16:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:16:52 --> Final output sent to browser
DEBUG - 2011-02-16 13:16:52 --> Total execution time: 0.0153
DEBUG - 2011-02-16 13:16:53 --> Config Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:16:53 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:16:53 --> URI Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Router Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Output Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Input Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:16:53 --> Language Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Loader Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:16:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:16:53 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:16:53 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Upload Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Model Class Initialized
DEBUG - 2011-02-16 13:16:53 --> Controller Class Initialized
DEBUG - 2011-02-16 13:16:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:16:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:16:53 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:16:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:16:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:16:53 --> Final output sent to browser
DEBUG - 2011-02-16 13:16:53 --> Total execution time: 0.0182
DEBUG - 2011-02-16 13:25:43 --> Config Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:25:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:25:43 --> URI Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Router Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Output Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Input Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:25:43 --> Language Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Loader Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:25:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:25:43 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:25:43 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Upload Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Model Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Model Class Initialized
DEBUG - 2011-02-16 13:25:43 --> Controller Class Initialized
DEBUG - 2011-02-16 13:25:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:25:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:25:43 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:25:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:25:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:25:43 --> Final output sent to browser
DEBUG - 2011-02-16 13:25:43 --> Total execution time: 0.0283
DEBUG - 2011-02-16 13:25:44 --> Config Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:25:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:25:44 --> URI Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Router Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Output Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Input Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:25:44 --> Language Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Loader Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:25:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:25:44 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:25:44 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Upload Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Model Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Model Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Controller Class Initialized
DEBUG - 2011-02-16 13:25:44 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:25:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:25:44 --> Final output sent to browser
DEBUG - 2011-02-16 13:25:44 --> Total execution time: 0.0428
DEBUG - 2011-02-16 13:26:03 --> Config Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:26:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:26:03 --> URI Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Router Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Output Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Input Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:26:03 --> Language Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Loader Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:26:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:26:03 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:26:03 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Upload Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Model Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Model Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Controller Class Initialized
DEBUG - 2011-02-16 13:26:03 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:26:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:26:03 --> Final output sent to browser
DEBUG - 2011-02-16 13:26:03 --> Total execution time: 0.0295
DEBUG - 2011-02-16 13:26:13 --> Config Class Initialized
DEBUG - 2011-02-16 13:26:13 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:26:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:26:14 --> URI Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Router Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Output Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Input Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:26:14 --> Language Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Loader Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:26:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:26:14 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:26:14 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Upload Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Model Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Model Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Controller Class Initialized
DEBUG - 2011-02-16 13:26:14 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:26:14 --> Security Class Initialized
DEBUG - 2011-02-16 13:26:14 --> XSS Filtering completed
DEBUG - 2011-02-16 13:26:14 --> XSS Filtering completed
DEBUG - 2011-02-16 13:26:14 --> XSS Filtering completed
DEBUG - 2011-02-16 13:28:40 --> Config Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:28:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:28:40 --> URI Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Router Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Output Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Input Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:28:40 --> Language Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Loader Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:28:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:28:40 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:28:40 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Upload Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Model Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Controller Class Initialized
DEBUG - 2011-02-16 13:28:40 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:28:40 --> Security Class Initialized
DEBUG - 2011-02-16 13:28:40 --> XSS Filtering completed
DEBUG - 2011-02-16 13:28:40 --> XSS Filtering completed
DEBUG - 2011-02-16 13:28:40 --> XSS Filtering completed
ERROR - 2011-02-16 13:28:40 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/url_helper.php 543
DEBUG - 2011-02-16 13:29:25 --> Config Class Initialized
DEBUG - 2011-02-16 13:29:25 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:29:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:29:26 --> URI Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Router Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Output Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Input Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:29:26 --> Language Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Loader Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:29:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:29:26 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:29:26 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Upload Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Model Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Model Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Controller Class Initialized
DEBUG - 2011-02-16 13:29:26 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:29:26 --> Security Class Initialized
DEBUG - 2011-02-16 13:29:26 --> XSS Filtering completed
DEBUG - 2011-02-16 13:29:26 --> XSS Filtering completed
DEBUG - 2011-02-16 13:29:26 --> XSS Filtering completed
ERROR - 2011-02-16 13:29:26 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/url_helper.php 543
DEBUG - 2011-02-16 13:29:30 --> Config Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:29:30 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:29:30 --> URI Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Router Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Output Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Input Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:29:30 --> Language Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Loader Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:29:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:29:30 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:29:30 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Upload Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Model Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Model Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Controller Class Initialized
DEBUG - 2011-02-16 13:29:30 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:29:30 --> Security Class Initialized
DEBUG - 2011-02-16 13:29:30 --> XSS Filtering completed
DEBUG - 2011-02-16 13:29:30 --> XSS Filtering completed
DEBUG - 2011-02-16 13:29:30 --> XSS Filtering completed
ERROR - 2011-02-16 13:29:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /Applications/MAMP/htdocs/ci2/application/models/noticia_model.php:1) /Applications/MAMP/htdocs/ci2/system/helpers/url_helper.php 543
DEBUG - 2011-02-16 13:30:02 --> Config Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:30:02 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:30:02 --> URI Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Router Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Output Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Input Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:30:02 --> Language Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Loader Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:30:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:30:02 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:30:02 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Upload Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Model Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Model Class Initialized
DEBUG - 2011-02-16 13:30:02 --> Controller Class Initialized
DEBUG - 2011-02-16 13:30:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:30:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:30:02 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-16 13:30:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:30:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:30:02 --> Final output sent to browser
DEBUG - 2011-02-16 13:30:02 --> Total execution time: 0.0158
DEBUG - 2011-02-16 13:30:05 --> Config Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:30:05 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:30:05 --> URI Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Router Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Output Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Input Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:30:05 --> Language Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Loader Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:30:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:30:05 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:30:05 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Upload Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Model Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Model Class Initialized
DEBUG - 2011-02-16 13:30:05 --> Controller Class Initialized
DEBUG - 2011-02-16 13:30:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 13:30:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 13:30:05 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-16 13:30:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 13:30:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 13:30:05 --> Final output sent to browser
DEBUG - 2011-02-16 13:30:05 --> Total execution time: 0.0322
DEBUG - 2011-02-16 13:35:06 --> Config Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:35:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:35:06 --> URI Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Router Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Output Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Input Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:35:06 --> Language Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Loader Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Helper loaded: url_helper
DEBUG - 2011-02-16 13:35:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 13:35:06 --> Database Driver Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Helper loaded: form_helper
DEBUG - 2011-02-16 13:35:06 --> Form Validation Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Upload Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Model Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Model Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Controller Class Initialized
DEBUG - 2011-02-16 13:35:06 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-16 13:35:06 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-02-16 13:35:06 --> The filetype you are attempting to upload is not allowed.
DEBUG - 2011-02-16 13:47:40 --> Config Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:47:40 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:47:40 --> URI Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Router Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Output Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Input Class Initialized
DEBUG - 2011-02-16 13:47:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:47:40 --> Language Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Config Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Hooks Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Utf8 Class Initialized
DEBUG - 2011-02-16 13:47:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 13:47:44 --> URI Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Router Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Output Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Input Class Initialized
DEBUG - 2011-02-16 13:47:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 13:47:44 --> Language Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Config Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:19:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:19:24 --> URI Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Router Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Output Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Input Class Initialized
DEBUG - 2011-02-16 14:19:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:19:24 --> Language Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Config Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:20:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:20:00 --> URI Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Router Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Output Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Input Class Initialized
DEBUG - 2011-02-16 14:20:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:20:00 --> Language Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Config Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:21:12 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:21:12 --> URI Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Router Class Initialized
DEBUG - 2011-02-16 14:21:12 --> No URI present. Default controller set.
DEBUG - 2011-02-16 14:21:12 --> Output Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Input Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:21:12 --> Language Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Loader Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Helper loaded: url_helper
DEBUG - 2011-02-16 14:21:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-16 14:21:12 --> Database Driver Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Helper loaded: form_helper
DEBUG - 2011-02-16 14:21:12 --> Form Validation Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Upload Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Model Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Model Class Initialized
DEBUG - 2011-02-16 14:21:12 --> Controller Class Initialized
DEBUG - 2011-02-16 14:21:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-16 14:21:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-16 14:21:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-16 14:21:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-16 14:21:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-16 14:21:12 --> Final output sent to browser
DEBUG - 2011-02-16 14:21:12 --> Total execution time: 0.0216
DEBUG - 2011-02-16 14:21:13 --> Config Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:21:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:21:13 --> URI Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Router Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Output Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Input Class Initialized
DEBUG - 2011-02-16 14:21:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:21:13 --> Language Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Config Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:22:47 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:22:47 --> URI Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Router Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Output Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Input Class Initialized
DEBUG - 2011-02-16 14:22:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:22:47 --> Language Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Config Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:25:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:25:06 --> URI Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Router Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Output Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Input Class Initialized
DEBUG - 2011-02-16 14:25:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:25:06 --> Language Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Config Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:25:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:25:19 --> URI Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Router Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Output Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Input Class Initialized
DEBUG - 2011-02-16 14:25:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:25:19 --> Language Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Config Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:25:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:25:20 --> URI Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Router Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Output Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Input Class Initialized
DEBUG - 2011-02-16 14:25:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:25:20 --> Language Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Config Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:25:46 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:25:46 --> URI Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Router Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Output Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Input Class Initialized
DEBUG - 2011-02-16 14:25:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:25:46 --> Language Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Config Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Hooks Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Utf8 Class Initialized
DEBUG - 2011-02-16 14:27:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-16 14:27:35 --> URI Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Router Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Output Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Input Class Initialized
DEBUG - 2011-02-16 14:27:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-16 14:27:35 --> Language Class Initialized
<file_sep>/application/views/home_view.php
<form action="<?=base_url()?>index.php/chat/login/" method="post">
<b>Nome: </b>
<input type="text" name="login_usuario" id="login_usuario" class="input_login" />
<input type="submit" value="Enviar" />
</form>
<file_sep>/application/logs/log-2011-11-05.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-11-05 18:45:15 --> Config Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Hooks Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Utf8 Class Initialized
DEBUG - 2011-11-05 18:45:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 18:45:15 --> URI Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Router Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Output Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Input Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 18:45:15 --> Language Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Loader Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Helper loaded: url_helper
DEBUG - 2011-11-05 18:45:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 18:45:15 --> Database Driver Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Session Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Helper loaded: string_helper
DEBUG - 2011-11-05 18:45:15 --> Session garbage collection performed.
DEBUG - 2011-11-05 18:45:15 --> Session routines successfully run
DEBUG - 2011-11-05 18:45:15 --> Encrypt Class Initialized
DEBUG - 2011-11-05 18:45:15 --> Model Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Config Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Hooks Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Utf8 Class Initialized
DEBUG - 2011-11-05 18:47:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 18:47:26 --> URI Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Router Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Output Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Input Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 18:47:26 --> Language Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Loader Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Helper loaded: url_helper
DEBUG - 2011-11-05 18:47:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 18:47:26 --> Database Driver Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Session Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Helper loaded: string_helper
DEBUG - 2011-11-05 18:47:26 --> Session routines successfully run
DEBUG - 2011-11-05 18:47:26 --> Encrypt Class Initialized
DEBUG - 2011-11-05 18:47:26 --> Model Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Config Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Hooks Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Utf8 Class Initialized
DEBUG - 2011-11-05 18:51:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 18:51:11 --> URI Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Router Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Output Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Input Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 18:51:11 --> Language Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Loader Class Initialized
DEBUG - 2011-11-05 18:51:11 --> Helper loaded: url_helper
DEBUG - 2011-11-05 18:51:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 18:51:12 --> Database Driver Class Initialized
DEBUG - 2011-11-05 18:51:12 --> Session Class Initialized
DEBUG - 2011-11-05 18:51:12 --> Helper loaded: string_helper
DEBUG - 2011-11-05 18:51:12 --> Session routines successfully run
DEBUG - 2011-11-05 18:51:12 --> Encrypt Class Initialized
DEBUG - 2011-11-05 18:51:12 --> Model Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Config Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Hooks Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Utf8 Class Initialized
DEBUG - 2011-11-05 18:51:29 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 18:51:29 --> URI Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Router Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Output Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Input Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 18:51:29 --> Language Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Loader Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Helper loaded: url_helper
DEBUG - 2011-11-05 18:51:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 18:51:29 --> Database Driver Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Session Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Helper loaded: string_helper
DEBUG - 2011-11-05 18:51:29 --> Session routines successfully run
DEBUG - 2011-11-05 18:51:29 --> Encrypt Class Initialized
DEBUG - 2011-11-05 18:51:29 --> Model Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Config Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Hooks Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Utf8 Class Initialized
DEBUG - 2011-11-05 19:12:26 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 19:12:26 --> URI Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Router Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Output Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Input Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 19:12:26 --> Language Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Loader Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Helper loaded: url_helper
DEBUG - 2011-11-05 19:12:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 19:12:26 --> Database Driver Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Session Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Helper loaded: string_helper
DEBUG - 2011-11-05 19:12:26 --> Session routines successfully run
DEBUG - 2011-11-05 19:12:26 --> Encrypt Class Initialized
DEBUG - 2011-11-05 19:12:26 --> Model Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Config Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:23:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:23:57 --> URI Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Router Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Output Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Input Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:23:57 --> Language Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Loader Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:23:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:23:57 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Session Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:23:57 --> Session routines successfully run
DEBUG - 2011-11-05 20:23:57 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:23:57 --> Model Class Initialized
DEBUG - 2011-11-05 20:24:22 --> Config Class Initialized
DEBUG - 2011-11-05 20:24:22 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:24:22 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:24:22 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:24:22 --> URI Class Initialized
DEBUG - 2011-11-05 20:24:22 --> Router Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Output Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Input Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:24:23 --> Language Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Loader Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:24:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:24:23 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Session Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:24:23 --> Session routines successfully run
DEBUG - 2011-11-05 20:24:23 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:24:23 --> Model Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Config Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:24:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:24:37 --> URI Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Router Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Output Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Input Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:24:37 --> Language Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Loader Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:24:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:24:37 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Session Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:24:37 --> Session routines successfully run
DEBUG - 2011-11-05 20:24:37 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:24:37 --> Model Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Config Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:25:32 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:25:32 --> URI Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Router Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Output Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Input Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:25:32 --> Language Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Loader Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:25:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:25:32 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Session Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:25:32 --> Session routines successfully run
DEBUG - 2011-11-05 20:25:32 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:25:32 --> Model Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Config Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:26:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:26:27 --> URI Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Router Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Output Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Input Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:26:27 --> Language Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Loader Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:26:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:26:27 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Session Class Initialized
DEBUG - 2011-11-05 20:26:27 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:26:27 --> Session routines successfully run
DEBUG - 2011-11-05 20:26:28 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:26:28 --> Model Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Config Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:27:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:27:15 --> URI Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Router Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Output Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Input Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:27:15 --> Language Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Loader Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:27:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:27:15 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Session Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:27:15 --> Session routines successfully run
DEBUG - 2011-11-05 20:27:15 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:27:15 --> Model Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Config Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:27:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:27:49 --> URI Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Router Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Output Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Input Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:27:49 --> Language Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Loader Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:27:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:27:49 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Session Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:27:49 --> Session routines successfully run
DEBUG - 2011-11-05 20:27:49 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:27:49 --> Model Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Config Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:28:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:28:10 --> URI Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Router Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Output Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Input Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:28:10 --> Language Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Loader Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:28:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:28:10 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Session Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:28:10 --> Session routines successfully run
DEBUG - 2011-11-05 20:28:10 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Controller Class Initialized
DEBUG - 2011-11-05 20:28:10 --> Final output sent to browser
DEBUG - 2011-11-05 20:28:10 --> Total execution time: 0.3262
DEBUG - 2011-11-05 20:28:35 --> Config Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:28:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:28:35 --> URI Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Router Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Output Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Input Class Initialized
DEBUG - 2011-11-05 20:28:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:28:35 --> Language Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Config Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:29:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:29:06 --> URI Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Router Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Output Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Input Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:29:06 --> Language Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Loader Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:29:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:29:06 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Session Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:29:06 --> Session routines successfully run
DEBUG - 2011-11-05 20:29:06 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:29:06 --> Controller Class Initialized
DEBUG - 2011-11-05 20:29:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 20:29:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 20:29:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 20:29:06 --> Final output sent to browser
DEBUG - 2011-11-05 20:29:06 --> Total execution time: 0.2853
DEBUG - 2011-11-05 20:29:14 --> Config Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:29:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:29:14 --> URI Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Router Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Output Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Input Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:29:14 --> Language Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Loader Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:29:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:29:14 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Session Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:29:14 --> Session routines successfully run
DEBUG - 2011-11-05 20:29:14 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:29:14 --> Controller Class Initialized
DEBUG - 2011-11-05 20:29:14 --> File loaded: application/views/topo_view.php
ERROR - 2011-11-05 20:29:14 --> Severity: Notice --> Undefined property: chat::$chat_model /Applications/MAMP/htdocs/chat/application/controllers/chat.php 25
DEBUG - 2011-11-05 20:29:24 --> Config Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:29:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:29:24 --> URI Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Router Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Output Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Input Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:29:24 --> Language Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Loader Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:29:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:29:24 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Session Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:29:24 --> Session routines successfully run
DEBUG - 2011-11-05 20:29:24 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:29:24 --> Model Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Config Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:29:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:29:49 --> URI Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Router Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Output Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Input Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:29:49 --> Language Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Loader Class Initialized
DEBUG - 2011-11-05 20:29:49 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:29:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:29:50 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:29:50 --> Session Class Initialized
DEBUG - 2011-11-05 20:29:50 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:29:50 --> Session routines successfully run
DEBUG - 2011-11-05 20:29:50 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:29:50 --> Model Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Config Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:30:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:30:55 --> URI Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Router Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Output Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Input Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:30:55 --> Language Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Loader Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:30:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:30:55 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Session Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:30:55 --> Session routines successfully run
DEBUG - 2011-11-05 20:30:55 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:30:55 --> Model Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Config Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:31:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:31:49 --> URI Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Router Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Output Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Input Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:31:49 --> Language Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Loader Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:31:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:31:49 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Session Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:31:49 --> Session routines successfully run
DEBUG - 2011-11-05 20:31:49 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:31:49 --> Model Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Config Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:32:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:32:04 --> URI Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Router Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Output Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Input Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:32:04 --> Language Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Loader Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:32:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:32:04 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Session Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:32:04 --> Session routines successfully run
DEBUG - 2011-11-05 20:32:04 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:32:04 --> Model Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Config Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:36:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:36:15 --> URI Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Router Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Output Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Input Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:36:15 --> Language Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Loader Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:36:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:36:15 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Session Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:36:15 --> Session routines successfully run
DEBUG - 2011-11-05 20:36:15 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:36:15 --> Model Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Config Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:54:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:54:05 --> URI Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Router Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Output Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Input Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:54:05 --> Language Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Loader Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:54:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:54:05 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Session Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:54:05 --> Session routines successfully run
DEBUG - 2011-11-05 20:54:05 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:54:05 --> Model Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Config Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:54:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:54:18 --> URI Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Router Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Output Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Input Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:54:18 --> Language Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Loader Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:54:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:54:18 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Session Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:54:18 --> Session routines successfully run
DEBUG - 2011-11-05 20:54:18 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:54:18 --> Model Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Config Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:54:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:54:37 --> URI Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Router Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Output Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Input Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:54:37 --> Language Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Loader Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:54:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:54:37 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Session Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:54:37 --> Session routines successfully run
DEBUG - 2011-11-05 20:54:37 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:54:37 --> Model Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Config Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:54:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:54:40 --> URI Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Router Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Output Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Input Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:54:40 --> Language Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Loader Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:54:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:54:40 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Session Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:54:40 --> Session routines successfully run
DEBUG - 2011-11-05 20:54:40 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:54:40 --> Model Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Config Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:55:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:55:49 --> URI Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Router Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Output Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Input Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:55:49 --> Language Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Loader Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:55:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:55:49 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Session Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:55:49 --> Session routines successfully run
DEBUG - 2011-11-05 20:55:49 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:55:49 --> Model Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Config Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:57:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:57:11 --> URI Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Router Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Output Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Input Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:57:11 --> Language Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Loader Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:57:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:57:11 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Session Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:57:11 --> Session routines successfully run
DEBUG - 2011-11-05 20:57:11 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Model Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Model Class Initialized
DEBUG - 2011-11-05 20:57:11 --> Controller Class Initialized
DEBUG - 2011-11-05 20:57:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 20:57:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 20:57:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 20:57:11 --> Final output sent to browser
DEBUG - 2011-11-05 20:57:11 --> Total execution time: 0.0358
DEBUG - 2011-11-05 20:57:33 --> Config Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:57:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:57:33 --> URI Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Router Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Output Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Input Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:57:33 --> Language Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Loader Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:57:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:57:33 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Session Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:57:33 --> Session routines successfully run
DEBUG - 2011-11-05 20:57:33 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Model Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Model Class Initialized
DEBUG - 2011-11-05 20:57:33 --> Controller Class Initialized
DEBUG - 2011-11-05 20:57:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 20:57:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 20:57:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 20:57:33 --> Final output sent to browser
DEBUG - 2011-11-05 20:57:33 --> Total execution time: 0.0346
DEBUG - 2011-11-05 20:57:48 --> Config Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:57:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:57:48 --> URI Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Router Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Output Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Input Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:57:48 --> Language Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Loader Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:57:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:57:48 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Session Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:57:48 --> Session routines successfully run
DEBUG - 2011-11-05 20:57:48 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:57:48 --> Model Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Config Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Hooks Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Utf8 Class Initialized
DEBUG - 2011-11-05 20:59:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 20:59:09 --> URI Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Router Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Output Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Input Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 20:59:09 --> Language Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Loader Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Helper loaded: url_helper
DEBUG - 2011-11-05 20:59:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 20:59:09 --> Database Driver Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Session Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Helper loaded: string_helper
DEBUG - 2011-11-05 20:59:09 --> Session routines successfully run
DEBUG - 2011-11-05 20:59:09 --> Encrypt Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Model Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Model Class Initialized
DEBUG - 2011-11-05 20:59:09 --> Controller Class Initialized
DEBUG - 2011-11-05 20:59:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:00:28 --> Config Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:00:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:00:28 --> URI Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Router Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Output Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Input Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:00:28 --> Language Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Loader Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:00:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:00:28 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Session Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:00:28 --> Session routines successfully run
DEBUG - 2011-11-05 21:00:28 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Model Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Model Class Initialized
DEBUG - 2011-11-05 21:00:28 --> Controller Class Initialized
DEBUG - 2011-11-05 21:00:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:00:45 --> Config Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:00:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:00:45 --> URI Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Router Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Output Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Input Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:00:45 --> Language Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Loader Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:00:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:00:45 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Session Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:00:45 --> Session routines successfully run
DEBUG - 2011-11-05 21:00:45 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Model Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Model Class Initialized
DEBUG - 2011-11-05 21:00:45 --> Controller Class Initialized
DEBUG - 2011-11-05 21:00:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:01:17 --> Config Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:01:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:01:17 --> URI Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Router Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Output Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Input Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:01:17 --> Language Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Loader Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:01:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:01:17 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Session Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:01:17 --> Session routines successfully run
DEBUG - 2011-11-05 21:01:17 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:17 --> Controller Class Initialized
DEBUG - 2011-11-05 21:01:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:01:21 --> Config Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:01:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:01:21 --> URI Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Router Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Output Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Input Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:01:21 --> Language Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Loader Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:01:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:01:21 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Session Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:01:21 --> Session routines successfully run
DEBUG - 2011-11-05 21:01:21 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:21 --> Controller Class Initialized
DEBUG - 2011-11-05 21:01:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:01:28 --> Config Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:01:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:01:28 --> URI Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Router Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Output Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Input Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:01:28 --> Language Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Loader Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:01:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:01:28 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Session Class Initialized
DEBUG - 2011-11-05 21:01:28 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:01:28 --> Session routines successfully run
DEBUG - 2011-11-05 21:01:29 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:01:29 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:29 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:29 --> Controller Class Initialized
DEBUG - 2011-11-05 21:01:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:01:45 --> Config Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:01:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:01:45 --> URI Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Router Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Output Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Input Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:01:45 --> Language Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Loader Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:01:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:01:45 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Session Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:01:45 --> Session routines successfully run
DEBUG - 2011-11-05 21:01:45 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:45 --> Controller Class Initialized
DEBUG - 2011-11-05 21:01:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:01:47 --> Config Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:01:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:01:47 --> URI Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Router Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Output Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Input Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:01:47 --> Language Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Loader Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:01:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:01:47 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Session Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:01:47 --> Session routines successfully run
DEBUG - 2011-11-05 21:01:47 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Model Class Initialized
DEBUG - 2011-11-05 21:01:47 --> Controller Class Initialized
DEBUG - 2011-11-05 21:01:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:03:47 --> Config Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:03:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:03:47 --> URI Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Router Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Output Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Input Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:03:47 --> Language Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Loader Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:03:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:03:47 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Session Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:03:47 --> Session routines successfully run
DEBUG - 2011-11-05 21:03:47 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Model Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Model Class Initialized
DEBUG - 2011-11-05 21:03:47 --> Controller Class Initialized
DEBUG - 2011-11-05 21:03:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:04:06 --> Config Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:04:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:04:06 --> URI Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Router Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Output Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Input Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:04:06 --> Language Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Loader Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:04:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:04:06 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Session Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:04:06 --> Session routines successfully run
DEBUG - 2011-11-05 21:04:06 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:06 --> Controller Class Initialized
DEBUG - 2011-11-05 21:04:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:04:18 --> Config Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:04:18 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:04:18 --> URI Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Router Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Output Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Input Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:04:18 --> Language Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Loader Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:04:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:04:18 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Session Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:04:18 --> Session routines successfully run
DEBUG - 2011-11-05 21:04:18 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:18 --> Controller Class Initialized
DEBUG - 2011-11-05 21:04:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:04:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:04:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:04:18 --> Final output sent to browser
DEBUG - 2011-11-05 21:04:18 --> Total execution time: 0.0343
DEBUG - 2011-11-05 21:04:58 --> Config Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:04:58 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:04:58 --> URI Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Router Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Output Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Input Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:04:58 --> Language Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Loader Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:04:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:04:58 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Session Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:04:58 --> Session routines successfully run
DEBUG - 2011-11-05 21:04:58 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Model Class Initialized
DEBUG - 2011-11-05 21:04:58 --> Controller Class Initialized
DEBUG - 2011-11-05 21:04:58 --> File loaded: application/views/topo_view.php
ERROR - 2011-11-05 21:04:58 --> Severity: Notice --> Use of undefined constant base_url - assumed 'base_url' /Applications/MAMP/htdocs/chat/application/views/home_view.php 1
DEBUG - 2011-11-05 21:04:58 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:04:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:04:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:04:58 --> Final output sent to browser
DEBUG - 2011-11-05 21:04:58 --> Total execution time: 0.0585
DEBUG - 2011-11-05 21:05:11 --> Config Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:05:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:05:11 --> URI Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Router Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Output Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Input Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:05:11 --> Language Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Loader Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:05:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:05:11 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Session Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:05:11 --> Session routines successfully run
DEBUG - 2011-11-05 21:05:11 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Model Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Model Class Initialized
DEBUG - 2011-11-05 21:05:11 --> Controller Class Initialized
DEBUG - 2011-11-05 21:05:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:05:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:05:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:05:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:05:11 --> Final output sent to browser
DEBUG - 2011-11-05 21:05:11 --> Total execution time: 0.0392
DEBUG - 2011-11-05 21:05:35 --> Config Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:05:35 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:05:35 --> URI Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Router Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Output Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Input Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:05:35 --> Language Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Loader Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:05:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:05:35 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Session Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:05:35 --> Session routines successfully run
DEBUG - 2011-11-05 21:05:35 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Model Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Model Class Initialized
DEBUG - 2011-11-05 21:05:35 --> Controller Class Initialized
DEBUG - 2011-11-05 21:05:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:05:35 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:05:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:05:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:05:35 --> Final output sent to browser
DEBUG - 2011-11-05 21:05:35 --> Total execution time: 0.0555
DEBUG - 2011-11-05 21:06:04 --> Config Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:06:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:06:04 --> URI Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Router Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Output Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Input Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:06:04 --> Language Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Loader Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:06:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:06:04 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Session Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:06:04 --> Session routines successfully run
DEBUG - 2011-11-05 21:06:04 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Model Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Model Class Initialized
DEBUG - 2011-11-05 21:06:04 --> Controller Class Initialized
DEBUG - 2011-11-05 21:06:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:06:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:06:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:06:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:06:04 --> Final output sent to browser
DEBUG - 2011-11-05 21:06:04 --> Total execution time: 0.0325
DEBUG - 2011-11-05 21:06:51 --> Config Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:06:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:06:51 --> URI Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Router Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Output Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Input Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:06:51 --> Language Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Loader Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:06:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:06:51 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Session Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:06:51 --> Session routines successfully run
DEBUG - 2011-11-05 21:06:51 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Model Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Model Class Initialized
DEBUG - 2011-11-05 21:06:51 --> Controller Class Initialized
DEBUG - 2011-11-05 21:06:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:06:51 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:06:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:06:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:06:51 --> Final output sent to browser
DEBUG - 2011-11-05 21:06:51 --> Total execution time: 0.0329
DEBUG - 2011-11-05 21:07:25 --> Config Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:07:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:07:25 --> URI Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Router Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Output Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Input Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:07:25 --> Language Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Loader Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:07:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:07:25 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Session Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:07:25 --> Session routines successfully run
DEBUG - 2011-11-05 21:07:25 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Model Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Model Class Initialized
DEBUG - 2011-11-05 21:07:25 --> Controller Class Initialized
DEBUG - 2011-11-05 21:07:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:08:03 --> Config Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:08:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:08:03 --> URI Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Router Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Output Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Input Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:08:03 --> Language Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Loader Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:08:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:08:03 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Session Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:08:03 --> Session garbage collection performed.
DEBUG - 2011-11-05 21:08:03 --> Session routines successfully run
DEBUG - 2011-11-05 21:08:03 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Model Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Model Class Initialized
DEBUG - 2011-11-05 21:08:03 --> Controller Class Initialized
DEBUG - 2011-11-05 21:08:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:10:05 --> Config Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Hooks Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Utf8 Class Initialized
DEBUG - 2011-11-05 21:10:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-05 21:10:05 --> URI Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Router Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Output Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Input Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-05 21:10:05 --> Language Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Loader Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Helper loaded: url_helper
DEBUG - 2011-11-05 21:10:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-05 21:10:05 --> Database Driver Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Session Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Helper loaded: string_helper
DEBUG - 2011-11-05 21:10:05 --> Session garbage collection performed.
DEBUG - 2011-11-05 21:10:05 --> Session routines successfully run
DEBUG - 2011-11-05 21:10:05 --> Encrypt Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Model Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Model Class Initialized
DEBUG - 2011-11-05 21:10:05 --> Controller Class Initialized
DEBUG - 2011-11-05 21:10:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-05 21:10:05 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-05 21:10:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-05 21:10:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-05 21:10:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-05 21:10:05 --> Final output sent to browser
DEBUG - 2011-11-05 21:10:05 --> Total execution time: 0.0342
<file_sep>/application/logs/log-2011-02-14.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-14 20:07:22 --> Config Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:07:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:07:22 --> URI Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Router Class Initialized
DEBUG - 2011-02-14 20:07:22 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:07:22 --> Output Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Input Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:07:22 --> Language Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Loader Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:07:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:07:22 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:07:22 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Model Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Model Class Initialized
DEBUG - 2011-02-14 20:07:22 --> Controller Class Initialized
DEBUG - 2011-02-14 20:07:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:07:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:07:22 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:07:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:07:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:07:22 --> Final output sent to browser
DEBUG - 2011-02-14 20:07:22 --> Total execution time: 0.3486
DEBUG - 2011-02-14 20:09:17 --> Config Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:09:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:09:17 --> URI Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Router Class Initialized
DEBUG - 2011-02-14 20:09:17 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:09:17 --> Output Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Input Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:09:17 --> Language Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Loader Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:09:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:09:17 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:09:17 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Model Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Model Class Initialized
DEBUG - 2011-02-14 20:09:17 --> Controller Class Initialized
DEBUG - 2011-02-14 20:09:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:09:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:09:17 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:09:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:09:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:09:17 --> Final output sent to browser
DEBUG - 2011-02-14 20:09:17 --> Total execution time: 0.0604
DEBUG - 2011-02-14 20:10:20 --> Config Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:10:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:10:20 --> URI Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Router Class Initialized
DEBUG - 2011-02-14 20:10:20 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:10:20 --> Output Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Input Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:10:20 --> Language Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Loader Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:10:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:10:20 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:10:20 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Model Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Model Class Initialized
DEBUG - 2011-02-14 20:10:20 --> Controller Class Initialized
DEBUG - 2011-02-14 20:10:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:10:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:10:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:10:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:10:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:10:20 --> Final output sent to browser
DEBUG - 2011-02-14 20:10:20 --> Total execution time: 0.0244
DEBUG - 2011-02-14 20:13:06 --> Config Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:13:06 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:13:06 --> URI Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Router Class Initialized
DEBUG - 2011-02-14 20:13:06 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:13:06 --> Output Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Input Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:13:06 --> Language Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Loader Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:13:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:13:06 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:13:06 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Model Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Model Class Initialized
DEBUG - 2011-02-14 20:13:06 --> Controller Class Initialized
DEBUG - 2011-02-14 20:13:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:13:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:13:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:13:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:13:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:13:06 --> Final output sent to browser
DEBUG - 2011-02-14 20:13:06 --> Total execution time: 0.0235
DEBUG - 2011-02-14 20:13:57 --> Config Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:13:57 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:13:57 --> URI Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Router Class Initialized
DEBUG - 2011-02-14 20:13:57 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:13:57 --> Output Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Input Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:13:57 --> Language Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Loader Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:13:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:13:57 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:13:57 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Model Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Model Class Initialized
DEBUG - 2011-02-14 20:13:57 --> Controller Class Initialized
DEBUG - 2011-02-14 20:13:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:13:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:13:57 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:13:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:13:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:13:57 --> Final output sent to browser
DEBUG - 2011-02-14 20:13:57 --> Total execution time: 0.0228
DEBUG - 2011-02-14 20:14:35 --> Config Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:14:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:14:35 --> URI Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Router Class Initialized
DEBUG - 2011-02-14 20:14:35 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:14:35 --> Output Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Input Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:14:35 --> Language Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Loader Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:14:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:14:35 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:14:35 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Model Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Model Class Initialized
DEBUG - 2011-02-14 20:14:35 --> Controller Class Initialized
DEBUG - 2011-02-14 20:14:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:14:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:14:35 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:14:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:14:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:14:35 --> Final output sent to browser
DEBUG - 2011-02-14 20:14:35 --> Total execution time: 0.0182
DEBUG - 2011-02-14 20:15:34 --> Config Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:15:34 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:15:34 --> URI Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Router Class Initialized
DEBUG - 2011-02-14 20:15:34 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:15:34 --> Output Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Input Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:15:34 --> Language Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Loader Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:15:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:15:34 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:15:34 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Model Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Model Class Initialized
DEBUG - 2011-02-14 20:15:34 --> Controller Class Initialized
DEBUG - 2011-02-14 20:15:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:15:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:15:34 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:15:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:15:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:15:34 --> Final output sent to browser
DEBUG - 2011-02-14 20:15:34 --> Total execution time: 0.0188
DEBUG - 2011-02-14 20:15:46 --> Config Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:15:46 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:15:46 --> URI Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Router Class Initialized
DEBUG - 2011-02-14 20:15:46 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:15:46 --> Output Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Input Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:15:46 --> Language Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Loader Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:15:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:15:46 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:15:46 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Model Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Model Class Initialized
DEBUG - 2011-02-14 20:15:46 --> Controller Class Initialized
DEBUG - 2011-02-14 20:15:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:15:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:15:46 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:15:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:15:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:15:46 --> Final output sent to browser
DEBUG - 2011-02-14 20:15:46 --> Total execution time: 0.0155
DEBUG - 2011-02-14 20:16:19 --> Config Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:16:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:16:19 --> URI Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Router Class Initialized
DEBUG - 2011-02-14 20:16:19 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:16:19 --> Output Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Input Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:16:19 --> Language Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Loader Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:16:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:16:19 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:16:19 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Model Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Model Class Initialized
DEBUG - 2011-02-14 20:16:19 --> Controller Class Initialized
DEBUG - 2011-02-14 20:16:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:16:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:16:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:16:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:16:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:16:19 --> Final output sent to browser
DEBUG - 2011-02-14 20:16:19 --> Total execution time: 0.0232
DEBUG - 2011-02-14 20:26:25 --> Config Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:26:25 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:26:25 --> URI Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Router Class Initialized
DEBUG - 2011-02-14 20:26:25 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:26:25 --> Output Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Input Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:26:25 --> Language Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Loader Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:26:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:26:25 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:26:25 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Model Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Model Class Initialized
DEBUG - 2011-02-14 20:26:25 --> Controller Class Initialized
DEBUG - 2011-02-14 20:26:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:26:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:26:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:26:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:26:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:26:25 --> Final output sent to browser
DEBUG - 2011-02-14 20:26:25 --> Total execution time: 0.0182
DEBUG - 2011-02-14 20:27:00 --> Config Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:27:00 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:27:00 --> URI Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Router Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Output Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Input Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:27:00 --> Language Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Loader Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:27:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:27:00 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:27:00 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Model Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Model Class Initialized
DEBUG - 2011-02-14 20:27:00 --> Controller Class Initialized
DEBUG - 2011-02-14 20:27:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:27:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:27:00 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-14 20:27:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:27:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:27:00 --> Final output sent to browser
DEBUG - 2011-02-14 20:27:00 --> Total execution time: 0.1269
DEBUG - 2011-02-14 20:30:45 --> Config Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:30:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:30:45 --> URI Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Router Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Output Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Input Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:30:45 --> Language Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Loader Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:30:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:30:45 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Config Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:30:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:30:45 --> URI Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Router Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Output Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Input Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:30:45 --> Language Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Loader Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Config Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:30:45 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:30:45 --> URI Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Router Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Output Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Input Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:30:45 --> Language Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Loader Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:30:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:30:45 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:30:45 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Controller Class Initialized
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:30:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:30:45 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:30:45 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Controller Class Initialized
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:30:45 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:30:45 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Model Class Initialized
DEBUG - 2011-02-14 20:30:45 --> Controller Class Initialized
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:30:45 --> Final output sent to browser
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:30:45 --> Total execution time: 0.1628
DEBUG - 2011-02-14 20:30:45 --> Final output sent to browser
DEBUG - 2011-02-14 20:30:45 --> Total execution time: 0.1678
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:30:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:30:45 --> Final output sent to browser
DEBUG - 2011-02-14 20:30:45 --> Total execution time: 0.1737
DEBUG - 2011-02-14 20:31:14 --> Config Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:31:14 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:31:14 --> URI Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Router Class Initialized
DEBUG - 2011-02-14 20:31:14 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:31:14 --> Output Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Input Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:31:14 --> Language Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Loader Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:31:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:31:14 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:31:14 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:14 --> Controller Class Initialized
DEBUG - 2011-02-14 20:31:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:31:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:31:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:31:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:31:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:31:14 --> Final output sent to browser
DEBUG - 2011-02-14 20:31:14 --> Total execution time: 0.0239
DEBUG - 2011-02-14 20:31:27 --> Config Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:31:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:31:27 --> URI Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Router Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Output Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Input Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:31:27 --> Language Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Loader Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:31:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:31:27 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:31:27 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:27 --> Controller Class Initialized
DEBUG - 2011-02-14 20:31:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:31:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:31:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 20:31:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:31:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:31:27 --> Final output sent to browser
DEBUG - 2011-02-14 20:31:27 --> Total execution time: 0.0206
DEBUG - 2011-02-14 20:31:43 --> Config Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:31:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:31:43 --> URI Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Router Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Output Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Input Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:31:43 --> Language Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Loader Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:31:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:31:43 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:31:43 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Model Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Controller Class Initialized
DEBUG - 2011-02-14 20:31:43 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-14 20:38:29 --> Security Class Initialized
DEBUG - 2011-02-14 20:38:29 --> XSS Filtering completed
DEBUG - 2011-02-14 20:38:29 --> XSS Filtering completed
DEBUG - 2011-02-14 20:38:29 --> XSS Filtering completed
DEBUG - 2011-02-14 20:42:50 --> Config Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:42:50 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:42:50 --> URI Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Router Class Initialized
DEBUG - 2011-02-14 20:42:50 --> No URI present. Default controller set.
DEBUG - 2011-02-14 20:42:50 --> Output Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Input Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:42:50 --> Language Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Loader Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:42:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:42:50 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:42:50 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Model Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Model Class Initialized
DEBUG - 2011-02-14 20:42:50 --> Controller Class Initialized
DEBUG - 2011-02-14 20:42:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:42:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:42:50 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 20:42:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:42:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:42:50 --> Final output sent to browser
DEBUG - 2011-02-14 20:42:50 --> Total execution time: 0.0179
DEBUG - 2011-02-14 20:43:01 --> Config Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Hooks Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Utf8 Class Initialized
DEBUG - 2011-02-14 20:43:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 20:43:01 --> URI Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Router Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Output Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Input Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 20:43:01 --> Language Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Loader Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Helper loaded: url_helper
DEBUG - 2011-02-14 20:43:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 20:43:01 --> Database Driver Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Helper loaded: form_helper
DEBUG - 2011-02-14 20:43:01 --> Form Validation Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Model Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Model Class Initialized
DEBUG - 2011-02-14 20:43:01 --> Controller Class Initialized
DEBUG - 2011-02-14 20:43:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 20:43:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 20:43:01 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-14 20:43:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 20:43:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 20:43:01 --> Final output sent to browser
DEBUG - 2011-02-14 20:43:01 --> Total execution time: 0.0171
DEBUG - 2011-02-14 21:56:04 --> Config Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Hooks Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Utf8 Class Initialized
DEBUG - 2011-02-14 21:56:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 21:56:04 --> URI Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Router Class Initialized
DEBUG - 2011-02-14 21:56:04 --> No URI present. Default controller set.
DEBUG - 2011-02-14 21:56:04 --> Output Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Input Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 21:56:04 --> Language Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Loader Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Helper loaded: url_helper
DEBUG - 2011-02-14 21:56:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 21:56:04 --> Database Driver Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Helper loaded: form_helper
DEBUG - 2011-02-14 21:56:04 --> Form Validation Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:04 --> Controller Class Initialized
DEBUG - 2011-02-14 21:56:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 21:56:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 21:56:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 21:56:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 21:56:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 21:56:04 --> Final output sent to browser
DEBUG - 2011-02-14 21:56:04 --> Total execution time: 0.0512
DEBUG - 2011-02-14 21:56:10 --> Config Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Hooks Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Utf8 Class Initialized
DEBUG - 2011-02-14 21:56:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 21:56:10 --> URI Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Router Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Output Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Input Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 21:56:10 --> Language Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Loader Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Helper loaded: url_helper
DEBUG - 2011-02-14 21:56:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 21:56:10 --> Database Driver Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Helper loaded: form_helper
DEBUG - 2011-02-14 21:56:10 --> Form Validation Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:10 --> Controller Class Initialized
DEBUG - 2011-02-14 21:56:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 21:56:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 21:56:10 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 21:56:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 21:56:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 21:56:10 --> Final output sent to browser
DEBUG - 2011-02-14 21:56:10 --> Total execution time: 0.0213
DEBUG - 2011-02-14 21:56:29 --> Config Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Hooks Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Utf8 Class Initialized
DEBUG - 2011-02-14 21:56:29 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 21:56:29 --> URI Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Router Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Output Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Input Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 21:56:29 --> Language Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Loader Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Helper loaded: url_helper
DEBUG - 2011-02-14 21:56:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 21:56:29 --> Database Driver Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Helper loaded: form_helper
DEBUG - 2011-02-14 21:56:29 --> Form Validation Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Model Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Controller Class Initialized
DEBUG - 2011-02-14 21:56:29 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-14 21:57:20 --> Security Class Initialized
DEBUG - 2011-02-14 21:57:20 --> XSS Filtering completed
DEBUG - 2011-02-14 21:57:20 --> XSS Filtering completed
DEBUG - 2011-02-14 21:57:20 --> XSS Filtering completed
DEBUG - 2011-02-14 21:58:43 --> Config Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Hooks Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Utf8 Class Initialized
DEBUG - 2011-02-14 21:58:43 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 21:58:43 --> URI Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Router Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Output Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Input Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 21:58:43 --> Language Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Loader Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Helper loaded: url_helper
DEBUG - 2011-02-14 21:58:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 21:58:43 --> Database Driver Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Helper loaded: form_helper
DEBUG - 2011-02-14 21:58:43 --> Form Validation Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Model Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Model Class Initialized
DEBUG - 2011-02-14 21:58:43 --> Controller Class Initialized
DEBUG - 2011-02-14 21:58:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 21:58:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 21:58:43 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-14 21:58:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 21:58:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 21:58:43 --> Final output sent to browser
DEBUG - 2011-02-14 21:58:43 --> Total execution time: 0.0192
DEBUG - 2011-02-14 23:24:44 --> Config Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:24:44 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:24:44 --> URI Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Router Class Initialized
DEBUG - 2011-02-14 23:24:44 --> No URI present. Default controller set.
DEBUG - 2011-02-14 23:24:44 --> Output Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Input Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:24:44 --> Language Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Loader Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:24:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:24:44 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:24:44 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Model Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Model Class Initialized
DEBUG - 2011-02-14 23:24:44 --> Controller Class Initialized
DEBUG - 2011-02-14 23:24:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:24:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:24:44 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-14 23:24:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:24:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:24:44 --> Final output sent to browser
DEBUG - 2011-02-14 23:24:44 --> Total execution time: 0.0170
DEBUG - 2011-02-14 23:24:54 --> Config Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:24:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:24:54 --> URI Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Router Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Output Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Input Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:24:54 --> Language Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Loader Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:24:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:24:54 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:24:54 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Model Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Model Class Initialized
DEBUG - 2011-02-14 23:24:54 --> Controller Class Initialized
DEBUG - 2011-02-14 23:24:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:24:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:24:54 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-14 23:24:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:24:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:24:54 --> Final output sent to browser
DEBUG - 2011-02-14 23:24:54 --> Total execution time: 0.0342
DEBUG - 2011-02-14 23:25:01 --> Config Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:25:01 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:25:01 --> URI Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Router Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Output Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Input Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:25:01 --> Language Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Loader Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:25:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:25:01 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:25:01 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:01 --> Controller Class Initialized
DEBUG - 2011-02-14 23:25:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:25:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:25:01 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 23:25:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:25:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:25:01 --> Final output sent to browser
DEBUG - 2011-02-14 23:25:01 --> Total execution time: 0.0281
DEBUG - 2011-02-14 23:25:10 --> Config Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:25:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:25:10 --> URI Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Router Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Output Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Input Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:25:10 --> Language Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Loader Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:25:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:25:10 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:25:10 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:10 --> Controller Class Initialized
DEBUG - 2011-02-14 23:25:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:25:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:25:10 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 23:25:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:25:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:25:10 --> Final output sent to browser
DEBUG - 2011-02-14 23:25:10 --> Total execution time: 0.0244
DEBUG - 2011-02-14 23:25:20 --> Config Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:25:20 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:25:20 --> URI Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Router Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Output Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Input Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:25:20 --> Language Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Loader Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:25:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:25:20 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:25:20 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:20 --> Controller Class Initialized
DEBUG - 2011-02-14 23:25:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:25:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:25:20 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 23:25:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:25:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:25:20 --> Final output sent to browser
DEBUG - 2011-02-14 23:25:20 --> Total execution time: 0.0230
DEBUG - 2011-02-14 23:25:22 --> Config Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:25:22 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:25:22 --> URI Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Router Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Output Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Input Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:25:22 --> Language Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Loader Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:25:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:25:22 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:25:22 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:22 --> Controller Class Initialized
DEBUG - 2011-02-14 23:25:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:25:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:25:22 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 23:25:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:25:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:25:22 --> Final output sent to browser
DEBUG - 2011-02-14 23:25:22 --> Total execution time: 0.0205
DEBUG - 2011-02-14 23:25:39 --> Config Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:25:39 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:25:39 --> URI Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Router Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Output Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Input Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:25:39 --> Language Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Loader Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:25:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:25:39 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:25:39 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Model Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Controller Class Initialized
DEBUG - 2011-02-14 23:25:39 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-14 23:26:07 --> Security Class Initialized
DEBUG - 2011-02-14 23:26:07 --> XSS Filtering completed
DEBUG - 2011-02-14 23:26:07 --> XSS Filtering completed
DEBUG - 2011-02-14 23:26:07 --> XSS Filtering completed
DEBUG - 2011-02-14 23:28:28 --> Config Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:28:28 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:28:28 --> URI Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Router Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Output Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Input Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:28:28 --> Language Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Loader Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:28:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:28:28 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:28:28 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Model Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Model Class Initialized
DEBUG - 2011-02-14 23:28:28 --> Controller Class Initialized
DEBUG - 2011-02-14 23:28:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:28:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:28:28 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-14 23:28:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:28:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:28:28 --> Final output sent to browser
DEBUG - 2011-02-14 23:28:28 --> Total execution time: 0.0193
DEBUG - 2011-02-14 23:28:31 --> Config Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:28:31 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:28:31 --> URI Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Router Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Output Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Input Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:28:31 --> Language Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Loader Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:28:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:28:31 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:28:31 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Model Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Model Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Controller Class Initialized
DEBUG - 2011-02-14 23:28:31 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-14 23:28:34 --> Security Class Initialized
DEBUG - 2011-02-14 23:28:34 --> XSS Filtering completed
DEBUG - 2011-02-14 23:28:34 --> XSS Filtering completed
DEBUG - 2011-02-14 23:28:34 --> XSS Filtering completed
DEBUG - 2011-02-14 23:30:13 --> Config Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Hooks Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Utf8 Class Initialized
DEBUG - 2011-02-14 23:30:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-14 23:30:13 --> URI Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Router Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Output Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Input Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-14 23:30:13 --> Language Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Loader Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Helper loaded: url_helper
DEBUG - 2011-02-14 23:30:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-14 23:30:13 --> Database Driver Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Helper loaded: form_helper
DEBUG - 2011-02-14 23:30:13 --> Form Validation Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Model Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Model Class Initialized
DEBUG - 2011-02-14 23:30:13 --> Controller Class Initialized
DEBUG - 2011-02-14 23:30:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-14 23:30:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-14 23:30:13 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-14 23:30:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-14 23:30:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-14 23:30:13 --> Final output sent to browser
DEBUG - 2011-02-14 23:30:13 --> Total execution time: 0.0363
<file_sep>/application/logs/log-2011-05-12.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-05-12 09:35:13 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:13 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:13 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:13 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:35:13 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:13 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:13 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:13 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:13 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:14 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:14 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:14 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:14 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:14 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:35:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:14 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:14 --> Total execution time: 0.9843
DEBUG - 2011-05-12 09:35:24 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:24 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:24 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:24 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:24 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:24 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:24 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 09:35:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:24 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:24 --> Total execution time: 0.2074
DEBUG - 2011-05-12 09:35:27 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:27 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:27 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:27 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:27 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:27 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:27 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 09:35:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:27 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:27 --> Total execution time: 0.1388
DEBUG - 2011-05-12 09:35:31 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:31 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:31 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:31 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:31 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:31 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:31 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:31 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 09:35:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:31 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:31 --> Total execution time: 0.0767
DEBUG - 2011-05-12 09:35:36 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:36 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:36 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:36 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:35:36 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:36 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:36 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:36 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:36 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:36 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:35:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:36 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:36 --> Total execution time: 0.0584
DEBUG - 2011-05-12 09:35:38 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:38 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:38 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:38 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:38 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:38 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:38 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:38 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 09:35:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:38 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:38 --> Total execution time: 0.0469
DEBUG - 2011-05-12 09:35:41 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:41 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:41 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:41 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:41 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:41 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:41 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 09:35:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:41 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:41 --> Total execution time: 0.0521
DEBUG - 2011-05-12 09:35:47 --> Config Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:35:47 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:35:47 --> URI Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Router Class Initialized
DEBUG - 2011-05-12 09:35:47 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:35:47 --> Output Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Input Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:35:47 --> Language Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Loader Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:35:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:35:47 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:35:47 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Upload Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Model Class Initialized
DEBUG - 2011-05-12 09:35:47 --> Controller Class Initialized
DEBUG - 2011-05-12 09:35:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:35:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:35:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:35:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:35:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:35:47 --> Final output sent to browser
DEBUG - 2011-05-12 09:35:47 --> Total execution time: 0.1237
DEBUG - 2011-05-12 09:44:42 --> Config Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:44:42 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:44:42 --> URI Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Router Class Initialized
DEBUG - 2011-05-12 09:44:42 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:44:42 --> Output Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Input Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:44:42 --> Language Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Loader Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:44:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:44:42 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:44:42 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Upload Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Model Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Model Class Initialized
DEBUG - 2011-05-12 09:44:42 --> Controller Class Initialized
DEBUG - 2011-05-12 09:44:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:44:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:44:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:44:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:44:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:44:42 --> Final output sent to browser
DEBUG - 2011-05-12 09:44:42 --> Total execution time: 0.0611
DEBUG - 2011-05-12 09:44:59 --> Config Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:44:59 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:44:59 --> URI Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Router Class Initialized
DEBUG - 2011-05-12 09:44:59 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:44:59 --> Output Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Input Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:44:59 --> Language Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Loader Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:44:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:44:59 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:44:59 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Upload Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Model Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Model Class Initialized
DEBUG - 2011-05-12 09:44:59 --> Controller Class Initialized
DEBUG - 2011-05-12 09:44:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:44:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:44:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:44:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:44:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:44:59 --> Final output sent to browser
DEBUG - 2011-05-12 09:44:59 --> Total execution time: 0.0899
DEBUG - 2011-05-12 09:45:06 --> Config Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:45:06 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:45:06 --> URI Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Router Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Output Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Input Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:45:06 --> Language Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Loader Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:45:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:45:06 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:45:06 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Upload Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:06 --> Controller Class Initialized
DEBUG - 2011-05-12 09:45:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:45:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:45:06 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 09:45:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:45:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:45:06 --> Final output sent to browser
DEBUG - 2011-05-12 09:45:06 --> Total execution time: 0.0517
DEBUG - 2011-05-12 09:45:09 --> Config Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:45:09 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:45:09 --> URI Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Router Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Output Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Input Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:45:09 --> Language Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Loader Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:45:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:45:09 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:45:09 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Upload Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:09 --> Controller Class Initialized
DEBUG - 2011-05-12 09:45:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:45:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:45:09 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 09:45:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:45:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:45:09 --> Final output sent to browser
DEBUG - 2011-05-12 09:45:09 --> Total execution time: 0.0882
DEBUG - 2011-05-12 09:45:33 --> Config Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:45:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:45:33 --> URI Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Router Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Output Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Input Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:45:33 --> Language Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Loader Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:45:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:45:33 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:45:33 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Upload Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Model Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Controller Class Initialized
DEBUG - 2011-05-12 09:45:33 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:45:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:45:33 --> Final output sent to browser
DEBUG - 2011-05-12 09:45:33 --> Total execution time: 0.0753
DEBUG - 2011-05-12 09:46:10 --> Config Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:46:10 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:46:10 --> URI Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Router Class Initialized
DEBUG - 2011-05-12 09:46:10 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:46:10 --> Output Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Input Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:46:10 --> Language Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Loader Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:46:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:46:10 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:46:10 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Upload Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:10 --> Controller Class Initialized
DEBUG - 2011-05-12 09:46:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:46:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:46:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:46:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:46:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:46:10 --> Final output sent to browser
DEBUG - 2011-05-12 09:46:10 --> Total execution time: 0.1825
DEBUG - 2011-05-12 09:46:12 --> Config Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:46:12 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:46:12 --> URI Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Router Class Initialized
DEBUG - 2011-05-12 09:46:12 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:46:12 --> Output Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Input Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:46:12 --> Language Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Loader Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:46:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:46:12 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:46:12 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Upload Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:12 --> Controller Class Initialized
DEBUG - 2011-05-12 09:46:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:46:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:46:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:46:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:46:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:46:12 --> Final output sent to browser
DEBUG - 2011-05-12 09:46:12 --> Total execution time: 0.0461
DEBUG - 2011-05-12 09:46:25 --> Config Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:46:25 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:46:25 --> URI Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Router Class Initialized
DEBUG - 2011-05-12 09:46:25 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:46:25 --> Output Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Input Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:46:25 --> Language Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Loader Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:46:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:46:25 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:46:25 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Upload Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:25 --> Controller Class Initialized
DEBUG - 2011-05-12 09:46:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:46:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:46:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:46:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:46:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:46:25 --> Final output sent to browser
DEBUG - 2011-05-12 09:46:25 --> Total execution time: 0.1008
DEBUG - 2011-05-12 09:46:31 --> Config Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:46:31 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:46:31 --> URI Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Router Class Initialized
DEBUG - 2011-05-12 09:46:31 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:46:31 --> Output Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Input Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:46:31 --> Language Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Loader Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:46:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:46:31 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:46:31 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Upload Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Model Class Initialized
DEBUG - 2011-05-12 09:46:31 --> Controller Class Initialized
DEBUG - 2011-05-12 09:46:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:46:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:46:31 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:46:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:46:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:46:31 --> Final output sent to browser
DEBUG - 2011-05-12 09:46:31 --> Total execution time: 0.0860
DEBUG - 2011-05-12 09:49:05 --> Config Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Hooks Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Utf8 Class Initialized
DEBUG - 2011-05-12 09:49:05 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 09:49:05 --> URI Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Router Class Initialized
DEBUG - 2011-05-12 09:49:05 --> No URI present. Default controller set.
DEBUG - 2011-05-12 09:49:05 --> Output Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Input Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 09:49:05 --> Language Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Loader Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Helper loaded: url_helper
DEBUG - 2011-05-12 09:49:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 09:49:05 --> Database Driver Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Helper loaded: form_helper
DEBUG - 2011-05-12 09:49:05 --> Form Validation Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Upload Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Image Lib Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Model Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Model Class Initialized
DEBUG - 2011-05-12 09:49:05 --> Controller Class Initialized
DEBUG - 2011-05-12 09:49:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 09:49:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 09:49:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 09:49:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 09:49:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 09:49:05 --> Final output sent to browser
DEBUG - 2011-05-12 09:49:05 --> Total execution time: 0.0510
DEBUG - 2011-05-12 13:15:06 --> Config Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Hooks Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Utf8 Class Initialized
DEBUG - 2011-05-12 13:15:06 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 13:15:06 --> URI Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Router Class Initialized
DEBUG - 2011-05-12 13:15:06 --> No URI present. Default controller set.
DEBUG - 2011-05-12 13:15:06 --> Output Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Input Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 13:15:06 --> Language Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Loader Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Helper loaded: url_helper
DEBUG - 2011-05-12 13:15:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 13:15:06 --> Database Driver Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Helper loaded: form_helper
DEBUG - 2011-05-12 13:15:06 --> Form Validation Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Upload Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Image Lib Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Model Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Model Class Initialized
DEBUG - 2011-05-12 13:15:06 --> Controller Class Initialized
DEBUG - 2011-05-12 13:15:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 13:15:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 13:15:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 13:15:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 13:15:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 13:15:06 --> Final output sent to browser
DEBUG - 2011-05-12 13:15:06 --> Total execution time: 0.5944
DEBUG - 2011-05-12 16:18:02 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:02 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:02 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:02 --> No URI present. Default controller set.
DEBUG - 2011-05-12 16:18:02 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:02 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:02 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:03 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:03 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:03 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 16:18:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:03 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:03 --> Total execution time: 0.7571
DEBUG - 2011-05-12 16:18:18 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:18 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:18 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:18 --> No URI present. Default controller set.
DEBUG - 2011-05-12 16:18:18 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:18 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:18 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:18 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:18 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:18 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-12 16:18:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:18 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:18 --> Total execution time: 0.0689
DEBUG - 2011-05-12 16:18:31 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:31 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:31 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:31 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:31 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:31 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:31 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:31 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:31 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:31 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:31 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:18:31 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:31 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:31 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:31 --> Total execution time: 0.1479
DEBUG - 2011-05-12 16:18:34 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:34 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:34 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:34 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:34 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:34 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:34 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:34 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:18:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:34 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:34 --> Total execution time: 0.0930
DEBUG - 2011-05-12 16:18:37 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:37 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:37 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:37 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:37 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:37 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:37 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:37 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:18:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:37 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:37 --> Total execution time: 0.0461
DEBUG - 2011-05-12 16:18:39 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:39 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:39 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:39 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:39 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:39 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:39 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:39 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:18:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:39 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:39 --> Total execution time: 0.0512
DEBUG - 2011-05-12 16:18:47 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:47 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:47 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:47 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:47 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:47 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:47 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:47 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 16:18:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:47 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:47 --> Total execution time: 0.0641
DEBUG - 2011-05-12 16:18:51 --> Config Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:18:51 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:18:51 --> URI Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Router Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Output Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Input Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:18:51 --> Language Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Loader Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:18:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:18:51 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:18:51 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Upload Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Model Class Initialized
DEBUG - 2011-05-12 16:18:51 --> Controller Class Initialized
DEBUG - 2011-05-12 16:18:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:18:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:18:51 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:18:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:18:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:18:51 --> Final output sent to browser
DEBUG - 2011-05-12 16:18:51 --> Total execution time: 0.0557
DEBUG - 2011-05-12 16:20:17 --> Config Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:20:17 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:20:17 --> URI Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Router Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Output Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Input Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:20:17 --> Language Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Loader Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:20:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:20:17 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:20:17 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Upload Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Controller Class Initialized
DEBUG - 2011-05-12 16:20:17 --> Language file loaded: language/english/form_validation_lang.php
ERROR - 2011-05-12 16:20:17 --> Severity: Notice --> Undefined index: foto_noticia /home/zorbit/www/artigos/application/models/noticia_model.php 125
DEBUG - 2011-05-12 16:20:17 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-12 16:20:17 --> You did not select a file to upload.
DEBUG - 2011-05-12 16:20:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:20:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:20:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:20:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:20:17 --> Final output sent to browser
DEBUG - 2011-05-12 16:20:17 --> Total execution time: 0.0854
DEBUG - 2011-05-12 16:20:32 --> Config Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:20:32 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:20:32 --> URI Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Router Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Output Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Input Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:20:32 --> Language Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Loader Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:20:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:20:32 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:20:32 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Upload Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:32 --> Controller Class Initialized
DEBUG - 2011-05-12 16:20:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:20:32 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:20:32 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:20:32 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:20:32 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:20:32 --> Final output sent to browser
DEBUG - 2011-05-12 16:20:32 --> Total execution time: 0.1215
DEBUG - 2011-05-12 16:20:41 --> Config Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:20:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:20:41 --> URI Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Router Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Output Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Input Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:20:41 --> Language Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Loader Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:20:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:20:41 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:20:41 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Upload Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:41 --> Controller Class Initialized
DEBUG - 2011-05-12 16:20:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:20:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:20:41 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:20:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:20:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:20:41 --> Final output sent to browser
DEBUG - 2011-05-12 16:20:41 --> Total execution time: 0.0649
DEBUG - 2011-05-12 16:20:42 --> Config Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:20:42 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:20:42 --> URI Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Router Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Output Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Input Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:20:42 --> Language Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Loader Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:20:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:20:42 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:20:42 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Upload Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:42 --> Controller Class Initialized
DEBUG - 2011-05-12 16:20:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:20:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:20:42 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 16:20:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:20:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:20:42 --> Final output sent to browser
DEBUG - 2011-05-12 16:20:42 --> Total execution time: 0.0527
DEBUG - 2011-05-12 16:20:45 --> Config Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:20:45 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:20:45 --> URI Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Router Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Output Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Input Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:20:45 --> Language Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Loader Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:20:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:20:45 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:20:45 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Upload Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Model Class Initialized
DEBUG - 2011-05-12 16:20:45 --> Controller Class Initialized
DEBUG - 2011-05-12 16:20:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:20:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:20:45 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:20:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:20:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:20:45 --> Final output sent to browser
DEBUG - 2011-05-12 16:20:45 --> Total execution time: 0.0471
DEBUG - 2011-05-12 16:21:11 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:11 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:11 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:11 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:11 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:11 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:11 --> Language file loaded: language/english/form_validation_lang.php
ERROR - 2011-05-12 16:21:11 --> Severity: Notice --> Undefined index: foto_noticia /home/zorbit/www/artigos/application/models/noticia_model.php 125
DEBUG - 2011-05-12 16:21:11 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-12 16:21:11 --> You did not select a file to upload.
DEBUG - 2011-05-12 16:21:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:11 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:11 --> Total execution time: 0.0481
DEBUG - 2011-05-12 16:21:18 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:18 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:18 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:18 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:18 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:18 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:18 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:18 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:21:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:18 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:18 --> Total execution time: 0.0518
DEBUG - 2011-05-12 16:21:20 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:20 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:20 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:20 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:20 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:20 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:20 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:20 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 16:21:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:20 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:20 --> Total execution time: 0.0505
DEBUG - 2011-05-12 16:21:25 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:25 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:25 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:25 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:25 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:25 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:25 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:25 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:25 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:25 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:25 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:26 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:26 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:26 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:21:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:26 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:26 --> Total execution time: 0.0462
DEBUG - 2011-05-12 16:21:28 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:28 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:28 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:28 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:28 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:28 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:28 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:28 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:21:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:28 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:28 --> Total execution time: 0.0517
DEBUG - 2011-05-12 16:21:30 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:30 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:30 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:30 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:30 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:30 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:30 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:30 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:21:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:30 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:30 --> Total execution time: 0.7294
DEBUG - 2011-05-12 16:21:33 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:33 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:33 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:33 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:33 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:33 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:21:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:33 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:33 --> Total execution time: 0.0784
DEBUG - 2011-05-12 16:21:35 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:35 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:35 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:35 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:35 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:35 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:35 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 16:21:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:35 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:35 --> Total execution time: 0.0459
DEBUG - 2011-05-12 16:21:37 --> Config Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Hooks Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Utf8 Class Initialized
DEBUG - 2011-05-12 16:21:37 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 16:21:37 --> URI Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Router Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Output Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Input Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 16:21:37 --> Language Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Loader Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Helper loaded: url_helper
DEBUG - 2011-05-12 16:21:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 16:21:37 --> Database Driver Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Helper loaded: form_helper
DEBUG - 2011-05-12 16:21:37 --> Form Validation Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Upload Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Image Lib Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Model Class Initialized
DEBUG - 2011-05-12 16:21:37 --> Controller Class Initialized
DEBUG - 2011-05-12 16:21:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 16:21:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 16:21:37 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 16:21:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 16:21:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 16:21:37 --> Final output sent to browser
DEBUG - 2011-05-12 16:21:37 --> Total execution time: 0.0877
DEBUG - 2011-05-12 17:05:50 --> Config Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:05:50 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:05:50 --> URI Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Router Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Output Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Input Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:05:50 --> Language Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Loader Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:05:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:05:50 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:05:50 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Upload Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:50 --> Controller Class Initialized
DEBUG - 2011-05-12 17:05:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:05:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:05:50 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 17:05:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:05:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:05:50 --> Final output sent to browser
DEBUG - 2011-05-12 17:05:50 --> Total execution time: 0.3472
DEBUG - 2011-05-12 17:05:53 --> Config Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:05:53 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:05:53 --> URI Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Router Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Output Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Input Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:05:53 --> Language Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Loader Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:05:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:05:53 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:05:53 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Upload Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:53 --> Controller Class Initialized
DEBUG - 2011-05-12 17:05:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:05:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:05:53 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 17:05:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:05:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:05:53 --> Final output sent to browser
DEBUG - 2011-05-12 17:05:53 --> Total execution time: 0.2214
DEBUG - 2011-05-12 17:05:56 --> Config Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:05:56 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:05:56 --> URI Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Router Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Output Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Input Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:05:56 --> Language Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Loader Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:05:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:05:56 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:05:56 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Upload Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Model Class Initialized
DEBUG - 2011-05-12 17:05:56 --> Controller Class Initialized
DEBUG - 2011-05-12 17:05:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:05:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:05:56 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-12 17:05:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:05:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:05:56 --> Final output sent to browser
DEBUG - 2011-05-12 17:05:56 --> Total execution time: 0.0807
DEBUG - 2011-05-12 17:07:07 --> Config Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:07:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:07:07 --> URI Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Router Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Output Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Input Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:07:07 --> Language Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Loader Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:07:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:07:07 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:07:07 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Upload Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:07 --> Controller Class Initialized
DEBUG - 2011-05-12 17:07:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:07:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:07:07 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 17:07:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:07:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:07:07 --> Final output sent to browser
DEBUG - 2011-05-12 17:07:07 --> Total execution time: 0.0598
DEBUG - 2011-05-12 17:07:09 --> Config Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:07:09 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:07:09 --> URI Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Router Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Output Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Input Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:07:09 --> Language Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Loader Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:07:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:07:09 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:07:09 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Upload Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:09 --> Controller Class Initialized
DEBUG - 2011-05-12 17:07:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:07:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:07:09 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 17:07:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:07:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:07:09 --> Final output sent to browser
DEBUG - 2011-05-12 17:07:09 --> Total execution time: 0.0662
DEBUG - 2011-05-12 17:07:19 --> Config Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:07:19 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:07:19 --> URI Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Router Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Output Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Input Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:07:19 --> Language Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Loader Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:07:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:07:19 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:07:19 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Upload Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Controller Class Initialized
DEBUG - 2011-05-12 17:07:19 --> Language file loaded: language/english/form_validation_lang.php
ERROR - 2011-05-12 17:07:19 --> Severity: Notice --> Undefined index: foto_noticia /home/zorbit/www/artigos/application/models/noticia_model.php 164
DEBUG - 2011-05-12 17:07:19 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-12 17:07:19 --> You did not select a file to upload.
DEBUG - 2011-05-12 17:07:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:07:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:07:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:07:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:07:19 --> Final output sent to browser
DEBUG - 2011-05-12 17:07:19 --> Total execution time: 0.1165
DEBUG - 2011-05-12 17:07:25 --> Config Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:07:25 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:07:25 --> URI Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Router Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Output Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Input Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:07:25 --> Language Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Loader Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:07:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:07:25 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:07:25 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Upload Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:25 --> Controller Class Initialized
DEBUG - 2011-05-12 17:07:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:07:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:07:25 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 17:07:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:07:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:07:25 --> Final output sent to browser
DEBUG - 2011-05-12 17:07:25 --> Total execution time: 0.0702
DEBUG - 2011-05-12 17:07:27 --> Config Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:07:27 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:07:27 --> URI Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Router Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Output Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Input Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:07:27 --> Language Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Loader Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:07:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:07:27 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:07:27 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Upload Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Model Class Initialized
DEBUG - 2011-05-12 17:07:27 --> Controller Class Initialized
DEBUG - 2011-05-12 17:07:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:07:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:07:27 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 17:07:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:07:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:07:27 --> Final output sent to browser
DEBUG - 2011-05-12 17:07:27 --> Total execution time: 0.0500
DEBUG - 2011-05-12 17:13:00 --> Config Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:13:00 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:13:00 --> URI Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Router Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Output Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Input Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:13:00 --> Language Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Loader Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:13:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:13:00 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:13:00 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Upload Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:13:00 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:01 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:01 --> Controller Class Initialized
DEBUG - 2011-05-12 17:13:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:13:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:13:01 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-12 17:13:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:13:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:13:01 --> Final output sent to browser
DEBUG - 2011-05-12 17:13:01 --> Total execution time: 0.0818
DEBUG - 2011-05-12 17:13:03 --> Config Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:13:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:13:03 --> URI Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Router Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Output Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Input Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:13:03 --> Language Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Loader Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:13:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:13:03 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:13:03 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Upload Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:03 --> Controller Class Initialized
DEBUG - 2011-05-12 17:13:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:13:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:13:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 17:13:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:13:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:13:03 --> Final output sent to browser
DEBUG - 2011-05-12 17:13:03 --> Total execution time: 0.0488
DEBUG - 2011-05-12 17:13:07 --> Config Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Hooks Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Utf8 Class Initialized
DEBUG - 2011-05-12 17:13:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-12 17:13:07 --> URI Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Router Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Output Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Input Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-12 17:13:07 --> Language Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Loader Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Helper loaded: url_helper
DEBUG - 2011-05-12 17:13:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-12 17:13:07 --> Database Driver Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Helper loaded: form_helper
DEBUG - 2011-05-12 17:13:07 --> Form Validation Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Upload Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Image Lib Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Model Class Initialized
DEBUG - 2011-05-12 17:13:07 --> Controller Class Initialized
DEBUG - 2011-05-12 17:13:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-12 17:13:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-12 17:13:07 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-12 17:13:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-12 17:13:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-12 17:13:07 --> Final output sent to browser
DEBUG - 2011-05-12 17:13:07 --> Total execution time: 0.0535
<file_sep>/application/logs/log-2011-02-08.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-08 00:26:54 --> Config Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:26:54 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:26:54 --> URI Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Router Class Initialized
DEBUG - 2011-02-08 00:26:54 --> No URI present. Default controller set.
DEBUG - 2011-02-08 00:26:54 --> Output Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Input Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:26:54 --> Language Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Loader Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:26:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:26:54 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:26:54 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:54 --> Controller Class Initialized
DEBUG - 2011-02-08 00:26:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:26:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:26:54 --> File loaded: application/views/home_view.php
DEBUG - 2011-02-08 00:26:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:26:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:26:54 --> Final output sent to browser
DEBUG - 2011-02-08 00:26:54 --> Total execution time: 0.4011
DEBUG - 2011-02-08 00:26:58 --> Config Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:26:58 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:26:58 --> URI Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Router Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Output Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Input Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:26:58 --> Language Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Loader Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:26:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:26:58 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:26:58 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:58 --> Controller Class Initialized
DEBUG - 2011-02-08 00:26:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:26:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:26:58 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:26:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:26:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:26:58 --> Final output sent to browser
DEBUG - 2011-02-08 00:26:58 --> Total execution time: 0.0842
DEBUG - 2011-02-08 00:26:59 --> Config Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:26:59 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:26:59 --> URI Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Router Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Output Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Input Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:26:59 --> Language Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Loader Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:26:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:26:59 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:26:59 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Model Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Controller Class Initialized
DEBUG - 2011-02-08 00:26:59 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:26:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:26:59 --> Final output sent to browser
DEBUG - 2011-02-08 00:26:59 --> Total execution time: 0.0374
DEBUG - 2011-02-08 00:27:03 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:03 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:03 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:03 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:03 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:03 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:03 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:03 --> Total execution time: 0.0292
DEBUG - 2011-02-08 00:27:08 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:08 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:08 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:08 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:08 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:08 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:08 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:08 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-08 00:27:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:08 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:08 --> Total execution time: 0.0395
DEBUG - 2011-02-08 00:27:09 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:09 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:09 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:09 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:09 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:09 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:09 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:09 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:09 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:09 --> Total execution time: 0.0194
DEBUG - 2011-02-08 00:27:13 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:13 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:13 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:13 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:13 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:27:13 --> Security Class Initialized
DEBUG - 2011-02-08 00:27:13 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:13 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:13 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:13 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:13 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:13 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:13 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:13 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:13 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:13 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:13 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-08 00:27:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:13 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:13 --> Total execution time: 0.0157
DEBUG - 2011-02-08 00:27:19 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:19 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:19 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:19 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:19 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:19 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:19 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-08 00:27:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:19 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:19 --> Total execution time: 0.0248
DEBUG - 2011-02-08 00:27:21 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:21 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:21 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:21 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:21 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:21 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:21 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:21 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:21 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:21 --> Total execution time: 0.0188
DEBUG - 2011-02-08 00:27:24 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:24 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:24 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:24 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:24 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:27:24 --> Security Class Initialized
DEBUG - 2011-02-08 00:27:24 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:24 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:24 --> XSS Filtering completed
DEBUG - 2011-02-08 00:27:24 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:24 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:24 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:24 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:24 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:24 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:24 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:24 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-08 00:27:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:24 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:24 --> Total execution time: 0.0225
DEBUG - 2011-02-08 00:27:27 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:27 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:27 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:27 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:27 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:27 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:27 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:27 --> Total execution time: 0.0151
DEBUG - 2011-02-08 00:27:32 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:32 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:32 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:32 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:32 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:32 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:32 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:32 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:32 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:32 --> Total execution time: 0.0223
DEBUG - 2011-02-08 00:27:41 --> Config Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Hooks Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Utf8 Class Initialized
DEBUG - 2011-02-08 00:27:41 --> UTF-8 Support Enabled
DEBUG - 2011-02-08 00:27:41 --> URI Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Router Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Output Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Input Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-08 00:27:41 --> Language Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Loader Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Helper loaded: url_helper
DEBUG - 2011-02-08 00:27:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-08 00:27:41 --> Database Driver Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Helper loaded: form_helper
DEBUG - 2011-02-08 00:27:41 --> Form Validation Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Model Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Controller Class Initialized
DEBUG - 2011-02-08 00:27:41 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-08 00:27:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-08 00:27:41 --> Final output sent to browser
DEBUG - 2011-02-08 00:27:41 --> Total execution time: 0.0172
<file_sep>/application/logs/log-2011-02-07.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-02-07 19:44:04 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:04 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:04 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:04 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:04 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:04 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:04 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:05 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:05 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:05 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 19:44:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:05 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:05 --> Total execution time: 0.2179
DEBUG - 2011-02-07 19:44:07 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:07 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:07 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:07 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:07 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:07 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 19:44:07 --> Security Class Initialized
DEBUG - 2011-02-07 19:44:07 --> XSS Filtering completed
DEBUG - 2011-02-07 19:44:07 --> XSS Filtering completed
DEBUG - 2011-02-07 19:44:07 --> XSS Filtering completed
DEBUG - 2011-02-07 19:44:07 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:07 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:07 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:07 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:07 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:08 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:08 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:08 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:08 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:08 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:08 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:08 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 19:44:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:08 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:08 --> Total execution time: 0.0115
DEBUG - 2011-02-07 19:44:10 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:10 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:10 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:10 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:10 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:10 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:10 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:10 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 19:44:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:10 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:10 --> Total execution time: 0.0311
DEBUG - 2011-02-07 19:44:11 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:11 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:11 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:11 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:11 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 19:44:11 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:11 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:11 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:11 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:11 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:11 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:11 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:11 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 19:44:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:11 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:11 --> Total execution time: 0.0120
DEBUG - 2011-02-07 19:44:17 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:17 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:17 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:17 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:17 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:17 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:17 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 19:44:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:17 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:17 --> Total execution time: 0.0138
DEBUG - 2011-02-07 19:44:19 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:19 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:19 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:19 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:19 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 19:44:19 --> Config Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Hooks Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Utf8 Class Initialized
DEBUG - 2011-02-07 19:44:19 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 19:44:19 --> URI Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Router Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Output Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Input Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 19:44:19 --> Language Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Loader Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Helper loaded: url_helper
DEBUG - 2011-02-07 19:44:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 19:44:19 --> Database Driver Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Helper loaded: form_helper
DEBUG - 2011-02-07 19:44:19 --> Form Validation Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Model Class Initialized
DEBUG - 2011-02-07 19:44:19 --> Controller Class Initialized
DEBUG - 2011-02-07 19:44:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 19:44:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 19:44:19 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 19:44:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 19:44:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 19:44:19 --> Final output sent to browser
DEBUG - 2011-02-07 19:44:19 --> Total execution time: 0.0118
DEBUG - 2011-02-07 20:03:26 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:26 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:26 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:26 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:26 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:26 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:26 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:03:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:03:26 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:03:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:03:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:03:26 --> Final output sent to browser
DEBUG - 2011-02-07 20:03:26 --> Total execution time: 0.0918
DEBUG - 2011-02-07 20:03:27 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:27 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:27 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:27 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:27 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:27 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:27 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:03:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:03:27 --> Final output sent to browser
DEBUG - 2011-02-07 20:03:27 --> Total execution time: 0.0272
DEBUG - 2011-02-07 20:03:35 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:35 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:35 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:35 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:35 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:35 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:35 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:03:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:03:35 --> Final output sent to browser
DEBUG - 2011-02-07 20:03:35 --> Total execution time: 0.0144
DEBUG - 2011-02-07 20:03:38 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:38 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:38 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:38 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:38 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:38 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:38 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:03:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:03:38 --> Final output sent to browser
DEBUG - 2011-02-07 20:03:38 --> Total execution time: 0.0132
DEBUG - 2011-02-07 20:03:55 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:55 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:55 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:55 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:55 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 20:03:55 --> Security Class Initialized
DEBUG - 2011-02-07 20:03:55 --> XSS Filtering completed
DEBUG - 2011-02-07 20:03:55 --> XSS Filtering completed
DEBUG - 2011-02-07 20:03:55 --> XSS Filtering completed
DEBUG - 2011-02-07 20:03:55 --> Config Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:03:55 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:03:55 --> URI Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Router Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Output Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Input Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:03:55 --> Language Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Loader Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:03:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:03:55 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:03:55 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Model Class Initialized
DEBUG - 2011-02-07 20:03:55 --> Controller Class Initialized
DEBUG - 2011-02-07 20:03:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:03:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:03:55 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 20:03:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:03:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:03:55 --> Final output sent to browser
DEBUG - 2011-02-07 20:03:55 --> Total execution time: 0.0126
DEBUG - 2011-02-07 20:05:17 --> Config Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:05:17 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:05:17 --> URI Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Router Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Output Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Input Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:05:17 --> Language Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Loader Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:05:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:05:17 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:05:17 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Model Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Model Class Initialized
DEBUG - 2011-02-07 20:05:17 --> Controller Class Initialized
DEBUG - 2011-02-07 20:05:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:05:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:05:17 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:05:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:05:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:05:17 --> Final output sent to browser
DEBUG - 2011-02-07 20:05:17 --> Total execution time: 0.1825
DEBUG - 2011-02-07 20:07:58 --> Config Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:07:58 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:07:58 --> URI Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Router Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Output Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Input Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:07:58 --> Language Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Loader Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:07:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:07:58 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:07:58 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Model Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Model Class Initialized
DEBUG - 2011-02-07 20:07:58 --> Controller Class Initialized
DEBUG - 2011-02-07 20:07:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:07:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:07:58 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 20:07:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:07:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:07:58 --> Final output sent to browser
DEBUG - 2011-02-07 20:07:58 --> Total execution time: 0.0137
DEBUG - 2011-02-07 20:08:03 --> Config Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:08:03 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:08:03 --> URI Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Router Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Output Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Input Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:08:03 --> Language Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Loader Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:08:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:08:03 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:08:03 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:03 --> Controller Class Initialized
DEBUG - 2011-02-07 20:08:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:08:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:08:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-02-07 20:08:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:08:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:08:03 --> Final output sent to browser
DEBUG - 2011-02-07 20:08:03 --> Total execution time: 0.0140
DEBUG - 2011-02-07 20:08:15 --> Config Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:08:15 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:08:15 --> URI Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Router Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Output Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Input Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:08:15 --> Language Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Loader Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:08:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:08:15 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:08:15 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Controller Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-02-07 20:08:15 --> Security Class Initialized
DEBUG - 2011-02-07 20:08:15 --> XSS Filtering completed
DEBUG - 2011-02-07 20:08:15 --> XSS Filtering completed
DEBUG - 2011-02-07 20:08:15 --> XSS Filtering completed
DEBUG - 2011-02-07 20:08:15 --> Config Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Hooks Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Utf8 Class Initialized
DEBUG - 2011-02-07 20:08:15 --> UTF-8 Support Enabled
DEBUG - 2011-02-07 20:08:15 --> URI Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Router Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Output Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Input Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-02-07 20:08:15 --> Language Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Loader Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Helper loaded: url_helper
DEBUG - 2011-02-07 20:08:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-02-07 20:08:15 --> Database Driver Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Helper loaded: form_helper
DEBUG - 2011-02-07 20:08:15 --> Form Validation Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Model Class Initialized
DEBUG - 2011-02-07 20:08:15 --> Controller Class Initialized
DEBUG - 2011-02-07 20:08:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-02-07 20:08:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-02-07 20:08:15 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-02-07 20:08:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-02-07 20:08:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-02-07 20:08:15 --> Final output sent to browser
DEBUG - 2011-02-07 20:08:15 --> Total execution time: 0.0209
<file_sep>/application/controllers/home.php
<?php
class home extends CI_Controller {
private $vet_dados = array();
function index() {
$this->vet_dados["topo"] = $this->parser->parse("topo_view", $this->vet_dados, TRUE);
$this->vet_dados["menu"] = $this->parser->parse("menu_view", $this->vet_dados, TRUE);
$this->vet_dados["conteudo"] = $this->parser->parse("home_view", $this->vet_dados, TRUE);
$this->vet_dados["rodape"] = $this->parser->parse("rodape_view", $this->vet_dados, TRUE);
$this->parser->parse("template_view", $this->vet_dados);
}
}
/* End of file home.php */
/* Location: ./system/application/controllers/home.php */<file_sep>/application/logs/log-2011-06-12.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-06-12 22:35:46 --> Config Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:35:46 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:35:46 --> URI Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Router Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Output Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Input Class Initialized
DEBUG - 2011-06-12 22:35:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:35:46 --> Language Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Loader Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:35:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:35:47 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:35:47 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Upload Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Model Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Model Class Initialized
DEBUG - 2011-06-12 22:35:47 --> Controller Class Initialized
DEBUG - 2011-06-12 22:35:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:35:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:35:47 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-12 22:35:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:35:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:35:47 --> Final output sent to browser
DEBUG - 2011-06-12 22:35:47 --> Total execution time: 0.4046
DEBUG - 2011-06-12 22:35:58 --> Config Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:35:58 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:35:58 --> URI Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Router Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Output Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Input Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:35:58 --> Language Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Loader Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:35:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:35:58 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:35:58 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Upload Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Model Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Model Class Initialized
DEBUG - 2011-06-12 22:35:58 --> Controller Class Initialized
DEBUG - 2011-06-12 22:35:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:35:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:35:58 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:35:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:35:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:35:58 --> Final output sent to browser
DEBUG - 2011-06-12 22:35:58 --> Total execution time: 0.0621
DEBUG - 2011-06-12 22:36:00 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:00 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:00 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:00 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:00 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:00 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:00 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:00 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:00 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:00 --> Total execution time: 0.0710
DEBUG - 2011-06-12 22:36:07 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:07 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:07 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:07 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:07 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:07 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:07 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:07 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-12 22:36:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:07 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:07 --> Total execution time: 0.0478
DEBUG - 2011-06-12 22:36:19 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:19 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:19 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:19 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:19 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:19 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:19 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:19 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:36:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:19 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:19 --> Total execution time: 0.0463
DEBUG - 2011-06-12 22:36:25 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:25 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:25 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:25 --> No URI present. Default controller set.
DEBUG - 2011-06-12 22:36:25 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:25 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:25 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:25 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:25 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-06-12 22:36:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:25 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:25 --> Total execution time: 0.0635
DEBUG - 2011-06-12 22:36:33 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:33 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:33 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:33 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:33 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:33 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:33 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:36:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:33 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:33 --> Total execution time: 0.0444
DEBUG - 2011-06-12 22:36:34 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:34 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:34 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:34 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:34 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:34 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:34 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:34 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:34 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:34 --> Total execution time: 0.0452
DEBUG - 2011-06-12 22:36:35 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:35 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:35 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:35 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:35 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:35 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:35 --> Total execution time: 0.0491
DEBUG - 2011-06-12 22:36:35 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:35 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:35 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:35 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:35 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:35 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:35 --> Total execution time: 0.0481
DEBUG - 2011-06-12 22:36:35 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:35 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:35 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:35 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:35 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:35 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:35 --> Total execution time: 0.0543
DEBUG - 2011-06-12 22:36:35 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:35 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:35 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:35 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:35 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:35 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:36 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:36 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:36 --> Total execution time: 0.0514
DEBUG - 2011-06-12 22:36:36 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:36 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:36 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:36 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:36 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:36 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:36 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:36 --> Total execution time: 0.0466
DEBUG - 2011-06-12 22:36:36 --> Config Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:36:36 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:36:36 --> URI Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Router Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Output Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Input Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:36:36 --> Language Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Loader Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:36:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:36:36 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:36:36 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Upload Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Model Class Initialized
DEBUG - 2011-06-12 22:36:36 --> Controller Class Initialized
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:36:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:36:36 --> Final output sent to browser
DEBUG - 2011-06-12 22:36:36 --> Total execution time: 0.0519
DEBUG - 2011-06-12 22:43:37 --> Config Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:43:37 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:43:37 --> URI Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Router Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Output Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Input Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:43:37 --> Language Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Loader Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:43:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:43:37 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:43:37 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Upload Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Controller Class Initialized
DEBUG - 2011-06-12 22:43:37 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/validacao_view.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:43:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:43:37 --> Final output sent to browser
DEBUG - 2011-06-12 22:43:37 --> Total execution time: 0.0794
DEBUG - 2011-06-12 22:43:48 --> Config Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:43:48 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:43:48 --> URI Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Router Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Output Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Input Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:43:48 --> Language Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Loader Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:43:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:43:48 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:43:48 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Upload Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:48 --> Controller Class Initialized
DEBUG - 2011-06-12 22:43:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:43:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:43:48 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:43:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:43:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:43:48 --> Final output sent to browser
DEBUG - 2011-06-12 22:43:48 --> Total execution time: 0.0484
DEBUG - 2011-06-12 22:43:49 --> Config Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:43:49 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:43:49 --> URI Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Router Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Output Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Input Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:43:49 --> Language Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Loader Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:43:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:43:49 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:43:49 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Upload Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Model Class Initialized
DEBUG - 2011-06-12 22:43:49 --> Controller Class Initialized
DEBUG - 2011-06-12 22:43:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:43:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:43:49 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 22:43:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:43:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:43:49 --> Final output sent to browser
DEBUG - 2011-06-12 22:43:49 --> Total execution time: 0.0534
DEBUG - 2011-06-12 22:50:50 --> Config Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:50:50 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:50:50 --> URI Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Router Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Output Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Input Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:50:50 --> Language Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Loader Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:50:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:50:50 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:50:50 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Upload Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:50 --> Controller Class Initialized
DEBUG - 2011-06-12 22:50:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:50:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:50:50 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-12 22:50:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:50:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:50:50 --> Final output sent to browser
DEBUG - 2011-06-12 22:50:50 --> Total execution time: 0.0508
DEBUG - 2011-06-12 22:50:57 --> Config Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:50:57 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:50:57 --> URI Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Router Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Output Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Input Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:50:57 --> Language Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Loader Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:50:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:50:57 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:50:57 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Upload Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Controller Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Config Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:50:57 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:50:57 --> URI Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Router Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Output Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Input Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:50:57 --> Language Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Loader Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:50:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:50:57 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:50:57 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Upload Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Model Class Initialized
DEBUG - 2011-06-12 22:50:57 --> Controller Class Initialized
DEBUG - 2011-06-12 22:50:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:50:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:50:57 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:50:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:50:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:50:57 --> Final output sent to browser
DEBUG - 2011-06-12 22:50:57 --> Total execution time: 0.0522
DEBUG - 2011-06-12 22:51:08 --> Config Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Hooks Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Utf8 Class Initialized
DEBUG - 2011-06-12 22:51:08 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 22:51:08 --> URI Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Router Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Output Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Input Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 22:51:08 --> Language Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Loader Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Helper loaded: url_helper
DEBUG - 2011-06-12 22:51:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 22:51:08 --> Database Driver Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Helper loaded: form_helper
DEBUG - 2011-06-12 22:51:08 --> Form Validation Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Upload Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Image Lib Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Model Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Model Class Initialized
DEBUG - 2011-06-12 22:51:08 --> Controller Class Initialized
DEBUG - 2011-06-12 22:51:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 22:51:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 22:51:08 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-06-12 22:51:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 22:51:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 22:51:08 --> Final output sent to browser
DEBUG - 2011-06-12 22:51:08 --> Total execution time: 0.0517
DEBUG - 2011-06-12 23:20:13 --> Config Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Hooks Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Utf8 Class Initialized
DEBUG - 2011-06-12 23:20:13 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 23:20:13 --> URI Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Router Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Output Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Input Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 23:20:13 --> Language Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Loader Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Helper loaded: url_helper
DEBUG - 2011-06-12 23:20:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 23:20:13 --> Database Driver Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Helper loaded: form_helper
DEBUG - 2011-06-12 23:20:13 --> Form Validation Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Upload Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Image Lib Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Model Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Model Class Initialized
DEBUG - 2011-06-12 23:20:13 --> Controller Class Initialized
DEBUG - 2011-06-12 23:20:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 23:20:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 23:20:13 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-06-12 23:20:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 23:20:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 23:20:13 --> Final output sent to browser
DEBUG - 2011-06-12 23:20:13 --> Total execution time: 0.0730
DEBUG - 2011-06-12 23:20:15 --> Config Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Hooks Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Utf8 Class Initialized
DEBUG - 2011-06-12 23:20:15 --> UTF-8 Support Enabled
DEBUG - 2011-06-12 23:20:15 --> URI Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Router Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Output Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Input Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-06-12 23:20:15 --> Language Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Loader Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Helper loaded: url_helper
DEBUG - 2011-06-12 23:20:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-06-12 23:20:15 --> Database Driver Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Helper loaded: form_helper
DEBUG - 2011-06-12 23:20:15 --> Form Validation Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Upload Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Image Lib Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Model Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Model Class Initialized
DEBUG - 2011-06-12 23:20:15 --> Controller Class Initialized
DEBUG - 2011-06-12 23:20:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-06-12 23:20:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-06-12 23:20:15 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-06-12 23:20:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-06-12 23:20:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-06-12 23:20:15 --> Final output sent to browser
DEBUG - 2011-06-12 23:20:15 --> Total execution time: 0.0545
<file_sep>/application/logs/log-2011-11-04.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-11-04 12:19:16 --> Config Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 12:19:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 12:19:16 --> URI Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Router Class Initialized
DEBUG - 2011-11-04 12:19:16 --> No URI present. Default controller set.
DEBUG - 2011-11-04 12:19:16 --> Output Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Input Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 12:19:16 --> Language Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Loader Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 12:19:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 12:19:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Helper loaded: form_helper
DEBUG - 2011-11-04 12:19:16 --> Form Validation Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Upload Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Image Lib Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Model Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Model Class Initialized
DEBUG - 2011-11-04 12:19:16 --> Controller Class Initialized
DEBUG - 2011-11-04 12:19:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 12:19:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 12:19:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 12:19:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 12:19:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 12:19:16 --> Final output sent to browser
DEBUG - 2011-11-04 12:19:16 --> Total execution time: 0.6630
DEBUG - 2011-11-04 12:20:46 --> Config Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Hooks Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Utf8 Class Initialized
DEBUG - 2011-11-04 12:20:46 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 12:20:46 --> URI Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Router Class Initialized
DEBUG - 2011-11-04 12:20:46 --> No URI present. Default controller set.
DEBUG - 2011-11-04 12:20:46 --> Output Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Input Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 12:20:46 --> Language Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Loader Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Helper loaded: url_helper
DEBUG - 2011-11-04 12:20:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 12:20:46 --> Database Driver Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Helper loaded: form_helper
DEBUG - 2011-11-04 12:20:46 --> Form Validation Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Upload Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Image Lib Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:46 --> Controller Class Initialized
DEBUG - 2011-11-04 12:20:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 12:20:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 12:20:46 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 12:20:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 12:20:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 12:20:46 --> Final output sent to browser
DEBUG - 2011-11-04 12:20:46 --> Total execution time: 0.4804
DEBUG - 2011-11-04 12:20:48 --> Config Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Hooks Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Utf8 Class Initialized
DEBUG - 2011-11-04 12:20:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 12:20:48 --> URI Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Router Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Output Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Input Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 12:20:48 --> Language Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Loader Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Helper loaded: url_helper
DEBUG - 2011-11-04 12:20:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 12:20:48 --> Database Driver Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Helper loaded: form_helper
DEBUG - 2011-11-04 12:20:48 --> Form Validation Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Upload Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Image Lib Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:48 --> Controller Class Initialized
DEBUG - 2011-11-04 12:20:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 12:20:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 12:20:49 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-11-04 12:20:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 12:20:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 12:20:49 --> Final output sent to browser
DEBUG - 2011-11-04 12:20:49 --> Total execution time: 0.3160
DEBUG - 2011-11-04 12:20:49 --> Config Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Hooks Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Utf8 Class Initialized
DEBUG - 2011-11-04 12:20:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 12:20:49 --> URI Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Router Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Output Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Input Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 12:20:49 --> Language Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Loader Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Helper loaded: url_helper
DEBUG - 2011-11-04 12:20:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 12:20:49 --> Database Driver Class Initialized
DEBUG - 2011-11-04 12:20:49 --> Helper loaded: form_helper
DEBUG - 2011-11-04 12:20:50 --> Form Validation Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Upload Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Image Lib Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Controller Class Initialized
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 12:20:50 --> Final output sent to browser
DEBUG - 2011-11-04 12:20:50 --> Total execution time: 0.4816
DEBUG - 2011-11-04 12:20:50 --> Config Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Hooks Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Utf8 Class Initialized
DEBUG - 2011-11-04 12:20:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 12:20:50 --> URI Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Router Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Output Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Input Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 12:20:50 --> Language Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Loader Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Helper loaded: url_helper
DEBUG - 2011-11-04 12:20:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 12:20:50 --> Database Driver Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Helper loaded: form_helper
DEBUG - 2011-11-04 12:20:50 --> Form Validation Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Upload Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Image Lib Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Model Class Initialized
DEBUG - 2011-11-04 12:20:50 --> Controller Class Initialized
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 12:20:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 12:20:51 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-11-04 12:20:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 12:20:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 12:20:51 --> Final output sent to browser
DEBUG - 2011-11-04 12:20:51 --> Total execution time: 0.3034
DEBUG - 2011-11-04 13:22:13 --> Config Class Initialized
DEBUG - 2011-11-04 13:22:13 --> Hooks Class Initialized
DEBUG - 2011-11-04 13:22:13 --> Utf8 Class Initialized
DEBUG - 2011-11-04 13:22:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 13:22:13 --> URI Class Initialized
DEBUG - 2011-11-04 13:22:13 --> Router Class Initialized
ERROR - 2011-11-04 13:22:13 --> 404 Page Not Found --> noticia
DEBUG - 2011-11-04 13:22:16 --> Config Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 13:22:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 13:22:16 --> URI Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Router Class Initialized
DEBUG - 2011-11-04 13:22:16 --> No URI present. Default controller set.
DEBUG - 2011-11-04 13:22:16 --> Output Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Input Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 13:22:16 --> Language Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Loader Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 13:22:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 13:22:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Helper loaded: form_helper
DEBUG - 2011-11-04 13:22:16 --> Form Validation Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Upload Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Image Lib Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Model Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Model Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Controller Class Initialized
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 13:22:16 --> Final output sent to browser
DEBUG - 2011-11-04 13:22:16 --> Total execution time: 0.0277
DEBUG - 2011-11-04 13:22:16 --> Config Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 13:22:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 13:22:16 --> URI Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Router Class Initialized
DEBUG - 2011-11-04 13:22:16 --> No URI present. Default controller set.
DEBUG - 2011-11-04 13:22:16 --> Output Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Input Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 13:22:16 --> Language Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Loader Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 13:22:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 13:22:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Helper loaded: form_helper
DEBUG - 2011-11-04 13:22:16 --> Form Validation Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Upload Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Image Lib Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Model Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Model Class Initialized
DEBUG - 2011-11-04 13:22:16 --> Controller Class Initialized
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 13:22:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 13:22:16 --> Final output sent to browser
DEBUG - 2011-11-04 13:22:16 --> Total execution time: 0.0228
DEBUG - 2011-11-04 21:19:51 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:51 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:51 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:51 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:51 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:51 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:51 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:51 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:53 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:53 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:53 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:53 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:53 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:53 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:53 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:53 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:53 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:53 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:53 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:53 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:53 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:53 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:53 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:53 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:53 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:54 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:54 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:54 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:54 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:54 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:54 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:55 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:55 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:55 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:55 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:55 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:55 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:55 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:55 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:55 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:55 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:55 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:59 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:59 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:59 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:59 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:59 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:59 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:59 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:59 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:59 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:59 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Session Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Config Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:19:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:19:59 --> URI Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Router Class Initialized
DEBUG - 2011-11-04 21:19:59 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:19:59 --> Output Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Input Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:19:59 --> Language Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Loader Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:19:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:19:59 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:19:59 --> Session Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Config Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:20:00 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:20:00 --> URI Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Router Class Initialized
DEBUG - 2011-11-04 21:20:00 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:20:00 --> Output Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Input Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:20:00 --> Language Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Loader Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:20:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:20:00 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:20:00 --> Session Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Config Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:21:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:21:25 --> URI Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Router Class Initialized
DEBUG - 2011-11-04 21:21:25 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:21:25 --> Output Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Input Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:21:25 --> Language Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Loader Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:21:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:21:25 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Session Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:21:25 --> A session cookie was not found.
DEBUG - 2011-11-04 21:21:25 --> Session routines successfully run
DEBUG - 2011-11-04 21:21:25 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:25 --> Controller Class Initialized
DEBUG - 2011-11-04 21:21:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:21:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:21:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:21:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:21:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:21:25 --> Final output sent to browser
DEBUG - 2011-11-04 21:21:25 --> Total execution time: 0.1144
DEBUG - 2011-11-04 21:21:27 --> Config Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:21:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:21:27 --> URI Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Router Class Initialized
DEBUG - 2011-11-04 21:21:27 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:21:27 --> Output Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Input Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:21:27 --> Language Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Loader Class Initialized
DEBUG - 2011-11-04 21:21:27 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:21:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:21:28 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:21:28 --> Session Class Initialized
DEBUG - 2011-11-04 21:21:28 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:21:28 --> Session routines successfully run
DEBUG - 2011-11-04 21:21:28 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:21:28 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:28 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:28 --> Controller Class Initialized
DEBUG - 2011-11-04 21:21:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:21:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:21:28 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:21:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:21:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:21:28 --> Final output sent to browser
DEBUG - 2011-11-04 21:21:28 --> Total execution time: 0.0426
DEBUG - 2011-11-04 21:21:43 --> Config Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:21:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:21:43 --> URI Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Router Class Initialized
DEBUG - 2011-11-04 21:21:43 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:21:43 --> Output Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Input Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:21:43 --> Language Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Loader Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:21:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:21:43 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Session Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:21:43 --> Session routines successfully run
DEBUG - 2011-11-04 21:21:43 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:43 --> Controller Class Initialized
DEBUG - 2011-11-04 21:21:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:21:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:21:43 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:21:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:21:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:21:43 --> Final output sent to browser
DEBUG - 2011-11-04 21:21:43 --> Total execution time: 0.0134
DEBUG - 2011-11-04 21:21:45 --> Config Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:21:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:21:45 --> URI Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Router Class Initialized
DEBUG - 2011-11-04 21:21:45 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:21:45 --> Output Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Input Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:21:45 --> Language Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Loader Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:21:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:21:45 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Session Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:21:45 --> Session routines successfully run
DEBUG - 2011-11-04 21:21:45 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Model Class Initialized
DEBUG - 2011-11-04 21:21:45 --> Controller Class Initialized
DEBUG - 2011-11-04 21:21:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:21:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:21:45 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:21:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:21:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:21:45 --> Final output sent to browser
DEBUG - 2011-11-04 21:21:45 --> Total execution time: 0.0146
DEBUG - 2011-11-04 21:22:03 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:03 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:03 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:22:03 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:03 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:03 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:03 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:03 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Controller Class Initialized
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:22:03 --> Final output sent to browser
DEBUG - 2011-11-04 21:22:03 --> Total execution time: 0.0160
DEBUG - 2011-11-04 21:22:03 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:03 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:03 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:22:03 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:03 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:03 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:03 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:03 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:03 --> Controller Class Initialized
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:22:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:22:03 --> Final output sent to browser
DEBUG - 2011-11-04 21:22:03 --> Total execution time: 0.0457
DEBUG - 2011-11-04 21:22:04 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:04 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:04 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:22:04 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:04 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:04 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:04 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:04 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Controller Class Initialized
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:22:04 --> Final output sent to browser
DEBUG - 2011-11-04 21:22:04 --> Total execution time: 0.0146
DEBUG - 2011-11-04 21:22:04 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:04 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:04 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:22:04 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:04 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:04 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:04 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:04 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Controller Class Initialized
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:22:04 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:22:04 --> Final output sent to browser
DEBUG - 2011-11-04 21:22:04 --> Total execution time: 0.0116
DEBUG - 2011-11-04 21:22:04 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:04 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:04 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:04 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:04 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:04 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:04 --> Controller Class Initialized
ERROR - 2011-11-04 21:22:04 --> 404 Page Not Found --> chat/mostrar_senha
DEBUG - 2011-11-04 21:22:30 --> Config Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:22:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:22:30 --> URI Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Router Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Output Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Input Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:22:30 --> Language Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Loader Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:22:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:22:30 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Session Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:22:30 --> Session garbage collection performed.
DEBUG - 2011-11-04 21:22:30 --> Session routines successfully run
DEBUG - 2011-11-04 21:22:30 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Model Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Controller Class Initialized
DEBUG - 2011-11-04 21:22:30 --> Final output sent to browser
DEBUG - 2011-11-04 21:22:30 --> Total execution time: 0.1023
DEBUG - 2011-11-04 21:23:25 --> Config Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:23:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:23:25 --> URI Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Router Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Output Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Input Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:23:25 --> Language Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Loader Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:23:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:23:25 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Session Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:23:25 --> Session routines successfully run
DEBUG - 2011-11-04 21:23:25 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Controller Class Initialized
DEBUG - 2011-11-04 21:23:25 --> Final output sent to browser
DEBUG - 2011-11-04 21:23:25 --> Total execution time: 0.0170
DEBUG - 2011-11-04 21:28:02 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:02 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:02 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:02 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:02 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:02 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:02 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:03 --> Controller Class Initialized
ERROR - 2011-11-04 21:28:03 --> 404 Page Not Found --> chat/mostrar_senh
DEBUG - 2011-11-04 21:28:04 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:04 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:04 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:04 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:04 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:04 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Controller Class Initialized
ERROR - 2011-11-04 21:28:04 --> 404 Page Not Found --> chat/m
DEBUG - 2011-11-04 21:28:04 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:04 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:04 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:04 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:04 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:04 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:04 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:04 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:04 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:04 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:04 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:05 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:05 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:05 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:05 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:05 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:05 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:05 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:10 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:10 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:10 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:10 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:10 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:10 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:10 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:10 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:10 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:10 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:10 --> Total execution time: 0.0156
DEBUG - 2011-11-04 21:28:10 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:11 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:11 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:11 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:11 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:11 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:11 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:11 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:11 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:11 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:11 --> Total execution time: 0.0648
DEBUG - 2011-11-04 21:28:13 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:13 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:13 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:13 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:13 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:13 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:13 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:13 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:13 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:13 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:13 --> Total execution time: 0.0118
DEBUG - 2011-11-04 21:28:14 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:14 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:14 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:14 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:14 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:14 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:14 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:14 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:14 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:14 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:14 --> Total execution time: 0.0125
DEBUG - 2011-11-04 21:28:20 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:20 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:20 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:20 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:20 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:20 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:20 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:20 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:20 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:20 --> Total execution time: 0.0160
DEBUG - 2011-11-04 21:28:20 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:20 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:20 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:20 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:20 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:20 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:20 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:20 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:20 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:20 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:20 --> Total execution time: 0.0129
DEBUG - 2011-11-04 21:28:21 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:21 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:21 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:21 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:21 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:21 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:21 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:21 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:21 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:21 --> Total execution time: 0.0134
DEBUG - 2011-11-04 21:28:21 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:21 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:21 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:21 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:21 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:21 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:21 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:21 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:21 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:21 --> Total execution time: 0.0118
DEBUG - 2011-11-04 21:28:21 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:21 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:21 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:21 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:21 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:21 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:21 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:21 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:21 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:21 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:21 --> Total execution time: 0.0546
DEBUG - 2011-11-04 21:28:23 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:23 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:23 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:24 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:24 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:24 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:24 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:24 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:24 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:24 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:24 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:24 --> Total execution time: 0.3459
DEBUG - 2011-11-04 21:28:24 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:24 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:24 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:24 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:24 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:24 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:24 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:24 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:24 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:24 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:24 --> Total execution time: 0.0097
DEBUG - 2011-11-04 21:28:25 --> Config Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:28:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:28:25 --> URI Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Router Class Initialized
DEBUG - 2011-11-04 21:28:25 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:28:25 --> Output Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Input Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:28:25 --> Language Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Loader Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:28:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:28:25 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Session Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:28:25 --> Session routines successfully run
DEBUG - 2011-11-04 21:28:25 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:28:25 --> Controller Class Initialized
DEBUG - 2011-11-04 21:28:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:28:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:28:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:28:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:28:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:28:25 --> Final output sent to browser
DEBUG - 2011-11-04 21:28:25 --> Total execution time: 0.2957
DEBUG - 2011-11-04 21:29:16 --> Config Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:29:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:29:16 --> URI Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Router Class Initialized
DEBUG - 2011-11-04 21:29:16 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:29:16 --> Output Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Input Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:29:16 --> Language Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Loader Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:29:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:29:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Session Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:29:16 --> Session routines successfully run
DEBUG - 2011-11-04 21:29:16 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Model Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Model Class Initialized
DEBUG - 2011-11-04 21:29:16 --> Controller Class Initialized
DEBUG - 2011-11-04 21:29:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:29:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:29:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:29:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:29:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:29:16 --> Final output sent to browser
DEBUG - 2011-11-04 21:29:16 --> Total execution time: 0.2059
DEBUG - 2011-11-04 21:37:40 --> Config Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:37:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:37:40 --> URI Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Router Class Initialized
DEBUG - 2011-11-04 21:37:40 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:37:40 --> Output Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Input Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:37:40 --> Language Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Loader Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:37:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:37:40 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Session Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:37:40 --> Session routines successfully run
DEBUG - 2011-11-04 21:37:40 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:37:40 --> Controller Class Initialized
DEBUG - 2011-11-04 21:37:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:37:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:37:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:37:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:37:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:37:40 --> Final output sent to browser
DEBUG - 2011-11-04 21:37:40 --> Total execution time: 0.0262
DEBUG - 2011-11-04 21:38:40 --> Config Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:38:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:38:40 --> URI Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Router Class Initialized
DEBUG - 2011-11-04 21:38:40 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:38:40 --> Output Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Input Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:38:40 --> Language Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Loader Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:38:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:38:40 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Session Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:38:40 --> Session routines successfully run
DEBUG - 2011-11-04 21:38:40 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Controller Class Initialized
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:38:40 --> Final output sent to browser
DEBUG - 2011-11-04 21:38:40 --> Total execution time: 0.0155
DEBUG - 2011-11-04 21:38:40 --> Config Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:38:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:38:40 --> URI Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Router Class Initialized
DEBUG - 2011-11-04 21:38:40 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:38:40 --> Output Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Input Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:38:40 --> Language Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Loader Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:38:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:38:40 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Session Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:38:40 --> Session routines successfully run
DEBUG - 2011-11-04 21:38:40 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:38:40 --> Controller Class Initialized
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:38:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:38:40 --> Final output sent to browser
DEBUG - 2011-11-04 21:38:40 --> Total execution time: 0.0139
DEBUG - 2011-11-04 21:39:08 --> Config Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:39:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:39:08 --> URI Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Router Class Initialized
DEBUG - 2011-11-04 21:39:08 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:39:08 --> Output Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Input Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:39:08 --> Language Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Loader Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:39:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:39:08 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Session Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:39:08 --> Session routines successfully run
DEBUG - 2011-11-04 21:39:08 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:39:08 --> Controller Class Initialized
DEBUG - 2011-11-04 21:39:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:39:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:39:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:39:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:39:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:39:08 --> Final output sent to browser
DEBUG - 2011-11-04 21:39:08 --> Total execution time: 0.0176
DEBUG - 2011-11-04 21:39:53 --> Config Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:39:53 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:39:53 --> URI Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Router Class Initialized
DEBUG - 2011-11-04 21:39:53 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:39:53 --> Output Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Input Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:39:53 --> Language Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Loader Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:39:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:39:53 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Session Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:39:53 --> Session routines successfully run
DEBUG - 2011-11-04 21:39:53 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Model Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Model Class Initialized
DEBUG - 2011-11-04 21:39:53 --> Controller Class Initialized
DEBUG - 2011-11-04 21:39:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:39:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:39:53 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:39:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:39:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:39:53 --> Final output sent to browser
DEBUG - 2011-11-04 21:39:53 --> Total execution time: 0.0251
DEBUG - 2011-11-04 21:40:16 --> Config Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:40:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:40:16 --> URI Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Router Class Initialized
DEBUG - 2011-11-04 21:40:16 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:40:16 --> Output Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Input Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:40:16 --> Language Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Loader Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:40:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:40:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Session Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:40:16 --> Session garbage collection performed.
DEBUG - 2011-11-04 21:40:16 --> Session routines successfully run
DEBUG - 2011-11-04 21:40:16 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Model Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Model Class Initialized
DEBUG - 2011-11-04 21:40:16 --> Controller Class Initialized
DEBUG - 2011-11-04 21:40:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:40:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:40:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:40:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:40:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:40:16 --> Final output sent to browser
DEBUG - 2011-11-04 21:40:16 --> Total execution time: 0.0154
DEBUG - 2011-11-04 21:40:36 --> Config Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:40:36 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:40:36 --> URI Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Router Class Initialized
DEBUG - 2011-11-04 21:40:36 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:40:36 --> Output Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Input Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:40:36 --> Language Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Loader Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:40:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:40:36 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Session Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:40:36 --> Session routines successfully run
DEBUG - 2011-11-04 21:40:36 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Model Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Model Class Initialized
DEBUG - 2011-11-04 21:40:36 --> Controller Class Initialized
DEBUG - 2011-11-04 21:40:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:40:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:40:36 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:40:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:40:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:40:36 --> Final output sent to browser
DEBUG - 2011-11-04 21:40:36 --> Total execution time: 0.0162
DEBUG - 2011-11-04 21:41:08 --> Config Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:41:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:41:08 --> URI Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Router Class Initialized
DEBUG - 2011-11-04 21:41:08 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:41:08 --> Output Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Input Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:41:08 --> Language Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Loader Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:41:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:41:08 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Session Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:41:08 --> Session routines successfully run
DEBUG - 2011-11-04 21:41:08 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:41:08 --> Controller Class Initialized
DEBUG - 2011-11-04 21:41:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:41:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:41:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:41:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:41:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:41:08 --> Final output sent to browser
DEBUG - 2011-11-04 21:41:08 --> Total execution time: 0.0163
DEBUG - 2011-11-04 21:42:03 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:03 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:03 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:03 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:03 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:03 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:03 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:03 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:03 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:03 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:03 --> Total execution time: 0.0119
DEBUG - 2011-11-04 21:42:10 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:10 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:10 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:10 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:10 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:10 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:10 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:10 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:10 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:10 --> Total execution time: 0.0155
DEBUG - 2011-11-04 21:42:10 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:10 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:10 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:10 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:10 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:10 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:10 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:10 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:10 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:10 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:10 --> Total execution time: 0.0137
DEBUG - 2011-11-04 21:42:20 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:20 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:20 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:20 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:20 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:20 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:20 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:20 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:20 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:20 --> Total execution time: 0.0155
DEBUG - 2011-11-04 21:42:20 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:20 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:20 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:20 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:20 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:20 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:20 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:20 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:20 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:20 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:20 --> Total execution time: 0.0152
DEBUG - 2011-11-04 21:42:45 --> Config Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:42:45 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:42:45 --> URI Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Router Class Initialized
DEBUG - 2011-11-04 21:42:45 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:42:45 --> Output Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Input Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:42:45 --> Language Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Loader Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:42:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:42:45 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Session Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:42:45 --> Session routines successfully run
DEBUG - 2011-11-04 21:42:45 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Model Class Initialized
DEBUG - 2011-11-04 21:42:45 --> Controller Class Initialized
DEBUG - 2011-11-04 21:42:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:42:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:42:45 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:42:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:42:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:42:45 --> Final output sent to browser
DEBUG - 2011-11-04 21:42:45 --> Total execution time: 0.0233
DEBUG - 2011-11-04 21:43:12 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:12 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:12 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:43:12 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:12 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:12 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:12 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:12 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:12 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:43:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:43:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:43:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:43:12 --> Final output sent to browser
DEBUG - 2011-11-04 21:43:12 --> Total execution time: 0.0157
DEBUG - 2011-11-04 21:43:55 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:55 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:55 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:43:55 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:55 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:55 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:55 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:55 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:43:55 --> Final output sent to browser
DEBUG - 2011-11-04 21:43:55 --> Total execution time: 0.0178
DEBUG - 2011-11-04 21:43:55 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:55 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:55 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:43:55 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:55 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:55 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:55 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:55 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:55 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:43:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:43:55 --> Final output sent to browser
DEBUG - 2011-11-04 21:43:55 --> Total execution time: 0.0151
DEBUG - 2011-11-04 21:43:56 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:56 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:56 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:43:56 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:56 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:56 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:56 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:56 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:43:56 --> Final output sent to browser
DEBUG - 2011-11-04 21:43:56 --> Total execution time: 0.0126
DEBUG - 2011-11-04 21:43:56 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:56 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:56 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:56 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:43:56 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:56 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:56 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:56 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:56 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:56 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:43:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:43:56 --> Final output sent to browser
DEBUG - 2011-11-04 21:43:56 --> Total execution time: 0.0144
DEBUG - 2011-11-04 21:43:57 --> Config Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:43:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:43:57 --> URI Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Router Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Output Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Input Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:43:57 --> Language Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Loader Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:43:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:43:57 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Session Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:43:57 --> Session routines successfully run
DEBUG - 2011-11-04 21:43:57 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Model Class Initialized
DEBUG - 2011-11-04 21:43:57 --> Controller Class Initialized
DEBUG - 2011-11-04 21:43:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:43:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:44:05 --> Config Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:44:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:44:05 --> URI Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Router Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Output Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Input Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:44:05 --> Language Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Loader Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:44:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:44:05 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Session Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:44:05 --> Session routines successfully run
DEBUG - 2011-11-04 21:44:05 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:44:05 --> Controller Class Initialized
DEBUG - 2011-11-04 21:44:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:44:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:44:33 --> Config Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:44:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:44:33 --> URI Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Router Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Output Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Input Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:44:33 --> Language Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Loader Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:44:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:44:33 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Session Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:44:33 --> Session routines successfully run
DEBUG - 2011-11-04 21:44:33 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Model Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Model Class Initialized
DEBUG - 2011-11-04 21:44:33 --> Controller Class Initialized
DEBUG - 2011-11-04 21:44:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:44:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:45:54 --> Config Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:45:54 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:45:54 --> URI Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Router Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Output Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Input Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:45:54 --> Language Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Loader Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:45:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:45:54 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Session Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:45:54 --> Session routines successfully run
DEBUG - 2011-11-04 21:45:54 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Model Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Model Class Initialized
DEBUG - 2011-11-04 21:45:54 --> Controller Class Initialized
DEBUG - 2011-11-04 21:45:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:45:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:45:55 --> Config Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:45:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:45:55 --> URI Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Router Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Output Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Input Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:45:55 --> Language Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Loader Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:45:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:45:55 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Session Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:45:55 --> Session routines successfully run
DEBUG - 2011-11-04 21:45:55 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Model Class Initialized
DEBUG - 2011-11-04 21:45:55 --> Controller Class Initialized
DEBUG - 2011-11-04 21:45:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:45:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:46:24 --> Config Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:46:24 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:46:24 --> URI Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Router Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Output Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Input Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:46:24 --> Language Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Loader Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:46:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:46:24 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Session Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:46:24 --> Session routines successfully run
DEBUG - 2011-11-04 21:46:24 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:24 --> Controller Class Initialized
DEBUG - 2011-11-04 21:46:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:46:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:46:25 --> Config Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:46:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:46:25 --> URI Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Router Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Output Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Input Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:46:25 --> Language Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Loader Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:46:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:46:25 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Session Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:46:25 --> Session routines successfully run
DEBUG - 2011-11-04 21:46:25 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:25 --> Controller Class Initialized
DEBUG - 2011-11-04 21:46:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:46:25 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:46:27 --> Config Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:46:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:46:27 --> URI Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Router Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Output Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Input Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:46:27 --> Language Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Loader Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:46:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:46:27 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Session Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:46:27 --> Session routines successfully run
DEBUG - 2011-11-04 21:46:27 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Model Class Initialized
DEBUG - 2011-11-04 21:46:27 --> Controller Class Initialized
DEBUG - 2011-11-04 21:46:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:46:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:47:39 --> Config Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:47:39 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:47:39 --> URI Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Router Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Output Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Input Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:47:39 --> Language Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Loader Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:47:39 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:47:39 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Session Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:47:39 --> Session routines successfully run
DEBUG - 2011-11-04 21:47:39 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Model Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Model Class Initialized
DEBUG - 2011-11-04 21:47:39 --> Controller Class Initialized
DEBUG - 2011-11-04 21:47:39 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:47:39 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:47:39 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-04 21:47:39 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:47:39 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:47:39 --> Final output sent to browser
DEBUG - 2011-11-04 21:47:39 --> Total execution time: 0.0158
DEBUG - 2011-11-04 21:48:40 --> Config Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:48:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:48:40 --> URI Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Router Class Initialized
DEBUG - 2011-11-04 21:48:40 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:48:40 --> Output Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Input Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:48:40 --> Language Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Loader Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:48:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:48:40 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Session Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:48:40 --> Session routines successfully run
DEBUG - 2011-11-04 21:48:40 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:40 --> Controller Class Initialized
DEBUG - 2011-11-04 21:48:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:48:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:48:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:48:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:48:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:48:40 --> Final output sent to browser
DEBUG - 2011-11-04 21:48:40 --> Total execution time: 0.0162
DEBUG - 2011-11-04 21:48:59 --> Config Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:48:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:48:59 --> URI Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Router Class Initialized
DEBUG - 2011-11-04 21:48:59 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:48:59 --> Output Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Input Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:48:59 --> Language Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Loader Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:48:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:48:59 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Session Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:48:59 --> Session routines successfully run
DEBUG - 2011-11-04 21:48:59 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Controller Class Initialized
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:48:59 --> Final output sent to browser
DEBUG - 2011-11-04 21:48:59 --> Total execution time: 0.0153
DEBUG - 2011-11-04 21:48:59 --> Config Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:48:59 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:48:59 --> URI Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Router Class Initialized
DEBUG - 2011-11-04 21:48:59 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:48:59 --> Output Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Input Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:48:59 --> Language Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Loader Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:48:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:48:59 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Session Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:48:59 --> Session routines successfully run
DEBUG - 2011-11-04 21:48:59 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Model Class Initialized
DEBUG - 2011-11-04 21:48:59 --> Controller Class Initialized
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:48:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:48:59 --> Final output sent to browser
DEBUG - 2011-11-04 21:48:59 --> Total execution time: 0.0148
DEBUG - 2011-11-04 21:49:05 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:05 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:05 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:05 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:05 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:05 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:05 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:05 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:05 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:05 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:05 --> Total execution time: 0.0201
DEBUG - 2011-11-04 21:49:06 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:06 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:06 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:06 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:06 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:06 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:06 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:06 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:06 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:06 --> Total execution time: 0.0138
DEBUG - 2011-11-04 21:49:06 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:06 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:06 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:06 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:06 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:06 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:06 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:06 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:06 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:06 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:06 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:06 --> Total execution time: 0.0137
DEBUG - 2011-11-04 21:49:08 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:08 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:08 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:08 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:08 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:08 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:08 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:08 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:08 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:08 --> Total execution time: 0.0130
DEBUG - 2011-11-04 21:49:08 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:08 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:08 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:08 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:08 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:08 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:08 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:08 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:08 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:08 --> Total execution time: 0.0250
DEBUG - 2011-11-04 21:49:08 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:08 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:08 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:08 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:08 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:08 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:08 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:08 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:08 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:08 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:08 --> Total execution time: 0.0126
DEBUG - 2011-11-04 21:49:09 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:09 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:09 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:09 --> No URI present. Default controller set.
DEBUG - 2011-11-04 21:49:09 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:09 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:09 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:09 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:09 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:09 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:09 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:49:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:09 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:09 --> Total execution time: 0.0137
DEBUG - 2011-11-04 21:49:10 --> Config Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:49:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:49:10 --> URI Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Router Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Output Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Input Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:49:10 --> Language Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Loader Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:49:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:49:10 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Session Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:49:10 --> Session routines successfully run
DEBUG - 2011-11-04 21:49:10 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Model Class Initialized
DEBUG - 2011-11-04 21:49:10 --> Controller Class Initialized
DEBUG - 2011-11-04 21:49:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:49:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:49:10 --> File loaded: application/views/chat/chat_view.php
DEBUG - 2011-11-04 21:49:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:49:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:49:10 --> Final output sent to browser
DEBUG - 2011-11-04 21:49:10 --> Total execution time: 0.0122
DEBUG - 2011-11-04 21:53:14 --> Config Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:53:14 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:53:14 --> URI Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Router Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Output Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Input Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:53:14 --> Language Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Loader Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:53:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:53:14 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Session Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:53:14 --> Session routines successfully run
DEBUG - 2011-11-04 21:53:14 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Model Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Model Class Initialized
DEBUG - 2011-11-04 21:53:14 --> Controller Class Initialized
DEBUG - 2011-11-04 21:53:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:53:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:53:14 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:53:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:53:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:53:14 --> Final output sent to browser
DEBUG - 2011-11-04 21:53:14 --> Total execution time: 0.0138
DEBUG - 2011-11-04 21:58:19 --> Config Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Hooks Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Utf8 Class Initialized
DEBUG - 2011-11-04 21:58:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 21:58:19 --> URI Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Router Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Output Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Input Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 21:58:19 --> Language Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Loader Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Helper loaded: url_helper
DEBUG - 2011-11-04 21:58:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 21:58:19 --> Database Driver Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Session Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Helper loaded: string_helper
DEBUG - 2011-11-04 21:58:19 --> Session routines successfully run
DEBUG - 2011-11-04 21:58:19 --> Encrypt Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Model Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Model Class Initialized
DEBUG - 2011-11-04 21:58:19 --> Controller Class Initialized
DEBUG - 2011-11-04 21:58:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 21:58:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 21:58:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 21:58:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 21:58:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 21:58:19 --> Final output sent to browser
DEBUG - 2011-11-04 21:58:19 --> Total execution time: 0.0176
DEBUG - 2011-11-04 22:03:50 --> Config Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:03:50 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:03:50 --> URI Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Router Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Output Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Input Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:03:50 --> Language Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Loader Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:03:50 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:03:50 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Session Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:03:50 --> Session routines successfully run
DEBUG - 2011-11-04 22:03:50 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Model Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Model Class Initialized
DEBUG - 2011-11-04 22:03:50 --> Controller Class Initialized
DEBUG - 2011-11-04 22:03:50 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:03:50 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:03:50 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:03:50 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:03:50 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:03:50 --> Final output sent to browser
DEBUG - 2011-11-04 22:03:50 --> Total execution time: 0.0175
DEBUG - 2011-11-04 22:04:13 --> Config Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:04:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:04:13 --> URI Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Router Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Output Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Input Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:04:13 --> Language Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Loader Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:04:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:04:13 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Session Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:04:13 --> Session routines successfully run
DEBUG - 2011-11-04 22:04:13 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Model Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Model Class Initialized
DEBUG - 2011-11-04 22:04:13 --> Controller Class Initialized
DEBUG - 2011-11-04 22:04:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:04:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:04:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:04:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:04:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:04:13 --> Final output sent to browser
DEBUG - 2011-11-04 22:04:13 --> Total execution time: 0.0185
DEBUG - 2011-11-04 22:05:11 --> Config Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:05:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:05:11 --> URI Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Router Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Output Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Input Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:05:11 --> Language Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Loader Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:05:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:05:11 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Session Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:05:11 --> Session routines successfully run
DEBUG - 2011-11-04 22:05:11 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:11 --> Controller Class Initialized
DEBUG - 2011-11-04 22:05:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:05:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:05:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:05:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:05:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:05:11 --> Final output sent to browser
DEBUG - 2011-11-04 22:05:11 --> Total execution time: 0.0459
DEBUG - 2011-11-04 22:05:19 --> Config Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:05:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:05:19 --> URI Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Router Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Output Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Input Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:05:19 --> Language Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Loader Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:05:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:05:19 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Session Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:05:19 --> Session routines successfully run
DEBUG - 2011-11-04 22:05:19 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:19 --> Controller Class Initialized
DEBUG - 2011-11-04 22:05:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:05:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:05:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:05:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:05:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:05:19 --> Final output sent to browser
DEBUG - 2011-11-04 22:05:19 --> Total execution time: 0.0145
DEBUG - 2011-11-04 22:05:44 --> Config Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:05:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:05:44 --> URI Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Router Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Output Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Input Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:05:44 --> Language Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Loader Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:05:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:05:44 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Session Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:05:44 --> Session routines successfully run
DEBUG - 2011-11-04 22:05:44 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Model Class Initialized
DEBUG - 2011-11-04 22:05:44 --> Controller Class Initialized
DEBUG - 2011-11-04 22:05:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:05:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:05:44 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:05:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:05:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:05:44 --> Final output sent to browser
DEBUG - 2011-11-04 22:05:44 --> Total execution time: 0.0147
DEBUG - 2011-11-04 22:06:16 --> Config Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:06:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:06:16 --> URI Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Router Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Output Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Input Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:06:16 --> Language Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Loader Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:06:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:06:16 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Session Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:06:16 --> Session routines successfully run
DEBUG - 2011-11-04 22:06:16 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:16 --> Controller Class Initialized
DEBUG - 2011-11-04 22:06:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:06:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:06:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:06:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:06:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:06:16 --> Final output sent to browser
DEBUG - 2011-11-04 22:06:16 --> Total execution time: 0.0161
DEBUG - 2011-11-04 22:06:27 --> Config Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:06:27 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:06:27 --> URI Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Router Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Output Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Input Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:06:27 --> Language Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Loader Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:06:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:06:27 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Session Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:06:27 --> Session routines successfully run
DEBUG - 2011-11-04 22:06:27 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:27 --> Controller Class Initialized
DEBUG - 2011-11-04 22:06:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:06:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:06:27 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:06:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:06:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:06:27 --> Final output sent to browser
DEBUG - 2011-11-04 22:06:27 --> Total execution time: 0.0136
DEBUG - 2011-11-04 22:06:28 --> Config Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:06:28 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:06:28 --> URI Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Router Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Output Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Input Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:06:28 --> Language Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Loader Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:06:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:06:28 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Session Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:06:28 --> Session routines successfully run
DEBUG - 2011-11-04 22:06:28 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:28 --> Controller Class Initialized
DEBUG - 2011-11-04 22:06:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:06:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:06:28 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:06:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:06:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:06:28 --> Final output sent to browser
DEBUG - 2011-11-04 22:06:28 --> Total execution time: 0.0142
DEBUG - 2011-11-04 22:06:41 --> Config Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:06:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:06:41 --> URI Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Router Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Output Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Input Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:06:41 --> Language Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Loader Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:06:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:06:41 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Session Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:06:41 --> Session routines successfully run
DEBUG - 2011-11-04 22:06:41 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Model Class Initialized
DEBUG - 2011-11-04 22:06:41 --> Controller Class Initialized
DEBUG - 2011-11-04 22:06:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:06:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:06:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:06:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:06:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:06:41 --> Final output sent to browser
DEBUG - 2011-11-04 22:06:41 --> Total execution time: 0.0131
DEBUG - 2011-11-04 22:08:15 --> Config Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Hooks Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Utf8 Class Initialized
DEBUG - 2011-11-04 22:08:15 --> UTF-8 Support Enabled
DEBUG - 2011-11-04 22:08:15 --> URI Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Router Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Output Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Input Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-04 22:08:15 --> Language Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Loader Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Helper loaded: url_helper
DEBUG - 2011-11-04 22:08:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-04 22:08:15 --> Database Driver Class Initialized
DEBUG - 2011-11-04 22:08:15 --> Session Class Initialized
DEBUG - 2011-11-04 22:08:16 --> Helper loaded: string_helper
DEBUG - 2011-11-04 22:08:16 --> Session routines successfully run
DEBUG - 2011-11-04 22:08:16 --> Encrypt Class Initialized
DEBUG - 2011-11-04 22:08:16 --> Model Class Initialized
DEBUG - 2011-11-04 22:08:16 --> Model Class Initialized
DEBUG - 2011-11-04 22:08:16 --> Controller Class Initialized
DEBUG - 2011-11-04 22:08:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-04 22:08:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-11-04 22:08:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-04 22:08:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-04 22:08:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-04 22:08:16 --> Final output sent to browser
DEBUG - 2011-11-04 22:08:16 --> Total execution time: 0.0143
<file_sep>/application/views/template_view.php
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>FrameWork CodeIgniter PHP - Artigo Imasters</title>
<link href="<?=base_url()?>css/estilo.css" type="text/css" rel="stylesheet">
<script src="<?=base_url()?>js/jquery-1.7.js"></script>
<script type="text/javascript">
$(document).ready(function() {
if ($('#mensagens')) {
setInterval(function() {
buscar();
users();
}, 5000);
$('#texto_msg').keypress(function(event) {
if (event.which == 13) {
enviar();
}
});
}
});
function buscar() {
$.ajax({
url: "<?=base_url()?>index.php/chat/get_log/",
type: "POST",
cache: false,
success: function(data) {
$('#mensagens').html(data);
}
});
}
function users() {
$.ajax({
url: "<?=base_url()?>index.php/chat/get_user/",
type: "POST",
cache: false,
success: function(data) {
$('#users').html(data);
}
});
}
function enviar() {
if ($('#texto_msg').val()) {
$.ajax({
url: "<?=base_url()?>index.php/chat/enviar/",
type: "POST",
data: {texto_msg : $('#texto_msg').val()},
cache: false,
success: function(data) {
$('#texto_msg').val('');
$('#texto_msg').focus();
buscar();
}
});
}
}
function logoff() {
alert('teste 2');
}
</script>
</head>
<body>
<div id="site">
<div id="topo">{topo}</div>
<div class="clear"></div>
<div id="menu">{menu}</div>
<div id="conteudo">{conteudo}</div>
<div class="clear"></div>
<div id="rodape">{rodape}</div>
</div>
</body>
</html>
<file_sep>/application/logs/log-2011-11-06.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-11-06 22:05:32 --> Config Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:05:32 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:05:32 --> URI Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Router Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Output Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Input Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:05:32 --> Language Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Loader Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:05:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:05:32 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Session Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:05:32 --> A session cookie was not found.
DEBUG - 2011-11-06 22:05:32 --> Session routines successfully run
DEBUG - 2011-11-06 22:05:32 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:32 --> Controller Class Initialized
DEBUG - 2011-11-06 22:05:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:05:32 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 22:05:48 --> Config Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:05:48 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:05:48 --> URI Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Router Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Output Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Input Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:05:48 --> Language Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Loader Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:05:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:05:48 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Session Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:05:48 --> Session routines successfully run
DEBUG - 2011-11-06 22:05:48 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:48 --> Controller Class Initialized
DEBUG - 2011-11-06 22:05:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:05:48 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 22:05:48 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:05:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:05:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:05:48 --> Final output sent to browser
DEBUG - 2011-11-06 22:05:48 --> Total execution time: 0.0628
DEBUG - 2011-11-06 22:05:57 --> Config Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:05:57 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:05:57 --> URI Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Router Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Output Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Input Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:05:57 --> Language Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Loader Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:05:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:05:57 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Session Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:05:57 --> Session garbage collection performed.
DEBUG - 2011-11-06 22:05:57 --> Session routines successfully run
DEBUG - 2011-11-06 22:05:57 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Model Class Initialized
DEBUG - 2011-11-06 22:05:57 --> Controller Class Initialized
DEBUG - 2011-11-06 22:05:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:05:57 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 22:06:20 --> Config Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:06:20 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:06:20 --> URI Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Router Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Output Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Input Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:06:20 --> Language Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Loader Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:06:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:06:20 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Session Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:06:20 --> Session routines successfully run
DEBUG - 2011-11-06 22:06:20 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Model Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Model Class Initialized
DEBUG - 2011-11-06 22:06:20 --> Controller Class Initialized
DEBUG - 2011-11-06 22:06:20 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:06:20 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 22:06:20 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:06:20 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:06:20 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:06:20 --> Final output sent to browser
DEBUG - 2011-11-06 22:06:20 --> Total execution time: 0.0375
DEBUG - 2011-11-06 22:11:55 --> Config Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:11:55 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:11:55 --> URI Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Router Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Output Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Input Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:11:55 --> Language Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Loader Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:11:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:11:55 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Session Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:11:55 --> Session routines successfully run
DEBUG - 2011-11-06 22:11:55 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Model Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Model Class Initialized
DEBUG - 2011-11-06 22:11:55 --> Controller Class Initialized
DEBUG - 2011-11-06 22:11:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:11:55 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 22:11:55 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:11:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:11:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:11:55 --> Final output sent to browser
DEBUG - 2011-11-06 22:11:55 --> Total execution time: 0.0609
DEBUG - 2011-11-06 22:17:17 --> Config Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:17:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:17:17 --> URI Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Router Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Output Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Input Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:17:17 --> Language Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Loader Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:17:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:17:17 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Session Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:17:17 --> Session routines successfully run
DEBUG - 2011-11-06 22:17:17 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Model Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Model Class Initialized
DEBUG - 2011-11-06 22:17:17 --> Controller Class Initialized
DEBUG - 2011-11-06 22:17:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:17:17 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:17:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:17:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:17:17 --> Final output sent to browser
DEBUG - 2011-11-06 22:17:17 --> Total execution time: 0.0367
DEBUG - 2011-11-06 22:18:10 --> Config Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:18:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:18:10 --> URI Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Router Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Output Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Input Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:18:10 --> Language Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Loader Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:18:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:18:10 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Session Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:18:10 --> Session routines successfully run
DEBUG - 2011-11-06 22:18:10 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Model Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Model Class Initialized
DEBUG - 2011-11-06 22:18:10 --> Controller Class Initialized
DEBUG - 2011-11-06 22:18:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:18:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:18:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:18:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:18:10 --> Final output sent to browser
DEBUG - 2011-11-06 22:18:10 --> Total execution time: 0.0747
DEBUG - 2011-11-06 22:18:21 --> Config Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:18:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:18:21 --> URI Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Router Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Output Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Input Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:18:21 --> Language Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Loader Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:18:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:18:21 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Session Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:18:21 --> Session routines successfully run
DEBUG - 2011-11-06 22:18:21 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:18:21 --> Controller Class Initialized
DEBUG - 2011-11-06 22:18:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:18:21 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:18:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:18:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:18:21 --> Final output sent to browser
DEBUG - 2011-11-06 22:18:21 --> Total execution time: 0.0394
DEBUG - 2011-11-06 22:19:02 --> Config Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:19:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:19:02 --> URI Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Router Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Output Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Input Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:19:02 --> Language Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Loader Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:19:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:19:02 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Session Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:19:02 --> Session routines successfully run
DEBUG - 2011-11-06 22:19:02 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:02 --> Controller Class Initialized
DEBUG - 2011-11-06 22:19:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:19:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:19:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:19:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:19:02 --> Final output sent to browser
DEBUG - 2011-11-06 22:19:02 --> Total execution time: 0.0641
DEBUG - 2011-11-06 22:19:03 --> Config Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:19:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:19:03 --> URI Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Router Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Output Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Input Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:19:03 --> Language Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Loader Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:19:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:19:03 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Session Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:19:03 --> Session routines successfully run
DEBUG - 2011-11-06 22:19:03 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:03 --> Controller Class Initialized
DEBUG - 2011-11-06 22:19:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:19:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:19:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:19:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:19:03 --> Final output sent to browser
DEBUG - 2011-11-06 22:19:03 --> Total execution time: 0.0432
DEBUG - 2011-11-06 22:19:11 --> Config Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:19:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:19:11 --> URI Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Router Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Output Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Input Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:19:11 --> Language Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Loader Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:19:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:19:11 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Session Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:19:11 --> Session routines successfully run
DEBUG - 2011-11-06 22:19:11 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:11 --> Controller Class Initialized
DEBUG - 2011-11-06 22:19:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:19:11 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:19:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:19:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:19:11 --> Final output sent to browser
DEBUG - 2011-11-06 22:19:11 --> Total execution time: 0.0357
DEBUG - 2011-11-06 22:19:30 --> Config Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:19:30 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:19:30 --> URI Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Router Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Output Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Input Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:19:30 --> Language Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Loader Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:19:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:19:30 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Session Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:19:30 --> Session routines successfully run
DEBUG - 2011-11-06 22:19:30 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Model Class Initialized
DEBUG - 2011-11-06 22:19:30 --> Controller Class Initialized
DEBUG - 2011-11-06 22:19:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:19:30 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:19:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:19:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:19:30 --> Final output sent to browser
DEBUG - 2011-11-06 22:19:30 --> Total execution time: 0.0374
DEBUG - 2011-11-06 22:25:13 --> Config Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:25:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:25:13 --> URI Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Router Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Output Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Input Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:25:13 --> Language Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Loader Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:25:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:25:13 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Session Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:25:13 --> A session cookie was not found.
DEBUG - 2011-11-06 22:25:13 --> Session routines successfully run
DEBUG - 2011-11-06 22:25:13 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Model Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Model Class Initialized
DEBUG - 2011-11-06 22:25:13 --> Controller Class Initialized
DEBUG - 2011-11-06 22:25:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:25:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:25:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:25:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:25:13 --> Final output sent to browser
DEBUG - 2011-11-06 22:25:13 --> Total execution time: 0.0446
DEBUG - 2011-11-06 22:35:21 --> Config Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:35:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:35:21 --> URI Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Router Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Output Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Input Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:35:21 --> Language Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Loader Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:35:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:35:21 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Session Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:35:21 --> Session garbage collection performed.
DEBUG - 2011-11-06 22:35:21 --> Session routines successfully run
DEBUG - 2011-11-06 22:35:21 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Controller Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Config Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:35:21 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:35:21 --> URI Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Router Class Initialized
DEBUG - 2011-11-06 22:35:21 --> No URI present. Default controller set.
DEBUG - 2011-11-06 22:35:21 --> Output Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Input Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:35:21 --> Language Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Loader Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:35:21 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:35:21 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Session Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:35:21 --> Session garbage collection performed.
DEBUG - 2011-11-06 22:35:21 --> Session routines successfully run
DEBUG - 2011-11-06 22:35:21 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:21 --> Controller Class Initialized
DEBUG - 2011-11-06 22:35:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:35:33 --> Config Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:35:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:35:33 --> URI Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Router Class Initialized
DEBUG - 2011-11-06 22:35:33 --> No URI present. Default controller set.
DEBUG - 2011-11-06 22:35:33 --> Output Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Input Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:35:33 --> Language Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Loader Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:35:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:35:33 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Session Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:35:33 --> Session routines successfully run
DEBUG - 2011-11-06 22:35:33 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:33 --> Controller Class Initialized
DEBUG - 2011-11-06 22:35:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:35:37 --> Config Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:35:37 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:35:37 --> URI Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Router Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Output Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Input Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:35:37 --> Language Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Loader Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:35:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:35:37 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Session Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:35:37 --> Session routines successfully run
DEBUG - 2011-11-06 22:35:37 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Model Class Initialized
DEBUG - 2011-11-06 22:35:37 --> Controller Class Initialized
DEBUG - 2011-11-06 22:35:37 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:35:37 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:35:37 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:35:37 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:35:37 --> Final output sent to browser
DEBUG - 2011-11-06 22:35:37 --> Total execution time: 0.0400
DEBUG - 2011-11-06 22:36:33 --> Config Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:36:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:36:33 --> URI Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Router Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Output Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Input Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:36:33 --> Language Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Loader Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:36:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:36:33 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Session Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:36:33 --> Session routines successfully run
DEBUG - 2011-11-06 22:36:33 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Controller Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Config Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:36:33 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:36:33 --> URI Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Router Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Output Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Input Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:36:33 --> Language Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Loader Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:36:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:36:33 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Session Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:36:33 --> Session routines successfully run
DEBUG - 2011-11-06 22:36:33 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Model Class Initialized
DEBUG - 2011-11-06 22:36:33 --> Controller Class Initialized
DEBUG - 2011-11-06 22:36:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:36:33 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:36:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:36:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:36:33 --> Final output sent to browser
DEBUG - 2011-11-06 22:36:33 --> Total execution time: 0.0351
DEBUG - 2011-11-06 22:38:17 --> Config Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:38:17 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:38:17 --> URI Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Router Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Output Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Input Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:38:17 --> Language Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Loader Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:38:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:38:17 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Session Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:38:17 --> Session routines successfully run
DEBUG - 2011-11-06 22:38:17 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Model Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Model Class Initialized
DEBUG - 2011-11-06 22:38:17 --> Controller Class Initialized
DEBUG - 2011-11-06 22:38:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:38:17 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:38:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:38:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:38:17 --> Final output sent to browser
DEBUG - 2011-11-06 22:38:17 --> Total execution time: 0.3586
DEBUG - 2011-11-06 22:38:19 --> Config Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:38:19 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:38:19 --> URI Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Router Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Output Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Input Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:38:19 --> Language Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Loader Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:38:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:38:19 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Session Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:38:19 --> Session routines successfully run
DEBUG - 2011-11-06 22:38:19 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Model Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Model Class Initialized
DEBUG - 2011-11-06 22:38:19 --> Controller Class Initialized
DEBUG - 2011-11-06 22:38:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:38:19 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:38:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:38:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:38:19 --> Final output sent to browser
DEBUG - 2011-11-06 22:38:19 --> Total execution time: 0.0409
DEBUG - 2011-11-06 22:44:47 --> Config Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:44:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:44:47 --> URI Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Router Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Output Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Input Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:44:47 --> Language Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Loader Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:44:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:44:47 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Session Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:44:47 --> Session routines successfully run
DEBUG - 2011-11-06 22:44:47 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Model Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Model Class Initialized
DEBUG - 2011-11-06 22:44:47 --> Controller Class Initialized
DEBUG - 2011-11-06 22:44:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:44:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:44:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:44:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:44:47 --> Final output sent to browser
DEBUG - 2011-11-06 22:44:47 --> Total execution time: 0.0424
DEBUG - 2011-11-06 22:47:12 --> Config Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Hooks Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Utf8 Class Initialized
DEBUG - 2011-11-06 22:47:12 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 22:47:12 --> URI Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Router Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Output Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Input Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 22:47:12 --> Language Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Loader Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Helper loaded: url_helper
DEBUG - 2011-11-06 22:47:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 22:47:12 --> Database Driver Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Session Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Helper loaded: string_helper
DEBUG - 2011-11-06 22:47:12 --> Session garbage collection performed.
DEBUG - 2011-11-06 22:47:12 --> Session routines successfully run
DEBUG - 2011-11-06 22:47:12 --> Encrypt Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Model Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Model Class Initialized
DEBUG - 2011-11-06 22:47:12 --> Controller Class Initialized
DEBUG - 2011-11-06 22:47:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 22:47:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 22:47:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 22:47:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 22:47:12 --> Final output sent to browser
DEBUG - 2011-11-06 22:47:12 --> Total execution time: 0.0482
DEBUG - 2011-11-06 23:21:47 --> Config Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:21:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:21:47 --> URI Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Router Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Output Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Input Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:21:47 --> Language Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Loader Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:21:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:21:47 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Session Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:21:47 --> Session routines successfully run
DEBUG - 2011-11-06 23:21:47 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Model Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Model Class Initialized
DEBUG - 2011-11-06 23:21:47 --> Controller Class Initialized
DEBUG - 2011-11-06 23:21:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:21:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:21:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:21:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:21:47 --> Final output sent to browser
DEBUG - 2011-11-06 23:21:47 --> Total execution time: 0.1060
DEBUG - 2011-11-06 23:22:02 --> Config Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:22:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:22:02 --> URI Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Router Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Output Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Input Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:22:02 --> Language Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Loader Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:22:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:22:02 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Session Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:22:02 --> Session routines successfully run
DEBUG - 2011-11-06 23:22:02 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Model Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Model Class Initialized
DEBUG - 2011-11-06 23:22:02 --> Controller Class Initialized
DEBUG - 2011-11-06 23:22:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:22:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:22:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:22:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:22:02 --> Final output sent to browser
DEBUG - 2011-11-06 23:22:02 --> Total execution time: 0.0482
DEBUG - 2011-11-06 23:32:10 --> Config Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:32:10 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:32:10 --> URI Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Router Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Output Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Input Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:32:10 --> Language Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Loader Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:32:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:32:10 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Session Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:32:10 --> Session routines successfully run
DEBUG - 2011-11-06 23:32:10 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Model Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Model Class Initialized
DEBUG - 2011-11-06 23:32:10 --> Controller Class Initialized
DEBUG - 2011-11-06 23:32:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:32:10 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:32:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:32:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:32:10 --> Final output sent to browser
DEBUG - 2011-11-06 23:32:10 --> Total execution time: 0.0455
DEBUG - 2011-11-06 23:36:05 --> Config Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:36:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:36:05 --> URI Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Router Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Output Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Input Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:36:05 --> Language Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Loader Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:36:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:36:05 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Session Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:36:05 --> Session routines successfully run
DEBUG - 2011-11-06 23:36:05 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:36:05 --> Model Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Config Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:36:16 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:36:16 --> URI Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Router Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Output Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Input Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:36:16 --> Language Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Loader Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:36:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:36:16 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Session Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:36:16 --> Session routines successfully run
DEBUG - 2011-11-06 23:36:16 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Model Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Model Class Initialized
DEBUG - 2011-11-06 23:36:16 --> Controller Class Initialized
DEBUG - 2011-11-06 23:36:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:36:16 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:36:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:36:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:36:16 --> Final output sent to browser
DEBUG - 2011-11-06 23:36:16 --> Total execution time: 0.0404
DEBUG - 2011-11-06 23:39:02 --> Config Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:39:02 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:39:02 --> URI Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Router Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Output Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Input Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:39:02 --> Language Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Loader Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:39:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:39:02 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Session Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:39:02 --> Session routines successfully run
DEBUG - 2011-11-06 23:39:02 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Model Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Model Class Initialized
DEBUG - 2011-11-06 23:39:02 --> Controller Class Initialized
DEBUG - 2011-11-06 23:39:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:39:02 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:39:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:39:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:39:02 --> Final output sent to browser
DEBUG - 2011-11-06 23:39:02 --> Total execution time: 0.0440
DEBUG - 2011-11-06 23:40:05 --> Config Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:40:05 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:40:05 --> URI Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Router Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Output Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Input Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:40:05 --> Language Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Loader Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:40:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:40:05 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Session Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:40:05 --> Session routines successfully run
DEBUG - 2011-11-06 23:40:05 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Model Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Model Class Initialized
DEBUG - 2011-11-06 23:40:05 --> Controller Class Initialized
DEBUG - 2011-11-06 23:40:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:40:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:40:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:40:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:40:05 --> Final output sent to browser
DEBUG - 2011-11-06 23:40:05 --> Total execution time: 0.0443
DEBUG - 2011-11-06 23:48:41 --> Config Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:48:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:48:41 --> URI Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Router Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Output Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Input Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:48:41 --> Language Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Loader Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:48:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:48:41 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Session Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:48:41 --> Session routines successfully run
DEBUG - 2011-11-06 23:48:41 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Model Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Model Class Initialized
DEBUG - 2011-11-06 23:48:41 --> Controller Class Initialized
DEBUG - 2011-11-06 23:48:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:48:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:48:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:48:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:48:41 --> Final output sent to browser
DEBUG - 2011-11-06 23:48:41 --> Total execution time: 0.0424
DEBUG - 2011-11-06 23:48:47 --> Config Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:48:47 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:48:47 --> URI Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Router Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Output Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Input Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:48:47 --> Language Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Loader Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:48:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:48:47 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Session Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:48:47 --> Session routines successfully run
DEBUG - 2011-11-06 23:48:47 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Model Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Model Class Initialized
DEBUG - 2011-11-06 23:48:47 --> Controller Class Initialized
DEBUG - 2011-11-06 23:48:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:48:47 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:48:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:48:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:48:47 --> Final output sent to browser
DEBUG - 2011-11-06 23:48:47 --> Total execution time: 0.0438
DEBUG - 2011-11-06 23:49:07 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:07 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:07 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:07 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:07 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:07 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:07 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:07 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:07 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:07 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:07 --> Total execution time: 0.0452
DEBUG - 2011-11-06 23:49:08 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:08 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:08 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:08 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:08 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:08 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:08 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:08 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:08 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:08 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:08 --> Total execution time: 0.0470
DEBUG - 2011-11-06 23:49:43 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:43 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:43 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:43 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:43 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:43 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:43 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:43 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:43 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:43 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:43 --> Total execution time: 0.0438
DEBUG - 2011-11-06 23:49:44 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:44 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:44 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:44 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:44 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:44 --> Session garbage collection performed.
DEBUG - 2011-11-06 23:49:44 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:44 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:44 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:44 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:44 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:44 --> Total execution time: 0.0387
DEBUG - 2011-11-06 23:49:49 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:49 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:49 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:49 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:49 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:49 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:49 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:49 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:49 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:49 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:49 --> Total execution time: 0.0451
DEBUG - 2011-11-06 23:49:52 --> Config Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:49:52 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:49:52 --> URI Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Router Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Output Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Input Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:49:52 --> Language Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Loader Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:49:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:49:52 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Session Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:49:52 --> Session routines successfully run
DEBUG - 2011-11-06 23:49:52 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Model Class Initialized
DEBUG - 2011-11-06 23:49:52 --> Controller Class Initialized
DEBUG - 2011-11-06 23:49:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:49:52 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:49:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:49:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:49:52 --> Final output sent to browser
DEBUG - 2011-11-06 23:49:52 --> Total execution time: 0.0348
DEBUG - 2011-11-06 23:50:25 --> Config Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:50:25 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:50:25 --> URI Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Router Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Output Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Input Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:50:25 --> Language Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Loader Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:50:25 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:50:25 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Session Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:50:25 --> Session routines successfully run
DEBUG - 2011-11-06 23:50:25 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:25 --> Controller Class Initialized
DEBUG - 2011-11-06 23:50:25 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:50:25 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:50:25 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:50:25 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:50:25 --> Final output sent to browser
DEBUG - 2011-11-06 23:50:25 --> Total execution time: 0.0412
DEBUG - 2011-11-06 23:50:40 --> Config Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:50:40 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:50:40 --> URI Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Router Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Output Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Input Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:50:40 --> Language Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Loader Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:50:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:50:40 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Session Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:50:40 --> Session routines successfully run
DEBUG - 2011-11-06 23:50:40 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:40 --> Controller Class Initialized
DEBUG - 2011-11-06 23:50:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:50:40 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:50:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:50:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:50:40 --> Final output sent to browser
DEBUG - 2011-11-06 23:50:40 --> Total execution time: 0.0439
DEBUG - 2011-11-06 23:50:41 --> Config Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:50:41 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:50:41 --> URI Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Router Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Output Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Input Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:50:41 --> Language Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Loader Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:50:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:50:41 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Session Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:50:41 --> Session routines successfully run
DEBUG - 2011-11-06 23:50:41 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:41 --> Controller Class Initialized
DEBUG - 2011-11-06 23:50:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:50:41 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:50:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:50:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:50:41 --> Final output sent to browser
DEBUG - 2011-11-06 23:50:41 --> Total execution time: 0.0377
DEBUG - 2011-11-06 23:50:42 --> Config Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:50:42 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:50:42 --> URI Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Router Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Output Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Input Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:50:42 --> Language Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Loader Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:50:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:50:42 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Session Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:50:42 --> Session routines successfully run
DEBUG - 2011-11-06 23:50:42 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Model Class Initialized
DEBUG - 2011-11-06 23:50:42 --> Controller Class Initialized
DEBUG - 2011-11-06 23:50:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:50:42 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:50:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:50:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:50:42 --> Final output sent to browser
DEBUG - 2011-11-06 23:50:42 --> Total execution time: 0.0336
DEBUG - 2011-11-06 23:51:01 --> Config Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:51:01 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:51:01 --> URI Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Router Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Output Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Input Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:51:01 --> Language Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Loader Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:51:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:51:01 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Session Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:51:01 --> Session routines successfully run
DEBUG - 2011-11-06 23:51:01 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Model Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Model Class Initialized
DEBUG - 2011-11-06 23:51:01 --> Controller Class Initialized
DEBUG - 2011-11-06 23:51:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:51:01 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:51:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:51:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:51:01 --> Final output sent to browser
DEBUG - 2011-11-06 23:51:01 --> Total execution time: 0.0426
DEBUG - 2011-11-06 23:54:38 --> Config Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:54:38 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:54:38 --> URI Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Router Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Output Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Input Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:54:38 --> Language Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Loader Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:54:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:54:38 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Session Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:54:38 --> Session routines successfully run
DEBUG - 2011-11-06 23:54:38 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Model Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Model Class Initialized
DEBUG - 2011-11-06 23:54:38 --> Controller Class Initialized
DEBUG - 2011-11-06 23:54:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:54:38 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 23:54:38 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:54:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:54:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:54:38 --> Final output sent to browser
DEBUG - 2011-11-06 23:54:38 --> Total execution time: 0.0485
DEBUG - 2011-11-06 23:55:13 --> Config Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:55:13 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:55:13 --> URI Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Router Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Output Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Input Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:55:13 --> Language Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Loader Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:55:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:55:13 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Session Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:55:13 --> Session routines successfully run
DEBUG - 2011-11-06 23:55:13 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Model Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Model Class Initialized
DEBUG - 2011-11-06 23:55:13 --> Controller Class Initialized
DEBUG - 2011-11-06 23:55:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:55:13 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 23:55:13 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:55:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:55:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:55:13 --> Final output sent to browser
DEBUG - 2011-11-06 23:55:13 --> Total execution time: 0.0580
DEBUG - 2011-11-06 23:56:03 --> Config Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:56:03 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:56:03 --> URI Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Router Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Output Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Input Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:56:03 --> Language Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Loader Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:56:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:56:03 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Session Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:56:03 --> Session routines successfully run
DEBUG - 2011-11-06 23:56:03 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Model Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Model Class Initialized
DEBUG - 2011-11-06 23:56:03 --> Controller Class Initialized
DEBUG - 2011-11-06 23:56:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:56:03 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 23:56:03 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:56:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:56:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:56:03 --> Final output sent to browser
DEBUG - 2011-11-06 23:56:03 --> Total execution time: 0.0408
DEBUG - 2011-11-06 23:57:11 --> Config Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Hooks Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Utf8 Class Initialized
DEBUG - 2011-11-06 23:57:11 --> UTF-8 Support Enabled
DEBUG - 2011-11-06 23:57:11 --> URI Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Router Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Output Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Input Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-11-06 23:57:11 --> Language Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Loader Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Helper loaded: url_helper
DEBUG - 2011-11-06 23:57:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-11-06 23:57:11 --> Database Driver Class Initialized
DEBUG - 2011-11-06 23:57:11 --> Session Class Initialized
DEBUG - 2011-11-06 23:57:12 --> Helper loaded: string_helper
DEBUG - 2011-11-06 23:57:12 --> Session routines successfully run
DEBUG - 2011-11-06 23:57:12 --> Encrypt Class Initialized
DEBUG - 2011-11-06 23:57:12 --> Model Class Initialized
DEBUG - 2011-11-06 23:57:12 --> Model Class Initialized
DEBUG - 2011-11-06 23:57:12 --> Controller Class Initialized
DEBUG - 2011-11-06 23:57:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-11-06 23:57:12 --> File loaded: application/views/chat/chat_user_view.php
DEBUG - 2011-11-06 23:57:12 --> File loaded: application/views/home_view.php
DEBUG - 2011-11-06 23:57:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-11-06 23:57:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-11-06 23:57:12 --> Final output sent to browser
DEBUG - 2011-11-06 23:57:12 --> Total execution time: 0.0435
<file_sep>/application/logs/log-2011-05-10.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-05-10 13:25:58 --> Config Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:25:58 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:25:58 --> URI Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Router Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Output Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Input Class Initialized
DEBUG - 2011-05-10 13:25:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:25:58 --> Language Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Config Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:26:28 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:26:28 --> URI Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Router Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Output Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Input Class Initialized
DEBUG - 2011-05-10 13:26:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:26:28 --> Language Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Config Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:26:32 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:26:32 --> URI Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Router Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Output Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Input Class Initialized
DEBUG - 2011-05-10 13:26:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:26:32 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:14 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:14 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:14 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:15 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:15 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:15 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:27:15 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:27:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:15 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:15 --> Total execution time: 1.6692
DEBUG - 2011-05-10 13:27:17 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:17 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:17 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:17 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:17 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:17 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:17 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:18 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:18 --> Total execution time: 0.0505
DEBUG - 2011-05-10 13:27:18 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:18 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:18 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:18 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:18 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:18 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:18 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:18 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:18 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:18 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:18 --> Total execution time: 0.0496
DEBUG - 2011-05-10 13:27:19 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:19 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:19 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:19 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:19 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:19 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:19 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:27:19 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 13:27:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:19 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:19 --> Total execution time: 0.0508
DEBUG - 2011-05-10 13:27:20 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:20 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:20 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:20 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:20 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:20 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:21 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:21 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:21 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:21 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:21 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:21 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:21 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:21 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:21 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:27:21 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:27:21 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:21 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:21 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:21 --> Total execution time: 0.0450
DEBUG - 2011-05-10 13:27:23 --> Config Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:27:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:27:23 --> URI Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Router Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Output Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Input Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:27:23 --> Language Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Loader Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:27:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:27:23 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:27:23 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Upload Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Model Class Initialized
DEBUG - 2011-05-10 13:27:23 --> Controller Class Initialized
DEBUG - 2011-05-10 13:27:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:27:23 --> File loaded: application/views/menu_view.php
ERROR - 2011-05-10 13:27:23 --> Severity: Notice --> Undefined property: stdClass::$foto_noticia /home/zorbit/www/artigos/application/models/noticia_model.php 79
DEBUG - 2011-05-10 13:27:23 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:27:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:27:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:27:23 --> Final output sent to browser
DEBUG - 2011-05-10 13:27:23 --> Total execution time: 0.0472
DEBUG - 2011-05-10 13:29:03 --> Config Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:29:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:29:03 --> URI Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Router Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Output Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Input Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:29:03 --> Language Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Loader Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:29:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:29:03 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:29:03 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Upload Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Model Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Model Class Initialized
DEBUG - 2011-05-10 13:29:03 --> Controller Class Initialized
DEBUG - 2011-05-10 13:29:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:29:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:29:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:29:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:29:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:29:03 --> Final output sent to browser
DEBUG - 2011-05-10 13:29:03 --> Total execution time: 0.0471
DEBUG - 2011-05-10 13:32:23 --> Config Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:32:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:32:23 --> URI Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Router Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Output Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Input Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:32:23 --> Language Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Loader Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:32:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:32:23 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:32:23 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Upload Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:23 --> Controller Class Initialized
DEBUG - 2011-05-10 13:32:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:32:23 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:32:23 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:32:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:32:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:32:23 --> Final output sent to browser
DEBUG - 2011-05-10 13:32:23 --> Total execution time: 0.0551
DEBUG - 2011-05-10 13:32:30 --> Config Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:32:30 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:32:30 --> URI Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Router Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Output Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Input Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:32:30 --> Language Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Loader Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:32:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:32:30 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:32:30 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Upload Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:30 --> Controller Class Initialized
DEBUG - 2011-05-10 13:32:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:32:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:32:30 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:32:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:32:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:32:30 --> Final output sent to browser
DEBUG - 2011-05-10 13:32:30 --> Total execution time: 0.0632
DEBUG - 2011-05-10 13:32:59 --> Config Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:32:59 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:32:59 --> URI Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Router Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Output Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Input Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:32:59 --> Language Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Loader Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:32:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:32:59 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:32:59 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Upload Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Model Class Initialized
DEBUG - 2011-05-10 13:32:59 --> Controller Class Initialized
DEBUG - 2011-05-10 13:32:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:32:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:32:59 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:32:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:32:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:32:59 --> Final output sent to browser
DEBUG - 2011-05-10 13:32:59 --> Total execution time: 0.0638
DEBUG - 2011-05-10 13:33:43 --> Config Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:33:43 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:33:43 --> URI Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Router Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Output Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Input Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:33:43 --> Language Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Loader Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:33:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:33:43 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:33:43 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Upload Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Model Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Model Class Initialized
DEBUG - 2011-05-10 13:33:43 --> Controller Class Initialized
DEBUG - 2011-05-10 13:33:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:33:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:33:43 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:33:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:33:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:33:43 --> Final output sent to browser
DEBUG - 2011-05-10 13:33:43 --> Total execution time: 0.0989
DEBUG - 2011-05-10 13:34:23 --> Config Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:34:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:34:23 --> URI Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Router Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Output Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Input Class Initialized
DEBUG - 2011-05-10 13:34:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:34:23 --> Language Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Config Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:35:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:35:03 --> URI Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Router Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Output Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Input Class Initialized
DEBUG - 2011-05-10 13:35:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:35:03 --> Language Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Config Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:35:55 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:35:55 --> URI Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Router Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Output Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Input Class Initialized
DEBUG - 2011-05-10 13:35:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:35:55 --> Language Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Config Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:36:09 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:36:09 --> URI Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Router Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Output Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Input Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:36:09 --> Language Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Loader Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:36:09 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:36:09 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:36:09 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Upload Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Model Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Model Class Initialized
DEBUG - 2011-05-10 13:36:09 --> Controller Class Initialized
DEBUG - 2011-05-10 13:36:09 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:36:09 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:36:09 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:36:09 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:36:09 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:36:09 --> Final output sent to browser
DEBUG - 2011-05-10 13:36:09 --> Total execution time: 0.0682
DEBUG - 2011-05-10 13:37:33 --> Config Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:37:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:37:33 --> URI Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Router Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Output Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Input Class Initialized
DEBUG - 2011-05-10 13:37:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:37:33 --> Language Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Config Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:38:17 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:38:17 --> URI Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Router Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Output Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Input Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:38:17 --> Language Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Loader Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:38:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:38:17 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:38:17 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Upload Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Model Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Model Class Initialized
DEBUG - 2011-05-10 13:38:17 --> Controller Class Initialized
DEBUG - 2011-05-10 13:38:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:38:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:38:17 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:38:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:38:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:38:17 --> Final output sent to browser
DEBUG - 2011-05-10 13:38:17 --> Total execution time: 0.0435
DEBUG - 2011-05-10 13:40:00 --> Config Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:40:00 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:40:00 --> URI Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Router Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Output Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Input Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:40:00 --> Language Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Loader Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:40:00 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:40:00 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:40:00 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Upload Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Model Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Model Class Initialized
DEBUG - 2011-05-10 13:40:00 --> Controller Class Initialized
DEBUG - 2011-05-10 13:40:00 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:40:00 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:40:00 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:40:00 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:40:00 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:40:00 --> Final output sent to browser
DEBUG - 2011-05-10 13:40:00 --> Total execution time: 0.0576
DEBUG - 2011-05-10 13:45:02 --> Config Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:45:02 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:45:02 --> URI Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Router Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Output Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Input Class Initialized
DEBUG - 2011-05-10 13:45:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:45:02 --> Language Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Config Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:45:15 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:45:15 --> URI Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Router Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Output Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Input Class Initialized
DEBUG - 2011-05-10 13:45:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:45:15 --> Language Class Initialized
DEBUG - 2011-05-10 13:45:33 --> Config Class Initialized
DEBUG - 2011-05-10 13:45:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:45:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:45:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:45:33 --> URI Class Initialized
DEBUG - 2011-05-10 13:45:33 --> Router Class Initialized
DEBUG - 2011-05-10 13:45:33 --> Output Class Initialized
DEBUG - 2011-05-10 13:45:34 --> Input Class Initialized
DEBUG - 2011-05-10 13:45:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:45:34 --> Language Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Config Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:45:37 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:45:37 --> URI Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Router Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Output Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Input Class Initialized
DEBUG - 2011-05-10 13:45:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:45:37 --> Language Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Config Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:46:01 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:46:01 --> URI Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Router Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Output Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Input Class Initialized
DEBUG - 2011-05-10 13:46:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:46:01 --> Language Class Initialized
DEBUG - 2011-05-10 13:46:19 --> Config Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:46:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:46:23 --> URI Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Router Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Output Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Config Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Input Class Initialized
DEBUG - 2011-05-10 13:46:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:46:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:46:23 --> Language Class Initialized
DEBUG - 2011-05-10 13:46:23 --> URI Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Router Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Output Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Input Class Initialized
DEBUG - 2011-05-10 13:46:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:46:23 --> Language Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Config Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:46:32 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:46:32 --> URI Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Router Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Output Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Input Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:46:32 --> Language Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Loader Class Initialized
DEBUG - 2011-05-10 13:46:32 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:46:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:46:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:46:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:46:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:46:33 --> Upload Class Initialized
DEBUG - 2011-05-10 13:46:33 --> Model Class Initialized
DEBUG - 2011-05-10 13:46:33 --> Model Class Initialized
DEBUG - 2011-05-10 13:46:33 --> Controller Class Initialized
DEBUG - 2011-05-10 13:46:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:46:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:46:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:46:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:46:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:46:33 --> Final output sent to browser
DEBUG - 2011-05-10 13:46:33 --> Total execution time: 0.0578
DEBUG - 2011-05-10 13:46:41 --> Config Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:46:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:46:41 --> URI Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Router Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Output Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Input Class Initialized
DEBUG - 2011-05-10 13:46:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:46:41 --> Language Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Config Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:47:00 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:47:00 --> URI Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Router Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Output Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Input Class Initialized
DEBUG - 2011-05-10 13:47:00 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:47:00 --> Language Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Config Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:47:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:47:03 --> URI Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Router Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Output Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Input Class Initialized
DEBUG - 2011-05-10 13:47:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:47:03 --> Language Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Config Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:47:04 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:47:04 --> URI Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Router Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Output Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Input Class Initialized
DEBUG - 2011-05-10 13:47:04 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:47:04 --> Language Class Initialized
DEBUG - 2011-05-10 13:47:08 --> Config Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:47:10 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:47:10 --> URI Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Router Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Output Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Input Class Initialized
DEBUG - 2011-05-10 13:47:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:47:10 --> Language Class Initialized
DEBUG - 2011-05-10 13:52:30 --> Config Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:52:32 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:52:32 --> URI Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Router Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Output Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Input Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:52:32 --> Language Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Loader Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:52:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:52:32 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:52:32 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Upload Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Model Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Model Class Initialized
DEBUG - 2011-05-10 13:52:32 --> Controller Class Initialized
DEBUG - 2011-05-10 13:52:32 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:52:32 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:52:32 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:52:32 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:52:32 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:52:32 --> Final output sent to browser
DEBUG - 2011-05-10 13:52:32 --> Total execution time: 1.8295
DEBUG - 2011-05-10 13:52:37 --> Config Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:52:37 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:52:37 --> URI Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Router Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Output Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Input Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:52:37 --> Language Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Loader Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:52:37 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:52:37 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:52:37 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Upload Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Model Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Model Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Controller Class Initialized
DEBUG - 2011-05-10 13:52:37 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 13:52:37 --> Security Class Initialized
DEBUG - 2011-05-10 13:52:37 --> XSS Filtering completed
DEBUG - 2011-05-10 13:53:07 --> Config Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:53:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:53:07 --> URI Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Router Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Output Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Input Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:53:07 --> Language Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Loader Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:53:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:53:07 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:53:07 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Upload Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Controller Class Initialized
DEBUG - 2011-05-10 13:53:07 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 13:53:07 --> Security Class Initialized
DEBUG - 2011-05-10 13:53:07 --> XSS Filtering completed
DEBUG - 2011-05-10 13:53:07 --> XSS Filtering completed
DEBUG - 2011-05-10 13:53:07 --> XSS Filtering completed
DEBUG - 2011-05-10 13:53:07 --> XSS Filtering completed
DEBUG - 2011-05-10 13:53:08 --> Config Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:53:08 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:53:08 --> URI Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Router Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Output Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Input Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:53:08 --> Language Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Loader Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:53:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:53:08 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:53:08 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Upload Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:08 --> Controller Class Initialized
DEBUG - 2011-05-10 13:53:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:53:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:53:08 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:53:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:53:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:53:08 --> Final output sent to browser
DEBUG - 2011-05-10 13:53:08 --> Total execution time: 0.0553
DEBUG - 2011-05-10 13:53:13 --> Config Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:53:13 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:53:13 --> URI Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Router Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Output Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Input Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:53:13 --> Language Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Loader Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:53:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:53:13 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:53:13 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Upload Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Model Class Initialized
DEBUG - 2011-05-10 13:53:13 --> Controller Class Initialized
DEBUG - 2011-05-10 13:53:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:53:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:53:13 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:53:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:53:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:53:13 --> Final output sent to browser
DEBUG - 2011-05-10 13:53:13 --> Total execution time: 0.0649
DEBUG - 2011-05-10 13:57:43 --> Config Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:57:43 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:57:43 --> URI Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Router Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Output Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Input Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:57:43 --> Language Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Loader Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:57:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:57:43 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:57:43 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Upload Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Model Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Model Class Initialized
DEBUG - 2011-05-10 13:57:43 --> Controller Class Initialized
DEBUG - 2011-05-10 13:57:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:57:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:57:43 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:57:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:57:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:57:43 --> Final output sent to browser
DEBUG - 2011-05-10 13:57:43 --> Total execution time: 0.0842
DEBUG - 2011-05-10 13:58:26 --> Config Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:58:26 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:58:26 --> URI Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Router Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Output Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Input Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:58:26 --> Language Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Loader Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:58:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:58:26 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:58:26 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Upload Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Controller Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 13:58:26 --> Security Class Initialized
DEBUG - 2011-05-10 13:58:26 --> XSS Filtering completed
DEBUG - 2011-05-10 13:58:26 --> XSS Filtering completed
DEBUG - 2011-05-10 13:58:26 --> XSS Filtering completed
DEBUG - 2011-05-10 13:58:26 --> XSS Filtering completed
DEBUG - 2011-05-10 13:58:26 --> Config Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:58:26 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:58:26 --> URI Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Router Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Output Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Input Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:58:26 --> Language Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Loader Class Initialized
DEBUG - 2011-05-10 13:58:26 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:58:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:58:26 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:58:27 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:58:27 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:58:27 --> Upload Class Initialized
DEBUG - 2011-05-10 13:58:27 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:27 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:27 --> Controller Class Initialized
DEBUG - 2011-05-10 13:58:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:58:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:58:27 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 13:58:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:58:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:58:27 --> Final output sent to browser
DEBUG - 2011-05-10 13:58:27 --> Total execution time: 0.3072
DEBUG - 2011-05-10 13:58:33 --> Config Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 13:58:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 13:58:33 --> URI Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Router Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Output Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Input Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 13:58:33 --> Language Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Loader Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Helper loaded: url_helper
DEBUG - 2011-05-10 13:58:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 13:58:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 13:58:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Upload Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Model Class Initialized
DEBUG - 2011-05-10 13:58:33 --> Controller Class Initialized
DEBUG - 2011-05-10 13:58:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 13:58:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 13:58:33 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 13:58:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 13:58:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 13:58:33 --> Final output sent to browser
DEBUG - 2011-05-10 13:58:33 --> Total execution time: 0.1002
DEBUG - 2011-05-10 14:06:01 --> Config Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:06:01 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:06:01 --> URI Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Router Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Output Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Input Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:06:01 --> Language Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Loader Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:06:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:06:01 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:06:01 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Upload Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Controller Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:06:01 --> Security Class Initialized
DEBUG - 2011-05-10 14:06:01 --> XSS Filtering completed
DEBUG - 2011-05-10 14:06:01 --> XSS Filtering completed
DEBUG - 2011-05-10 14:06:01 --> XSS Filtering completed
DEBUG - 2011-05-10 14:06:01 --> XSS Filtering completed
DEBUG - 2011-05-10 14:06:01 --> Config Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:06:01 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:06:01 --> URI Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Router Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Output Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Input Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:06:01 --> Language Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Loader Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:06:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:06:01 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:06:01 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Upload Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:01 --> Controller Class Initialized
DEBUG - 2011-05-10 14:06:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:06:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:06:01 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:06:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:06:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:06:01 --> Final output sent to browser
DEBUG - 2011-05-10 14:06:01 --> Total execution time: 0.0521
DEBUG - 2011-05-10 14:06:03 --> Config Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:06:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:06:03 --> URI Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Router Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Output Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Input Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:06:03 --> Language Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Loader Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:06:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:06:03 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:06:03 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Upload Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Model Class Initialized
DEBUG - 2011-05-10 14:06:03 --> Controller Class Initialized
DEBUG - 2011-05-10 14:06:03 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:06:03 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:06:03 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:06:03 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:06:03 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:06:03 --> Final output sent to browser
DEBUG - 2011-05-10 14:06:03 --> Total execution time: 0.0950
DEBUG - 2011-05-10 14:07:05 --> Config Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:07:05 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:07:05 --> URI Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Router Class Initialized
DEBUG - 2011-05-10 14:07:05 --> No URI present. Default controller set.
DEBUG - 2011-05-10 14:07:05 --> Output Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Input Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:07:05 --> Language Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Config Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:07:05 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:07:05 --> URI Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Router Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Output Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Input Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:07:05 --> Language Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Loader Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:07:05 --> Loader Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:07:05 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:07:05 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:07:05 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:07:05 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Upload Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Controller Class Initialized
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:07:05 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:07:05 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Upload Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:05 --> Controller Class Initialized
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:07:05 --> Final output sent to browser
DEBUG - 2011-05-10 14:07:05 --> Total execution time: 0.0623
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:07:05 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:07:05 --> Final output sent to browser
DEBUG - 2011-05-10 14:07:05 --> Total execution time: 0.1431
DEBUG - 2011-05-10 14:07:08 --> Config Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:07:08 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:07:08 --> URI Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Router Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Output Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Input Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:07:08 --> Language Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Loader Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:07:08 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:07:08 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:07:08 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Upload Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Model Class Initialized
DEBUG - 2011-05-10 14:07:08 --> Controller Class Initialized
ERROR - 2011-05-10 14:07:08 --> Severity: Notice --> Undefined variable: vet /home/zorbit/www/artigos/application/models/noticia_model.php 214
ERROR - 2011-05-10 14:07:08 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at /home/zorbit/www/artigos/system/core/Exceptions.php:170) /home/zorbit/www/artigos/system/helpers/url_helper.php 543
DEBUG - 2011-05-10 14:08:16 --> Config Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:08:16 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:08:16 --> URI Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Router Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Output Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Input Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:08:16 --> Language Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Loader Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:08:16 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:08:16 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:08:16 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Upload Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Model Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Model Class Initialized
DEBUG - 2011-05-10 14:08:16 --> Controller Class Initialized
ERROR - 2011-05-10 14:08:16 --> Severity: Notice --> Uninitialized string offset: 0 /home/zorbit/www/artigos/application/models/noticia_model.php 218
DEBUG - 2011-05-10 14:08:16 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:08:16 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:08:16 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:08:16 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:08:16 --> Final output sent to browser
DEBUG - 2011-05-10 14:08:16 --> Total execution time: 0.0749
DEBUG - 2011-05-10 14:08:59 --> Config Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:08:59 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:08:59 --> URI Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Router Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Output Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Input Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:08:59 --> Language Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Loader Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:08:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:08:59 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:08:59 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Upload Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Model Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Model Class Initialized
DEBUG - 2011-05-10 14:08:59 --> Controller Class Initialized
DEBUG - 2011-05-10 14:08:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:08:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:08:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:08:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:08:59 --> Final output sent to browser
DEBUG - 2011-05-10 14:08:59 --> Total execution time: 0.0607
DEBUG - 2011-05-10 14:09:30 --> Config Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:09:30 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:09:30 --> URI Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Router Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Output Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Input Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:09:30 --> Language Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Loader Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:09:30 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:09:30 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:09:30 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Upload Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Model Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Model Class Initialized
DEBUG - 2011-05-10 14:09:30 --> Controller Class Initialized
DEBUG - 2011-05-10 14:09:30 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:09:30 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:09:30 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:09:30 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:09:30 --> Final output sent to browser
DEBUG - 2011-05-10 14:09:30 --> Total execution time: 0.0590
DEBUG - 2011-05-10 14:10:23 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:23 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:23 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:23 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:23 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:23 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:23 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:23 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:23 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:23 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:23 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:10:23 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:23 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:23 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:23 --> Total execution time: 0.1468
DEBUG - 2011-05-10 14:10:29 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:29 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:29 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:29 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:29 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:29 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:29 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:29 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:29 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:29 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:29 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:29 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:29 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:29 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:10:29 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:29 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:29 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:29 --> Total execution time: 0.1337
DEBUG - 2011-05-10 14:10:33 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:33 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:33 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:33 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:10:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:33 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:33 --> Total execution time: 0.0660
DEBUG - 2011-05-10 14:10:34 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:34 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:34 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:34 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:34 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:34 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:34 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:34 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:34 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:34 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:34 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:10:34 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:34 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:34 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:34 --> Total execution time: 0.0511
DEBUG - 2011-05-10 14:10:51 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:51 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:51 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:51 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:51 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:51 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:10:51 --> Security Class Initialized
DEBUG - 2011-05-10 14:10:51 --> XSS Filtering completed
DEBUG - 2011-05-10 14:10:51 --> XSS Filtering completed
DEBUG - 2011-05-10 14:10:51 --> XSS Filtering completed
DEBUG - 2011-05-10 14:10:51 --> XSS Filtering completed
DEBUG - 2011-05-10 14:10:51 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:51 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:51 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:51 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:52 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:52 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:52 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:52 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:52 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:52 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:10:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:52 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:52 --> Total execution time: 0.0685
DEBUG - 2011-05-10 14:10:53 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:53 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:53 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:53 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:53 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:53 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:53 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:53 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:10:53 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:53 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:53 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:53 --> Total execution time: 0.0589
DEBUG - 2011-05-10 14:10:55 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:55 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:55 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:55 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:55 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:55 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Config Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:10:55 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:10:55 --> URI Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Router Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Output Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Input Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:10:55 --> Language Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Loader Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:10:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:10:55 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:10:55 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Upload Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:10:55 --> Controller Class Initialized
DEBUG - 2011-05-10 14:10:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:10:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:10:55 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:10:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:10:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:10:55 --> Final output sent to browser
DEBUG - 2011-05-10 14:10:55 --> Total execution time: 0.0606
DEBUG - 2011-05-10 14:11:13 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:13 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:13 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:13 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:13 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:13 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:13 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:13 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:11:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:13 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:13 --> Total execution time: 0.0989
DEBUG - 2011-05-10 14:11:17 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:17 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:17 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:17 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:17 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:17 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:17 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:17 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:17 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:17 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:17 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:11:17 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:17 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:17 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:17 --> Total execution time: 0.0827
DEBUG - 2011-05-10 14:11:40 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:40 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:40 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:40 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:40 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:40 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:40 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:40 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:11:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:40 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:40 --> Total execution time: 0.1111
DEBUG - 2011-05-10 14:11:41 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:41 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:41 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:41 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:41 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:41 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:41 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:11:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:41 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:41 --> Total execution time: 0.0628
DEBUG - 2011-05-10 14:11:43 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:43 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:43 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:43 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:43 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:43 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:43 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:43 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:11:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:43 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:43 --> Total execution time: 0.0603
DEBUG - 2011-05-10 14:11:44 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:44 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:44 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:44 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:44 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:44 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:44 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:44 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:11:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:44 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:44 --> Total execution time: 0.0693
DEBUG - 2011-05-10 14:11:45 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:45 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:45 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:45 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:45 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:46 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:46 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:46 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:46 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:11:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:46 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:46 --> Total execution time: 0.0487
DEBUG - 2011-05-10 14:11:47 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:47 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:47 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:47 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:47 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:47 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:47 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:47 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:47 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:11:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:47 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:47 --> Total execution time: 0.1499
DEBUG - 2011-05-10 14:11:49 --> Config Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:11:49 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:11:49 --> URI Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Router Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Output Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Input Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:11:49 --> Language Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Loader Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:11:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:11:49 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:11:49 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Upload Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Model Class Initialized
DEBUG - 2011-05-10 14:11:49 --> Controller Class Initialized
DEBUG - 2011-05-10 14:11:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:11:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:11:49 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:11:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:11:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:11:49 --> Final output sent to browser
DEBUG - 2011-05-10 14:11:49 --> Total execution time: 0.1811
DEBUG - 2011-05-10 14:17:10 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:10 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:10 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:10 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:10 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:10 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:10 --> Controller Class Initialized
DEBUG - 2011-05-10 14:17:10 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:17:10 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:17:10 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:17:10 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:17:10 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:17:10 --> Final output sent to browser
DEBUG - 2011-05-10 14:17:10 --> Total execution time: 0.0628
DEBUG - 2011-05-10 14:17:19 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:19 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:19 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:19 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:19 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:19 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Controller Class Initialized
DEBUG - 2011-05-10 14:17:19 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:17:19 --> Security Class Initialized
DEBUG - 2011-05-10 14:17:19 --> XSS Filtering completed
ERROR - 2011-05-10 14:17:19 --> Severity: Warning --> unlink(./upload/) [<a href='function.unlink'>function.unlink</a>]: Is a directory /home/zorbit/www/artigos/application/models/noticia_model.php 230
DEBUG - 2011-05-10 14:17:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:17:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:17:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:17:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:17:19 --> Final output sent to browser
DEBUG - 2011-05-10 14:17:19 --> Total execution time: 0.1021
DEBUG - 2011-05-10 14:17:28 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:28 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:28 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:28 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:28 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:28 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:28 --> Controller Class Initialized
ERROR - 2011-05-10 14:17:28 --> 404 Page Not Found --> noticia/function.unlink
DEBUG - 2011-05-10 14:17:56 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:56 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:56 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:56 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:56 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:57 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:57 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:57 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Controller Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:17:57 --> Security Class Initialized
DEBUG - 2011-05-10 14:17:57 --> XSS Filtering completed
DEBUG - 2011-05-10 14:17:57 --> XSS Filtering completed
DEBUG - 2011-05-10 14:17:57 --> XSS Filtering completed
DEBUG - 2011-05-10 14:17:57 --> XSS Filtering completed
DEBUG - 2011-05-10 14:17:57 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:57 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:57 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:57 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:57 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:57 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:57 --> Controller Class Initialized
DEBUG - 2011-05-10 14:17:57 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:17:57 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:17:57 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:17:57 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:17:57 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:17:57 --> Final output sent to browser
DEBUG - 2011-05-10 14:17:57 --> Total execution time: 0.1445
DEBUG - 2011-05-10 14:17:59 --> Config Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:17:59 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:17:59 --> URI Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Router Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Output Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Input Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:17:59 --> Language Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Loader Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:17:59 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:17:59 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:17:59 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Upload Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Model Class Initialized
DEBUG - 2011-05-10 14:17:59 --> Controller Class Initialized
DEBUG - 2011-05-10 14:17:59 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:17:59 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:17:59 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:17:59 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:17:59 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:17:59 --> Final output sent to browser
DEBUG - 2011-05-10 14:17:59 --> Total execution time: 0.0809
DEBUG - 2011-05-10 14:18:02 --> Config Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:18:02 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:18:02 --> URI Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Router Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Output Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Input Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:18:02 --> Language Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Loader Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:18:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:18:02 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:18:02 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Upload Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Model Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Model Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Controller Class Initialized
DEBUG - 2011-05-10 14:18:02 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:18:02 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-10 14:18:02 --> You did not select a file to upload.
DEBUG - 2011-05-10 14:18:02 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:18:02 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:18:02 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:18:02 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:18:02 --> Final output sent to browser
DEBUG - 2011-05-10 14:18:02 --> Total execution time: 0.0743
DEBUG - 2011-05-10 14:25:43 --> Config Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:25:43 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:25:43 --> URI Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Router Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Output Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Input Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:25:43 --> Language Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Loader Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:25:43 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:25:43 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:25:43 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Upload Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Model Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Model Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Controller Class Initialized
DEBUG - 2011-05-10 14:25:43 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:25:43 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-10 14:25:43 --> You did not select a file to upload.
DEBUG - 2011-05-10 14:25:43 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:25:43 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:25:43 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:25:43 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:25:43 --> Final output sent to browser
DEBUG - 2011-05-10 14:25:43 --> Total execution time: 0.0687
DEBUG - 2011-05-10 14:26:11 --> Config Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:26:11 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:26:11 --> URI Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Router Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Output Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Input Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:26:11 --> Language Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Loader Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:26:11 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:26:11 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:26:11 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Upload Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Model Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Model Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Controller Class Initialized
DEBUG - 2011-05-10 14:26:11 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:26:11 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-10 14:26:11 --> You did not select a file to upload.
DEBUG - 2011-05-10 14:26:11 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:26:11 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:26:11 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:26:11 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:26:11 --> Final output sent to browser
DEBUG - 2011-05-10 14:26:11 --> Total execution time: 0.0971
DEBUG - 2011-05-10 14:27:55 --> Config Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:27:55 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:27:55 --> URI Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Router Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Output Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Input Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:27:55 --> Language Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Loader Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:27:55 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:27:55 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:27:55 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Upload Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Model Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Controller Class Initialized
DEBUG - 2011-05-10 14:27:55 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:27:55 --> Language file loaded: language/english/upload_lang.php
ERROR - 2011-05-10 14:27:55 --> You did not select a file to upload.
DEBUG - 2011-05-10 14:27:55 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:27:55 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:27:55 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:27:55 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:27:55 --> Final output sent to browser
DEBUG - 2011-05-10 14:27:55 --> Total execution time: 0.0567
DEBUG - 2011-05-10 14:32:12 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:12 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:12 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:12 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:12 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:12 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:32:12 --> Security Class Initialized
DEBUG - 2011-05-10 14:32:12 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:12 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:12 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:12 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:12 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:12 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:12 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:12 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:12 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:12 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:12 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:12 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:12 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:12 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:32:12 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:12 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:12 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:12 --> Total execution time: 0.2516
DEBUG - 2011-05-10 14:32:14 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:14 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:14 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:14 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:14 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:14 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:14 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:14 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:14 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:14 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:14 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:32:14 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:14 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:14 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:14 --> Total execution time: 0.2609
DEBUG - 2011-05-10 14:32:24 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:24 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:24 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:24 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:24 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:32:24 --> Security Class Initialized
DEBUG - 2011-05-10 14:32:24 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:24 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:24 --> XSS Filtering completed
DEBUG - 2011-05-10 14:32:24 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:24 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:24 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:24 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:24 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:24 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:24 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:32:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:24 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:24 --> Total execution time: 0.0575
DEBUG - 2011-05-10 14:32:26 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:26 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:26 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:26 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:26 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:26 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:26 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:26 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:32:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:26 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:26 --> Total execution time: 0.0645
DEBUG - 2011-05-10 14:32:33 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:33 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:33 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:33 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:33 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:32:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:33 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:33 --> Total execution time: 0.2039
DEBUG - 2011-05-10 14:32:35 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:35 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:35 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:35 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:35 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:35 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Config Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:32:35 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:32:35 --> URI Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Router Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Output Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Input Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:32:35 --> Language Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Loader Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:32:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:32:35 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:32:35 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Upload Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:32:35 --> Controller Class Initialized
DEBUG - 2011-05-10 14:32:35 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:32:35 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:32:35 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:32:35 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:32:35 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:32:35 --> Final output sent to browser
DEBUG - 2011-05-10 14:32:35 --> Total execution time: 0.1348
DEBUG - 2011-05-10 14:33:19 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:19 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:19 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:19 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:19 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:19 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:19 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:19 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:19 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:19 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:19 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:33:19 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:19 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:19 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:19 --> Total execution time: 0.0709
DEBUG - 2011-05-10 14:33:22 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:22 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:22 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:22 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:22 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:22 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:22 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:22 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:22 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:22 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:33:22 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:22 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:22 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:22 --> Total execution time: 0.0592
DEBUG - 2011-05-10 14:33:24 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:24 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:24 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:24 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:24 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:24 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:24 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:24 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:24 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:24 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:24 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:33:24 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:24 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:24 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:24 --> Total execution time: 0.1018
DEBUG - 2011-05-10 14:33:27 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:27 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:27 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:27 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:27 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:27 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:27 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:27 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:27 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:27 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:27 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:33:27 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:27 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:27 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:27 --> Total execution time: 0.0692
DEBUG - 2011-05-10 14:33:28 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:28 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:28 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:28 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:28 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:28 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:28 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:28 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:28 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:28 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:33:28 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:28 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:28 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:28 --> Total execution time: 0.0594
DEBUG - 2011-05-10 14:33:33 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:33 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:33 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:33:33 --> Security Class Initialized
DEBUG - 2011-05-10 14:33:33 --> XSS Filtering completed
DEBUG - 2011-05-10 14:33:33 --> XSS Filtering completed
DEBUG - 2011-05-10 14:33:33 --> XSS Filtering completed
DEBUG - 2011-05-10 14:33:33 --> XSS Filtering completed
DEBUG - 2011-05-10 14:33:33 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:33 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:33 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:33 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:33 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:33 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:33 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:33 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:33 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:33 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:33 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:33:33 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:33 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:33 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:33 --> Total execution time: 0.0501
DEBUG - 2011-05-10 14:33:36 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:36 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:36 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:36 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:36 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:36 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:36 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:36 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:36 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:36 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:36 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:33:36 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:36 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:36 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:36 --> Total execution time: 0.1493
DEBUG - 2011-05-10 14:33:46 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:46 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:46 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:46 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:46 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:46 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:47 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:47 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:47 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:47 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:47 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:47 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:47 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:47 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:47 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:33:47 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:47 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:47 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:47 --> Total execution time: 0.1957
DEBUG - 2011-05-10 14:33:48 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:48 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:48 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:48 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:48 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:48 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Config Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:33:48 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:33:48 --> URI Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Router Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Output Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Input Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:33:48 --> Language Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Loader Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:33:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:33:48 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:33:48 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Upload Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:33:48 --> Controller Class Initialized
DEBUG - 2011-05-10 14:33:48 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:33:48 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:33:48 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:33:48 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:33:48 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:33:48 --> Final output sent to browser
DEBUG - 2011-05-10 14:33:48 --> Total execution time: 0.0653
DEBUG - 2011-05-10 14:36:51 --> Config Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:36:51 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:36:51 --> URI Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Router Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Output Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Input Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:36:51 --> Language Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Loader Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:36:51 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:36:51 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:36:51 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Upload Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Model Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Model Class Initialized
DEBUG - 2011-05-10 14:36:51 --> Controller Class Initialized
DEBUG - 2011-05-10 14:36:51 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:36:51 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:36:51 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:36:51 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:36:51 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:36:51 --> Final output sent to browser
DEBUG - 2011-05-10 14:36:51 --> Total execution time: 0.0933
DEBUG - 2011-05-10 14:37:06 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:06 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:06 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:06 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:06 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:06 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:37:06 --> Security Class Initialized
DEBUG - 2011-05-10 14:37:06 --> XSS Filtering completed
DEBUG - 2011-05-10 14:37:06 --> XSS Filtering completed
DEBUG - 2011-05-10 14:37:06 --> XSS Filtering completed
DEBUG - 2011-05-10 14:37:06 --> XSS Filtering completed
DEBUG - 2011-05-10 14:37:06 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:06 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:06 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:06 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:06 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:06 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:06 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:06 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:06 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:37:06 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:37:06 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:37:06 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:37:06 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:37:06 --> Final output sent to browser
DEBUG - 2011-05-10 14:37:06 --> Total execution time: 0.0527
DEBUG - 2011-05-10 14:37:07 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:07 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:07 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:07 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:07 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:07 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:08 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:37:08 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:37:08 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:37:08 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:37:08 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:37:08 --> Final output sent to browser
DEBUG - 2011-05-10 14:37:08 --> Total execution time: 0.2184
DEBUG - 2011-05-10 14:37:13 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:13 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:13 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:13 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:13 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:13 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:13 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:13 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:13 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:37:13 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:37:13 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:37:13 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:37:13 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:37:13 --> Final output sent to browser
DEBUG - 2011-05-10 14:37:13 --> Total execution time: 0.2459
DEBUG - 2011-05-10 14:37:15 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:15 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:15 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:15 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:15 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:15 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Config Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:37:15 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:37:15 --> URI Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Router Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Output Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Input Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:37:15 --> Language Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Loader Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:37:15 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:37:15 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:37:15 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Upload Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Model Class Initialized
DEBUG - 2011-05-10 14:37:15 --> Controller Class Initialized
DEBUG - 2011-05-10 14:37:15 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:37:15 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:37:15 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:37:15 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:37:15 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:37:15 --> Final output sent to browser
DEBUG - 2011-05-10 14:37:15 --> Total execution time: 0.0793
DEBUG - 2011-05-10 14:39:26 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:26 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:26 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:26 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:26 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:26 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:26 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:26 --> Controller Class Initialized
DEBUG - 2011-05-10 14:39:26 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:39:26 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:39:26 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:39:26 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:39:26 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:39:26 --> Final output sent to browser
DEBUG - 2011-05-10 14:39:26 --> Total execution time: 0.0575
DEBUG - 2011-05-10 14:39:38 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:38 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:38 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:38 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:38 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:38 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Controller Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:39:38 --> Security Class Initialized
DEBUG - 2011-05-10 14:39:38 --> XSS Filtering completed
DEBUG - 2011-05-10 14:39:38 --> XSS Filtering completed
DEBUG - 2011-05-10 14:39:38 --> XSS Filtering completed
DEBUG - 2011-05-10 14:39:38 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:38 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:38 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:38 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:38 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:38 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:38 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:38 --> Controller Class Initialized
DEBUG - 2011-05-10 14:39:38 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:39:38 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:39:38 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:39:38 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:39:38 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:39:38 --> Final output sent to browser
DEBUG - 2011-05-10 14:39:38 --> Total execution time: 0.2904
DEBUG - 2011-05-10 14:39:40 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:40 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:40 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:40 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:40 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:40 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:40 --> Controller Class Initialized
DEBUG - 2011-05-10 14:39:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:39:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:39:40 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:39:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:39:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:39:40 --> Final output sent to browser
DEBUG - 2011-05-10 14:39:40 --> Total execution time: 0.0459
DEBUG - 2011-05-10 14:39:44 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:44 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:44 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:44 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:44 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:44 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:44 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:44 --> Controller Class Initialized
DEBUG - 2011-05-10 14:39:44 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:39:44 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:39:44 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:39:44 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:39:44 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:39:44 --> Final output sent to browser
DEBUG - 2011-05-10 14:39:44 --> Total execution time: 0.0733
DEBUG - 2011-05-10 14:39:46 --> Config Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:39:46 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:39:46 --> URI Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Router Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Output Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Input Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:39:46 --> Language Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Loader Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:39:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:39:46 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:39:46 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Upload Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:39:46 --> Controller Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Config Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:40:57 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:40:57 --> URI Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Router Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Output Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Input Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:40:57 --> Language Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Loader Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:40:57 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:40:57 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:40:57 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Upload Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Model Class Initialized
DEBUG - 2011-05-10 14:40:57 --> Controller Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Config Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:42:03 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:42:03 --> URI Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Router Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Output Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Input Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:42:03 --> Language Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Loader Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:42:03 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:42:03 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:42:03 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Upload Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Model Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Model Class Initialized
DEBUG - 2011-05-10 14:42:03 --> Controller Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Config Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:42:58 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:42:58 --> URI Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Router Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Output Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Input Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:42:58 --> Language Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Loader Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:42:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:42:58 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:42:58 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Upload Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Model Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Model Class Initialized
DEBUG - 2011-05-10 14:42:58 --> Controller Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Config Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:43:02 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:43:02 --> URI Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Router Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Output Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Input Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:43:02 --> Language Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Loader Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:43:02 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:43:02 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:43:02 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Upload Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:02 --> Controller Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Config Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:43:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:43:07 --> URI Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Router Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Output Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Input Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:43:07 --> Language Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Loader Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:43:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:43:07 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:43:07 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Upload Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:07 --> Controller Class Initialized
ERROR - 2011-05-10 14:43:07 --> Severity: Notice --> Undefined property: stdClass::$foto /home/zorbit/www/artigos/application/models/noticia_model.php 238
ERROR - 2011-05-10 14:43:07 --> Severity: Notice --> Trying to get property of non-object /home/zorbit/www/artigos/application/models/noticia_model.php 238
DEBUG - 2011-05-10 14:43:35 --> Config Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:43:35 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:43:35 --> URI Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Router Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Output Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Input Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:43:35 --> Language Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Loader Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:43:35 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:43:35 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:43:35 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Upload Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:35 --> Controller Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Config Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:43:46 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:43:46 --> URI Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Router Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Output Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Input Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:43:46 --> Language Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Loader Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:43:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:43:46 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:43:46 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Upload Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Model Class Initialized
DEBUG - 2011-05-10 14:43:46 --> Controller Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Config Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:44:32 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:44:32 --> URI Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Router Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Output Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Input Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:44:32 --> Language Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Loader Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:44:32 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:44:32 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:44:32 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Upload Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Model Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Model Class Initialized
DEBUG - 2011-05-10 14:44:32 --> Controller Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Config Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:45:22 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:45:22 --> URI Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Router Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Output Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Input Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:45:22 --> Language Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Loader Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:45:22 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:45:22 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:45:22 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Upload Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Model Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Model Class Initialized
DEBUG - 2011-05-10 14:45:22 --> Controller Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Config Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:45:56 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:45:56 --> URI Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Router Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Output Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Input Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:45:56 --> Language Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Loader Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:45:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:45:56 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:45:56 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Upload Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Model Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Model Class Initialized
DEBUG - 2011-05-10 14:45:56 --> Controller Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Config Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:46:10 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:46:10 --> URI Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Router Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Output Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Input Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:46:10 --> Language Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Loader Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:46:10 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:46:10 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:46:10 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Upload Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Model Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Model Class Initialized
DEBUG - 2011-05-10 14:46:10 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:48 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:48 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:48 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:48 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:48 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:48 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:48 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:49 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:49 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:49 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:49 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:49 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:49 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:49 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:49 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:49 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:49 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:55:49 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:49 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:49 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:49 --> Total execution time: 0.1110
DEBUG - 2011-05-10 14:55:52 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:52 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:52 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:52 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:52 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:52 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:52 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:52 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:52 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:52 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:52 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:55:52 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:52 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:52 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:52 --> Total execution time: 0.0495
DEBUG - 2011-05-10 14:55:53 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:53 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:53 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:53 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:53 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:53 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:53 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:53 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:53 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:53 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:54 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:54 --> Total execution time: 0.0814
DEBUG - 2011-05-10 14:55:54 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:54 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:54 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:54 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:54 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:54 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:54 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:54 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:54 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:54 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:54 --> Total execution time: 0.0609
DEBUG - 2011-05-10 14:55:56 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:56 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:56 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:56 --> No URI present. Default controller set.
DEBUG - 2011-05-10 14:55:56 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:56 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:56 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:56 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:56 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:56 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:56 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:56 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:56 --> File loaded: application/views/home_view.php
DEBUG - 2011-05-10 14:55:56 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:56 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:56 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:56 --> Total execution time: 0.0667
DEBUG - 2011-05-10 14:55:58 --> Config Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:55:58 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:55:58 --> URI Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Router Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Output Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Input Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:55:58 --> Language Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Loader Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:55:58 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:55:58 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:55:58 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Upload Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Model Class Initialized
DEBUG - 2011-05-10 14:55:58 --> Controller Class Initialized
DEBUG - 2011-05-10 14:55:58 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:55:58 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:55:58 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:55:58 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:55:58 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:55:58 --> Final output sent to browser
DEBUG - 2011-05-10 14:55:58 --> Total execution time: 0.0504
DEBUG - 2011-05-10 14:56:01 --> Config Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:56:01 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:56:01 --> URI Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Router Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Output Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Input Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:56:01 --> Language Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Loader Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:56:01 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:56:01 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:56:01 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Upload Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Model Class Initialized
DEBUG - 2011-05-10 14:56:01 --> Controller Class Initialized
DEBUG - 2011-05-10 14:56:01 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:56:01 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:56:01 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-10 14:56:01 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:56:01 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:56:01 --> Final output sent to browser
DEBUG - 2011-05-10 14:56:01 --> Total execution time: 0.0541
DEBUG - 2011-05-10 14:57:28 --> Config Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:57:28 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:57:28 --> URI Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Router Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Output Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Input Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:57:28 --> Language Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Loader Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:57:28 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:57:28 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:57:28 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Upload Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Controller Class Initialized
DEBUG - 2011-05-10 14:57:28 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-10 14:57:28 --> Security Class Initialized
DEBUG - 2011-05-10 14:57:28 --> XSS Filtering completed
DEBUG - 2011-05-10 14:57:28 --> XSS Filtering completed
DEBUG - 2011-05-10 14:57:28 --> XSS Filtering completed
DEBUG - 2011-05-10 14:57:29 --> Config Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:57:29 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:57:29 --> URI Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Router Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Output Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Input Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:57:29 --> Language Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Loader Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:57:29 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:57:29 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:57:29 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Upload Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:29 --> Controller Class Initialized
DEBUG - 2011-05-10 14:57:29 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:57:29 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:57:29 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:57:29 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:57:29 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:57:29 --> Final output sent to browser
DEBUG - 2011-05-10 14:57:29 --> Total execution time: 0.0425
DEBUG - 2011-05-10 14:57:40 --> Config Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:57:40 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:57:40 --> URI Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Router Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Output Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Input Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:57:40 --> Language Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Loader Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:57:40 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:57:40 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:57:40 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Upload Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:40 --> Controller Class Initialized
DEBUG - 2011-05-10 14:57:40 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:57:40 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:57:40 --> File loaded: application/views/noticia/noticia_del_view.php
DEBUG - 2011-05-10 14:57:40 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:57:40 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:57:40 --> Final output sent to browser
DEBUG - 2011-05-10 14:57:40 --> Total execution time: 0.0784
DEBUG - 2011-05-10 14:57:41 --> Config Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:57:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:57:41 --> URI Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Router Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Output Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Input Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:57:41 --> Language Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Loader Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:57:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:57:41 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:57:41 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Upload Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Controller Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Config Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Hooks Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Utf8 Class Initialized
DEBUG - 2011-05-10 14:57:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-10 14:57:41 --> URI Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Router Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Output Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Input Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-10 14:57:41 --> Language Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Loader Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Helper loaded: url_helper
DEBUG - 2011-05-10 14:57:41 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-10 14:57:41 --> Database Driver Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Helper loaded: form_helper
DEBUG - 2011-05-10 14:57:41 --> Form Validation Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Upload Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Model Class Initialized
DEBUG - 2011-05-10 14:57:41 --> Controller Class Initialized
DEBUG - 2011-05-10 14:57:41 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-10 14:57:41 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-10 14:57:41 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-10 14:57:41 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-10 14:57:41 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-10 14:57:41 --> Final output sent to browser
DEBUG - 2011-05-10 14:57:41 --> Total execution time: 0.0505
<file_sep>/application/logs/log-2011-05-27.php
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
DEBUG - 2011-05-27 16:33:41 --> Config Class Initialized
DEBUG - 2011-05-27 16:33:41 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:33:41 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:33:41 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:33:41 --> URI Class Initialized
DEBUG - 2011-05-27 16:33:41 --> Router Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Output Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Input Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:33:42 --> Language Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Loader Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:33:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:33:42 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:33:42 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Upload Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Config Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:33:42 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:33:42 --> URI Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Router Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Output Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Input Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:33:42 --> Language Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Loader Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:33:42 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:33:42 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:33:42 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Upload Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Controller Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:42 --> Controller Class Initialized
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-27 16:33:42 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-27 16:33:42 --> Final output sent to browser
DEBUG - 2011-05-27 16:33:42 --> Final output sent to browser
DEBUG - 2011-05-27 16:33:42 --> Total execution time: 1.2693
DEBUG - 2011-05-27 16:33:42 --> Total execution time: 0.3229
DEBUG - 2011-05-27 16:33:45 --> Config Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:33:45 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:33:45 --> URI Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Router Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Output Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Input Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:33:45 --> Language Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Loader Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:33:45 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:33:45 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:33:45 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Upload Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:45 --> Controller Class Initialized
DEBUG - 2011-05-27 16:33:45 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-27 16:33:45 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-27 16:33:45 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-27 16:33:45 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-27 16:33:45 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-27 16:33:45 --> Final output sent to browser
DEBUG - 2011-05-27 16:33:45 --> Total execution time: 0.0509
DEBUG - 2011-05-27 16:33:46 --> Config Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:33:46 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:33:46 --> URI Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Router Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Output Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Input Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:33:46 --> Language Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Loader Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:33:46 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:33:46 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:33:46 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Upload Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Model Class Initialized
DEBUG - 2011-05-27 16:33:46 --> Controller Class Initialized
DEBUG - 2011-05-27 16:33:46 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-27 16:33:46 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-27 16:33:46 --> File loaded: application/views/noticia/noticia_cad_view.php
DEBUG - 2011-05-27 16:33:46 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-27 16:33:46 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-27 16:33:46 --> Final output sent to browser
DEBUG - 2011-05-27 16:33:46 --> Total execution time: 0.1911
DEBUG - 2011-05-27 16:34:07 --> Config Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:34:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:34:07 --> URI Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Router Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Output Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Input Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:34:07 --> Language Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Loader Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:34:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:34:07 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:34:07 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Upload Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Model Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Model Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Controller Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Language file loaded: language/english/form_validation_lang.php
DEBUG - 2011-05-27 16:34:07 --> Security Class Initialized
DEBUG - 2011-05-27 16:34:07 --> XSS Filtering completed
DEBUG - 2011-05-27 16:34:07 --> XSS Filtering completed
DEBUG - 2011-05-27 16:34:07 --> XSS Filtering completed
DEBUG - 2011-05-27 16:34:07 --> XSS Filtering completed
DEBUG - 2011-05-27 16:34:07 --> Config Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Hooks Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Utf8 Class Initialized
DEBUG - 2011-05-27 16:34:07 --> UTF-8 Support Enabled
DEBUG - 2011-05-27 16:34:07 --> URI Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Router Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Output Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Input Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Global POST and COOKIE data sanitized
DEBUG - 2011-05-27 16:34:07 --> Language Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Loader Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Helper loaded: url_helper
DEBUG - 2011-05-27 16:34:07 --> Language file loaded: language/english/system_lang.php
DEBUG - 2011-05-27 16:34:07 --> Database Driver Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Helper loaded: form_helper
DEBUG - 2011-05-27 16:34:07 --> Form Validation Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Upload Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Image Lib Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Model Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Model Class Initialized
DEBUG - 2011-05-27 16:34:07 --> Controller Class Initialized
DEBUG - 2011-05-27 16:34:07 --> File loaded: application/views/topo_view.php
DEBUG - 2011-05-27 16:34:07 --> File loaded: application/views/menu_view.php
DEBUG - 2011-05-27 16:34:07 --> File loaded: application/views/noticia/noticia_view.php
DEBUG - 2011-05-27 16:34:07 --> File loaded: application/views/rodape_view.php
DEBUG - 2011-05-27 16:34:07 --> File loaded: application/views/template_view.php
DEBUG - 2011-05-27 16:34:07 --> Final output sent to browser
DEBUG - 2011-05-27 16:34:07 --> Total execution time: 0.0595
| 705a22d6ae764bd23e7a72f71b081ec93a198fb9 | [
"SQL",
"PHP"
] | 24 | SQL | NaszvadiG/Chat-CI | 8d552a584a22bc0b4effc8907e41b97913f0800c | 1f4f1f70ba1a9922448d4b11ced8c5c7b0f01ac5 |
refs/heads/master | <repo_name>dirtgirlcity/dong<file_sep>/ball.lua
local ballClass = { }
ballClass.__index = ballClass
local state = require('state')
local Vector = require('vector')
local function Ball()
local width, height = love.graphics.getDimensions()
local instance = {
position = Vector( width/2, height/2 ),
velocity = Vector(100, 200),
radius = 5
}
setmetatable(instance, ballClass)
return instance
end
function ballClass:draw()
love.graphics.setColor( 183, 3, 3 )
love.graphics.circle( 'fill', self.position.x, self.position.y, self.radius )
end
function ballClass:update(dt)
local edge = self:edge()
if (edge ~= "") then
self:reflection(edge, dt)
end
self.position = self.position:move(self.velocity, dt)
end
function ballClass:edge()
local width, height = love.graphics.getDimensions()
local edge = ""
if self.position.x <= 0 then
edge = "left"
end
if (self.position.x + self.radius) >= width then
edge = "right"
end
if self.position.y <= 0 then
edge = "top"
end
if (self.position.y + self.radius) >= height then
edge = "bottom"
end
return edge
end
function ballClass:reflection(edge, dt)
local width, height = love.graphics.getDimensions()
if edge == "top" or edge == "bottom" then
self.velocity = self.velocity:reverse("y")
if self.position.x < 10 or self.position.x > width - 10 then
self.velocity = self.velocity:reverse("x")
end
end
if edge == "left" or edge == "right" then
self.velocity = self.velocity:reverse("x")
if self.position.y < 10 or self.position.y > height - 10 then
self.velocity = self.velocity:reverse("y")
end
self:collisionCheck(edge, dt)
end
end
function ballClass:collisionCheck(edge, dt)
local save = false
for _, entity in ipairs(state.entities) do
if (entity.num == 1 and edge == "right")
or (entity.num == 2 and edge == "left") then
save = self:touching(entity, dt)
end
end
if save == false then
state:addPoint(edge)
end
end
function ballClass:touching(player, dt)
if self.position.y > player.y - 5 and self.position.y < player.y + player.w + 5 then
self:hitangle(player.y - 5, player.y + player.h + 5, dt)
return true
else
return false
end
end
function ballClass:hitangle(top, bottom, dt)
local span = bottom - top
if self.y > top and self.y < top + span/3 then
self.velocity = self.velocity:move(Vector(100, 200), dt)
end
if self.y > top + span/3 and self.y < top + (2 * span/3) then
self.velocity = self.velocity:move(Vector(100, 0), dt)
end
if self.y > top + (2 * span/3) and self.y < bottom then
self.velocity = self.velocity:move(Vector(100, -200), dt)
end
end
return Ball
<file_sep>/conf.lua
love.conf = function(config)
config.window.width = 800
config.window.height = 800
config.author = "<NAME>"
end
<file_sep>/main.lua
local Ball = require('ball')
local Player = require('player')
local state = require('state')
function love.load()
love.graphics.setBackgroundColor(0, 0, 0)
love.window.setTitle("dong")
local ball = Ball()
local player1 = Player({
num = 1,
up = 'up',
down = 'down'
})
local player2 = Player({
num = 2,
up = 'w',
down = 's'
})
table.insert(state.entities, ball)
table.insert(state.entities, player1)
table.insert(state.entities, player2)
end
function love.draw()
for _, entity in ipairs(state.entities) do
entity:draw()
end
end
function love.update(dt)
for _, entity in ipairs(state.entities) do
entity:update(dt)
end
end
<file_sep>/vector.lua
local vectorClass = { }
vectorClass.__index = vectorClass
local function Vector(x, y)
local instance = {
x = x,
y = y
}
setmetatable(instance, vectorClass)
return instance
end
function vectorClass:move(vector, dt)
local x = self.x + (vector.x * dt)
local y = self.y + (vector.y * dt)
return Vector(x, y)
end
function vectorClass:reverse(coordinate)
if coordinate == "x" then
return Vector(-self.x, self.y)
end
if coordinate == "y" then
return Vector(self.x, -self.y)
end
end
return Vector
<file_sep>/state.lua
local stateClass = { }
stateClass.__index = stateClass
local function State()
local instance = {
entities = { },
score = {
player1 = 0,
player2 = 0
}
}
setmetatable(instance, stateClass)
return instance
end
function stateClass:addPoint(edge)
if edge == "right" then
self.score.player1 = self.score.player1 + 1
end
if edge == "left" then
self.score.player2 = self.score.player2 + 1
end
end
return State()
<file_sep>/player.lua
local playerClass = { }
playerClass.__index = playerClass
local function Player(config)
local width, height = love.graphics.getDimensions()
local startPosition = 10
if config.num == 2 then
startPosition = width
end
local instance = {
num = config.num,
up = config.up,
down = config.down,
h = height/8,
w = 10,
x = startPosition - 10,
y = height/2 - (height/16)
}
setmetatable(instance, playerClass)
return instance
end
function playerClass:draw()
love.graphics.setColor( 255, 255, 255 )
love.graphics.rectangle( 'fill', self.x, self.y, self.w, self.h )
end
function playerClass:update(dt)
local _, height = love.graphics.getDimensions()
local dy = 0
if love.keyboard.isDown(self.up) then
dy = -300
end
if love.keyboard.isDown(self.down) then
dy = 300
end
if self.y < 0 then
dy = 200
end
if self.y + self.h > height then
dy = -200
end
self.y = self.y + (dy * dt)
end
return Player
| 277e54f7ee3ff9c375927a78217ea8437aec767d | [
"Lua"
] | 6 | Lua | dirtgirlcity/dong | bfbe96e2d26c472d2cec1954e641cfbbbac7f293 | 5c83d417aca6103b6e858ed1a6588b2ca36f30ff |
refs/heads/master | <file_sep>import os, sys
import secrets
import hashlib
from PIL import Image
from flask import render_template, url_for, redirect, flash, request, abort, Blueprint
from flaskdash import app, db, bcrypt, mail
from flaskdash.models import User, Posts
from flask_mail import Message
from flask_login import login_user, logout_user, current_user, login_required
# Resize and Save image
def save_profil_picture(picture):
random_hex = secrets.token_hex(18)
_, f_ext = os.path.splitext(picture.filename)
picture_fn = random_hex + f_ext
user_id = str(current_user.id)
encrypting = hashlib.sha1(user_id.encode('utf-8'))
path = app.root_path + '/static/images/profils/' + encrypting.hexdigest()
if os.path.exists(path) != True:
os.mkdir(path, 755)
picture_path = os.path.join(path, picture_fn)
output_size = (125, 125)
i = Image.open(picture)
i.thumbnail(output_size)
i.save(picture_path)
return encrypting.hexdigest() + '/' + picture_fn;
# Reset email function
def send_reset_email(user):
token = user.get_reset_token()
url = url_for('forgetPassword')
message = Message('Reinitialisation de votre mot de passe', sender = '<EMAIL>', recipients = [user.email])
message.body = f'''Cliquez sur liens pour réinitialiser votre mot de passe:
{url_for('resetPassword',token=token, _external = True)}
'''
mail.send(message)<file_sep>import os, sys
import secrets
import hashlib
from PIL import Image
from flask import render_template, url_for, redirect, flash, request, abort, Blueprint
from flask_login import login_user, logout_user, current_user, login_required
from flaskdash import app, db, bcrypt, mail
from flaskdash.frames.forms import LoginForm, RegistrationForm
from flaskdash.models import User, Posts
from flask_mail import Message
frames = Blueprint('frames', __name__)
@frames.route('/home')
@login_required
def home():
return render_template('index.html', header = True, title = 'Acceuil')
# Login route
@frames.route('/login', methods=['GET', 'POST'])
def login():
if current_user.is_authenticated:
return redirect(url_for('frames.home'))
form = LoginForm()
if form.validate_on_submit():
user = User.query.filter_by(email = form.email.data).first()
if user and bcrypt.check_password_hash(user.password, form.password.data):
login_user(user, remember = form.remember.data)
next_page = request.args.get('next')
return redirect(url_for(next_page[1:])) if next_page else redirect(url_for('frames.home'))
else:
flash(f"Check your email and/or your password", 'danger')
return render_template('login.html', header = False, form = form, title = 'Connexion')
# Registration route
@frames.route('/register', methods=['GET', 'POST'])
def register():
if current_user.is_authenticated:
return redirect(url_for('frames.home'))
form = RegistrationForm()
if form.validate_on_submit():
username = form.username.data
email = form.email.data
hashed_password = <PASSWORD>.generate_password_hash(form.password.data).decode('utf-8')
user = User(username = username, email = email, password = <PASSWORD>_password)
db.session.add(user)
db.session.commit()
flash(f'Votre compte à bien été crée { form.username.data } !', 'success text-center')
return redirect(url_for('frames.login'))
return render_template('register.html', header = False, form = form, title = 'Inscription')
# Logout route
@frames.route('/logout')
def logout():
logout_user()
return redirect(url_for('frames.login'))
<file_sep>import os, sys
import secrets
import hashlib
from PIL import Image
from flask import render_template, url_for, redirect, flash, request, abort, Blueprint
from flask_login import login_user, logout_user, current_user, login_required
from flaskdash import app, db, bcrypt, mail
from flaskdash.users.forms import UpdateInfoForm, RequestResetForm, ResetPasswordForm
from flaskdash.models import User, Posts
from flask_mail import Message
from flaskdash.users.utils import save_profil_picture, send_reset_email
users = Blueprint('users', __name__)
# Update account route
@users.route('/account', methods = ['GET', 'POST'])
@login_required
def account():
form = UpdateInfoForm()
if form.validate_on_submit():
username = form.username.data
email = form.email.data
hashed_password = <PASSWORD>.generate_password_hash(form.password.data).decode('utf-8')
current_user.username = form.username.data
current_user.email = form.email.data
if form.image.data:
picture_file = save_profil_picture(form.image.data)
current_user.image_file = picture_file
db.session.commit()
flash(f'Les modifications de votre compte ont bien été prise en compte !', 'success text-center')
return redirect(url_for('users.account'))
return render_template('account.html',header = True, form = form, title = 'Modifier son compte')
# Forgot password route
@users.route('/forget-password', methods = ['GET', 'POST'])
def forgetPassword():
if current_user.is_authenticated:
return redirect(url_for('frames.home'))
form = RequestResetForm()
if form.validate_on_submit:
user = User.query.filter_by(email = form.email.data).first()
if user:
send_reset_email(user)
flash(f'Un email vous à été envoyé afin de mettre à jour votre mot de passe', 'info text-center')
return redirect(url_for('frames.login'))
return render_template('forgot-password.html',header = False, form = form, title = 'Mot de passe oublié')
# Reset password route
@users.route('/reset-password', methods = ['GET', 'POST'])
def resetPassword():
if current_user.is_authenticated or request.args.get('token') == None :
return redirect(url_for('frames.home'))
else:
token = request.args.get('token')
user = User.verify_reset_token(token)
form = ResetPasswordForm()
if user == None:
flash(f'La session de changement de mots de passe est invalide ou a expirée', 'warning text-center')
return redirect(url_for('frames.forgetPassword'))
if form.validate_on_submit:
if form.password.data:
hashed_password = <PASSWORD>.generate_password_hash(form.password.data).decode('utf-8')
user.password = <PASSWORD>
db.session.commit()
flash(f'Votre mot de passe a bien été réinitialisé', 'info text-center')
return redirect(url_for('frames.login'))
return render_template('reset-password.html',header = False, form = form, title = 'Changer de mots de passe')<file_sep>from datetime import datetime
from flaskdash import db, login_manager, app
from itsdangerous import TimedJSONWebSignatureSerializer as Serializer
from flask_login import UserMixin
@login_manager.user_loader
def load_user(user_id):
return User.query.get(int(user_id))
class User(db.Model, UserMixin):
id = db.Column(db.Integer, primary_key = True)
username = db.Column(db.String(20), unique = True, nullable = False)
email = db.Column(db.String(120), unique = True, nullable = False)
image_file = db.Column(db.String(2000), nullable = False, default = 'default.jpg')
password = db.Column(db.String(60), nullable = False)
posts = db.relationship('Posts', backref = 'author', lazy = True)
connections = db.relationship('Connections', backref = 'user', lazy = True)
def get_reset_token(self, expires_sec = 1800):
serializer = Serializer(app.config['SECRET_KEY'])
return serializer.dumps({'user_id': self.id}).decode('utf-8')
@staticmethod
def verify_reset_token(token):
serializer = Serializer(app.config['SECRET_KEY'])
try:
user_id = serializer.loads(token)['user_id']
except:
return None
return User.query.get(user_id)
def __repr__(self):
return f"User('{self.id}', '{self.username}', '{self.email}', '{self.image_file}')"
class Connections(db.Model):
id = db.Column(db.Integer, primary_key = True)
ip = db.Column(db.String(120), unique = True, nullable = False)
date_connection = db.Column(db.DateTime, nullable = False, default = datetime.utcnow)
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable = False)
def __repr__(self):
return f"Connections('{self.ip}', '{self.date_connection}')"
class Posts(db.Model):
id = db.Column(db.Integer, primary_key = True)
title = db.Column(db.String(100), nullable = False)
date_posted = db.Column(db.DateTime, nullable = False, default = datetime.utcnow)
content = db.Column(db.Text, nullable = False)
user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable = False)
def __repr__(self):
return f"Posts('{self.title}', '{self.date_posted}', '{self.content}', '{self.author}')"<file_sep>{% extends "base.html" %}
{% block content %}
{# Delete confirmation modal #}
<div class="modal" id="confirmedModal">
<div class="modal-dialog">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<h4 class="modal-title">Etes-vous sur de vouloir supprimer cette publication ?</h4>
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<!-- Modal body -->
<div class="modal-body border-none d-flex justify-content-center">
<a class="data-redirect" href="">
<button type="button" class="btn btn-danger mr-2">Supprimer</button>
</a>
<button type="button" class="btn btn-primary" data-dismiss="modal">Annuler</button>
</div>
</div>
</div>
</div>
{# End delete confirmation modal #}
<div class="page-wrapper">
<!-- MAIN CONTENT-->
<div class="main-content">
<div class="section__content section__content--p30">
<div class="container-fluid">
<div class="row">
<!-- ALL POSTS AREA -->
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="au-card au-card--no-shadow au-card--no-pad m-b-40">
<div class="au-card-title" style="background-image:url('images/bg-title-02.jpg');">
<div class="bg-overlay bg-overlay--blue"></div>
<h3>
<i class="zmdi zmdi-comment-text"></i>All publications </h3>
<a href="/create/post">
<button class="au-btn-plus add-post">
<i class="zmdi zmdi-plus add-post"></i>
</button>
</a>
</div>
<div class="au-inbox-wrap js-inbox-wrap">
<div class="au-message js-list-load">
<div class="au-message-list">
{% for post in posts.items %}
{% set profil_image = url_for('static', filename = 'images/profils/' + post.author.image_file ) %}
<div class="au-message__item">
<div class="au-message__item-inner">
<div class="au-message__item-text">
<div class="avatar-wrap">
<div class="avatar-3">
<img src="{{ profil_image }}" class="h-100 img-fluid" alt="<NAME>">
</div>
</div>
<div class="text">
<h5 class="name col-publication cursor-pointer" data-title="{{ post.title }}">
{{ post.author.username }}</h5>
<p> {{ post.title }} </p>
{% if post.author.id == current_user.id %}
<a href="/update/post/{{ post.title }}">
<button class="btn-circle btn-md au-btn--green add-post text-white">
<i class="zmdi zmdi-edit"></i>
</button>
</a>
<button class="btn-circle btn-md btn-danger btn-delete-modal" data-toggle="modal"
data-target="#confirmedModal" data-publication="{{post.title}}">
<i class="zmdi zmdi-delete add-edit"></i>
</button>
{% endif %}
</div>
</div>
<div class="au-message__item-time">
<span> {{ posts.date_posted }}</span>
</div>
</div>
</div>
{% endfor %}
</div>
<div class="w-100 d-flex justify-content-center pt-4 pb-4">
{% for page_num in posts.iter_pages(left_edge=1, right_edge=1, left_current=1, right_current=3) %}
{% if page_num %}
{% if page_num != page %}
<a class="btn btn-outline-info" href="{{ url_for('posts.allPosts', page=page_num) }}"> {{ page_num }} </a>
{% else %}
<a class="btn btn-outline-info active" href="{{ url_for('posts.allPosts', page=page_num) }}"> {{ page_num }} </a>
{% endif %}
{% else %}
<a class="btn btn-outline-info" href="#"> ... </a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
</div>
</div>
<!-- END POSTS AREA -->
</div>
</div>
</div>
</div>
<!-- END MAIN CONTENT-->
<!-- END PAGE CONTAINER-->
</div>
</div>
{% endblock %}<file_sep>from flask_wtf import FlaskForm
from flask_wtf.file import FileField, FileAllowed
from flaskdash.models import User, Posts
from flask_login import current_user
from wtforms import StringField, PasswordField, SubmitField, BooleanField, TextAreaField
from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
class PostForm(FlaskForm):
title = StringField('Username', validators = [DataRequired(), Length(min = 2, max = 100)])
content = TextAreaField('Contenu', validators = [DataRequired()])
submit = SubmitField('Publier')
def validate_title(self, title):
post = Posts.query.filter_by(title = title.data).first()
if len(title.data) > 50:
raise ValidationError("Votre titre ne peut dépasser les 50 caracteres.")
elif post:
raise ValidationError("Ce titre est déja utilisé pour un autre publication.")
class UpdatePostForm(FlaskForm):
title = StringField('Username', validators = [DataRequired(), Length(min = 2, max = 100)])
content = TextAreaField('Contenu', validators = [DataRequired()])
submit = SubmitField('Editer')
def validate_title(self, title):
post = Posts.query.filter_by(title = title.data).first()
if post and post.title != title.data:
if len(title.data) > 50:
raise ValidationError("Votre titre ne peut dépasser les 50 caracteres.")
elif post:
raise ValidationError("Ce titre est déja utilisé pour un autre publication.")
<file_sep>import os, sys
import secrets
import hashlib
from PIL import Image
from flask import render_template, url_for, redirect, flash, request, abort, Blueprint
from flaskdash import app, db, bcrypt, mail
from flaskdash.posts.forms import PostForm, UpdatePostForm
from flaskdash.models import User, Posts
from flask_mail import Message
from flask_login import login_required, current_user
posts = Blueprint('posts', __name__)
# All Posts route
@posts.route('/posts', methods = ['GET', 'POST'])
@login_required
def allPosts():
page = request.args.get('page', 1, type = int)
posts = Posts.query.order_by(Posts.date_posted.desc()).paginate(page = page, per_page = 3)
return render_template('posts.html',header = True, posts = posts, page = page, title = 'Publications')
# Posts route
@posts.route('/posts/<name>', methods = ['GET', 'POST'])
@login_required
def displayPosts(name):
post = Posts.query.filter_by(title = name).first()
if post == None:
abort(404)
return render_template('single-post.html',header = True, post = post, title = name)
# New Posts route
@posts.route('/create/post', methods = ['GET', 'POST'])
@login_required
def createPosts():
form = PostForm()
if form.validate_on_submit():
post_title = form.title.data
content = form.content.data
post = Posts(title = post_title, content = content, author = current_user)
db.session.add(post)
db.session.commit()
flash(f'Votre post à bien été publié !', 'success text-center')
return redirect(url_for('posts.allPosts'))
return render_template('new-post.html',header = True, form = form, title = 'New post')
# Update publication route
@posts.route('/update/post/<name>', methods = ['GET', 'POST'])
@login_required
def updatePosts(name):
post = Posts.query.filter_by(title = name).first()
form = UpdatePostForm()
if post.author != current_user:
abort(403)
if form.validate_on_submit():
post.title = form.title.data
post.content = form.content.data
db.session.commit()
flash(f'Votre post à bien été publié !', 'success text-center')
return redirect(url_for('posts.allosts'))
elif request.method == 'GET':
form.content.data = post.content
return render_template('update-post.html',header = True, post = post, form = form, title = 'Modifier votre publication')
# Delete publication route
@posts.route('/delete/post/<name>', methods = ['GET'])
@login_required
def deletePosts(name):
post = Posts.query.filter_by(title = name).first()
if post.author == current_user:
db.session.delete(post)
db.session.commit()
flash(f'Votre publication à bien été supprimé !', 'success text-center')
return redirect(url_for('posts.allPosts'))
else:
abort(404)<file_sep>
# Flask admin panel
Simple administator panel powered by flask
```console
pip3 install requirements.txt
flask db init
flask db migrate
flask db upgrade
flask run
```
# The project
## Login

## Register

## Home

## Tickets

## Create tickets

## Read tickets

## Update tickets

## Delete tickets

<file_sep>import os
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
from flask_bcrypt import Bcrypt
from flask_login import LoginManager
from flask_mail import Mail
app = Flask(__name__)
app.config['SECRET_KEY'] = '5ead2feb22f188a6b9b7daa440c43a02'
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql+psycopg2://postgres:root@localhost/my_project'
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
app.config['MAIL_SERVER'] = 'smtp.gmail.com'
app.config['MAIL_PORT'] = 587
app.config['MAIL_USE_TLS'] = True
app.config['MAIL_USERNAME'] = '<EMAIL>'
app.config['MAIL_PASSWORD'] = '<PASSWORD>@'
db = SQLAlchemy(app)
bcrypt = Bcrypt(app)
mail = Mail(app)
login_manager = LoginManager(app)
login_manager.login_view = 'frames.login'
login_manager.login_message_category = 'info text-center'
login_manager.login_message = "Veuillez vous connecter afin d'acceder à cette page"
from flaskdash.users.routes import users
from flaskdash.posts.routes import posts
from flaskdash.frames.routes import frames
app.register_blueprint(users)
app.register_blueprint(posts)
app.register_blueprint(frames)<file_sep>from flask_wtf import FlaskForm
from flask_wtf.file import FileField, FileAllowed
from flaskdash.models import User, Posts
from flask_login import current_user
from wtforms import StringField, PasswordField, SubmitField, BooleanField, TextAreaField
from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
class RegistrationForm(FlaskForm):
username = StringField('Username', validators = [DataRequired(), Length(min=2, max=50)])
email = StringField('Email', validators = [DataRequired(), Email()])
password = PasswordField('<PASSWORD>', validators = [DataRequired()])
confirm_password = PasswordField('<PASSWORD> de passe', validators = [DataRequired(), EqualTo('password')])
submit = SubmitField('Inscription')
def validate_username(self, username):
user = User.query.filter_by(username = username.data).first()
if user:
raise ValidationError("Ce nom d'utilisateur à déja été pris par un autre utilisateur.")
def validate_email(self, email):
user = User.query.filter_by(email = email.data).first()
if user:
raise ValidationError('Cette adresse email est déja utilisé pour un autre compte.')
class LoginForm(FlaskForm):
email = StringField('Email', validators=[DataRequired()])
password = PasswordField('<PASSWORD>', validators=[DataRequired()])
remember = BooleanField('Se souvenir de moi')
submit = SubmitField('Se connecter')<file_sep>from flask_wtf import FlaskForm
from flask_wtf.file import FileField, FileAllowed
from flaskdash.models import User, Posts
from flask_login import current_user
from wtforms import StringField, PasswordField, SubmitField, BooleanField, TextAreaField
from wtforms.validators import DataRequired, Length, Email, EqualTo, ValidationError
class UpdateInfoForm(FlaskForm):
username = StringField('Username', validators = [DataRequired(), Length(min=2, max=50)])
email = StringField('Email', validators = [DataRequired(), Email()])
password = PasswordField('<PASSWORD>', validators = [DataRequired()])
image = FileField('Update profil image', validators = [FileAllowed(['jpg', 'png'])])
confirm_password = PasswordField('<PASSWORD> de passe', validators = [DataRequired(), EqualTo('password')])
submit = SubmitField('Modifier')
def validate_username(self, username):
if username.data != current_user.username:
user = User.query.filter_by(username = username.data).first()
if user:
raise ValidationError("Ce nom d'utilisateur à déja été pris par un autre utilisateur.")
def validate_email(self, email):
if current_user.email != email.data:
user = User.query.filter_by(email = email.data).first()
if user:
raise ValidationError('Cette adresse email est déja utilisé pour un autre compte.')
def validate_password(self, password):
if current_user.password == password.data:
raise ValidationError("Votre mots de passe n'a pas été reconnu veuillez réessayer")
class RequestResetForm(FlaskForm):
email = StringField('Email', validators = [DataRequired(), Email()])
submit = SubmitField('Envoyer mot de passe')
def validate_email(self, email):
user = User.query.filter_by(email = email.data).first()
if user == None:
raise ValidationError("Aucun compte n'existe pour cette adresse mail.")
class ResetPasswordForm(FlaskForm):
password = PasswordField('<PASSWORD>', validators = [DataRequired()])
confirm_password = PasswordField('<PASSWORD> de passe', validators = [DataRequired(), EqualTo('password')])
submit = SubmitField('Modifier votre mot de passe')
def validate_confirm_password(self, confirm_password):
if confirm_password != password:
raise ValidationError('Veuillez entrée de mots de passe correspondant.')
| 3d8dba73ecda490cab23735b4975e8f82f26fcd5 | [
"Markdown",
"Python",
"HTML"
] | 11 | Python | Arowne/flask_python_project | 5fddc64993d55aaf26ec7dbfd0ef0bee4e01f4b9 | 45b0f7a8d99c10b4f8cda9f4cc624bf876b1d4cc |
refs/heads/master | <repo_name>joeslzr/MixedReality_A1<file_sep>/README.txt
Name: <NAME>
Course: CPSC 599 - Mixed Reality Apllications
Instructor: <NAME>
Demo: https://streamable.com/bnec8
Instructions:
- The respective scene is names "FarmScene"
- Requires vuforia Astronaut image target (included in repo for your convenience)
- There is a slight delay before the animation begins to give time for the image target to be found first<file_sep>/Assets/Scripts/moveShip.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class moveShip : MonoBehaviour
{
[SerializeField]
private float Speed = 1;
private Transform thisTransform;
bool move1 = false;
bool move2 = false;
bool move3 = false;
bool turn1 = false;
bool turn2 = false;
public static bool imgFound = false;
float xRot;
float zRot;
Vector3 imgV;
public GameObject img;
// Start is called before the first frame update
void Start()
{
thisTransform = GetComponent<Transform>();
}
// Update is called once per frame
void Update()
{
img = GameObject.FindGameObjectWithTag("image");
xRot = img.transform.rotation.x*100;
zRot = img.transform.rotation.z*100;
if(Time.time > 5
&& xRot < 20
&& xRot > -20
&& zRot < 20
&& zRot > -20){
print("x= " + xRot );
print("z= " + zRot );
if(!move1){
if(thisTransform.localPosition.z < 1.0823){
Vector3 move = new Vector3(0f, 0f, Speed * Time.deltaTime);
thisTransform.localPosition += move;
}else{
move1 = true;
}
}
if(move1 && !turn1){
if(thisTransform.localRotation.y <= 0.7){
thisTransform.Rotate(0, 70 * Time.deltaTime,0, Space.Self);
} else {
turn1 = true;
}
}
if(turn1 && !move2){
if(thisTransform.localPosition.x < 0.80f){
Vector3 move = new Vector3(Speed * Time.deltaTime,0f, 0f);
thisTransform.localPosition += move;
}else{
move2 = true;
}
}
if(move2 && !turn2){
if(thisTransform.localRotation.y < 0.999){
thisTransform.Rotate(0, 70 * Time.deltaTime, 0, Space.Self);
} else {
turn2 = true;
}
}
if(turn2 && !move3){
if(thisTransform.localPosition.z > -0.07){
Vector3 move = new Vector3(0f, 0f, Speed * Time.deltaTime);
thisTransform.localPosition -= move;
}else{
move3 = true;
}
}
if(move3){
if(GameObject.Find("CowBIW") == null){
if(thisTransform.localPosition.z > -2.15f){
Vector3 move = new Vector3(0f, 0f, Speed * Time.deltaTime);
thisTransform.localPosition -= move;
}
}
}
}
}
void OnTriggerEnter(Collider other){
if(other.gameObject.CompareTag("Cow")){
other.gameObject.SetActive(false);
}
}
}
<file_sep>/Assets/Scripts/abduct.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class abduct : MonoBehaviour
{
[SerializeField]
private float Speed = 1;
private Transform thisTransform;
// Start is called before the first frame update
void Start()
{
thisTransform = GetComponent<Transform>();
}
// Update is called once per frame
void Update()
{
var shipPos = GameObject.Find("BAKE").transform.localPosition;
if(shipPos.z <= -0.07 && shipPos.x >= 0.08f ){
Vector3 move = new Vector3(0f, Speed * Time.deltaTime, 0f);
thisTransform.localPosition += move;
}
}
}
| de6e1b856a254d161c00f0871c3cc67262b9e902 | [
"C#",
"Text"
] | 3 | Text | joeslzr/MixedReality_A1 | 7d37982f341e4855afd3b5f17fb886994a003bba | c9a1fee02bc3c6d26dcae8d62a660a254125491c |
refs/heads/master | <file_sep>// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "<KEY>",
authDomain: "quiz-da-biblia-d48b9.firebaseapp.com",
databaseURL: "https://quiz-da-biblia-d48b9.firebaseio.com",
projectId: "quiz-da-biblia-d48b9",
storageBucket: "quiz-da-biblia-d48b9.appspot.com",
messagingSenderId: "832726024267",
appId: "1:832726024267:web:436a99055fcaaf6b2e8dce",
measurementId: "G-VK3ZZV1P9W"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
firebase.auth().signInAnonymously().catch(function(error) {
var errorCode = error.code;
var errorMessage = error.message;
console.log(errorMessage)
});<file_sep>#100 Perguntas Bíblicas | Nível Fácil
Quiz de 100 perguntas bíblicas com alternativas para você testar o seu conhecimento e se dedicar ainda mais a Palavra de Deus!
Nesta seleção de perguntas você encontrará questões gerais sobre a Bíblia, temas do Velho e Novo Testamento.
Bom desafio!<file_sep>//INICIALIZO VARIAVEIS
var timeout = 5000;
var num_perg = 0;
var acertos = 0;
var erros = 0;
var pulos = 3;
var eliminar = 1;
var lista_score = JSON.parse(localStorage.getItem('lista-score') || '[]');
window.fn = {};
window.fn.toggleMenu = function () {
document.getElementById('appSplitter').right.toggle();
};
window.fn.loadView = function (index) {
document.getElementById('appTabbar').setActiveTab(index);
document.getElementById('sidemenu').close();
};
window.fn.loadLink = function (url) {
window.open(url, '_blank');
};
window.fn.pushPage = function (page, anim) {
if (anim) {
document.getElementById('appNavigator').pushPage(page.id, { data: { title: page.title }, animation: anim });
} else {
document.getElementById('appNavigator').pushPage(page.id, { data: { title: page.title } });
}
};
// SCRIPT PARA CRIAR O MODAL DE AGUARDE
window.fn.showDialog = function (id) {
var elem = document.getElementById(id);
elem.show();
};
//SCRIPT PARA ESCONDER O MODAL DE AGUARDE
window.fn.hideDialog = function (id) {
document.getElementById(id).hide();
};
function maxArray(array) {
return Math.max.apply(Math, array);
};
var app = {
// Application Constructor
initialize: function() {
document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
},
// deviceready Event Handler
// Bind any cordova events here. Common events are:
// 'pause', 'resume', etc.
onDeviceReady: function() {
this.receivedEvent('deviceready');
},
// Update DOM on a Received Event
receivedEvent: function(id) {
this.oneSignal();
this.getIds();
},
oneSignal: function() {
window.plugins.OneSignal
.startInit("c890bf70-f20d-4d2d-ab10-4a75230489a2")
.handleNotificationOpened(function(jsonData) {
var mensagem = JSON.parse(JSON.stringify(jsonData['notification']['payload']['additionalData']['mensagem']));
var titulo = JSON.parse(JSON.stringify(jsonData['notification']['payload']['additionalData']['titulo']));
ons.notification.alert(
mensagem,
{title: titulo}
);
})
.inFocusDisplaying(window.plugins.OneSignal.OSInFocusDisplayOption.Notification)
.endInit();
},
//FUNÇÃO DE BUSCA
onSearchKeyDown: function(id) {
if (id === '') {
return false;
}
else{}
},
buscaPergunta: function(num_pergunta) {
$("#textoquiz").html('');
var selector = this;
//BUSCO AS PERGUNTAS
var data = JSON.parse(localStorage.getItem('lista-quiz'));
//VERIFICO SE EXISTE PERGUNTAS
if (data) {
$(selector).each(function(){
var pergunta = null;
var respostas = null;
var resposta = null;
var obj = {
id : num_pergunta,
opcoes : ""
};
var total_perguntas = 0;
for(i in data){
total_perguntas++
//CARREGO A PERGUNTA ATUAL
if(i == obj.id){
pergunta = data[i]['pergunta'];
respostas = data[i]['opcoes'];
resposta = data[i]['resposta'];
//PASSO A PERGUNTA ATUAL PARA UMA VARIAVEL
var perguntaAtual = data[i];
}
}
if (pergunta) {
obj.opcoes = '<ons-list-header style="font-size: 25px;">'+(num_pergunta+1)+' - '+pergunta+'</ons-list-header>';
for (var i in respostas) {
if (respostas[i]) {
obj.opcoes +=
'<ons-list-item tappable style="font-size: 20px;">'+
' <label class="left">'+
" <ons-radio class='quiz_' input-id='quiz"+i+"' value='"+respostas[i]+"'></ons-radio>"+
' </label>'+
' <label for="quiz'+i+'" class="center">'+respostas[i]+'</label>'+
'</ons-list-item>';
}
}
}
obj.opcoes +=
'<ons-list-item tappable modifier="longdivider" style="display: none;">'+
' <label class="left">'+
' <ons-radio class="quiz_" input-id="quiz_" value=""></ons-radio>'+
' </label>'+
' <label for="quiz_" class="center">nenhum</label>'+
'</ons-list-item>';
obj.opcoes +=
'<section style="margin: 20px">'+
' <ons-button modifier="large" style="padding: 10px;box-shadow:0 5px 0 #ccc;" class="button-margin responder">RESPONDER</ons-button>'+
' <ons-row>'+
' <ons-col style="margin-right: 10px;">'+
' <ons-button modifier="large" style="padding: 10px;box-shadow:0 5px 0 #ccc;" class="button-margin pular">PULAR ('+pulos+'X)</ons-button>'+
' </ons-col>'+
' <ons-col>'+
' <ons-button modifier="large" style="padding: 10px;box-shadow:0 5px 0 #ccc;" class="button-margin eliminar">ELIMINAR ('+eliminar+'X)</ons-button>'+
' </ons-col>'+
' </ons-row>'+
' <ons-button modifier="large" style="padding: 10px;box-shadow:0 5px 0 #ccc;" class="button-margin finalizar">FINALIZAR</ons-button>'+
'</section>';
$("#textoquiz").html(obj.opcoes);
var currentId = 'quiz_';
var currentValue = '';
const radios = document.querySelectorAll('.quiz_');
for (var i = 0; i < radios.length; i++) {
var radio = radios[i];
radio.addEventListener('change', function (event) {
if (event.target.value !== currentValue) {
document.getElementById(currentId).checked = false;
currentId = event.target.id;
currentValue = event.target.value;
}
})
}
//BOTAO RESPONDER
$( ".responder" ).click(function() {
//VERIFICO SE SELECIONOU ALGUMA OPCAO
if (currentValue != '') {
//SE A RESPOSTA ESTIVER ERRADA
if (currentValue != resposta) {
//PEGO A LISTA DE PERGUNTAS
var data = JSON.parse(localStorage.getItem('lista-quiz'));
//ACRESCENTO AO FINAL A PERGUNTA QUE O JOGADOR ERROU
data.push(perguntaAtual);
//SALVO A NOVA LISTA
localStorage.setItem("lista-quiz", JSON.stringify(data));
//INCREMENTO A QUANTIDADE DE PERGUNTAS
total_perguntas++;
//INCREMENTO OS ERROS
erros++
//EXIBO A MENSAGEM DE ERRO
ons.notification.alert({
message: 'A resposta correta é: '+resposta,
title: 'Resposta errada!',
callback: function (index) {
if (0 == index) {
//INCREMENTO PARA A PROXIMA PERGUNTA
num_perg++;
//VERIFICO SE AINDA NAO CHEGOU AO FINAL DAS PERGUNTAS
if (num_perg < total_perguntas) {
//BUSCO A PROXIMA PERGUNTA
app.buscaPergunta(num_perg);
}
else{
//CASO TENHA ACERTADO ALGUMA PERGUNTA SALVO NO SCORE
if (acertos > 0) {
lista_score.push(acertos);
localStorage.setItem("lista-score", JSON.stringify(lista_score));
}
ons.notification.alert({
message: 'Parabêns! Você chegou ao fim do quiz.<br><br>Sua pontuação: '+acertos,
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
location.href = 'index.html';
}
}
});
}
}
}
});
}
//RESPOSTA CERTA
else{
acertos++
ons.notification.alert({
message: 'Resposta certa!',
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
num_perg++;
if (num_perg < total_perguntas) {
app.buscaPergunta(num_perg);
}
else{
ons.notification.alert({
message: 'Parabêns! Você chegou ao fim do quiz.<br><br>Sua pontuação: '+acertos,
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
location.href = 'index.html';
}
else{}
}
});
}
}
else{}
}
});
}
currentId = 'quiz_';
currentValue = '';
if (acertos > 0) {
lista_score.push(acertos);
localStorage.setItem("lista-score", JSON.stringify(lista_score));
}
$('.quiz_').prop('checked', false);
$('#acerto').html('Acertos: '+acertos);
$('#erro').html('Erros: '+erros);
}
else{
ons.notification.alert({
message: 'Escolha uma opção!',
title: 'Mensagem',
});
}
});
//BOTAO PULAR
$( ".pular" ).click(function() {
//VERIFICO SE PODE PULAR
if (pulos > 0) {
//PEGO A LISTA DE PERGUNTAS
var data = JSON.parse(localStorage.getItem('lista-quiz'));
//ACRESCENTO AO FINAL A PERGUNTA QUE O JOGADOR PULOU
data.push(perguntaAtual);
//SALVO A NOVA LISTA
localStorage.setItem("lista-quiz", JSON.stringify(data));
//INCREMENTO A QUANTIDADE DE PERGUNTAS
total_perguntas++;
currentId = 'quiz_';
currentValue = '';
num_perg++;
pulos--;
if (num_perg < total_perguntas) {
app.buscaPergunta(num_perg);
}
else{
//CASO TENHA ACERTADO ALGUMA PERGUNTA SALVO NO SCORE
if (acertos > 0) {
lista_score.push(acertos);
localStorage.setItem("lista-score", JSON.stringify(lista_score));
}
ons.notification.alert({
message: 'Parabêns! Você chegou ao fim do quiz.<br><br>Sua pontuação: '+acertos,
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
location.href = 'index.html';
}
}
});
}
}
else{
ons.notification.alert({
message: 'Você não pode pular mais nenhuma pergunta.',
title: 'Atenção'
});
}
});
//BOTAO ELIMINAR
$( ".eliminar" ).click(function() {
//VERIFICO SE PODE ELIMINAR UMA PERGUNTA
if (eliminar > 0) {
//INCREMENTO 1 ACERTO
acertos++
$('#acerto').html('Acertos: '+acertos);
currentId = 'quiz_';
currentValue = '';
num_perg++;
eliminar--;
if (num_perg < total_perguntas) {
app.buscaPergunta(num_perg);
}
else{
//CASO TENHA ACERTADO ALGUMA PERGUNTA SALVO NO SCORE
if (acertos > 0) {
lista_score.push(acertos);
localStorage.setItem("lista-score", JSON.stringify(lista_score));
}
ons.notification.alert({
message: 'Parabêns! Você chegou ao fim do quiz.<br><br>Sua pontuação: '+acertos,
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
location.href = 'index.html';
}
}
});
}
}
else{
ons.notification.alert({
message: 'Você não pode eliminar mais nenhuma pergunta.',
title: 'Atenção'
});
}
});
$( ".finalizar" ).click(function() {
if (acertos > 0) {
lista_score.push(acertos);
localStorage.setItem("lista-score", JSON.stringify(lista_score));
}
ons.notification.alert({
message: 'Sua pontuação: '+acertos,
title: 'Mensagem',
callback: function (index) {
if (0 == index) {
location.href = 'index.html';
}
else{
}
}
});
});
});
}
else{
opcoes =
'<section style="margin: 20px">'+
' <ons-list-header>'+
' <div class="left">'+
' </div>'+
' <div class="center intro" style="font-size: 25px">'+
' <p>Volte para carregar as perguntas!</p>'+
' </div>'+
' </ons-list-header>'+
'</section>';
$("#textoquiz").html(opcoes);
}
},
carregaQuiz: function() {
localStorage.removeItem('lista-quiz');
var quiz = "quiz";
$.ajax({
type : "GET",
url : "js/"+quiz+".json",
dataType : "json",
success : function(data){
if (data) {
lista_quiz = app.shuffleArray(data);
localStorage.setItem("lista-quiz", JSON.stringify(lista_quiz));
}
app.buscaPergunta(num_perg);
}
});
},
shuffleArray: function(array) {
for (var i = array.length - 1; i > 0; i--) {
var j = Math.floor(Math.random() * (i + 1));
var temp = array[i];
array[i] = array[j];
array[j] = temp;
}
return array;
},
dateTime: function() {
let now = new Date;
let ano = now.getFullYear();
let mes = now.getMonth() + 1;
let dia = now.getDate();
let hora = now.getHours();
let min = now.getMinutes();
let seg = now.getSeconds();
if (parseInt(mes) < 10) {
mes = '0'+mes;
}
if (parseInt(dia) < 10) {
dia = '0'+dia;
}
if (parseInt(hora) < 10) {
hora = '0'+hora;
}
if (parseInt(min) < 10) {
min = '0'+min;
}
if (parseInt(seg) < 10) {
seg = '0'+seg;
}
return ano+'-'+mes+'-'+dia+' '+hora+':'+min+':'+seg;
},
cadastraUser: function() {
var playerID = window.localStorage.getItem('playerID');
var pushToken = window.localStorage.getItem('pushToken');
var uid = window.localStorage.getItem('uid');
if (playerID && uid) {
$.ajax({
url: "https://www.innovatesoft.com.br/webservice/app/cadastraUser.php",
dataType: 'html',
type: 'POST',
data: {
'userId': playerID,
'pushToken': pushToken,
'uid': uid,
'datacadastro': this.dateTime(),
'ultimoacesso': this.dateTime(),
'app': 'quiz',
},
error: function(e) {
},
success: function(a) {
},
});
}
},
cadastraScore: function() {
var uid = window.localStorage.getItem('uid');
var maxScore = null;
var arr = localStorage.getItem('lista-score');
if (arr) {
maxScore = maxArray(JSON.parse(arr));
}
if (uid) {
$.ajax({
url: "https://www.innovatesoft.com.br/webservice/app/cadastraScoreQuiz.php",
dataType: 'html',
type: 'POST',
data: {
'uid': uid,
'score': maxScore,
'dataregistro': this.dateTime()
},
error: function(e) {
},
success: function(a) {
},
});
}
},
getIds: function() {
window.plugins.OneSignal.getIds(function(ids) {
window.localStorage.setItem('playerID', ids.userId);
window.localStorage.setItem('pushToken', ids.pushToken);
});
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
var isAnonymous = user.isAnonymous;
var uid = user.uid;
window.localStorage.setItem('uid',uid);
}
});
this.cadastraUser();
}
};
app.initialize(); | 2ae9f056c0fe5cdff90e58ae61d88c61fc4c1b3b | [
"JavaScript",
"Markdown"
] | 3 | JavaScript | miqueias91/quizdabiblia | 6da2e3d2325c6f064105139777a9f0a4b771337f | 1ed4465a155cae212c90bd826b8e92895296eba1 |
refs/heads/master | <file_sep>jQuery(document).ready(function($){
var mainHeader = $('.cd-auto-hide-header'),
secondaryNavigation = $('.cd-secondary-nav'),
//this applies only if secondary nav is below intro section
belowNavHeroContent = $('.sub-nav-hero'),
headerHeight = mainHeader.height();
//set scrolling variables
var scrolling = false,
previousTop = 0,
currentTop = 0,
scrollDelta = 10,
scrollOffset = 150;
mainHeader.on('click', '.nav-trigger', function(event){
// open primary navigation on mobile
event.preventDefault();
mainHeader.toggleClass('nav-open');
});
$(window).on('scroll', function(){
if( !scrolling ) {
scrolling = true;
(!window.requestAnimationFrame)
? setTimeout(autoHideHeader, 250)
: requestAnimationFrame(autoHideHeader);
}
});
$(window).on('resize', function(){
headerHeight = mainHeader.height();
});
function autoHideHeader() {
var currentTop = $(window).scrollTop();
( belowNavHeroContent.length > 0 )
? checkStickyNavigation(currentTop) // secondary navigation below intro
: checkSimpleNavigation(currentTop);
previousTop = currentTop;
scrolling = false;
}
function checkSimpleNavigation(currentTop) {
//there's no secondary nav or secondary nav is below primary nav
if (previousTop - currentTop > scrollDelta) {
//if scrolling up...
mainHeader.removeClass('is-hidden');
} else if( currentTop - previousTop > scrollDelta && currentTop > scrollOffset) {
//if scrolling down...
mainHeader.addClass('is-hidden');
}
}
function checkStickyNavigation(currentTop) {
//secondary nav below intro section - sticky secondary nav
var secondaryNavOffsetTop = belowNavHeroContent.offset().top - secondaryNavigation.height() - mainHeader.height();
if (previousTop >= currentTop ) {
//if scrolling up...
if( currentTop < secondaryNavOffsetTop ) {
//secondary nav is not fixed
mainHeader.removeClass('is-hidden');
secondaryNavigation.removeClass('fixed slide-up');
belowNavHeroContent.removeClass('secondary-nav-fixed');
} else if( previousTop - currentTop > scrollDelta ) {
//secondary nav is fixed
mainHeader.removeClass('is-hidden');
secondaryNavigation.removeClass('slide-up').addClass('fixed');
belowNavHeroContent.addClass('secondary-nav-fixed');
}
} else {
//if scrolling down...
if( currentTop > secondaryNavOffsetTop + scrollOffset ) {
//hide primary nav
mainHeader.addClass('is-hidden');
secondaryNavigation.addClass('fixed slide-up');
belowNavHeroContent.addClass('secondary-nav-fixed');
} else if( currentTop > secondaryNavOffsetTop ) {
//once the secondary nav is fixed, do not hide primary nav if you haven't scrolled more than scrollOffset
mainHeader.removeClass('is-hidden');
secondaryNavigation.addClass('fixed').removeClass('slide-up');
belowNavHeroContent.addClass('secondary-nav-fixed');
}
}
}
});<file_sep>'use strict';
function onConnect (socket, db) {
require('./emails').register(socket, db);
}
exports.onConnect = onConnect;
<file_sep>
AJS={BASE_URL:"",drag_obj:null,drag_elm:null,_drop_zones:[],_cur_pos:null,join:function(_1,_2){
try{
return _2.join(_1);
}
catch(e){
var r=_2[0]||"";
AJS.map(_2,function(_4){
r+=_1+_4;
},1);
return r+"";
}
},getScrollTop:function(){
var t;
if(document.documentElement&&document.documentElement.scrollTop){
t=document.documentElement.scrollTop;
}else{
if(document.body){
t=document.body.scrollTop;
}
}
return t;
},addClass:function(){
var _6=AJS.forceArray(arguments);
var _7=_6.pop();
var _8=function(o){
if(!new RegExp("(^|\\s)"+_7+"(\\s|$)").test(o.className)){
o.className+=(o.className?" ":"")+_7;
}
};
AJS.map(_6,function(_a){
_8(_a);
});
},setStyle:function(){
var _b=AJS.forceArray(arguments);
var _c=_b.pop();
var _d=_b.pop();
AJS.map(_b,function(_e){
_e.style[_d]=AJS.getCssDim(_c);
});
},_getRealScope:function(fn,_10,_11,_12){
var _13=window;
_10=AJS.$A(_10);
if(fn._cscope){
_13=fn._cscope;
}
return function(){
var _14=[];
var i=0;
if(_11){
i=1;
}
AJS.map(arguments,function(arg){
_14.push(arg);
},i);
_14=_14.concat(_10);
if(_12){
_14=_14.reverse();
}
return fn.apply(_13,_14);
};
},preloadImages:function(){
AJS.AEV(window,"load",AJS.$p(function(_17){
AJS.map(_17,function(src){
var pic=new Image();
pic.src=src;
});
},arguments));
},_createDomShortcuts:function(){
var _1a=["ul","li","td","tr","th","tbody","table","input","span","b","a","div","img","button","h1","h2","h3","br","textarea","form","p","select","option","iframe","script","center","dl","dt","dd","small","pre"];
var _1b=function(elm){
var _1d="return AJS.createDOM.apply(null, ['"+elm+"', arguments]);";
var _1e="function() { "+_1d+" }";
eval("AJS."+elm.toUpperCase()+"="+_1e);
};
AJS.map(_1a,_1b);
AJS.TN=function(_1f){
return document.createTextNode(_1f);
};
},documentInsert:function(elm){
if(typeof (elm)=="string"){
elm=AJS.HTML2DOM(elm);
}
document.write("<span id=\"dummy_holder\"></span>");
AJS.swapDOM(AJS.$("dummy_holder"),elm);
},getWindowSize:function(doc){
doc=doc||document;
var _22,_23;
if(self.innerHeight){
_22=self.innerWidth;
_23=self.innerHeight;
}else{
if(doc.documentElement&&doc.documentElement.clientHeight){
_22=doc.documentElement.clientWidth;
_23=doc.documentElement.clientHeight;
}else{
if(doc.body){
_22=doc.body.clientWidth;
_23=doc.body.clientHeight;
}
}
}
return {"w":_22,"h":_23};
},flattenList:function(_24){
var r=[];
var _26=function(r,l){
AJS.map(l,function(o){
if(o==null){
}else{
if(AJS.isArray(o)){
_26(r,o);
}else{
r.push(o);
}
}
});
};
_26(r,_24);
return r;
},setEventKey:function(e){
e.key=e.keyCode?e.keyCode:e.charCode;
if(window.event){
e.ctrl=window.event.ctrlKey;
e.shift=window.event.shiftKey;
}else{
e.ctrl=e.ctrlKey;
e.shift=e.shiftKey;
}
switch(e.key){
case 63232:
e.key=38;
break;
case 63233:
e.key=40;
break;
case 63235:
e.key=39;
break;
case 63234:
e.key=37;
break;
}
},removeElement:function(){
var _2b=AJS.forceArray(arguments);
AJS.map(_2b,function(elm){
AJS.swapDOM(elm,null);
});
},_unloadListeners:function(){
if(AJS.listeners){
AJS.map(AJS.listeners,function(elm,_2e,fn){
AJS.REV(elm,_2e,fn);
});
}
AJS.listeners=[];
},partial:function(fn){
var _31=AJS.forceArray(arguments);
return AJS.$b(fn,null,_31.slice(1,_31.length).reverse(),false,true);
},getIndex:function(elm,_33,_34){
for(var i=0;i<_33.length;i++){
if(_34&&_34(_33[i])||elm==_33[i]){
return i;
}
}
return -1;
},isDefined:function(o){
return (o!="undefined"&&o!=null);
},isArray:function(obj){
return obj instanceof Array;
},setLeft:function(){
var _38=AJS.forceArray(arguments);
_38.splice(_38.length-1,0,"left");
AJS.setStyle.apply(null,_38);
},appendChildNodes:function(elm){
if(arguments.length>=2){
AJS.map(arguments,function(n){
if(AJS.isString(n)){
n=AJS.TN(n);
}
if(AJS.isDefined(n)){
elm.appendChild(n);
}
},1);
}
return elm;
},isOpera:function(){
return (navigator.userAgent.toLowerCase().indexOf("opera")!=-1);
},isString:function(obj){
return (typeof obj=="string");
},hideElement:function(elm){
var _3d=AJS.forceArray(arguments);
AJS.map(_3d,function(elm){
elm.style.display="none";
});
},setOpacity:function(elm,p){
elm.style.opacity=p;
elm.style.filter="alpha(opacity="+p*100+")";
},setHeight:function(){
var _41=AJS.forceArray(arguments);
_41.splice(_41.length-1,0,"height");
AJS.setStyle.apply(null,_41);
},setWidth:function(){
var _42=AJS.forceArray(arguments);
_42.splice(_42.length-1,0,"width");
AJS.setStyle.apply(null,_42);
},createArray:function(v){
if(AJS.isArray(v)&&!AJS.isString(v)){
return v;
}else{
if(!v){
return [];
}else{
return [v];
}
}
},isDict:function(o){
var _45=String(o);
return _45.indexOf(" Object")!=-1;
},isMozilla:function(){
return (navigator.userAgent.toLowerCase().indexOf("gecko")!=-1&&navigator.productSub>=20030210);
},_listenOnce:function(elm,_47,fn){
var _49=function(){
AJS.removeEventListener(elm,_47,_49);
fn(arguments);
};
return _49;
},addEventListener:function(elm,_4b,fn,_4d,_4e){
if(!_4e){
_4e=false;
}
var _4f=AJS.$A(elm);
AJS.map(_4f,function(_50){
if(_4d){
fn=AJS._listenOnce(_50,_4b,fn);
}
if(AJS.isIn(_4b,["submit","load","scroll","resize"])){
var old=elm["on"+_4b];
elm["on"+_4b]=function(){
if(old){
fn(arguments);
return old(arguments);
}else{
return fn(arguments);
}
};
return;
}
if(AJS.isIn(_4b,["keypress","keydown","keyup","click"])){
var _52=fn;
fn=function(e){
AJS.setEventKey(e);
return _52.apply(null,arguments);
};
}
if(_50.attachEvent){
_50.attachEvent("on"+_4b,fn);
}else{
if(_50.addEventListener){
_50.addEventListener(_4b,fn,_4e);
}
}
AJS.listeners=AJS.$A(AJS.listeners);
AJS.listeners.push([_50,_4b,fn]);
});
},createDOM:function(_54,_55){
var i=0,_57;
elm=document.createElement(_54);
if(AJS.isDict(_55[i])){
for(k in _55[0]){
_57=_55[0][k];
if(k=="style"){
elm.style.cssText=_57;
}else{
if(k=="class"||k=="className"){
elm.className=_57;
}else{
elm.setAttribute(k,_57);
}
}
}
i++;
}
if(_55[0]==null){
i=1;
}
AJS.map(_55,function(n){
if(n){
if(AJS.isString(n)||AJS.isNumber(n)){
n=AJS.TN(n);
}
elm.appendChild(n);
}
},i);
return elm;
},setTop:function(){
var _59=AJS.forceArray(arguments);
_59.splice(_59.length-1,0,"top");
AJS.setStyle.apply(null,_59);
},getElementsByTagAndClassName:function(_5a,_5b,_5c){
var _5d=[];
if(!AJS.isDefined(_5c)){
_5c=document;
}
if(!AJS.isDefined(_5a)){
_5a="*";
}
var els=_5c.getElementsByTagName(_5a);
var _5f=els.length;
var _60=new RegExp("(^|\\s)"+_5b+"(\\s|$)");
for(i=0,j=0;i<_5f;i++){
if(_60.test(els[i].className)||_5b==null){
_5d[j]=els[i];
j++;
}
}
return _5d;
},removeClass:function(){
var _61=AJS.forceArray(arguments);
var cls=_61.pop();
var _63=function(o){
o.className=o.className.replace(new RegExp("\\s?"+cls,"g"),"");
};
AJS.map(_61,function(elm){
_63(elm);
});
},bindMethods:function(_66){
for(var k in _66){
var _68=_66[k];
if(typeof (_68)=="function"){
_66[k]=AJS.$b(_68,_66);
}
}
},log:function(o){
if(AJS.isMozilla()){
console.log(o);
}else{
var div=AJS.DIV({"style":"color: green"});
AJS.ACN(AJS.getBody(),AJS.setHTML(div,""+o));
}
},isNumber:function(obj){
return (typeof obj=="number");
},map:function(_6c,fn,_6e,_6f){
var i=0,l=_6c.length;
if(_6e){
i=_6e;
}
if(_6f){
l=_6f;
}
for(i;i<l;i++){
fn.apply(null,[_6c[i],i]);
}
},removeEventListener:function(elm,_73,fn,_75){
if(!_75){
_75=false;
}
if(elm.removeEventListener){
elm.removeEventListener(_73,fn,_75);
if(AJS.isOpera()){
elm.removeEventListener(_73,fn,!_75);
}
}else{
if(elm.detachEvent){
elm.detachEvent("on"+_73,fn);
}
}
},getCssDim:function(dim){
if(AJS.isString(dim)){
return dim;
}else{
return dim+"px";
}
},setHTML:function(elm,_78){
elm.innerHTML=_78;
return elm;
},bind:function(fn,_7a,_7b,_7c,_7d){
fn._cscope=_7a;
return AJS._getRealScope(fn,_7b,_7c,_7d);
},forceArray:function(_7e){
var r=[];
AJS.map(_7e,function(elm){
r.push(elm);
});
return r;
},update:function(l1,l2){
for(var i in l2){
l1[i]=l2[i];
}
return l1;
},getBody:function(){
return AJS.$bytc("body")[0];
},HTML2DOM:function(_84,_85){
var d=AJS.DIV();
d.innerHTML=_84;
if(_85){
return d.childNodes[0];
}else{
return d;
}
},getElement:function(id){
if(AJS.isString(id)||AJS.isNumber(id)){
return document.getElementById(id);
}else{
return id;
}
},showElement:function(){
var _88=AJS.forceArray(arguments);
AJS.map(_88,function(elm){
elm.style.display="";
});
},swapDOM:function(_8a,src){
_8a=AJS.getElement(_8a);
var _8c=_8a.parentNode;
if(src){
src=AJS.getElement(src);
_8c.replaceChild(src,_8a);
}else{
_8c.removeChild(_8a);
}
return src;
},isIn:function(elm,_8e){
var i=AJS.getIndex(elm,_8e);
if(i!=-1){
return true;
}else{
return false;
}
}};
AJS.$=AJS.getElement;
AJS.$$=AJS.getElements;
AJS.$f=AJS.getFormElement;
AJS.$p=AJS.partial;
AJS.$b=AJS.bind;
AJS.$A=AJS.createArray;
AJS.DI=AJS.documentInsert;
AJS.ACN=AJS.appendChildNodes;
AJS.RCN=AJS.replaceChildNodes;
AJS.AEV=AJS.addEventListener;
AJS.REV=AJS.removeEventListener;
AJS.$bytc=AJS.getElementsByTagAndClassName;
AJS.addEventListener(window,"unload",AJS._unloadListeners);
AJS._createDomShortcuts();
AJS.Class=function(_90){
var fn=function(){
if(arguments[0]!="no_init"){
return this.init.apply(this,arguments);
}
};
fn.prototype=_90;
AJS.update(fn,AJS.Class.prototype);
return fn;
};
AJS.Class.prototype={extend:function(_92){
var _93=new this("no_init");
for(k in _92){
var _94=_93[k];
var cur=_92[k];
if(_94&&_94!=cur&&typeof cur=="function"){
cur=this._parentize(cur,_94);
}
_93[k]=cur;
}
return new AJS.Class(_93);
},implement:function(_96){
AJS.update(this.prototype,_96);
},_parentize:function(cur,_98){
return function(){
this.parent=_98;
return cur.apply(this,arguments);
};
}};
AJS.$=AJS.getElement;
AJS.$$=AJS.getElements;
AJS.$f=AJS.getFormElement;
AJS.$b=AJS.bind;
AJS.$p=AJS.partial;
AJS.$FA=AJS.forceArray;
AJS.$A=AJS.createArray;
AJS.DI=AJS.documentInsert;
AJS.ACN=AJS.appendChildNodes;
AJS.RCN=AJS.replaceChildNodes;
AJS.AEV=AJS.addEventListener;
AJS.REV=AJS.removeEventListener;
AJS.$bytc=AJS.getElementsByTagAndClassName;
AJSDeferred=function(req){
this.callbacks=[];
this.errbacks=[];
this.req=req;
};
AJSDeferred.prototype={excCallbackSeq:function(req,_9b){
var _9c=req.responseText;
while(_9b.length>0){
var fn=_9b.pop();
var _9e=fn(_9c,req);
if(_9e){
_9c=_9e;
}
}
},callback:function(){
this.excCallbackSeq(this.req,this.callbacks);
},errback:function(){
if(this.errbacks.length==0){
alert("Error encountered:\n"+this.req.responseText);
}
this.excCallbackSeq(this.req,this.errbacks);
},addErrback:function(fn){
this.errbacks.unshift(fn);
},addCallback:function(fn){
this.callbacks.unshift(fn);
},addCallbacks:function(fn1,fn2){
this.addCallback(fn1);
this.addErrback(fn2);
},sendReq:function(_a3){
if(AJS.isObject(_a3)){
this.req.send(AJS.queryArguments(_a3));
}else{
if(AJS.isDefined(_a3)){
this.req.send(_a3);
}else{
this.req.send("");
}
}
}};
script_loaded=true;
script_loaded=true;
<file_sep># fullcalendar-calendar
Web Component wrapper for [FullCalendar](http://fullcalendar.io/).
Documentation and demo available [here](https://samuelbetio.github.io/LDPage/demo/fullcalendar-calendar/components/fullcalendar-calendar/).
**Note**: This is a work-in-progress.
# Install
```
bower install --save fullcalendar-calendar
```
# Usage
```html
<link rel="import" href="fullcalendar-theme.html">
<link rel="import" href="fullcalendar-calendar.html">
<fullcalendar-calendar></fullcalendar-calendar>
```
`fullcalendar-calendar.html` includes all the required dependencies (jQuery, moment and FullCalendar). However, since these libraries do not provide HTML import files, the Javascript files are loaded directly. This may prove problematic if you use any of the libraries in other part of your project, since you will load them twice. If this is the case, use `fullcalendar-calendar-no-deps.html`, which includes just the WebComponent wrapper, without the dependencies. However, you must now load the dependencies yourself:
```html
<!-- The order is important, jquery and moment must come before fullcalendar -->
<script src='jquery/dist/jquery.min.js'></script>
<script src='moment/min/moment.min.js'></script>
<script src='fullcalendar/dist/fullcalendar.min.js'></script>
<link rel="import" href="fullcalendar-theme.html">
<link rel="import" href="fullcalendar-calendar-no-deps.html">
```
For all the options please consult the [documentation](https://samuelbetio.github.io/LDPage/demo/fullcalendar-calendar/components/fullcalendar-calendar/).
<file_sep>
0.0.2 / 2014-04-26
==================
* Disabled slider handle cursor
* Add remotes to fix 301 redirects
* Do not allow negative step values
* Remove <IE9 related optimizations
* Update changelog and bower ignored files
0.0.1 / 2014-03-17
==================
* Initial release<file_sep>## Animate.css
A webpage that shows every animation classes from animate.css (developed by [daneden](https://github.com/daneden)).
you can visit the site here [animated.css](https://wonexo.github.io/animatecss)
:wink:
download the animate.css file [here](https://github.com/daneden/animate.css) to start animating

## CONTRIBUTORS.MD [](https://github.com/sindresorhus/awesome)
For those who contributed to MDC, you can add the following to the  file
* Include your fullname name
* and your Username in form of a link
Example
- [x] * <NAME> ()
<file_sep>'use strict';
angular.module('catchMeApp').directive('myIframe', function () {
return {
link: function (scope, element) {
element.on('load', function () {
element[0].style.height = element[0].contentWindow.document.body.scrollHeight + 'px';
});
}
};
});
<file_sep><!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="UTF-8">
<title><NAME></title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<img src="victory.jpg" alt="my photo" height="230" width="160" align="left" hspace="40" />
<h1><NAME></h1>
<h3><i>almost</i> WEB DESIGNER & FRONT-END DEVELOPER</h3>
</header>
<ul>
<li class="contacts">
<h3>Contacts</h3>
<img class="phone" src="phone.png" alt="phone"/>
<span>+380988559411</span>
<br><img src="mail.png" alt="mail"/>
<span><EMAIL></span>
<br><img class="adress" src="myadress.png" alt="adress"/>
<span>Kremenchug, Svobody Street, 34-A</span>
</li>
<li><h3>Skills</h3>
<span class="skills"><img src="ps.png" alt="photoshop"/> <img src="ai.png" alt="illustrator"/><img src="cdr.png" alt="coreldraw"/></span>
</li>
<li>
<h3>Languages</h3>
<span class="languages"><img src="ukr.png" alt="Ukrainian"/> <img src="ru.png" alt="Russian"/> <img src="en.png" alt="English"/></span>
</li>
<li>
<h3>Find me in</h3>
<nav class="social-group">
<a href="https://www.linkedin.com/in/victoria-neborak-96957a159"><img src="li.png" alt="LinkedIn"></a>
<a href="https://github.com/VictoriaNeborak"><img src="git.png" alt="GitHub"></a>
<a href="https://www.facebook.com/victorianeborak"><img src="facebook.png" alt="Facebook"></a>
</nav>
</li>
</ul>
<div>
<h2>Who Am I</h2>
<p>I am talanted, creative and smart.</p>
<h2>Experiense</h2>
<p> Marketind manager, Kremenchug, 2016-2018 development of advertising strategy, SMM, Graphic designer, Kremenchug,
2016-2018 creating inside and outside advertising, printed products</p>
<h2>Education</h2>
<p><b>Economist</b>. Dnepropetrovsk university of economy and law, 2009-2013</p>
<p><b>Front-end developer</b>. Beetroot Academy, June, 2018 - September, 2018</p>
</div>
</body>
</html>
<file_sep>
## Description
Powerange is a range slider control, inspired heavily by iOS 7 and the "Power Rangers" TV series. It is easily customizable, both by CSS and JavaScript. With it's many features, including changing color and overall style, switching between horizontal and vertical style, custom min, max and start values, custom step interval, displaying decimal values, displaying icons instead of min/max numbers, it is a really powerful UI tool to use on your website.
A great cross-browser solution, supporting: Google Chrome 14+, Mozilla Firefox 6.0+, Opera 11.6+, Safari 5+, IE 9+
Licensed under [The MIT License](http://opensource.org/licenses/MIT).

If you like this module and you're a fan of iOS 7 style UI widgets, check out [Switchery](https://github.com/abpetkov/switchery).
## Installation
##### Standalone:
```html
<link rel="stylesheet" href="dist/powerange.css" />
<script src="dist/powerange.js"></script>
```
##### Component:
```shell
$ component install abpetkov/powerange
```
##### Bower:
```shell
$ bower install powerange
```
## Usage
```js
var elem = document.querySelector('.js-range');
var init = new Powerange(elem);
```
Use the above for the standalone version.
*NOTE: your element must be a text input*
## Settings and Defaults
```js
defaults = {
callback : function() {}
, decimal : false
, disable : false
, disableOpacity: 0.5
, hideRange : false
, klass : ''
, min : 0
, max : 100
, start : null
, step : null
, vertical : false
};
```
- `callback` : function invoked on initialization and on slider handle movement
- `decimal` : display decimal number
- `disable` : enable or disable slider
- `disableOpacity` : opacity of the disabled slider
- `hideRange` : show or hide min and max range values
- `klass` : additional class for the slider wrapper for extra customization
- `min` : minimum range value
- `max` : maximum range value
- `start` : starting value
- `step` : step of the handle
- `vertical` : toggle between horizontal or vertical slider
## Examples
##### Basic style customization
You are free to customize the range slider as much as you wish, using only CSS.
The width (for horizontal) or height (for vertical) of the slider, depends on the container in which it's placed and take 100%.
Play around with the `background-color` of `.range-bar` and `.range-quantity`, add a `background-image` to `.range-handle`, add some nice `background-image` to `.range-min` and `.range-max`, get use of the `hideRange` option and you may end up with something as fun as this:

The sky is the limit.
*Hint: Use the `klass` option to add an additional class to the slider and apply different style to it*
##### Minimum, maximum and start values
Changing your default `min`, `max` and `start` values is pretty easy. The start value has to be a number in your min-max interval, otherwise it takes the value of either `min` or `max`, depending on which is closer. Negative values are supported as well.
```js
var init = new Powerange(elem, { min: 16, max: 256, start: 128 });
```
##### Decimal
Display decimal number with 2 characters after the decimal point.
```js
var init = new Powerange(elem, { decimal: true });
```
##### Slider step
You can change the step with which the handle moves, using the `step` option.
```js
var init = new Powerange(elem, { step: 10 });
```
##### Hide range values
You can hide the min and max values, by using the `hideRange` option.
```js
var init = new Powerange(elem, { hideRange: true });
```

##### Disabled
Disable the range slider and change it's default `disabledOpacity` if needeed.
```js
var init = new Powerange(elem, { disable: true, disabledOpacity: 0.75 });
```
You can still give it a value, by changing the `start` option.

##### Horizontal and vertical slider
The default Powerange slider is horizontal. However, you can make it vertical, by setting `vertical: true`.
```js
var init = new Powerange(elem, { vertical: true });
```

##### Checking value
Check the current value of the range slider, by looking at the value of the text input element.
On click:
```js
var clickInput = document.querySelector('.js-check-click')
, clickButton = document.querySelector('.js-check-click-button');
clickButton.addEventListener('click', function() {
alert(clickInput.value);
});
```
On change:
```js
var changeInput = document.querySelector('.js-check-change');
changeInput.onchange = function() {
alert(changeInput.value);
};
```
##### Callback
The callback function is invoked on slider initialization and on slider handle movement. It's very appropriate for displaying the current value in another element.
```js
var elem = document.querySelector('.js-range');
var init = new Powerange(elem, { callback: displayValue });
function displayValue() {
document.getElementById('display-box').innerHTML = elem.value;
}
```

##### Interacting with another elements
Just a simple example of how you can interact with an element, when changing the slider value.
```js
var elem = document.querySelector('.js-range');
var init = new Powerange(elem, { callback: setOpacity, decimal: true, min: 0, max: 1 });
function setOpacity() {
document.querySelector('.target').style.opacity = elem.value;
}
```
## Development
If you've decided to go in development mode and tweak this module, there are few things you should do.
Make your own build files, by using [Grunt](http://gruntjs.com/) command:
```shell
$ grunt build
```
Add the following code before the initialization:
```js
var Powerange = require('powerange');
```
Make sure you're using the `build/build.js` and `build/build.css` files and you're ready.
There are some useful commands you can use:
`$ grunt watch` - watches for changes in the CSS and JS files in `lib/` and updates the build files
`$ grunt componentbuild` - updates the files in `build/`
`$ grunt uglify` - makes new JS standalone files
`$ grunt cssmin` - makes new CSS standalone files
`$ grunt clean` - empties the contents of `build/` and `dist/` folders
## Contact
If you like this component, share your appreciation by following me in [Twitter](https://twitter.com/abpetkov), [GitHub](https://github.com/abpetkov) or [Dribbble](http://dribbble.com/apetkov).
## License
The MIT License (MIT)
Copyright (c) 2014 <NAME>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.<file_sep>pond life
========
Canvas experiment.
<file_sep>void function(){
$(document).trigger('pageload', this.href);
if (!('pushState' in window.history)) return;
var $body = $('body'),
$page = $('.current-page');
function load(url) {
console.log('Load', url);
$('.unloading').remove();
$page.addClass('unloading');
$page = $('<div/>').appendTo($body);
$page.load(url + ' main', function() {
$(document).trigger('pageload', this.href);
$body.scrollTop(0);
});
}
$body.on('click', 'a', function(event){
var href = this.getAttribute('href');
if (href.indexOf('#') == 0 || href.indexOf(':') >= 0) return;
href = this.href;
console.log('pushState', href);
window.history.pushState({push:true}, '', href);
load(href);
event.preventDefault();
});
window.onpopstate = function(event) {
console.log('Popstate', location.href);
if (event.state && event.state.push) {
load(location.href);
}
};
window.history.replaceState({push:true}, '', location.href);
}();<file_sep># jquery-form-validation
jquery form validation password confirm <br>
<a href="https://youtu.be/ar_heL2jkfk">Youtube Tutorial Here</a>
<file_sep>'use strict';
var server = require('../../server.js');
var request = require('supertest');
var expect = require('chai').expect;
var sinon = require('sinon');
var forever = require('forever');
describe('index controller', function () {
describe('partials()', function () {
it('should return 404 when no partial', function (done) {
request(server).get('/partials/blah.html').end(function (err, res) {
expect(res.status).to.equal(404);
done(err);
});
});
it('should return partial when exist', function (done) {
request(server).get('/partials/details.html').end(function (err, res) {
expect(res.status).to.equal(200);
done(err);
});
});
});
describe('quit()', function () {
it('should return error message when process not found', function (done) {
request(server).get('/quit').end(function (err, res) {
expect(res.status).to.equal(404);
expect(res.text).to.be.ok;
done(err);
});
});
it('should return error forever returns error', function (done) {
var listStub = sinon.stub(forever, 'list');
var message = 'Error';
listStub.callsArgWith(1, message);
request(server).get('/quit').end(function (err, res) {
listStub.restore();
expect(res.status).to.equal(500);
expect(res.text).to.equal(message);
done(err);
});
});
it('should stop process', function (done) {
var previousEnv = process.NODE_ENV;
process.NODE_ENV = 'production';
var listStub = sinon.stub(forever, 'list');
var stopStub = sinon.stub(forever, 'stop');
listStub.callsArgWith(1, null, [{pid: process.pid}]);
request(server).get('/quit').end(function (err, res) {
listStub.restore();
stopStub.restore();
process.NODE_ENV = previousEnv;
expect(listStub.calledOnce).to.be.ok;
expect(stopStub.calledOnce).to.be.ok
expect(res.status).to.equal(200);
done(err);
});
});
});
describe('index()', function () {
it('should return index page when not found url', function (done) {
request(server).get('/qwe').end(function (err, res) {
expect(res.status).to.equal(200);
expect(res.text).to.be.ok;
done(err);
});
});
});
});<file_sep># CatchMe [ ](https://www.codeship.io/projects/20908) [](https://coveralls.io/r/Pentiado/catch-me?branch=master)
> CatchMe runs a simple SMTP server which catches any message sent to it to display in a web interface. Run CatchMe, set your app to deliver to smtp://127.0.0.1:1025, then check out http://127.0.0.1:1080 to see the emails that arrived so far.

## Features
* Catches all mail and stores it for display
* Validate email with campaignmonitor - http://www.campaignmonitor.com/css/
* Download original email to view in your native mail client
* Command line options to override the default app and stmp port
* Email appears instantly in your browser via Socket.io
* Runs as a daemon in the background

## Usage
Install `catch-me`:
```
npm install catch-me -g
```
Run `catchme`
```
catchme
```
If you need some specific ports just pass them here
```
catchme --mailPort 1234 --appPort 4321
```
If you like running all the things in foreman, pass `true` to --f
```
catchme --f true
```
## Testing
Running `npm test` will run the unit tests with mocha.
## Credits
* [<NAME>](https://github.com/sj26), the guy behind [mailcatcher](https://github.com/sj26/mailcatcher) who inspired me to implement a similar solution for the NodeJS world.
* [campaignmonitor](campaignmonitor.com) because they created awesome css guide to emails
## Author
Copyright 2014, <NAME>
<file_sep>/*global WildRydes _config*/
var WildRydes = window.WildRydes || {};
WildRydes.map = WildRydes.map || {};
(function rideScopeWrapper($) {
var poolData = {
UserPoolId: _config.cognito.userPoolId,
ClientId: _config.cognito.userPoolClientId
};
var userPool;
var authToken;
WildRydes.authToken.then(function setAuthToken(token) {
if (token) {
authToken = token;
userPool = new AmazonCognitoIdentity.CognitoUserPool(poolData);
console.log("token is "+token);
} else {
window.location.href = '/signin.html';
}
}).catch(function handleTokenError(error) {
alert(error);
window.location.href = '/signin.html';
});
// Register click handler for #request button
$(function onDocReady() {
//$('#request').click(handleCreateTemplate);
//$(WildRydes.map).on('pickupChange', handlePickupChanged);
WildRydes.authToken.then(function updateAuthMessage(token) {
if (token) {
displayUpdate('You are authenticated. Click to see your <a href="#authTokenModal" data-toggle="modal">auth token</a>.');
//$('.authToken').text(token);
}
});
if (!_config.api.invokeUrl) {
$('#noApiMessage').show();
}
});
$('#request').click(function (){
var templateName = $('#id_team_name').val();
var cognitoUseremail = userPool.getCurrentUser().username;
console.log("cognitoUseremail "+ cognitoUseremail);
$.ajax({
method: 'POST',
url: _config.api.invokeUrl + '/template',
headers: {
Authorization: authToken
},
data: JSON.stringify({
'userid':'cognitoUseremail',
'templateName' :templateName
}),
contentType: 'application/json',
success: completeRequest,
error: function ajaxError(jqXHR, textStatus, errorThrown) {
console.error('Error requesting ride: ', textStatus, ', Details: ', errorThrown);
console.error('Response: ', jqXHR.responseText);
alert('An error occured when requesting your unicorn:\n' + jqXHR.responseText);
}
});
});
function handleCreateTemplate(event) {
var templateName = $('#id_team_name').val();
var cognitoUseremail = userPool.getCurrentUser().username;
console.log("cognitoUseremail "+ cognitoUseremail);
$.ajax({
method: 'POST',
url: _config.api.invokeUrl + '/template',
headers: {
Authorization: authToken
},
data: JSON.stringify({
'userid':'cognitoUseremail',
'templateName' :templateName
}),
contentType: 'application/json',
success: completeRequest,
error: function ajaxError(jqXHR, textStatus, errorThrown) {
console.error('Error requesting ride: ', textStatus, ', Details: ', errorThrown);
console.error('Response: ', jqXHR.responseText);
alert('An error occured when requesting your unicorn:\n' + jqXHR.responseText);
}
});
}
function completeRequest(result) {
console.log('Response received from API: ', result);
displayUpdate(result+" is generated");
}
function displayUpdate(text) {
$('#updates').append($('<li>' + text + '</li>'));
}
}(jQuery));
<file_sep><?php
$menu_html = '';
foreach ($menus as $menu) {
if ($menu['id'] == $attributes['menu']) {
$items = $menu['items'];
$i = 0;
$parent_flag = false;
$new_parent = true;
// walk through items
foreach ($items as $item) {
$url = $item['url'];
$name = $item['html'];
$css = '';
$cssClass = '';
$active = '';
if ($page['url'] == $item['url']) {
$css = 'active';
}
$css .= ' ' . $item['cssClass'];
if (trim($css) != '') {
$cssClass = ' class="nav-item ' . $css . '"';
}
// check for new parent
if (isset($items[$i + 1])) {
if ($items[$i + 1]['isNested'] == true && $new_parent == true) {
$parent_flag = true;
}
}
$menu_root = '/';
// check for external links
if (strpos($url, 'http') !== false) {
$menu_root = '';
}
if ($new_parent == true && $parent_flag == true) {
$menu_html .= '<li class="nav-item dropdown">';
$menu_html .= '<a href="#" class="nav-link dropdown-toggle" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">' . $item['html'] . '</a>';
$menu_html .= '<div class="dropdown-menu" aria-labelledby="navbarDropdown">';
$new_parent = false;
} else {
if($parent_flag == true) {
$menu_html .= '<a class="dropdown-item" href="' . $url . '">' . $item['html'] . '</a>'; // dropdown menu item
}
else {
$menu_html .= '<li' . $cssClass . '>';
$menu_html .= '<a class="nav-link" href="' . $url . '">' . $item['html'] . '</a>'; // standard menu item
$menu_html .= '</li>';
}
}
// end parent
if (isset($items[$i + 1])) {
if ($items[$i + 1]['isNested'] == false && $parent_flag == true) {
$menu_html .= '</div></li>';
$parent_flag = false;
$new_parent = true;
}
} else {
if ($parent_flag == true) {
$menu_html .= '</div></li>';
$parent_flag = false;
$new_parent = true;
}
}
$i = $i + 1;
}
}
}
print $menu_html;
?><file_sep><?php
$runat = $attributes['runat'];
$component = $attributes['component'];
if(isset($runat) && isset($component)) {
// error checking
if($component != '' && $runat == 'publish') {
// get component html
$file = app()->basePath().'/public/sites/'.$site['id'].'/components/'.$component;
// check to see if the file exits
if(file_exists($file)) {
// get html
$component_html = file_get_contents($file);
// print to page
print $component_html;
}
}
}
?><file_sep># Email validation with jQuery
Simple demo which passes email address to the API on form submit and shows a message based on response.
Including showing alternative suggestions for common typos such as gamil.com instead of gmail.com
Full email validation API documentation - https://developers.alliescomputing.com/postcoder-web-api/email-validation
<file_sep>var M = window.Math;
/**
* Calculate distance between two points.
* @private
* @function
* @param {Object} p1 - A given point with coordenates xy.
* @param {Object} p2 - A given point with coordenates xy.
* @returns {Number}
*/
function euclidean(p1, p2) {
var deltaX = M.pow(p1.x - p2.x, 2),
deltaY = M.pow(p1.y - p2.y, 2);
return M.floor(M.sqrt(deltaX + deltaY));
}
/**
* Expose `euclidean`.
*/
exports = module.exports = euclidean;<file_sep>// Problem we want to hide those confirmation warnings
// We want more 8 characters and matching passwords before we submit
//hiding the form spans
$("form span").hide();
var $password = $("#password"), $confirmPassword = $("#confirm_password");
function isPasswordValid() {
return $password.val().length > 8;
}
function passwordEvent() {
if(isPasswordValid()) {
$password.next().hide();
} else {
$password.next().show();
}
}
function arePasswordsMatching() {
return $password.val() === $confirmPassword.val();
}
function confirmPasswordEvent() {
if(arePasswordsMatching()){
$confirmPassword.next().hide();
}else {
$confirmPassword.next().show();
}
}
function canSubmit() {
return isPasswordValid() && arePasswordsMatching();
}
function enableSubmitEvent(){
$("#submit").prop("disabled", !canSubmit());
}
$password.focus(passwordEvent).keyup(passwordEvent).focus(confirmPasswordEvent).keyup(confirmPasswordEvent)
$confirmPassword.focus(confirmPasswordEvent).keyup(confirmPasswordEvent).keyup(enableSubmitEvent)
enableSubmitEvent();<file_sep>'use strict';
angular.module('catchMeApp', [
'ngSanitize',
'btford.socket-io',
'ui.bootstrap'
]);<file_sep># Contributors
* <NAME> 
<file_sep>if(window.PaymentRequest) {
console.log('Tentando pagar pelo browser!');
try {
var payreq = new PaymentRequest(
[{ supportedMethods: ['basic-card'] }],
{
total: {
label: 'Estacionamento diário',
amount:{
currency: 'BRL',
value: 10
}
}
},
{}
);
document.body.classList.add('payment-api-available');
$('body').on('submit', 'form', function() {
payreq.show()
.then(finalizaCompra)
.catch(function(){
Materialize.toast('Problemas com a Payment Request API', 4000);
});
return false;
});
} catch(e) {
console.error(e);
$('body').on('submit', 'form', finalizaCompra);
}
} else {
$('body').on('submit', 'form', finalizaCompra);
}
function finalizaCompra(){
Materialize.toast('Só testes, não enviei o cartão, claro', 4000);
$('form')[0].reset();
var now = new Date();
var saida = new Date(now.getTime() + 1000 * 60 * 15);
var title = 'Pagamento confirmado';
var options = {
icon: 'img/icon.png',
body: 'Saída liberada até ' + saida.getHours() + 'h' + ("0" + (saida.getMinutes() + 1)).slice(-2)
};
if ('Notification' in window) {
Notification.requestPermission();
if ('showNotification' in ServiceWorkerRegistration.prototype) {
console.log('Notification SW');
navigator.serviceWorker.ready.then(function(registration){
registration.showNotification(title, options);
});
} else {
console.log('Notification classic');
new Notification(title, options);
}
}
return false;
}<file_sep>/**
* External dependencies.
*
*/
var inherits = require('super')
, classes = require('classes')
, closest = require('closest-num')
, percentage = require('percentage-calc');
/**
* Require main class.
*/
var Powerange = require('./main');
/**
* Expose `Vertical`.
*/
module.exports = Vertical;
/**
* Create vertical slider object.
*
* @api public
*/
function Vertical() {
Powerange.apply(this, arguments);
classes(this.slider).add('vertical');
if (this.options.step) this.step(this.slider.offsetHeight, this.handle.offsetHeight);
this.setStart(this.options.start);
}
/**
* Inherit the main class.
*/
inherits(Vertical, Powerange);
/**
* Set vertical slider position.
*
* @param {Number} start
* @api private
*/
Vertical.prototype.setStart = function(start) {
var begin = (start === null) ? this.options.min : start
, part = percentage.from(begin - this.options.min, this.options.max - this.options.min) || 0
, offset = percentage.of(part, this.slider.offsetHeight - this.handle.offsetHeight)
, position = (this.options.step) ? closest.find(offset, this.steps) : offset;
this.setPosition(position);
this.setValue(this.handle.style.bottom, this.slider.offsetHeight - this.handle.offsetHeight);
};
/**
* Set vertical slider current position.
*
* @param {Number} val
* @api private
*/
Vertical.prototype.setPosition = function(val) {
this.handle.style.bottom = val + 'px';
this.slider.querySelector('.range-quantity').style.height = val + 'px';
};
/**
* On mouse down.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmousedown = function(e) {
if (e.touches) e = e.touches[0];
this.startY = e.clientY;
this.handleOffsetY = this.slider.offsetHeight - this.handle.offsetHeight - this.handle.offsetTop;
this.restrictHandleY = this.slider.offsetHeight - this.handle.offsetHeight;
this.unselectable(this.slider, true);
};
/**
* On vertical slider mouse move.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmousemove = function(e) {
e.preventDefault();
if (e.touches) e = e.touches[0];
var bottomOffset = this.handleOffsetY + this.startY - e.clientY
, position = (this.steps) ? closest.find(bottomOffset, this.steps) : bottomOffset;
if (bottomOffset <= 0) {
this.setPosition(0);
} else if (bottomOffset >= this.restrictHandleY) {
this.setPosition(this.restrictHandleY);
} else {
this.setPosition(position);
}
this.setValue(this.handle.style.bottom, this.slider.offsetHeight - this.handle.offsetHeight);
};
/**
* On mouse up.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmouseup = function(e) {
this.unselectable(this.slider, false);
};<file_sep>(function(window) {
"use strict"
function MailgunProvider(options) {
this._options = options;
};
MailgunProvider.prototype.request = function(address, callback) {
if (window.jQuery) {
window.jQuery.ajax({
type: 'GET',
url: 'https://api.mailgun.net/v2/address/validate?callback=?',
data: { address: address, api_key: this._options.key },
dataType: 'jsonp',
crossDomain: true,
success: function(data, status) {
return callback(null, {
isValid: data.is_valid,
message: (data.did_you_mean ? 'Did you mean '+data.did_you_mean+'?' : (data.is_valid ? 'Address is good!' : 'Invalid address!'))
})
},
error: function(request, status, error) {
return callback(error);
}
});
} else {
return callback('');
}
};
window.MailgunProvider = MailgunProvider;
})(window);<file_sep># LDPage
- ## **CV** - [CV](https://samuelbetio.github.io/LDPage/cv/)
- ## **Lesson 4** - [CCS Dinner Shopping List](https://samuelbetio.github.io/LDPage/4)
- ## **Lesson 5** - [CSS Weather Forecast](https://samuelbetio.github.io/LDPage/5)
- ## **Lesson 7** - [Fonts](https://samuelbetio.github.io/LDPage/7)
- ## **Lesson 8** - [I LOVE DESIGNE](https://samuelbetio.github.io/LDPage/8)
- ## **Lesson 9** - [FOLIAC](https://samuelbetio.github.io/LDPage/9/1)
- ## **Lesson 9** - [Black and white](https://samuelbetio.github.io/LDPage/9/2)
- ## **Lesson 10** - [CHECKERS](https://samuelbetio.github.io/LDPage/10)
- ## **Lesson 12** - [Nick Product card](https://samuelbetio.github.io/LDPage/12/1)
- ## **Lesson 13** - [Forms](https://samuelbetio.github.io/LDPage/13-14/13)
- ## **Lesson 14** - [Forms](https://samuelbetio.github.io/LDPage/13-14/14)
- ## **Lesson 15** - [Greed](https://samuelbetio.github.io/LDPage/15/1)
- ## **Lesson 15** - [About us](https://samuelbetio.github.io/LDPage/15/2)
- ## **Lesson 16** - [Blog Greed](https://samuelbetio.github.io/LDPage/16)
- ## **Lesson 17** - [svg](https://samuelbetio.github.io/LDPage/17)
- ## **Lesson 18** - [Design Lab](https://samuelbetio.github.io/LDPage/18/1)
- ## **Lesson 18** - [Cahee](https://samuelbetio.github.io/LDPage/18/2)
- ## **DEMO 24News** - [24News](https://samuelbetio.github.io/LDPage/demo/24News/)
- ## **DEMO Anomymous-Email-validate** - [Anomymous Email validate](https://samuelbetio.github.io/LDPage/demo/Anomymous-Email-validate/Anomymous%20function.html)
<file_sep>Auto-Hiding Navigation
=========
A simple navigation that auto-hides when the user scrolls down, and becomes visible when the user scrolls up.
[Article on CodyHouse](https://codyhouse.co/gem/auto-hiding-navigation)
[Demo](https://codyhouse.co/demo/auto-hiding-navigation/nav-subnav.html)
Images: [Unsplash](https://unsplash.com/)
[Terms](https://codyhouse.co/terms/)
<file_sep>$('body').on('click', '.code-scan', function() {
Quagga.init({
inputStream : {
name : "Live",
type : "LiveStream"
},
decoder : {
readers : ["code_128_reader"]
},
tracking: true,
controls: true,
locate: true
}, function(err) {
if (err) {
console.log(err);
return
}
console.log("Initialization finished. Ready to start");
Quagga.start();
});
Quagga.onDetected(function(result) {
var code = result.codeResult.code;
$(document).trigger('codefound', code);
});
});
$(document).on('modalclose', function() {
Quagga.stop();
});
$(document).on('codefound', function(event, code) {
console.log('Achei código de barras', code);
try {
$('#scan').closeModal();
Quagga.stop();
} finally {
$('#codigo').val(code).focus();
}
});
$('body').on('click', '.codetest', function(event) {
$(document).trigger('codefound', '8745642');
});<file_sep># Password-and-Confirm-Password-Validator<file_sep>---
name: FlexSlider Properties
about: "**WIP**"
---
FlexSlider hosts many features, and there's a chance you'll find yourself needing to read up on a few of them. Below is an overview table of the features available in FlexSlider, followed by detailed information and tips regarding each property.
<file_sep># HTML5 Email validator
An email address validator (which includes checking a valid TLD is used) in pure HTML with no JavaScript or dependencies. It could be used to improve the user experience by rejecting mistyped email addresses.
## Where can I see a demo?
https://coliff.github.io/html5-email-regex/
## How does it work?
It uses the HTML5 `pattern` attribute and uses the standard email regex [RFC 5322](https://www.w3.org/TR/2012/WD-html-markup-20120320/input.email.html) and expanded to check the end of the email address matches against a list of valid TLDs.
## Is it safe to use?
Kind of, but a few points:
- You should always do server-side validation in addition to any front-end validation.
- There are new TLDs added regularly so if you don't keep the pattern regex up-to-date you may exclude newer TLDs.
- Some older browsers such as Internet Explorer 9 and below and Android 4.4 browser and below don't support the `pattern` attribute. iOS prior to 10.3 and safari for MacOS prior to 10.1 still allow forms to be submitted even if the pattern is incorrect. Check https://caniuse.com/#search=pattern for more details.
- It doesn't give meaningful feedback if an email address is mistyped. So if someone enters `<EMAIL>` they'll get an invalid message, but won't specify that the TLD is incorrect. I've used [Verimail](https://github.com/amail/Verimail.js) and [Mailcheck](https://github.com/mailcheck/mailcheck) with success before to give inline feedback on mistyped email addresses.
## Are there any other recommended HTML attributes to add?
- Always use `type="email"` rather than `type="text"` to take advantage of browser-based validation and feedback and provide hints to autocomplete/autofill users email address.
- Add `autocomplete="email"` to help browsers with autocomplete/autofill.
- For good measure, consider adding `maxlength="256"` as no email address can be longer.
- If it's an order form/contact form or similar add the `required` tag to prevent submissions when this field is empty.
## How did you get the list of valid TLDs?
I scraped the official list with this command:
`$ curl -s http://data.iana.org/TLD/tlds-alpha-by-domain.txt | sed '1d; s/^ *//; s/ *$//; /^$/d' | awk '{print length" "$0}' | sort -rn | cut -d' ' -f2- | tr '\n' '|' | tr '[:upper:]' '[:lower:]' | sed 's/\(.*\)./\1/'`
and copied the output to the pattern attribute which resulted in:
```
pattern="[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[A-Za-z0-9.-]+\.+(xn--vermgensberatung-pwb|xn--vermgensberater-ctb|xn--clchc0ea0b2g2a9gcd|xn--w4r85el8fhu5dnra|travelersinsurance|northwesternmutual|xn--xkc2dl3a5ee0h|xn--mgberp4a5d4ar|xn--mgbai9azgqp6j|xn--bck1b9a5dre4c|xn--5su34j936bgsg|xn--3oq18vl8pn36a|xn--xkc2al3hye2a|xn--mgba7c0bbn0a|xn--fzys8d69uvgm|xn--nqv7fs00ema|xn--mgbc0a9azcg|xn--mgbaakc7dvf|xn--mgba3a4f16a|xn--lgbbat1ad8j|xn--kcrx77d1x4a|xn--i1b6b1a6a2e|sandvikcoromant|kerryproperties|americanexpress|xn--rvc1e0am3e|xn--mgbx4cd0ab|xn--mgbi4ecexp|xn--mgbca7dzdo|xn--mgbbh1a71e|xn--mgbb9fbpob|xn--mgbayh7gpa|xn--mgbaam7a8h|xn--mgba3a3ejt|xn--jlq61u9w7b|xn--h2breg3eve|xn--fiq228c5hs|xn--b4w605ferd|xn--80aqecdr1a|xn--6qq986b3xl|xn--54b7fta0cc|weatherchannel|kerrylogistics|cookingchannel|cancerresearch|bananarepublic|americanfamily|afamilycompany|xn--ygbi2ammx|xn--yfro4i67o|xn--tiq49xqyj|xn--h2brj9c8c|xn--fzc2c9e2c|xn--fpcrj9c3d|xn--eckvdtc9d|wolterskluwer|travelchannel|spreadbetting|lifeinsurance|international|xn--qcka1pmc|xn--ogbpf8fl|xn--ngbe9e0a|xn--ngbc5azd|xn--mk1bu44c|xn--mgbt3dhd|xn--mgbpl2fh|xn--mgbgu82a|xn--mgbab2bd|xn--mgb9awbf|xn--gckr3f0f|xn--8y0a063a|xn--80asehdb|xn--80adxhks|xn--45br5cyl|xn--3e0b707e|versicherung|scholarships|lplfinancial|construction|xn--zfr164b|xn--xhq521b|xn--w4rs40l|xn--vuq861b|xn--t60b56a|xn--ses554g|xn--s9brj9c|xn--rovu88b|xn--rhqv96g|xn--q9jyb4c|xn--pgbs0dh|xn--pbt977c|xn--nyqy26a|xn--mix891f|xn--mgbtx2b|xn--mgbbh1a|xn--kpu716f|xn--kpry57d|xn--kprw13d|xn--jvr189m|xn--j6w193g|xn--imr513n|xn--hxt814e|xn--h2brj9c|xn--gk3at1e|xn--gecrj9c|xn--g2xx48c|xn--flw351e|xn--fjq720a|xn--fct429k|xn--estv75g|xn--efvy88h|xn--d1acj3b|xn--czr694b|xn--cck2b3b|xn--9krt00a|xn--80ao21a|xn--6frz82g|xn--55qw42g|xn--45brj9c|xn--42c2d9a|xn--3hcrj9c|xn--3ds443g|xn--3bst00m|xn--2scrj9c|xn--1qqw23a|xn--1ck2e1b|xn--11b4c3d|williamhill|rightathome|redumbrella|progressive|productions|playstation|photography|olayangroup|motorcycles|lamborghini|kerryhotels|investments|foodnetwork|enterprises|engineering|creditunion|contractors|calvinklein|bridgestone|blockbuster|blackfriday|barclaycard|accountants|xn--y9a3aq|xn--wgbl6a|xn--wgbh1c|xn--unup4y|xn--pssy2u|xn--o3cw4h|xn--mxtq1m|xn--kput3i|xn--io0a7i|xn--fiqz9s|xn--fiqs8s|xn--fiq64b|xn--czru2d|xn--czrs0t|xn--cg4bki|xn--c2br7g|xn--9et52u|xn--9dbq2a|xn--90a3ac|xn--80aswg|xn--5tzm5g|xn--55qx5d|xn--4gbrim|xn--45q11c|xn--3pxu8k|xn--30rr7y|volkswagen|vlaanderen|vistaprint|university|telefonica|technology|tatamotors|swiftcover|schaeffler|restaurant|republican|realestate|prudential|protection|properties|onyourside|nextdirect|newholland|nationwide|mitsubishi|management|industries|immobilien|healthcare|foundation|extraspace|eurovision|cuisinella|creditcard|consulting|capitalone|boehringer|bnpparibas|basketball|associates|apartments|accountant|yodobashi|xn--vhquv|xn--tckwe|xn--p1acf|xn--nqv7f|xn--ngbrx|xn--l1acc|xn--j1amh|xn--j1aef|xn--fhbei|xn--e1a4c|xn--d1alf|xn--c1avg|xn--90ais|vacations|travelers|stockholm|statefarm|statebank|solutions|shangrila|scjohnson|richardli|pramerica|passagens|panasonic|microsoft|melbourne|marshalls|marketing|lifestyle|landrover|lancaster|ladbrokes|kuokgroup|insurance|institute|honeywell|homesense|homegoods|homedepot|hisamitsu|goodhands|goldpoint|furniture|fujixerox|frontdoor|fresenius|firestone|financial|fairwinds|equipment|education|directory|community|christmas|bloomberg|barcelona|aquarelle|analytics|amsterdam|allfinanz|alfaromeo|accenture|yokohama|xn--qxam|xn--p1ai|xn--node|xn--90ae|woodside|verisign|ventures|vanguard|uconnect|training|telecity|symantec|supplies|stcgroup|software|softbank|showtime|shopping|services|security|samsclub|saarland|reliance|redstone|property|plumbing|pictures|pharmacy|partners|observer|movistar|mortgage|merckmsd|memorial|mckinsey|maserati|marriott|lundbeck|lighting|jpmorgan|istanbul|ipiranga|infiniti|hospital|holdings|helsinki|hdfcbank|guardian|graphics|grainger|goodyear|frontier|football|firmdale|fidelity|feedback|exchange|everbank|etisalat|esurance|ericsson|engineer|download|discover|discount|diamonds|democrat|deloitte|delivery|computer|commbank|clothing|clinique|cleaning|cityeats|cipriani|chrysler|catholic|catering|capetown|business|builders|budapest|brussels|broadway|bradesco|boutique|baseball|bargains|barefoot|barclays|attorney|allstate|airforce|abudhabi|zuerich|youtube|yamaxun|xfinity|winners|windows|whoswho|wedding|website|weather|watches|wanggou|walmart|trading|toshiba|tiffany|tickets|theatre|theater|temasek|systems|surgery|support|storage|statoil|starhub|staples|spiegel|singles|shriram|shiksha|science|schwarz|schmidt|sandvik|samsung|rexroth|reviews|rentals|recipes|realtor|politie|pioneer|philips|panerai|origins|organic|oldnavy|okinawa|neustar|network|netflix|netbank|monster|metlife|markets|lincoln|limited|liaison|leclerc|latrobe|lasalle|lanxess|lancome|lacaixa|komatsu|kitchen|juniper|jewelry|ismaili|iselect|hyundai|hotmail|hoteles|hosting|holiday|hitachi|hangout|hamburg|guitars|grocery|godaddy|genting|gallery|fujitsu|frogans|forsale|flowers|florist|flights|fitness|fishing|finance|ferrero|ferrari|fashion|farmers|express|exposed|domains|digital|dentist|cruises|cricket|courses|coupons|country|corsica|cooking|contact|compare|company|comcast|cologne|college|clubmed|citadel|chintai|channel|cartier|careers|caravan|capital|bugatti|brother|booking|bestbuy|bentley|bauhaus|banamex|avianca|auspost|audible|auction|athleta|android|alibaba|agakhan|academy|abogado|zappos|yandex|yachts|xperia|xihuan|webcam|warman|walter|vuelos|voyage|voting|vision|virgin|villas|viking|viajes|unicom|travel|toyota|tkmaxx|tjmaxx|tienda|tennis|tattoo|target|taobao|taipei|sydney|swatch|suzuki|supply|studio|stream|social|soccer|shouji|select|secure|search|schule|school|sanofi|sakura|safety|ryukyu|rogers|rocher|review|report|repair|reisen|realty|racing|quebec|pictet|piaget|physio|photos|pfizer|otsuka|orange|oracle|online|olayan|office|nowruz|norton|nissay|nissan|natura|nagoya|mutual|museum|moscow|mormon|monash|mobily|mobile|mattel|market|makeup|maison|madrid|luxury|london|locker|living|lefrak|lawyer|latino|lancia|kosher|kindle|kinder|kaufen|juegos|joburg|jaguar|intuit|insure|imamat|hughes|hotels|hockey|hiphop|hermes|health|gratis|google|global|giving|george|garden|gallup|futbol|flickr|family|expert|events|estate|energy|emerck|durban|dupont|dunlop|doctor|direct|design|dental|degree|dealer|datsun|dating|cruise|credit|coupon|condos|comsec|coffee|clinic|claims|circle|church|chrome|chanel|center|casino|caseih|career|camera|broker|boston|bostik|blanco|bharti|berlin|beauty|bayern|author|aramco|anquan|alstom|alsace|alipay|airtel|airbus|agency|africa|active|abbvie|abbott|abarth|zippo|yahoo|xerox|world|works|weibo|weber|watch|wales|volvo|vodka|vista|video|vegas|ubank|tushu|tunes|trust|trade|tours|total|toray|tools|tokyo|today|tmall|tirol|tires|tatar|swiss|sucks|style|study|store|stada|space|solar|smile|smart|sling|skype|shoes|shell|sharp|seven|sener|salon|rugby|rodeo|rocks|ricoh|reise|rehab|radio|quest|promo|prime|press|praxi|poker|place|pizza|photo|phone|party|parts|paris|osaka|omega|nowtv|nokia|ninja|nikon|nexus|nadex|movie|mopar|money|miami|media|mango|macys|lupin|lotto|lotte|locus|loans|lixil|lipsy|linde|lilly|lexus|legal|lease|lamer|kyoto|koeln|jetzt|iveco|irish|intel|ikano|hyatt|house|horse|honda|homes|guide|gucci|group|gripe|green|gmail|globo|glass|glade|gives|gifts|games|gallo|forum|forex|final|fedex|faith|epson|epost|email|edeka|earth|dubai|drive|dodge|delta|deals|dance|dabur|cymru|crown|codes|coach|cloud|click|citic|cisco|cheap|chase|cards|canon|build|bosch|boots|boats|black|bingo|bible|beats|baidu|azure|autos|audio|archi|apple|amica|amfam|aetna|adult|actor|zone|zero|zara|yoga|xbox|work|wine|wiki|wien|weir|wang|voto|vote|vivo|viva|visa|vana|tube|toys|town|tips|tiaa|teva|tech|team|taxi|talk|surf|star|spot|sony|song|sohu|sncf|skin|site|sina|silk|show|shop|shia|shaw|sexy|seek|seat|scot|scor|saxo|save|sarl|sapo|sale|safe|ruhr|rsvp|room|rmit|rich|rest|rent|reit|read|raid|qpon|prof|prod|post|porn|pohl|plus|play|pink|ping|pics|pccw|pars|page|open|ollo|nike|nico|next|news|navy|name|moto|moda|mobi|mint|mini|menu|meme|meet|maif|luxe|ltda|love|loft|loan|live|link|limo|like|life|lidl|lgbt|lego|land|kred|kpmg|kiwi|kddi|jprs|jobs|jeep|java|itau|info|immo|imdb|ieee|icbc|hsbc|host|hgtv|here|help|hdfc|haus|hair|guru|guge|goog|golf|gold|gmbh|gift|ggee|gent|gbiz|game|fund|free|ford|food|flir|fish|fire|film|fido|fiat|fast|farm|fans|fail|fage|erni|dvag|duns|duck|doha|docs|dish|diet|desi|dell|deal|dclk|date|data|cyou|coop|cool|club|city|citi|chat|cern|cbre|cash|case|casa|cars|care|camp|call|cafe|buzz|book|bond|bofa|blue|blog|bing|bike|best|beer|bbva|bank|band|baby|auto|audi|asia|asda|arte|arpa|army|arab|amex|ally|akdn|aigo|aero|adac|able|aarp|zip|yun|you|xyz|xxx|xin|wtf|wtc|wow|wme|win|wed|vip|vin|vig|vet|ups|uol|uno|ubs|tvs|tui|trv|top|tjx|thd|tel|tdk|tci|tax|tab|stc|srt|srl|soy|sky|ski|sfr|sex|sew|ses|scb|sca|sbs|sbi|sas|sap|rwe|run|rip|rio|ril|ren|red|qvc|pwc|pub|pru|pro|pnc|pin|pid|phd|pet|pay|ovh|ott|org|ooo|onl|ong|one|off|obi|nyc|ntt|nrw|nra|now|nhk|ngo|nfl|new|net|nec|nba|nab|mtr|mtn|msd|mov|mom|moi|moe|mma|mls|mlb|mit|mil|meo|men|med|mba|map|man|ltd|lpl|lol|lds|law|lat|krd|kpn|kim|kia|kfh|joy|jot|jnj|jmp|jll|jlc|jio|jcp|jcb|iwc|itv|ist|int|ink|ing|ifm|icu|ice|ibm|how|hot|hkt|hiv|hbo|gov|got|gop|goo|gmx|gmo|gle|gea|gdn|gap|gal|fyi|fun|ftr|frl|fox|foo|fly|fit|fan|eus|esq|edu|eco|eat|dvr|dtv|dot|dog|dnp|diy|dhl|dev|dds|day|dad|csc|crs|com|cfd|cfa|ceo|ceb|cbs|cbn|cba|cat|car|cam|cal|cab|bzh|buy|box|bot|boo|bom|bnl|bmw|bms|biz|bio|bid|bet|bcn|bcg|bbt|bbc|bar|axa|aws|art|app|aol|anz|aig|afl|aeg|ads|aco|abc|abb|aaa|zw|zm|za|yt|ye|ws|wf|vu|vn|vi|vg|ve|vc|va|uz|uy|us|uk|ug|ua|tz|tw|tv|tt|tr|to|tn|tm|tl|tk|tj|th|tg|tf|td|tc|sz|sy|sx|sv|su|st|sr|so|sn|sm|sl|sk|sj|si|sh|sg|se|sd|sc|sb|sa|rw|ru|rs|ro|re|qa|py|pw|pt|ps|pr|pn|pm|pl|pk|ph|pg|pf|pe|pa|om|nz|nu|nr|np|no|nl|ni|ng|nf|ne|nc|na|mz|my|mx|mw|mv|mu|mt|ms|mr|mq|mp|mo|mn|mm|ml|mk|mh|mg|me|md|mc|ma|ly|lv|lu|lt|ls|lr|lk|li|lc|lb|la|kz|ky|kw|kr|kp|kn|km|ki|kh|kg|ke|jp|jo|jm|je|it|is|ir|iq|io|in|im|il|ie|id|hu|ht|hr|hn|hm|hk|gy|gw|gu|gt|gs|gr|gq|gp|gn|gm|gl|gi|gh|gg|gf|ge|gd|gb|ga|fr|fo|fm|fk|fj|fi|eu|et|es|er|eg|ee|ec|dz|do|dm|dk|dj|de|cz|cy|cx|cw|cv|cu|cr|co|cn|cm|cl|ck|ci|ch|cg|cf|cd|cc|ca|bz|by|bw|bv|bt|bs|br|bo|bn|bm|bj|bi|bh|bg|bf|be|bd|bb|ba|az|ax|aw|au|at|as|ar|aq|ao|am|al|ai|ag|af|ae|ad|ac)"
```
## Further Reading
https://emailregex.com/
<file_sep>;(function(){
/**
* Require the given path.
*
* @param {String} path
* @return {Object} exports
* @api public
*/
function require(path, parent, orig) {
var resolved = require.resolve(path);
// lookup failed
if (null == resolved) {
orig = orig || path;
parent = parent || 'root';
var err = new Error('Failed to require "' + orig + '" from "' + parent + '"');
err.path = orig;
err.parent = parent;
err.require = true;
throw err;
}
var module = require.modules[resolved];
// perform real require()
// by invoking the module's
// registered function
if (!module._resolving && !module.exports) {
var mod = {};
mod.exports = {};
mod.client = mod.component = true;
module._resolving = true;
module.call(this, mod.exports, require.relative(resolved), mod);
delete module._resolving;
module.exports = mod.exports;
}
return module.exports;
}
/**
* Registered modules.
*/
require.modules = {};
/**
* Registered aliases.
*/
require.aliases = {};
/**
* Resolve `path`.
*
* Lookup:
*
* - PATH/index.js
* - PATH.js
* - PATH
*
* @param {String} path
* @return {String} path or null
* @api private
*/
require.resolve = function(path) {
if (path.charAt(0) === '/') path = path.slice(1);
var paths = [
path,
path + '.js',
path + '.json',
path + '/index.js',
path + '/index.json'
];
for (var i = 0; i < paths.length; i++) {
var path = paths[i];
if (require.modules.hasOwnProperty(path)) return path;
if (require.aliases.hasOwnProperty(path)) return require.aliases[path];
}
};
/**
* Normalize `path` relative to the current path.
*
* @param {String} curr
* @param {String} path
* @return {String}
* @api private
*/
require.normalize = function(curr, path) {
var segs = [];
if ('.' != path.charAt(0)) return path;
curr = curr.split('/');
path = path.split('/');
for (var i = 0; i < path.length; ++i) {
if ('..' == path[i]) {
curr.pop();
} else if ('.' != path[i] && '' != path[i]) {
segs.push(path[i]);
}
}
return curr.concat(segs).join('/');
};
/**
* Register module at `path` with callback `definition`.
*
* @param {String} path
* @param {Function} definition
* @api private
*/
require.register = function(path, definition) {
require.modules[path] = definition;
};
/**
* Alias a module definition.
*
* @param {String} from
* @param {String} to
* @api private
*/
require.alias = function(from, to) {
if (!require.modules.hasOwnProperty(from)) {
throw new Error('Failed to alias "' + from + '", it does not exist');
}
require.aliases[to] = from;
};
/**
* Return a require function relative to the `parent` path.
*
* @param {String} parent
* @return {Function}
* @api private
*/
require.relative = function(parent) {
var p = require.normalize(parent, '..');
/**
* lastIndexOf helper.
*/
function lastIndexOf(arr, obj) {
var i = arr.length;
while (i--) {
if (arr[i] === obj) return i;
}
return -1;
}
/**
* The relative require() itself.
*/
function localRequire(path) {
var resolved = localRequire.resolve(path);
return require(resolved, parent, path);
}
/**
* Resolve relative to the parent.
*/
localRequire.resolve = function(path) {
var c = path.charAt(0);
if ('/' == c) return path.slice(1);
if ('.' == c) return require.normalize(p, path);
// resolve deps by returning
// the dep in the nearest "deps"
// directory
var segs = parent.split('/');
var i = lastIndexOf(segs, 'deps') + 1;
if (!i) i = 0;
path = segs.slice(0, i + 1).join('/') + '/deps/' + path;
return path;
};
/**
* Check if module is defined at `path`.
*/
localRequire.exists = function(path) {
return require.modules.hasOwnProperty(localRequire.resolve(path));
};
return localRequire;
};
require.register("component-event/index.js", function(exports, require, module){
var bind = window.addEventListener ? 'addEventListener' : 'attachEvent',
unbind = window.removeEventListener ? 'removeEventListener' : 'detachEvent',
prefix = bind !== 'addEventListener' ? 'on' : '';
/**
* Bind `el` event `type` to `fn`.
*
* @param {Element} el
* @param {String} type
* @param {Function} fn
* @param {Boolean} capture
* @return {Function}
* @api public
*/
exports.bind = function(el, type, fn, capture){
el[bind](prefix + type, fn, capture || false);
return fn;
};
/**
* Unbind `el` event `type`'s callback `fn`.
*
* @param {Element} el
* @param {String} type
* @param {Function} fn
* @param {Boolean} capture
* @return {Function}
* @api public
*/
exports.unbind = function(el, type, fn, capture){
el[unbind](prefix + type, fn, capture || false);
return fn;
};
});
require.register("component-query/index.js", function(exports, require, module){
function one(selector, el) {
return el.querySelector(selector);
}
exports = module.exports = function(selector, el){
el = el || document;
return one(selector, el);
};
exports.all = function(selector, el){
el = el || document;
return el.querySelectorAll(selector);
};
exports.engine = function(obj){
if (!obj.one) throw new Error('.one callback required');
if (!obj.all) throw new Error('.all callback required');
one = obj.one;
exports.all = obj.all;
return exports;
};
});
require.register("component-matches-selector/index.js", function(exports, require, module){
/**
* Module dependencies.
*/
var query = require('query');
/**
* Element prototype.
*/
var proto = Element.prototype;
/**
* Vendor function.
*/
var vendor = proto.matches
|| proto.webkitMatchesSelector
|| proto.mozMatchesSelector
|| proto.msMatchesSelector
|| proto.oMatchesSelector;
/**
* Expose `match()`.
*/
module.exports = match;
/**
* Match `el` to `selector`.
*
* @param {Element} el
* @param {String} selector
* @return {Boolean}
* @api public
*/
function match(el, selector) {
if (vendor) return vendor.call(el, selector);
var nodes = query.all(selector, el.parentNode);
for (var i = 0; i < nodes.length; ++i) {
if (nodes[i] == el) return true;
}
return false;
}
});
require.register("discore-closest/index.js", function(exports, require, module){
var matches = require('matches-selector')
module.exports = function (element, selector, checkYoSelf, root) {
element = checkYoSelf ? {parentNode: element} : element
root = root || document
// Make sure `element !== document` and `element != null`
// otherwise we get an illegal invocation
while ((element = element.parentNode) && element !== document) {
if (matches(element, selector))
return element
// After `matches` on the edge case that
// the selector matches the root
// (when the root is not the document)
if (element === root)
return
}
}
});
require.register("component-delegate/index.js", function(exports, require, module){
/**
* Module dependencies.
*/
var closest = require('closest')
, event = require('event');
/**
* Delegate event `type` to `selector`
* and invoke `fn(e)`. A callback function
* is returned which may be passed to `.unbind()`.
*
* @param {Element} el
* @param {String} selector
* @param {String} type
* @param {Function} fn
* @param {Boolean} capture
* @return {Function}
* @api public
*/
exports.bind = function(el, selector, type, fn, capture){
return event.bind(el, type, function(e){
var target = e.target || e.srcElement;
e.delegateTarget = closest(target, selector, true, el);
if (e.delegateTarget) fn.call(el, e);
}, capture);
};
/**
* Unbind event `type`'s callback `fn`.
*
* @param {Element} el
* @param {String} type
* @param {Function} fn
* @param {Boolean} capture
* @api public
*/
exports.unbind = function(el, type, fn, capture){
event.unbind(el, type, fn, capture);
};
});
require.register("component-events/index.js", function(exports, require, module){
/**
* Module dependencies.
*/
var events = require('event');
var delegate = require('delegate');
/**
* Expose `Events`.
*/
module.exports = Events;
/**
* Initialize an `Events` with the given
* `el` object which events will be bound to,
* and the `obj` which will receive method calls.
*
* @param {Object} el
* @param {Object} obj
* @api public
*/
function Events(el, obj) {
if (!(this instanceof Events)) return new Events(el, obj);
if (!el) throw new Error('element required');
if (!obj) throw new Error('object required');
this.el = el;
this.obj = obj;
this._events = {};
}
/**
* Subscription helper.
*/
Events.prototype.sub = function(event, method, cb){
this._events[event] = this._events[event] || {};
this._events[event][method] = cb;
};
/**
* Bind to `event` with optional `method` name.
* When `method` is undefined it becomes `event`
* with the "on" prefix.
*
* Examples:
*
* Direct event handling:
*
* events.bind('click') // implies "onclick"
* events.bind('click', 'remove')
* events.bind('click', 'sort', 'asc')
*
* Delegated event handling:
*
* events.bind('click li > a')
* events.bind('click li > a', 'remove')
* events.bind('click a.sort-ascending', 'sort', 'asc')
* events.bind('click a.sort-descending', 'sort', 'desc')
*
* @param {String} event
* @param {String|function} [method]
* @return {Function} callback
* @api public
*/
Events.prototype.bind = function(event, method){
var e = parse(event);
var el = this.el;
var obj = this.obj;
var name = e.name;
var method = method || 'on' + name;
var args = [].slice.call(arguments, 2);
// callback
function cb(){
var a = [].slice.call(arguments).concat(args);
obj[method].apply(obj, a);
}
// bind
if (e.selector) {
cb = delegate.bind(el, e.selector, name, cb);
} else {
events.bind(el, name, cb);
}
// subscription for unbinding
this.sub(name, method, cb);
return cb;
};
/**
* Unbind a single binding, all bindings for `event`,
* or all bindings within the manager.
*
* Examples:
*
* Unbind direct handlers:
*
* events.unbind('click', 'remove')
* events.unbind('click')
* events.unbind()
*
* Unbind delegate handlers:
*
* events.unbind('click', 'remove')
* events.unbind('click')
* events.unbind()
*
* @param {String|Function} [event]
* @param {String|Function} [method]
* @api public
*/
Events.prototype.unbind = function(event, method){
if (0 == arguments.length) return this.unbindAll();
if (1 == arguments.length) return this.unbindAllOf(event);
// no bindings for this event
var bindings = this._events[event];
if (!bindings) return;
// no bindings for this method
var cb = bindings[method];
if (!cb) return;
events.unbind(this.el, event, cb);
};
/**
* Unbind all events.
*
* @api private
*/
Events.prototype.unbindAll = function(){
for (var event in this._events) {
this.unbindAllOf(event);
}
};
/**
* Unbind all events for `event`.
*
* @param {String} event
* @api private
*/
Events.prototype.unbindAllOf = function(event){
var bindings = this._events[event];
if (!bindings) return;
for (var method in bindings) {
this.unbind(event, method);
}
};
/**
* Parse `event`.
*
* @param {String} event
* @return {Object}
* @api private
*/
function parse(event) {
var parts = event.split(/ +/);
return {
name: parts.shift(),
selector: parts.join(' ')
}
}
});
require.register("component-indexof/index.js", function(exports, require, module){
module.exports = function(arr, obj){
if (arr.indexOf) return arr.indexOf(obj);
for (var i = 0; i < arr.length; ++i) {
if (arr[i] === obj) return i;
}
return -1;
};
});
require.register("component-classes/index.js", function(exports, require, module){
/**
* Module dependencies.
*/
var index = require('indexof');
/**
* Whitespace regexp.
*/
var re = /\s+/;
/**
* toString reference.
*/
var toString = Object.prototype.toString;
/**
* Wrap `el` in a `ClassList`.
*
* @param {Element} el
* @return {ClassList}
* @api public
*/
module.exports = function(el){
return new ClassList(el);
};
/**
* Initialize a new ClassList for `el`.
*
* @param {Element} el
* @api private
*/
function ClassList(el) {
if (!el) throw new Error('A DOM element reference is required');
this.el = el;
this.list = el.classList;
}
/**
* Add class `name` if not already present.
*
* @param {String} name
* @return {ClassList}
* @api public
*/
ClassList.prototype.add = function(name){
// classList
if (this.list) {
this.list.add(name);
return this;
}
// fallback
var arr = this.array();
var i = index(arr, name);
if (!~i) arr.push(name);
this.el.className = arr.join(' ');
return this;
};
/**
* Remove class `name` when present, or
* pass a regular expression to remove
* any which match.
*
* @param {String|RegExp} name
* @return {ClassList}
* @api public
*/
ClassList.prototype.remove = function(name){
if ('[object RegExp]' == toString.call(name)) {
return this.removeMatching(name);
}
// classList
if (this.list) {
this.list.remove(name);
return this;
}
// fallback
var arr = this.array();
var i = index(arr, name);
if (~i) arr.splice(i, 1);
this.el.className = arr.join(' ');
return this;
};
/**
* Remove all classes matching `re`.
*
* @param {RegExp} re
* @return {ClassList}
* @api private
*/
ClassList.prototype.removeMatching = function(re){
var arr = this.array();
for (var i = 0; i < arr.length; i++) {
if (re.test(arr[i])) {
this.remove(arr[i]);
}
}
return this;
};
/**
* Toggle class `name`, can force state via `force`.
*
* For browsers that support classList, but do not support `force` yet,
* the mistake will be detected and corrected.
*
* @param {String} name
* @param {Boolean} force
* @return {ClassList}
* @api public
*/
ClassList.prototype.toggle = function(name, force){
// classList
if (this.list) {
if ("undefined" !== typeof force) {
if (force !== this.list.toggle(name, force)) {
this.list.toggle(name); // toggle again to correct
}
} else {
this.list.toggle(name);
}
return this;
}
// fallback
if ("undefined" !== typeof force) {
if (!force) {
this.remove(name);
} else {
this.add(name);
}
} else {
if (this.has(name)) {
this.remove(name);
} else {
this.add(name);
}
}
return this;
};
/**
* Return an array of classes.
*
* @return {Array}
* @api public
*/
ClassList.prototype.array = function(){
var str = this.el.className.replace(/^\s+|\s+$/g, '');
var arr = str.split(re);
if ('' === arr[0]) arr.shift();
return arr;
};
/**
* Check if class `name` is present.
*
* @param {String} name
* @return {ClassList}
* @api public
*/
ClassList.prototype.has =
ClassList.prototype.contains = function(name){
return this.list
? this.list.contains(name)
: !! ~index(this.array(), name);
};
});
require.register("component-emitter/index.js", function(exports, require, module){
/**
* Expose `Emitter`.
*/
module.exports = Emitter;
/**
* Initialize a new `Emitter`.
*
* @api public
*/
function Emitter(obj) {
if (obj) return mixin(obj);
};
/**
* Mixin the emitter properties.
*
* @param {Object} obj
* @return {Object}
* @api private
*/
function mixin(obj) {
for (var key in Emitter.prototype) {
obj[key] = Emitter.prototype[key];
}
return obj;
}
/**
* Listen on the given `event` with `fn`.
*
* @param {String} event
* @param {Function} fn
* @return {Emitter}
* @api public
*/
Emitter.prototype.on =
Emitter.prototype.addEventListener = function(event, fn){
this._callbacks = this._callbacks || {};
(this._callbacks[event] = this._callbacks[event] || [])
.push(fn);
return this;
};
/**
* Adds an `event` listener that will be invoked a single
* time then automatically removed.
*
* @param {String} event
* @param {Function} fn
* @return {Emitter}
* @api public
*/
Emitter.prototype.once = function(event, fn){
var self = this;
this._callbacks = this._callbacks || {};
function on() {
self.off(event, on);
fn.apply(this, arguments);
}
on.fn = fn;
this.on(event, on);
return this;
};
/**
* Remove the given callback for `event` or all
* registered callbacks.
*
* @param {String} event
* @param {Function} fn
* @return {Emitter}
* @api public
*/
Emitter.prototype.off =
Emitter.prototype.removeListener =
Emitter.prototype.removeAllListeners =
Emitter.prototype.removeEventListener = function(event, fn){
this._callbacks = this._callbacks || {};
// all
if (0 == arguments.length) {
this._callbacks = {};
return this;
}
// specific event
var callbacks = this._callbacks[event];
if (!callbacks) return this;
// remove all handlers
if (1 == arguments.length) {
delete this._callbacks[event];
return this;
}
// remove specific handler
var cb;
for (var i = 0; i < callbacks.length; i++) {
cb = callbacks[i];
if (cb === fn || cb.fn === fn) {
callbacks.splice(i, 1);
break;
}
}
return this;
};
/**
* Emit `event` with the given args.
*
* @param {String} event
* @param {Mixed} ...
* @return {Emitter}
*/
Emitter.prototype.emit = function(event){
this._callbacks = this._callbacks || {};
var args = [].slice.call(arguments, 1)
, callbacks = this._callbacks[event];
if (callbacks) {
callbacks = callbacks.slice(0);
for (var i = 0, len = callbacks.length; i < len; ++i) {
callbacks[i].apply(this, args);
}
}
return this;
};
/**
* Return array of callbacks for `event`.
*
* @param {String} event
* @return {Array}
* @api public
*/
Emitter.prototype.listeners = function(event){
this._callbacks = this._callbacks || {};
return this._callbacks[event] || [];
};
/**
* Check if this emitter has `event` handlers.
*
* @param {String} event
* @return {Boolean}
* @api public
*/
Emitter.prototype.hasListeners = function(event){
return !! this.listeners(event).length;
};
});
require.register("ui-component-mouse/index.js", function(exports, require, module){
/**
* dependencies.
*/
var emitter = require('emitter')
, event = require('event');
/**
* export `Mouse`
*/
module.exports = function(el, obj){
return new Mouse(el, obj);
};
/**
* initialize new `Mouse`.
*
* @param {Element} el
* @param {Object} obj
*/
function Mouse(el, obj){
this.obj = obj || {};
this.el = el;
}
/**
* mixin emitter.
*/
emitter(Mouse.prototype);
/**
* bind mouse.
*
* @return {Mouse}
*/
Mouse.prototype.bind = function(){
var obj = this.obj
, self = this;
// up
function up(e){
obj.onmouseup && obj.onmouseup(e);
event.unbind(document, 'mousemove', move);
event.unbind(document, 'mouseup', up);
self.emit('up', e);
}
// move
function move(e){
obj.onmousemove && obj.onmousemove(e);
self.emit('move', e);
}
// down
self.down = function(e){
obj.onmousedown && obj.onmousedown(e);
event.bind(document, 'mouseup', up);
event.bind(document, 'mousemove', move);
self.emit('down', e);
};
// bind all.
event.bind(this.el, 'mousedown', self.down);
return this;
};
/**
* unbind mouse.
*
* @return {Mouse}
*/
Mouse.prototype.unbind = function(){
event.unbind(this.el, 'mousedown', this.down);
this.down = null;
};
});
require.register("abpetkov-percentage-calc/percentage-calc.js", function(exports, require, module){
/**
* Percentage-Calc 0.0.1
* https://github.com/abpetkov/percentage-calc
*
* Authored by <NAME>
* https://github.com/abpetkov
*
* Copyright 2014, <NAME>
* License: The MIT License (MIT)
* http://opensource.org/licenses/MIT
*
*/
/**
* Check if number.
*
* @param {Number} num
* @returns {Boolean}
* @api public
*/
exports.isNumber = function(num) {
return (typeof num === 'number') ? true : false;
};
/**
* Calculate percentage of a number.
*
* @param {Number} perc
* @param {Number} num
* @returns {Number} result
* @api public
*/
exports.of = function(perc, num) {
if (exports.isNumber(perc) && exports.isNumber(num)) return (perc / 100) * num;
};
/**
* Calculate percentage of a number out ot another number.
*
* @param {Number} part
* @param {Number} target
* @returns {Number} result
* @api public
*/
exports.from = function(part, target) {
if (exports.isNumber(part) && exports.isNumber(target)) return (part / target) * 100;
};
});
require.register("abpetkov-closest-num/closest-num.js", function(exports, require, module){
/**
* Closest-num 0.0.1
* https://github.com/abpetkov/closest-num
*
* Author: <NAME>
* https://github.com/abpetkov
*
* Copyright 2014, <NAME>
* License: The MIT License (MIT)
* http://opensource.org/licenses/MIT
*
*/
/**
* Get closest number in array.
*
* @param {Number} target
* @param {Array} points
* @returns {Number} closest
* @api private
*/
exports.find = function(target, points) {
var diff = null
, current = null
, closest = points[0];
for (i = 0; i < points.length; i++) {
diff = Math.abs(target - closest);
current = Math.abs(target - points[i]);
if (current < diff) closest = points[i];
}
return closest;
};
});
require.register("vesln-super/lib/super.js", function(exports, require, module){
/**
* slice
*/
var slice = Array.prototype.slice;
/**
* Primary export
*/
var exports = module.exports = super_;
/**
* ### _super (dest, orig)
*
* Inherits the prototype methods or merges objects.
* This is the primary export and it is recommended
* that it be imported as `inherits` in node to match
* the auto imported browser interface.
*
* var inherits = require('super');
*
* @param {Object|Function} destination object
* @param {Object|Function} source object
* @name _super
* @api public
*/
function super_() {
var args = slice.call(arguments);
if (!args.length) return;
if (typeof args[0] !== 'function') return exports.merge(args);
exports.inherits.apply(null, args);
};
/**
* ### extend (proto[, klass])
*
* Provide `.extend` mechanism to allow extenion without
* needing to use dependancy.
*
* function Bar () {
* this._konstructed = true;
* }
*
* Bar.extend = inherits.extend;
*
* var Fu = Bar.extend({
* initialize: function () {
* this._initialized = true;
* }
* });
*
* var fu = new Fu();
* fu.should.be.instanceof(Fu); // true
* fu.should.be.instanceof(Bar); // true
*
* @param {Object} properties/methods to add to new prototype
* @param {Object} properties/methods to add to new class
* @returns {Object} new constructor
* @name extend
* @api public
*/
exports.extend = function(proto, klass) {
var self = this
, child = function () { return self.apply(this, arguments); };
exports.merge([ child, this ]);
exports.inherits(child, this);
if (proto) exports.merge([ child.prototype, proto ]);
if (klass) exports.merge([ child, klass ]);
child.extend = this.extend; // prevent overwrite
return child;
};
/**
* ### inherits (ctor, superCtor)
*
* Inherit the prototype methods from on contructor
* to another.
*
* @param {Function} destination
* @param {Function} source
* @api private
*/
exports.inherits = function(ctor, superCtor) {
ctor.super_ = superCtor;
if (Object.create) {
ctor.prototype = Object.create(superCtor.prototype,
{ constructor: {
value: ctor
, enumerable: false
, writable: true
, configurable: true
}
});
} else {
ctor.prototype = new superCtor();
ctor.prototype.constructor = ctor;
}
}
/**
* Extends multiple objects.
*
* @param {Array} array of objects
* @api private
*/
exports.merge = function (arr) {
var main = arr.length === 2 ? arr.shift() : {};
var obj = null;
for (var i = 0, len = arr.length; i < len; i++) {
obj = arr[i];
for (var p in obj) {
if (!obj.hasOwnProperty(p)) continue;
main[p] = obj[p];
}
}
return main;
};
});
require.register("powerange/lib/powerange.js", function(exports, require, module){
/**
* Require classes.
*/
var Main = require('./main')
, Horizontal = require('./horizontal')
, Vertical = require('./vertical');
/**
* Set default values.
*
* @api public
*/
var defaults = {
callback: function() {}
, decimal: false
, disable: false
, disableOpacity: 0.5
, hideRange: false
, klass: ''
, min: 0
, max: 100
, start: null
, step: null
, vertical: false
};
/**
* Expose proper type of `Powerange`.
*/
module.exports = function(element, options) {
options = options || {};
for (var i in defaults) {
if (options[i] == null) {
options[i] = defaults[i];
}
}
if (options.vertical) {
return new Vertical(element, options);
} else {
return new Horizontal(element, options);
}
};
});
require.register("powerange/lib/main.js", function(exports, require, module){
/**
* External dependencies.
*
*/
var mouse = require('mouse')
, events = require('events')
, classes = require('classes')
, percentage = require('percentage-calc');
/**
* Expose `Powerange`.
*/
module.exports = Powerange;
/**
* Create Powerange object.
*
* @constructor
* @param {Object} element
* @param {Object} options
* @api public
*/
function Powerange(element, options) {
if (!(this instanceof Powerange)) return new Powerange(element, options);
this.element = element;
this.options = options || {};
this.slider = this.create('span', 'range-bar');
if (this.element !== null && this.element.type === 'text') this.init();
}
/**
* Bind events on handle element.
*
* @api private
*/
Powerange.prototype.bindEvents = function () {
this.handle = this.slider.querySelector('.range-handle');
this.touch = events(this.handle, this);
this.touch.bind('touchstart', 'onmousedown');
this.touch.bind('touchmove', 'onmousemove');
this.touch.bind('touchend', 'onmouseup');
this.mouse = mouse(this.handle, this);
this.mouse.bind();
};
/**
* Hide the target element.
*
* @api private
*/
Powerange.prototype.hide = function() {
this.element.style.display = 'none';
};
/**
* Append the target after the element.
*
* @api private
*/
Powerange.prototype.append = function() {
var slider = this.generate();
this.insertAfter(this.element, slider);
};
/**
* Generate the appropriate type of slider.
*
* @returns {Object} this.slider
* @api private
*/
Powerange.prototype.generate = function() {
var elems = {
'handle': {
'type': 'span'
, 'selector': 'range-handle'
}
, 'min': {
'type': 'span'
, 'selector': 'range-min'
}
, 'max': {
'type': 'span'
, 'selector': 'range-max'
}
, 'quantity': {
'type': 'span'
, 'selector': 'range-quantity'
}
};
for (var key in elems) {
if (elems.hasOwnProperty(key)) {
var temp = this.create(elems[key].type, elems[key].selector);
this.slider.appendChild(temp);
}
}
return this.slider;
};
/**
* Create HTML element.
*
* @param {String} type
* @param {String} name
* @returns {Object} elem
* @api private
*/
Powerange.prototype.create = function(type, name) {
var elem = document.createElement(type);
elem.className = name;
return elem;
};
/**
* Insert element after another element.
*
* @param {Object} reference
* @param {Object} target
* @api private
*/
Powerange.prototype.insertAfter = function(reference, target) {
reference.parentNode.insertBefore(target, reference.nextSibling);
};
/**
* Add an additional class for extra customization.
*
* @param {String} klass
* @api private
*/
Powerange.prototype.extraClass = function(klass) {
if (this.options.klass) classes(this.slider).add(klass);
};
/**
* Set min and max values.
*
* @param {Number} min
* @param {Number} max
* @api private
*/
Powerange.prototype.setRange = function(min, max) {
if (typeof min === 'number' && typeof max === 'number' && !this.options.hideRange) {
this.slider.querySelector('.range-min').innerHTML = min;
this.slider.querySelector('.range-max').innerHTML = max;
}
};
/**
* Set slider current value.
*
* @param {Number} offset
* @param {Number} size
* @api private
*/
Powerange.prototype.setValue = function (offset, size) {
var part = percentage.from(parseFloat(offset), size)
, value = percentage.of(part, this.options.max - this.options.min) + this.options.min
, changed = false;
value = (this.options.decimal) ? (Math.round(value * 100) / 100) : Math.round(value);
changed = (this.element.value != value) ? true : false;
this.element.value = value;
this.options.callback();
if (changed) this.changeEvent();
};
/**
* Set step.
*
* @param {Number} sliderSize
* @param {Number} handleSize
* @returns {Array} this.steps
* @api private
*/
Powerange.prototype.step = function(sliderSize, handleSize) {
var dimension = sliderSize - handleSize
, part = percentage.from(this.checkStep(this.options.step), this.options.max - this.options.min)
, interval = percentage.of(part, dimension)
, steps = [];
for (i = 0; i <= dimension; i += interval) {
steps.push(i);
}
this.steps = steps;
return this.steps;
};
/**
* Check values.
*
* @param {Number} start
* @api private
*/
Powerange.prototype.checkValues = function(start) {
if (start < this.options.min) this.options.start = this.options.min;
if (start > this.options.max) this.options.start = this.options.max;
if (this.options.min >= this.options.max) this.options.min = this.options.max;
};
/**
* Make sure `step` is positive.
*
* @param {Number} value
* @returns {Number} this.options.step
* @api private
*/
Powerange.prototype.checkStep = function(value) {
if (value < 0) value = Math.abs(value);
this.options.step = value;
return this.options.step;
};
/**
* Disable range slider.
*
* @api private
*/
Powerange.prototype.disable = function() {
if (this.options.min == this.options.max || this.options.min > this.options.max || this.options.disable) {
this.mouse.unbind();
this.touch.unbind();
this.slider.style.opacity = this.options.disableOpacity;
classes(this.handle).add('range-disabled');
}
};
/**
* Make element unselectable.
*
* @param {Object} element
* @param {Boolean} set
* @api private
*/
Powerange.prototype.unselectable = function(element, set) {
if (!classes(this.slider).has('unselectable') && set === true) {
classes(this.slider).add('unselectable');
} else {
classes(this.slider).remove('unselectable');
}
};
/**
* Handle the onchange event.
*
* @param {Boolean} state
* @api private
*/
Powerange.prototype.changeEvent = function(state) {
if (typeof Event === 'function' || !document.fireEvent) {
var event = document.createEvent('HTMLEvents');
event.initEvent('change', false, true);
this.element.dispatchEvent(event);
} else {
this.element.fireEvent('onchange');
}
};
/**
* Initialize main class.
*
* @api private
*/
Powerange.prototype.init = function() {
this.hide();
this.append();
this.bindEvents();
this.extraClass(this.options.klass);
this.checkValues(this.options.start);
this.setRange(this.options.min, this.options.max);
this.disable();
};
});
require.register("powerange/lib/horizontal.js", function(exports, require, module){
/**
* External dependencies.
*
*/
var inherits = require('super')
, closest = require('closest-num')
, percentage = require('percentage-calc');
/**
* Require main class.
*/
var Powerange = require('./main');
/**
* Expose `Horizontal`.
*/
module.exports = Horizontal;
/**
* Create horizontal slider object.
*
* @api public
*/
function Horizontal() {
Powerange.apply(this, arguments);
if (this.options.step) this.step(this.slider.offsetWidth, this.handle.offsetWidth);
this.setStart(this.options.start);
}
/**
* Inherit the main class.
*/
inherits(Horizontal, Powerange);
/**
* Set horizontal slider position.
*
* @param {Number} start
* @api private
*/
Horizontal.prototype.setStart = function(start) {
var begin = (start === null) ? this.options.min : start
, part = percentage.from(begin - this.options.min, this.options.max - this.options.min) || 0
, offset = percentage.of(part, this.slider.offsetWidth - this.handle.offsetWidth)
, position = (this.options.step) ? closest.find(offset, this.steps) : offset;
this.setPosition(position);
this.setValue(this.handle.style.left, this.slider.offsetWidth - this.handle.offsetWidth);
};
/**
* Set horizontal slider current position.
*
* @param {Number} val
* @api private
*/
Horizontal.prototype.setPosition = function(val) {
this.handle.style.left = val + 'px';
this.slider.querySelector('.range-quantity').style.width = val + 'px';
};
/**
* On slider mouse down.
*
* @param {Object} e
* @api private
*/
Horizontal.prototype.onmousedown = function(e) {
if (e.touches) e = e.touches[0];
this.startX = e.clientX;
this.handleOffsetX = this.handle.offsetLeft;
this.restrictHandleX = this.slider.offsetWidth - this.handle.offsetWidth;
this.unselectable(this.slider, true);
};
/**
* On slider mouse move.
*
* @param {Object} e
* @api private
*/
Horizontal.prototype.onmousemove = function(e) {
e.preventDefault();
if (e.touches) e = e.touches[0];
var leftOffset = this.handleOffsetX + e.clientX - this.startX
, position = (this.steps) ? closest.find(leftOffset, this.steps) : leftOffset;
if (leftOffset <= 0) {
this.setPosition(0);
} else if (leftOffset >= this.restrictHandleX) {
this.setPosition(this.restrictHandleX);
} else {
this.setPosition(position);
}
this.setValue(this.handle.style.left, this.slider.offsetWidth - this.handle.offsetWidth);
};
/**
* On mouse up.
*
* @param {Object} e
* @api private
*/
Horizontal.prototype.onmouseup = function(e) {
this.unselectable(this.slider, false);
};
});
require.register("powerange/lib/vertical.js", function(exports, require, module){
/**
* External dependencies.
*
*/
var inherits = require('super')
, classes = require('classes')
, closest = require('closest-num')
, percentage = require('percentage-calc');
/**
* Require main class.
*/
var Powerange = require('./main');
/**
* Expose `Vertical`.
*/
module.exports = Vertical;
/**
* Create vertical slider object.
*
* @api public
*/
function Vertical() {
Powerange.apply(this, arguments);
classes(this.slider).add('vertical');
if (this.options.step) this.step(this.slider.offsetHeight, this.handle.offsetHeight);
this.setStart(this.options.start);
}
/**
* Inherit the main class.
*/
inherits(Vertical, Powerange);
/**
* Set vertical slider position.
*
* @param {Number} start
* @api private
*/
Vertical.prototype.setStart = function(start) {
var begin = (start === null) ? this.options.min : start
, part = percentage.from(begin - this.options.min, this.options.max - this.options.min) || 0
, offset = percentage.of(part, this.slider.offsetHeight - this.handle.offsetHeight)
, position = (this.options.step) ? closest.find(offset, this.steps) : offset;
this.setPosition(position);
this.setValue(this.handle.style.bottom, this.slider.offsetHeight - this.handle.offsetHeight);
};
/**
* Set vertical slider current position.
*
* @param {Number} val
* @api private
*/
Vertical.prototype.setPosition = function(val) {
this.handle.style.bottom = val + 'px';
this.slider.querySelector('.range-quantity').style.height = val + 'px';
};
/**
* On mouse down.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmousedown = function(e) {
if (e.touches) e = e.touches[0];
this.startY = e.clientY;
this.handleOffsetY = this.slider.offsetHeight - this.handle.offsetHeight - this.handle.offsetTop;
this.restrictHandleY = this.slider.offsetHeight - this.handle.offsetHeight;
this.unselectable(this.slider, true);
};
/**
* On vertical slider mouse move.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmousemove = function(e) {
e.preventDefault();
if (e.touches) e = e.touches[0];
var bottomOffset = this.handleOffsetY + this.startY - e.clientY
, position = (this.steps) ? closest.find(bottomOffset, this.steps) : bottomOffset;
if (bottomOffset <= 0) {
this.setPosition(0);
} else if (bottomOffset >= this.restrictHandleY) {
this.setPosition(this.restrictHandleY);
} else {
this.setPosition(position);
}
this.setValue(this.handle.style.bottom, this.slider.offsetHeight - this.handle.offsetHeight);
};
/**
* On mouse up.
*
* @param {Object} e
* @api private
*/
Vertical.prototype.onmouseup = function(e) {
this.unselectable(this.slider, false);
};
});
require.alias("component-events/index.js", "powerange/deps/events/index.js");
require.alias("component-events/index.js", "events/index.js");
require.alias("component-event/index.js", "component-events/deps/event/index.js");
require.alias("component-delegate/index.js", "component-events/deps/delegate/index.js");
require.alias("discore-closest/index.js", "component-delegate/deps/closest/index.js");
require.alias("discore-closest/index.js", "component-delegate/deps/closest/index.js");
require.alias("component-matches-selector/index.js", "discore-closest/deps/matches-selector/index.js");
require.alias("component-query/index.js", "component-matches-selector/deps/query/index.js");
require.alias("discore-closest/index.js", "discore-closest/index.js");
require.alias("component-event/index.js", "component-delegate/deps/event/index.js");
require.alias("component-classes/index.js", "powerange/deps/classes/index.js");
require.alias("component-classes/index.js", "classes/index.js");
require.alias("component-indexof/index.js", "component-classes/deps/indexof/index.js");
require.alias("ui-component-mouse/index.js", "powerange/deps/mouse/index.js");
require.alias("ui-component-mouse/index.js", "mouse/index.js");
require.alias("component-emitter/index.js", "ui-component-mouse/deps/emitter/index.js");
require.alias("component-event/index.js", "ui-component-mouse/deps/event/index.js");
require.alias("abpetkov-percentage-calc/percentage-calc.js", "powerange/deps/percentage-calc/percentage-calc.js");
require.alias("abpetkov-percentage-calc/percentage-calc.js", "powerange/deps/percentage-calc/index.js");
require.alias("abpetkov-percentage-calc/percentage-calc.js", "percentage-calc/index.js");
require.alias("abpetkov-percentage-calc/percentage-calc.js", "abpetkov-percentage-calc/index.js");
require.alias("abpetkov-closest-num/closest-num.js", "powerange/deps/closest-num/closest-num.js");
require.alias("abpetkov-closest-num/closest-num.js", "powerange/deps/closest-num/index.js");
require.alias("abpetkov-closest-num/closest-num.js", "closest-num/index.js");
require.alias("abpetkov-closest-num/closest-num.js", "abpetkov-closest-num/index.js");
require.alias("vesln-super/lib/super.js", "powerange/deps/super/lib/super.js");
require.alias("vesln-super/lib/super.js", "powerange/deps/super/index.js");
require.alias("vesln-super/lib/super.js", "super/index.js");
require.alias("vesln-super/lib/super.js", "vesln-super/index.js");
require.alias("powerange/lib/powerange.js", "powerange/index.js");if (typeof exports == "object") {
module.exports = require("powerange");
} else if (typeof define == "function" && define.amd) {
define([], function(){ return require("powerange"); });
} else {
this["Powerange"] = require("powerange");
}})();
<file_sep>/**
* External dependencies.
*
*/
var mouse = require('mouse')
, events = require('events')
, classes = require('classes')
, percentage = require('percentage-calc');
/**
* Expose `Powerange`.
*/
module.exports = Powerange;
/**
* Create Powerange object.
*
* @constructor
* @param {Object} element
* @param {Object} options
* @api public
*/
function Powerange(element, options) {
if (!(this instanceof Powerange)) return new Powerange(element, options);
this.element = element;
this.options = options || {};
this.slider = this.create('span', 'range-bar');
if (this.element !== null && this.element.type === 'text') this.init();
}
/**
* Bind events on handle element.
*
* @api private
*/
Powerange.prototype.bindEvents = function () {
this.handle = this.slider.querySelector('.range-handle');
this.touch = events(this.handle, this);
this.touch.bind('touchstart', 'onmousedown');
this.touch.bind('touchmove', 'onmousemove');
this.touch.bind('touchend', 'onmouseup');
this.mouse = mouse(this.handle, this);
this.mouse.bind();
};
/**
* Hide the target element.
*
* @api private
*/
Powerange.prototype.hide = function() {
this.element.style.display = 'none';
};
/**
* Append the target after the element.
*
* @api private
*/
Powerange.prototype.append = function() {
var slider = this.generate();
this.insertAfter(this.element, slider);
};
/**
* Generate the appropriate type of slider.
*
* @returns {Object} this.slider
* @api private
*/
Powerange.prototype.generate = function() {
var elems = {
'handle': {
'type': 'span'
, 'selector': 'range-handle'
}
, 'min': {
'type': 'span'
, 'selector': 'range-min'
}
, 'max': {
'type': 'span'
, 'selector': 'range-max'
}
, 'quantity': {
'type': 'span'
, 'selector': 'range-quantity'
}
};
for (var key in elems) {
if (elems.hasOwnProperty(key)) {
var temp = this.create(elems[key].type, elems[key].selector);
this.slider.appendChild(temp);
}
}
return this.slider;
};
/**
* Create HTML element.
*
* @param {String} type
* @param {String} name
* @returns {Object} elem
* @api private
*/
Powerange.prototype.create = function(type, name) {
var elem = document.createElement(type);
elem.className = name;
return elem;
};
/**
* Insert element after another element.
*
* @param {Object} reference
* @param {Object} target
* @api private
*/
Powerange.prototype.insertAfter = function(reference, target) {
reference.parentNode.insertBefore(target, reference.nextSibling);
};
/**
* Add an additional class for extra customization.
*
* @param {String} klass
* @api private
*/
Powerange.prototype.extraClass = function(klass) {
if (this.options.klass) classes(this.slider).add(klass);
};
/**
* Set min and max values.
*
* @param {Number} min
* @param {Number} max
* @api private
*/
Powerange.prototype.setRange = function(min, max) {
if (typeof min === 'number' && typeof max === 'number' && !this.options.hideRange) {
this.slider.querySelector('.range-min').innerHTML = min;
this.slider.querySelector('.range-max').innerHTML = max;
}
};
/**
* Set slider current value.
*
* @param {Number} offset
* @param {Number} size
* @api private
*/
Powerange.prototype.setValue = function (offset, size) {
var part = percentage.from(parseFloat(offset), size)
, value = percentage.of(part, this.options.max - this.options.min) + this.options.min
, changed = false;
value = (this.options.decimal) ? (Math.round(value * 100) / 100) : Math.round(value);
changed = (this.element.value != value) ? true : false;
this.element.value = value;
this.options.callback();
if (changed) this.changeEvent();
};
/**
* Set step.
*
* @param {Number} sliderSize
* @param {Number} handleSize
* @returns {Array} this.steps
* @api private
*/
Powerange.prototype.step = function(sliderSize, handleSize) {
var dimension = sliderSize - handleSize
, part = percentage.from(this.checkStep(this.options.step), this.options.max - this.options.min)
, interval = percentage.of(part, dimension)
, steps = [];
for (i = 0; i <= dimension; i += interval) {
steps.push(i);
}
this.steps = steps;
return this.steps;
};
/**
* Check values.
*
* @param {Number} start
* @api private
*/
Powerange.prototype.checkValues = function(start) {
if (start < this.options.min) this.options.start = this.options.min;
if (start > this.options.max) this.options.start = this.options.max;
if (this.options.min >= this.options.max) this.options.min = this.options.max;
};
/**
* Make sure `step` is positive.
*
* @param {Number} value
* @returns {Number} this.options.step
* @api private
*/
Powerange.prototype.checkStep = function(value) {
if (value < 0) value = Math.abs(value);
this.options.step = value;
return this.options.step;
};
/**
* Disable range slider.
*
* @api private
*/
Powerange.prototype.disable = function() {
if (this.options.min == this.options.max || this.options.min > this.options.max || this.options.disable) {
this.mouse.unbind();
this.touch.unbind();
this.slider.style.opacity = this.options.disableOpacity;
classes(this.handle).add('range-disabled');
}
};
/**
* Make element unselectable.
*
* @param {Object} element
* @param {Boolean} set
* @api private
*/
Powerange.prototype.unselectable = function(element, set) {
if (!classes(this.slider).has('unselectable') && set === true) {
classes(this.slider).add('unselectable');
} else {
classes(this.slider).remove('unselectable');
}
};
/**
* Handle the onchange event.
*
* @param {Boolean} state
* @api private
*/
Powerange.prototype.changeEvent = function(state) {
if (typeof Event === 'function' || !document.fireEvent) {
var event = document.createEvent('HTMLEvents');
event.initEvent('change', false, true);
this.element.dispatchEvent(event);
} else {
this.element.fireEvent('onchange');
}
};
/**
* Initialize main class.
*
* @api private
*/
Powerange.prototype.init = function() {
this.hide();
this.append();
this.bindEvents();
this.extraClass(this.options.klass);
this.checkValues(this.options.start);
this.setRange(this.options.min, this.options.max);
this.disable();
};<file_sep>'use strict';
var simplesmtp = require('simplesmtp');
var MailParser = require('mailparser').MailParser;
var events = require('events');
var eventEmitter = new events.EventEmitter();
var emailGuide = require('email-guide');
exports.register = function (port) {
simplesmtp.createSimpleServer({}, function (req) {
var mailparser = new MailParser();
mailparser.on('end', function (email) {
emailGuide(email.html, function (err, guide) {
if (err) { return eventEmitter.emit('email:error', JSON.stringify(err)); }
email.guide = guide;
db.insert(email, function (err, newDoc) {
if (err) { return eventEmitter.emit('email:error', JSON.stringify(err)); }
eventEmitter.emit('email:new', newDoc);
});
});
});
req.pipe(mailparser);
req.accept();
}).listen(port, function (err) {
var message = err ? err.message : 'SMTP server listening on port ' + port;
console.log(message);
});
return eventEmitter;
};<file_sep># Glide: A CSS3 Animation Library
The purpose of Glide is to provide a library of CSS3 animations that are robust and reusable in a wide variety of contexts, but flexible enough to be adjusted when necessary.
# Requirements
Sass: http://sass-lang.com/
# Usage
Glide is written in Sass, using the SCSS syntax. You must have Sass installed, preferably the latest version. For more details, see the "Requirements" section above.
To use Glide, simply include Glide into your .scss file, like this:
@import "glide";
Then, in your .scss file, you can apply glide animations to your page elements, like this:
#fade {
@include fade();
}
Glide animations have some default settings, but you can pass your own, like this:
#fade {
@include fade($iteration-count: infinite);
}
The arguments that can be passed to Glide animations are the same as the values for CSS3 animations. However, some animations can also accept a background argument, so be sure to check the glide.scss file for the specific animation you want to use. Below is a list of all the arguments with example values:
$duration: 1s
$timing-function: linear
$delay: 2s
$iteration-count: 1
$direction: alternate
$background: #06A
Glide comes with a premade project that features all of the animations currently available. Simply open the index.html file in your web browser (Google Chrome works best right now) to see all of the animations in action.
## Notes
Currently, only the latest version of Google Chrome is supported officially. However, this is unacceptable. The goal is to make these animations work across as many browsers as possible. Glide animations are also not chainable in any sense of the word. A solution for this is in the works.
<file_sep>"# team-temp-aws"
<file_sep>/**
* hovers.js v1.0.0
* http://www.codrops.com
*
* Licensed under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
* Copyright 2014, Codrops
* http://www.codrops.com
*/
(function() {
function init() {
var speed = 250,
easing = mina.easeinout;
[].slice.call ( document.querySelectorAll( '.tdoctor' ) ).forEach( function( el ) {
var s = Snap( el.querySelector( 'svg' ) ), path = s.select( 'path' ),
pathConfig = {
from : path.attr( 'd' ),
to : el.getAttribute( 'data-path-to' )
};
el.addEventListener( 'mouseenter', function() {
path.animate( { 'path' : pathConfig.to }, speed, easing );
} );
el.addEventListener( 'mouseleave', function() {
path.animate( { 'path' : pathConfig.from }, speed, easing );
} );
} );
}
init();
})();<file_sep># Respond CMS Website
This github repo stores the code for the https://respondcms.com.
<file_sep>/* http://plugins.jquery.com/validate */
;(function(defaults, $, window, undefined) {
var
type = ['input:not([type]),input[type="color"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="email"],input[type="file"],input[type="hidden"],input[type="month"],input[type="number"],input[type="password"],input[type="range"],input[type="search"],input[type="tel"],input[type="text"],input[type="time"],input[type="url"],input[type="week"],textarea', 'select', 'input[type="checkbox"],input[type="radio"]'],
// All field types
allTypes = type.join(','),
extend = {},
// Method to validate each fields
validateField = function(event, options) {
var
// Field status
status = {
pattern : true,
conditional : true,
required : true
},
// Current field
field = $(this),
// Current field value
fieldValue = field.val() || '',
// An index of extend
fieldValidate = field.data('validate'),
// A validation object (jQuery.fn.validateExtend)
validation = fieldValidate !== undefined ? extend[fieldValidate] : {},
// One index or more separated for spaces to prepare the field value
fieldPrepare = field.data('prepare') || validation.prepare,
// A regular expression to validate field value
fieldPattern = (field.data('pattern') || ($.type(validation.pattern) == 'regexp' ? validation.pattern : /(?:)/)),
// Is case sensitive? (Boolean)
fieldIgnoreCase = field.attr('data-ignore-case') || field.data('ignoreCase') || validation.ignoreCase,
// A field mask
fieldMask = field.data('mask') || validation.mask,
// A index in the conditional object containing a function to validate the field value
fieldConditional = field.data('conditional') || validation.conditional,
// Is required?
fieldRequired = field.data('required'),
// The description element id
fieldDescribedby = field.data('describedby') || validation.describedby,
// An index of description object
fieldDescription = field.data('description') || validation.description,
// Trim spaces?
fieldTrim = field.data('trim'),
reTrue = /^(true|)$/i,
reFalse = /^false$/i,
// The description object
fieldDescription = $.isPlainObject(fieldDescription) ? fieldDescription : (options.description[fieldDescription] || {}),
name = 'validate';
fieldRequired = fieldRequired != '' ? (fieldRequired || !!validation.required) : true;
fieldTrim = fieldTrim != '' ? (fieldTrim || !!validation.trim) : true;
// Trim spaces?
if(reTrue.test(fieldTrim)) {
fieldValue = $.trim(fieldValue);
}
// The fieldPrepare is a function?
if($.isFunction(fieldPrepare)) {
// Updates the fieldValue variable
fieldValue = String(fieldPrepare.call(field, fieldValue));
} else {
// Is a function?
if($.isFunction(options.prepare[fieldPrepare])) {
// Updates the fieldValue variable
fieldValue = String(options.prepare[fieldPrepare].call(field, fieldValue));
}
}
// Is not RegExp?
if($.type(fieldPattern) != 'regexp') {
fieldIgnoreCase = !reFalse.test(fieldIgnoreCase);
// Converts to RegExp
fieldPattern = fieldIgnoreCase ? RegExp(fieldPattern, 'i') : RegExp(fieldPattern);
}
// The conditional exists?
if(fieldConditional != undefined) {
// The fieldConditional is a function?
if($.isFunction(fieldConditional)) {
status.conditional = !!fieldConditional.call(field, fieldValue, options);
} else {
var
// Splits the conditionals in an array
conditionals = fieldConditional.split(/[\s\t]+/);
// Each conditional
for(var counter = 0, len = conditionals.length; counter < len; counter++) {
if(options.conditional.hasOwnProperty(conditionals[counter]) && !options.conditional[conditionals[counter]].call(field, fieldValue, options)) {
status.conditional = false;
}
}
}
}
fieldRequired = reTrue.test(fieldRequired);
// Is required?
if(fieldRequired) {
// Verifies the field type
if(field.is(type[0] + ',' + type[1])) {
// Is empty?
if(!fieldValue.length > 0) {
status.required = false;
}
} else if(field.is(type[2])) {
if(field.is('[name]')) {
// Is checked?
if($('[name="' + field.prop('name') + '"]:checked').length == 0) {
status.required = false;
}
} else {
status.required = field.is(':checked');
}
}
}
// Verifies the field type
if(field.is(type[0])) {
// Test the field value pattern
if(fieldPattern.test(fieldValue)) {
// If the event type is not equals to keyup
if(event.type != 'keyup' && fieldMask !== undefined) {
var matches = fieldValue.match(fieldPattern);
// Each characters group
for(var i = 0, len = matches.length; i < len; i++) {
// Replace the groups
fieldMask = fieldMask.replace(RegExp('\\$\\{' + i + '(?::`([^`]*)`)?\\}', 'g'), (matches[i] !== undefined ? matches[i] : '$1'));
}
fieldMask = fieldMask.replace(/\$\{\d+(?::`([^`]*)`)?\}/g, '$1');
// Test the field value pattern
if(fieldPattern.test(fieldMask)) {
// Update the field value
field.val(fieldMask);
}
}
} else {
// If the field is required
if(fieldRequired) {
status.pattern = false;
} else {
if(fieldValue.length > 0) {
status.pattern = false;
}
}
}
}
var
describedby = $('[id="' + fieldDescribedby +'"]'),
log = fieldDescription.valid;
if(describedby.length > 0 && event.type != 'keyup') {
if(!status.required) {
log = fieldDescription.required;
} else if(!status.pattern) {
log = fieldDescription.pattern;
} else if(!status.conditional) {
log = fieldDescription.conditional;
}
describedby.html(log || '');
}
if(typeof(validation.each) == 'function') {
validation.each.call(field, event, status, options);
}
// Call the eachField callback
options.eachField.call(field, event, status, options);
// If the field is valid
if(status.required && status.pattern && status.conditional) {
// If WAI-ARIA is enabled
if(!!options.waiAria) {
field.prop('aria-invalid', false);
}
if(typeof(validation.valid) == 'function') {
validation.valid.call(field, event, status, options);
}
// Call the eachValidField callback
options.eachValidField.call(field, event, status, options);
} else {
// If WAI-ARIA is enabled
if(!!options.waiAria) {
field.prop('aria-invalid', true);
}
if(typeof(validation.invalid) == 'function') {
validation.invalid.call(field, event, status, options);
}
// Call the eachInvalidField callback
options.eachInvalidField.call(field, event, status, options);
}
// Returns the field status
return status;
};
$.extend({
// Method to extends validations
validateExtend : function(options) {
return $.extend(extend, options);
},
// Method to change the default properties of jQuery.fn.validate method
validateSetup : function(options) {
return $.extend(defaults, options);
}
}).fn.extend({
// Method to validate forms
validate : function(options) {
options = $.extend({}, defaults, options);
return $(this).validateDestroy().each(function() {
var form = $(this);
// This is a form?
if(form.is('form')) {
form.data(name, {
options : options
});
var
fields = form.find(allTypes),
// Events namespace
namespace = options.namespace;
if(form.is('[id]')) {
fields = fields.add('[form="' + form.prop('id') + '"]').filter(allTypes);
}
fields = fields.filter(options.filter);
// If onKeyup is enabled
if(!!options.onKeyup) {
fields.filter(type[0]).on('keyup.' + namespace, function(event) {
validateField.call(this, event, options);
});
}
// If onBlur is enabled
if(!!options.onBlur) {
fields.on('blur.' + namespace, function(event) {
validateField.call(this, event, options);
});
}
// If onChange is enabled
if(!!options.onChange) {
fields.on('change.' + namespace, function(event) {
validateField.call(this, event, options);
});
}
// If onSubmit is enabled
if(!!options.onSubmit) {
form.on('submit.' + namespace, function(event) {
var formValid = true;
fields.each(function() {
var status = validateField.call(this, event, options);
if(!status.pattern || !status.conditional || !status.required) {
formValid = false;
}
});
// If form is valid
if(formValid) {
// Send form?
if(!options.sendForm) {
event.preventDefault();
}
// Is a function?
if($.isFunction(options.valid)) {
options.valid.call(form, event, options);
}
} else {
event.preventDefault();
event.stopImmediatePropagation();
// Is a function?
if($.isFunction(options.invalid)) {
options.invalid.call(form, event, options);
}
}
});
}
}
});
},
// Method to destroy validations
validateDestroy : function() {
var
form = $(this),
dataValidate = form.data(name);
// If this is a form
if(form.is('form') && $.isPlainObject(dataValidate) && typeof(dataValidate.options.nameSpace) == 'string') {
var fields = form.removeData(name).find(allTypes).add(form);
if(form.is('[id]')) {
fields = fields.add($('[form="' + form.prop('id') + '"]').filter(allTypes));
}
fields.off('.' + dataValidate.options.nameSpace);
}
return form;
}
});
})({
// Send form if is valid?
sendForm : true,
// Use WAI-ARIA properties
waiAria : true,
// Validate on submit?
onSubmit : true,
// Validate on onKeyup?
onKeyup : false,
// Validate on onBlur?
onBlur : false,
// Validate on onChange?
onChange : false,
// Default namespace
nameSpace : 'validate',
// Conditional functions
conditional : {},
// Prepare functions
prepare : {},
// Fields descriptions
description : {},
// Callback
eachField : $.noop,
// Callback
eachInvalidField : $.noop,
// Callback
eachValidField : $.noop,
// Callback
invalid : $.noop,
// Callback
valid : $.noop,
// A fielter to the fields
filter : '*'
}, jQuery, window);<file_sep>'use strict';
var sockets = require('./sockets');
exports.register = function (server, mailer) {
var io = require('socket.io').listen(server);
io.set('log level', 1);
io.sockets.on('connection', function (socket) {
sockets.onConnect(socket, mailer);
});
};
<file_sep>$(document).on('pageload', function(){
$('.parallax').parallax();
$('.tabs').tabs();
$('.dropdown-button').dropdown();
$('.modal-trigger').leanModal({
dismissible: true,
opacity: .5,
complete: function() {
$(document).trigger('modalclose');
}
});
if (!navigator.getUserMedia) {
$('.code-scan').hide();
}
});
<file_sep>var files = [
"index.html",
"loja-adidas.html",
"loja-bacio-di-latte.html",
"loja-brooksfield.html",
"loja-burberry.html",
"loja-cavalera.html",
"loja-centauro.html",
"loja-farm.html",
"loja-forum.html",
"loja-galetos.html",
"loja-le-lis-blanc.html",
"loja-ofner.html",
"loja-pizza-hut.html",
"loja-shoulder.html",
"loja-so-sapatos.html",
"loja-tip-top.html",
"lojas.html",
"manifest.json",
"pagar-estacionamento.html",
"css/main.css",
"icons/MaterialIcons-Regular.ttf",
"icons/material.css",
"img/entrada.jpg",
"img/icon.png",
"img/ticket.png",
"js/barcode.js",
"js/install.js",
"js/main.js",
"js/pagamento.js",
"js/spa.js",
"img/loja/adidas.jpg",
"img/loja/bacio-di-latte.jpg",
"img/loja/brooksfield.jpg",
"img/loja/burberry.jpg",
"img/loja/cavalera.jpg",
"img/loja/centauro.jpg",
"img/loja/farm.jpg",
"img/loja/forum.jpg",
"img/loja/galetos.jpg",
"img/loja/le-lis-blanc.jpg",
"img/loja/ofner.jpg",
"img/loja/pizza-hut.jpg",
"img/loja/shoulder.jpg",
"img/loja/so-sapatos.jpg",
"img/loja/tip-top.jpg",
"js/vendor/jquery.min.js",
"js/vendor/materialize-0.97.0.min.js",
"js/vendor/quagga.min.js"
];
// dev only
if (typeof files == 'undefined') {
var files = [];
} else {
files.push('./');
}
var CACHE_NAME = 'shopping-v13';
self.addEventListener('activate', function(event) {
console.log('[SW] Activate');
event.waitUntil(
caches.keys().then(function(cacheNames) {
return Promise.all(
cacheNames.map(function(cacheName) {
if (CACHE_NAME.indexOf(cacheName) == -1) {
console.log('[SW] Delete cache:', cacheName);
return caches.delete(cacheName);
}
})
);
})
);
});
self.addEventListener('install', function(event){
console.log('[SW] Install');
event.waitUntil(
caches.open(CACHE_NAME).then(function(cache) {
return Promise.all(
files.map(function(file){
return cache.add(file);
})
);
})
);
});
self.addEventListener('fetch', function(event) {
console.log('[SW] fetch ' + event.request.url)
event.respondWith(
caches.match(event.request).then(function(response){
return response || fetch(event.request.clone());
})
);
});
self.addEventListener('notificationclick', function(event) {
console.log('On notification click: ', event);
clients.openWindow('/');
});<file_sep># EmailFormValidationJquery
Email validation - Jquery
<file_sep>Back to Top
=========
A "Back to top" link to smoothly scroll back to the top of the page.
[Article on CodyHouse](http://codyhouse.co/gem/back-to-top/)
[Demo](http://codyhouse.co/demo/back-to-top/)
[Terms](http://codyhouse.co/terms/)
<file_sep>/*
Background Stretcher jQuery Plugin
? 2011 <EMAIL>
For any questions please visit www.ajaxblender.com
or email us at <EMAIL>
Version: 2.0.1
*/
;(function($){
/* Variables */
var container = null;
var allLIs = '', containerStr = '';
var element = this;
var _bgStretcherPause = false;
var _bgStretcherAction = false;
var _bgStretcherTm = null;
var random_line = new Array();
var random_temp = new Array();
var r_image = 0;
var swf_mode = false;
var img_options = new Array();
$.fn.bgStretcher = function(settings){
if ($('.bgstretcher-page').length || $('.bgstretcher-area').length) {
if(typeof(console) !== 'undefined' && console != null) console.log('More than one bgStretcher');
return false;
}
settings = $.extend({}, $.fn.bgStretcher.defaults, settings);
$.fn.bgStretcher.settings = settings;
function _build(body_content){
if(!settings.images.length){ return; }
_genHtml(body_content);
containerStr = '#' + settings.imageContainer;
container = $(containerStr);
allLIs = '#' + settings.imageContainer + ' LI';
$(allLIs).hide().css({'z-index': 1, overflow: 'hidden'});
if(!container.length){ return; }
$(window).resize(function(){
_resize(body_content)
});
_resize(body_content);
var stratElement = 0;
/* Rebuild images for simpleSlide */
if (settings.transitionEffect == 'simpleSlide') {
if (settings.sequenceMode == 'random') {
if(typeof(console) !== 'undefined' && console != null) {
console.log('Effect \'simpleSlide\' don\'t be to use with mode random.');
console.log('Mode was automaticly set in normal.');
}
}
$(allLIs).css({'float': 'left', position: 'static'});
$(allLIs).show();
if ($.fn.bgStretcher.settings.slideDirection == 'NW' || $.fn.bgStretcher.settings.slideDirection == 'NE') {
$.fn.bgStretcher.settings.slideDirection = 'N';
}
if ($.fn.bgStretcher.settings.slideDirection == 'SW' || $.fn.bgStretcher.settings.slideDirection == 'SE') {
$.fn.bgStretcher.settings.slideDirection = 'S';
}
if ($.fn.bgStretcher.settings.slideDirection == 'S' || $.fn.bgStretcher.settings.slideDirection == 'E') {
settings.sequenceMode = 'back';
$(allLIs).removeClass('bgs-current');
$(allLIs).eq($(allLIs).length - $.fn.bgStretcher.settings.startElementIndex - 1).addClass('bgs-current');
if ($.fn.bgStretcher.settings.slideDirection == 'E') {
l = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).width()*(-1);
t = 0;
} else { // S
t = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).height()*(-1);
l = 0;
}
$(containerStr+' UL').css({left: l+'px', top: t+'px'});
} else {
settings.sequenceMode = 'normal';
if ($.fn.bgStretcher.settings.startElementIndex != 0) {
if ($.fn.bgStretcher.settings.slideDirection == 'N') {
t = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).height()*(-1);
l = 0;
} else { // W
l = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).width()*(-1);
t = 0;
console.log(l);
}
$(containerStr+' UL').css({left: l+'px', top: t+'px'});
}
}
}
if ($(settings.buttonNext).length || $(settings.buttonPrev).length || $(settings.pagination).length){
if (settings.sequenceMode == 'random') {
if(typeof(console) !== 'undefined' && console != null) {
console.log('Don\'t use random mode width prev-button, next-button and pagination.');
}
} else {
/* Prev and Next Buttons init */
if ($(settings.buttonPrev).length){
$(settings.buttonPrev).addClass('bgStretcherNav bgStretcherNavPrev');
$(settings.buttonPrev).click(function(){
$.fn.bgStretcher.buttonSlide('prev');
});
}
if ($(settings.buttonNext).length){
$(settings.buttonNext).addClass('bgStretcherNav bgStretcherNavNext');
$(settings.buttonNext).click(function(){
$.fn.bgStretcher.buttonSlide('next');
});
}
/* Pagination */
if ($(settings.pagination).length) {
$.fn.bgStretcher.pagination();
}
}
}
/* Random mode init */
if (settings.sequenceMode == 'random') {
var i = Math.floor(Math.random()*$(allLIs).length);
$.fn.bgStretcher.buildRandom(i);
if (settings.transitionEffect != 'simpleSlide') {
$.fn.bgStretcher.settings.startElementIndex = i;
}
stratElement = i;
} else {
if ($.fn.bgStretcher.settings.startElementIndex > ($(allLIs).length - 1)) $.fn.bgStretcher.settings.startElementIndex = 0;
stratElement = $.fn.bgStretcher.settings.startElementIndex;
if (settings.transitionEffect == 'simpleSlide') {
if ($.fn.bgStretcher.settings.slideDirection == 'S' || $.fn.bgStretcher.settings.slideDirection == 'E') {
stratElement = $(allLIs).length - 1 - $.fn.bgStretcher.settings.startElementIndex;
}
}
}
$(allLIs).eq(stratElement).show().addClass('bgs-current');
$.fn.bgStretcher.loadImg($(allLIs).eq(stratElement));
/* Go slideshow */
if(settings.slideShow && $(allLIs).length > 1){
_bgStretcherTm = setTimeout('jQuery.fn.bgStretcher.slideShow(\''+jQuery.fn.bgStretcher.settings.sequenceMode+'\', -1)', settings.nextSlideDelay);
}
};
function _resize(body_content){
var winW = 0;
var winH = 0;
var contH = 0;
var contW = 0;
if ($('BODY').hasClass('bgStretcher-container')) {
winW = $(window).width();
winH = $(window).height();
if (($.browser.msie) && (parseInt(jQuery.browser.version) == 6)) {
$(window).scroll(function(){
$('#'+settings.imageContainer).css('top', $(window).scrollTop());
});
}
} else {
$('.bgstretcher').css('position', 'absolute').css('top', '0px');
winW = body_content.width();
winH = body_content.height();
}
var imgW = 0, imgH = 0;
var leftSpace = 0;
// Max image size
if(settings.maxWidth != 'auto'){
if (winW > settings.maxWidth){
leftSpace = (winW - settings.maxWidth)/2;
contW = settings.maxWidth;
} else contW = winW;
} else contW = winW;
if(settings.maxHeight != 'auto'){
if (winH > settings.maxHeight){
contH = settings.maxHeight;
} else contH = winH;
} else contH = winH;
// Update container's size
container.width(contW);
container.height(contH);
// Non-proportional resize
if(!settings.resizeProportionally){
imgW = contH;
imgH = contH;
} else {
var initW = settings.imageWidth, initH = settings.imageHeight;
var ratio = initH / initW;
imgW = contW;
imgH = Math.round(contW * ratio);
if(imgH < contH){
imgH = contH;
imgW = Math.round(imgH / ratio);
}
}
// Anchoring
var mar_left = 0;
var mar_top = 0;
var anchor_arr;
if ($.fn.bgStretcher.settings.anchoring != 'left top') {
anchor_arr = ($.fn.bgStretcher.settings.anchoring).split(' ');
if (anchor_arr[0] == 'right') {
mar_left = (winW - contW);
} else {
if (anchor_arr[0] == 'center') mar_left = Math.round((winW - contW)/2);
}
if (anchor_arr[1] == 'bottom') {
mar_top = (winH - contH);
} else {
if (anchor_arr[1] == 'center') {
mar_top = Math.round((winH - contH)/2);
}
}
container.css('marginLeft', mar_left+'px').css('marginTop', mar_top+'px');
}
mar_left = 0;
mar_top = 0;
if ($.fn.bgStretcher.settings.anchoringImg != 'left top') {
anchor_arr = ($.fn.bgStretcher.settings.anchoringImg).split(' ');
if (anchor_arr[0] == 'right') {
mar_left = (contW - imgW);
} else {
if (anchor_arr[0] == 'center') mar_left = Math.round((contW - imgW)/2);
}
if (anchor_arr[1] == 'bottom') {
mar_top = (contH - imgH);
} else {
if (anchor_arr[1] == 'center') {
mar_top = Math.round((contH - imgH)/2);
}
}
}
img_options['mar_left'] = mar_left;
img_options['mar_top'] = mar_top;
// Apply new size for images
if (container.find('LI:first').hasClass('swf-mode')) {
var path_swf = container.find('LI:first').html();
container.find('LI:first').html('<div id="bgstretcher-flash"> </div>');
var header = new SWFObject('flash/stars.swf', 'flash-obj', contW, contH, '9');
header.addParam('wmode', 'transparent');
header.write('bgstretcher-flash');
};
img_options['imgW'] = imgW;
img_options['imgH'] = imgH;
if(!settings.resizeAnimate){
container.children('UL').children('LI.img-loaded').find('IMG').css({'marginLeft': img_options["mar_left"]+'px', 'marginTop': img_options["mar_top"]+'px'});
container.children('UL').children('LI.img-loaded').find('IMG').css({'width': img_options["imgW"]+'px', 'height': img_options["imgH"]+'px'});
} else {
container.children('UL').children('LI.img-loaded').find('IMG').animate({'marginLeft': img_options["mar_left"]+'px', 'marginTop': img_options["mar_top"]+'px'}, 'normal');
container.children('UL').children('LI.img-loaded').find('IMG').animate({'width': img_options["imgW"]+'px', 'height': img_options["imgH"]+'px'}, 'normal');
}
$(allLIs).width(container.width()).height(container.height());
if ($.fn.bgStretcher.settings.transitionEffect == 'simpleSlide') {
if ($.fn.bgStretcher.settings.slideDirection == 'W' || $.fn.bgStretcher.settings.slideDirection == 'E') {
container.children('UL').width(container.width() * $(allLIs).length).height(container.height());
if ( $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) != -1 ){
l = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * container.width()*(-1);
container.children('UL').css({left: l+'px'});
}
} else {
container.children('UL').height(container.height() * $(allLIs).length).width(container.width());
if ( $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) != -1 ){
t = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).height()*(-1);
container.children('UL').css({top: t+'px'});
}
}
}
};
function _genHtml(body_content){
var code = '';
var cur_bgstretcher;
body_content.each(function(){
$(this).wrapInner('<div class="bgstretcher-page" />').wrapInner('<div class="bgstretcher-area" />');
code = '<div id="' + settings.imageContainer + '" class="bgstretcher"><ul>';
// if swf
if (settings.images.length) {
var ext = settings.images[0].split('.');
ext = ext[ext.length-1];
if (ext != 'swf') {
var ind = 0;
for(i = 0; i < settings.images.length; i++){
if (settings.transitionEffect == 'simpleSlide' && settings.sequenceMode == 'back')
ind = settings.images.length-1-i;
else ind = i;
if ($.fn.bgStretcher.settings.preloadImg) {
code += '<li><span class="image-path">' + settings.images[ind] + '</span></li>';
} else {
code += '<li class="img-loaded"><img src="' + settings.images[ind] + '" alt="" /></li>';
}
}
} else {
code += '<li class="swf-mode">' + settings.images[0] + '</li>';
}
}
code += '</ul></div>';
cur_bgstretcher = $(this).children('.bgstretcher-area');
$(code).prependTo(cur_bgstretcher);
cur_bgstretcher.css({position: 'relative'});
cur_bgstretcher.children('.bgstretcher-page').css({'position': 'relative', 'z-index': 3});
});
};
/* Start bgStretcher */
this.addClass('bgStretcher-container');
_build(this);
};
$.fn.bgStretcher.loadImg = function(obj){
if (obj.hasClass('img-loaded')) return true;
obj.find('SPAN.image-path').each(function(){
var imgsrc = $(this).html();
var imgalt = '';
var parent = $(this).parent();
var img = new Image();
$(img).load(function () {
$(this).hide();
parent.prepend(this);
$(this).fadeIn('100');
}).error(function () {
}).attr('src', imgsrc).attr('alt', imgalt);
$(img).css({'marginLeft': img_options["mar_left"]+'px', 'marginTop': img_options["mar_top"]+'px'});
$(img).css({'width': img_options["imgW"]+'px', 'height': img_options["imgH"]+'px'});
});
obj.addClass('img-loaded');
return true;
}
$.fn.bgStretcher.play = function(){
_bgStretcherPause = false;
$.fn.bgStretcher._clearTimeout();
$.fn.bgStretcher.slideShow($.fn.bgStretcher.settings.sequenceMode, -1);
};
$.fn.bgStretcher._clearTimeout = function(){
if(_bgStretcherTm != null){
clearTimeout(_bgStretcherTm);
_bgStretcherTm = null;
}
}
$.fn.bgStretcher.pause = function(){
_bgStretcherPause = true;
$.fn.bgStretcher._clearTimeout();
};
$.fn.bgStretcher.sliderDestroy = function(){
var cont = $('.bgstretcher-page').html();
$('.bgStretcher-container').html('').html(cont).removeClass('bgStretcher-container');
$.fn.bgStretcher._clearTimeout();
_bgStretcherPause = false;
}
/* Slideshow */
$.fn.bgStretcher.slideShow = function(sequence_mode, index_next){
_bgStretcherAction = true;
if ($(allLIs).length < 2) return true;
var current = $(containerStr + ' LI.bgs-current');
var next;
$(current).stop(true, true);
if (index_next == -1) {
switch (sequence_mode){
case 'back':
next = current.prev();
if(!next.length){ next = $(containerStr + ' LI:last'); }
break;
case 'random':
if (r_image == $(containerStr + ' LI').length) {
$.fn.bgStretcher.buildRandom(random_line[$(containerStr + ' LI').length-1]);
r_image = 0;
}
next = $(containerStr + ' LI').eq(random_line[r_image]);
r_image++;
break;
default:
next = current.next();
if(!next.length){ next = $(containerStr + ' LI:first'); }
}
} else {
next = $(containerStr + ' LI').eq(index_next);
}
$(containerStr + ' LI').removeClass('bgs-current');
$.fn.bgStretcher.loadImg(next);
next.addClass('bgs-current');
switch ($.fn.bgStretcher.settings.transitionEffect){
case 'fade':
$.fn.bgStretcher.effectFade(current, next);
break;
case 'simpleSlide':
$.fn.bgStretcher.simpleSlide();
break;
case 'superSlide':
$.fn.bgStretcher.superSlide(current, next, sequence_mode);
break;
default :
$.fn.bgStretcher.effectNone(current, next);
}
if ($($.fn.bgStretcher.settings.pagination).find('LI').length) {
$($.fn.bgStretcher.settings.pagination).find('LI.showPage').removeClass('showPage');
$($.fn.bgStretcher.settings.pagination).find('LI').eq($(containerStr + ' LI').index($(containerStr + ' LI.bgs-current'))).addClass('showPage');
}
// callback
if ($.fn.bgStretcher.settings.callbackfunction) {
if(typeof $.fn.bgStretcher.settings.callbackfunction == 'function')
$.fn.bgStretcher.settings.callbackfunction.call();
}
if(!_bgStretcherPause){
_bgStretcherTm = setTimeout('jQuery.fn.bgStretcher.slideShow(\''+jQuery.fn.bgStretcher.settings.sequenceMode+'\', -1)', jQuery.fn.bgStretcher.settings.nextSlideDelay);
}
};
/* Others effects */
$.fn.bgStretcher.effectNone = function(current, next){
next.show();
current.hide();
_bgStretcherAction = false;
};
$.fn.bgStretcher.effectFade = function(current, next){
next.fadeIn( $.fn.bgStretcher.settings.slideShowSpeed );
current.fadeOut( $.fn.bgStretcher.settings.slideShowSpeed, function(){
_bgStretcherAction = false;
} );
};
$.fn.bgStretcher.simpleSlide = function(){
var t, l;
switch ($.fn.bgStretcher.settings.slideDirection) {
case 'N':
case 'S':
t = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).height()*(-1);
l = 0;
break;
default:
l = $(containerStr + ' LI').index($(containerStr + ' LI.bgs-current')) * $(containerStr).width()*(-1);
t = 0;
}
$(containerStr+' UL').animate({left: l+'px', top: t+'px'}, $.fn.bgStretcher.settings.slideShowSpeed, function(){
_bgStretcherAction = false;
});
};
$.fn.bgStretcher.superSlide = function(current, next, sequence_mode){
var t, l;
switch ($.fn.bgStretcher.settings.slideDirection) {
case 'S':
t = $(containerStr).height();
l = 0;
break;
case 'E':
t = 0;
l = $(containerStr).width();
break;
case 'W':
t = 0;
l = $(containerStr).width()*(-1);
break;
case 'NW':
t = $(containerStr).height()*(-1);
l = $(containerStr).width()*(-1);
break;
case 'NE':
t = $(containerStr).height()*(-1);
l = $(containerStr).width();
break;
case 'SW':
t = $(containerStr).height();
l = $(containerStr).width()*(-1);
break;
case 'SE':
t = $(containerStr).height();
l = $(containerStr).width();
break;
default:
t = $(containerStr).height()*(-1);
l = 0;
}
if (sequence_mode == 'back') {
next.css({'z-index': 2, top: t+'px', left: l+'px'});
next.show();
next.animate({left: '0px', top: '0px'}, $.fn.bgStretcher.settings.slideShowSpeed, function(){
current.hide();
$(this).css({'z-index': 1});
_bgStretcherAction = false;
});
} else {
current.css('z-index', 2);
next.show();
current.animate({left: l+'px', top: t+'px'}, $.fn.bgStretcher.settings.slideShowSpeed, function(){
$(this).hide().css({'z-index': 1, top: '0px', left: '0px'});
_bgStretcherAction = false;
});
}
};
/* Build line random images */
$.fn.bgStretcher.buildRandom = function(el_not){
var l = $(allLIs).length;
var i, j, rt;
for (i = 0; i < l; i++ ) {
random_line[i] = i;
random_temp[i] = Math.random()*l;
}
for (i = 0; i < l; i++ ) {
for (j = 0; j < (l-i-1); j++) {
if (random_temp[j] > random_temp[j+1]) {
rt = random_temp[j];
random_temp[j] = random_temp[j+1];
random_temp[j+1] = rt;
rt = random_line[j];
random_line[j] = random_line[j+1];
random_line[j+1] = rt;
}
}
}
if (random_line[0] == el_not) {
rt = random_line[0];
random_line[0] = random_line[l-1];
random_line[l-1] = rt;
}
};
/* Prev and Next buttons */
$.fn.bgStretcher.buttonSlide = function(button_point){
if (_bgStretcherAction || ($(allLIs).length < 2)) return false;
var mode = '';
if (button_point == 'prev') {
mode = 'back';
if ($.fn.bgStretcher.settings.sequenceMode == 'back') mode = 'normal';
} else {
mode = $.fn.bgStretcher.settings.sequenceMode;
}
$(allLIs).stop(true, true);
$.fn.bgStretcher._clearTimeout();
$.fn.bgStretcher.slideShow(mode, -1);
return false;
};
/* Pagination */
$.fn.bgStretcher.pagination = function(){
var l = $(allLIs).length;
var output = ''; var i = 0;
if (l > 0) {
output += '<ul>';
for (i = 0; i < l; i++){
output += '<li><a href="javascript:;">'+(i+1)+'</a></li>';
}
output += '</ul>';
$($.fn.bgStretcher.settings.pagination).html(output);
$($.fn.bgStretcher.settings.pagination).find('LI:first').addClass('showPage');
$($.fn.bgStretcher.settings.pagination).find('A').click(function(){
if ($(this).parent().hasClass('showPage')) return false;
$(allLIs).stop(true, true);
$.fn.bgStretcher._clearTimeout();
$.fn.bgStretcher.slideShow($.fn.bgStretcher.settings.sequenceMode, $($.fn.bgStretcher.settings.pagination).find('A').index($(this)));
return false;
});
}
return false;
}
/* Default Settings */
$.fn.bgStretcher.defaults = {
imageContainer: 'bgstretcher',
resizeProportionally: true,
resizeAnimate: false,
images: [],
imageWidth: 1024,
imageHeight: 768,
maxWidth: 'auto',
maxHeight: 'auto',
nextSlideDelay: 6000,
slideShowSpeed: 'normal',
slideShow: true,
transitionEffect: 'fade', // none, fade, simpleSlide, superSlide
slideDirection: 'N', // N, S, W, E, (if superSlide - NW, NE, SW, SE)
sequenceMode: 'normal', // back, random
buttonPrev: '',
buttonNext: '',
pagination: '',
anchoring: 'left top', // right bottom center
anchoringImg: 'left top', // right bottom center
preloadImg: false,
startElementIndex: 0,
callbackfunction: null
};
$.fn.bgStretcher.settings = {};
})(jQuery);<file_sep><!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Respond - Terms of Service</title>
<!-- meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Learn about our terms of service.">
<meta name="keywords" content="">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<!-- base -->
<base href="../">
<!-- open graph -->
<meta property="og:url" content="https://respondcms.com/page/terms-of-service" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Terms of Service" />
<meta property="og:description" content="Learn about our terms of service." />
<meta property="og:image" content="https://respondcms.com/" />
<!-- icons -->
<link theme-icon rel="icon" href="resources/icon.png">
<meta theme-color name="msapplication-TileColor" content="#2F3243">
<meta theme-color name="msapplication-TileImage" content="#2F3243">
<meta theme-color name="theme-color" content="#2F3243">
<link theme-icon rel="apple-touch-icon" href="resources/icon.png">
<!-- font -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- css -->
<link type="text/css" href="css/libs.min.css" rel="stylesheet">
<link type="text/css" href="css/site.css" rel="stylesheet">
<link type="text/css" href="css/plugins.css" rel="stylesheet">
<style respond-settings></style></head>
<body class="content" data-lastmodified="2018-06-30T12:12:30+0000" data-template="default" data-tags="" show-cart="false">
<header role="banner">
<a class="brand md-plus" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<a class="brand sm" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<nav class="navbar md-plus" role="navigation">
<ul respond-plugin type="menu" menu="primary"><li><a href="index">Home</a></li><li><a href="download">Download</a></li><li><a href="page/tour">Tour</a></li><li><a href="learn">Learn</a></li><li><a href="page/about">About</a></li><li><a href="help">Help</a></li></ul>
</nav>
<div class="menu sm" toggle-drawer>
<svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="24" viewbox="0 0 24 24" width="24">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
</svg>
</div>
<div class="search" respond-search>
<svg fill="#fff" height="24" viewbox="0 0 24 24" width="24" preserveaspectratio="xMidYMid meet"><g><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></g></svg>
</div>
</header>
<nav class="drawer">
<ul respond-menu type="primary">
<li><a href="index">Home</a></li>
<li><a href="download">Pricing</a></li>
<li><a href="page/tour">Tour</a></li>
<li><a href="learn">Learn</a></li>
<li><a href="page/about">About</a></li>
<li><a href="help">Help</a></li>
</ul>
</nav>
<div id="content" class="container" role="main">
<div id="block-1" class="block row" data-nested="not-nested" data-container="" data-containercss="">
<div class="col col-md-12">
<h1>Terms of Service</h1>
<p>The following terms and conditions govern all use of the Respond website and all content, services and products available at or through the website. The Website is owned and operated by <NAME>, LLC. The Website is offered subject
to your acceptance without modification of all of the terms and conditions contained herein and all other operating rules, policies (including, without limitation, Respond's Privacy Policy) and procedures that may be published from time
to time on this Site by Respond (collectively, the “Agreement”).
</p>
<p>Please read this Agreement carefully before accessing or using the Website. By accessing or using any part of the web site, you agree to become bound by the terms and conditions of this agreement. If you do not agree to all the terms and conditions
of this agreement, then you may not access the Website or use any services. If these terms and conditions are considered an offer by Respond, acceptance is expressly limited to these terms. The Website is available only to individuals
who are at least 13 years old.
</p>
<h3>Your Respond Site and Account</h3>
<p>If you operate a Respond application, you are responsible for maintaining the security of your site, and you are fully responsible for all activities that occur under the account and any other actions taken in connection with the site. Respond will not be liable for
any acts or omissions by You, including any damages of any kind incurred as a result of such acts or omissions.
</p>
<h3>Responsibility of Contributors</h3>
<p>If you operate a Respond application, you are entirely responsible for the
content of, and any harm resulting from, that Content. That is the case regardless of whether the Content in question constitutes text, graphics, an audio file, or computer software. By making Content available, you represent and warrant that:
</p>
<ul>
<li>the downloading, copying and use of the Content will not infringe the proprietary rights, including but not limited to the copyright, patent, trademark or trade secret rights, of any third party; if your employer has rights to intellectual
property you create, you have either (i) received permission from your employer to post or make available the Content, including but not limited to any software, or (ii) secured from your employer a waiver as to all rights in or to the
Content;
</li>
<li>you have fully complied with any third-party licenses relating to the Content, and have done all things necessary to successfully pass through to end users any required terms;</li>
<li>the Content does not contain or install any viruses, worms, malware, Trojan horses or other harmful or destructive content;</li>
<li>
<div>the Content is not spam, is not machine- or randomly-generated, and does not contain unethical or unwanted commercial content designed to drive traffic to third party sites or boost the search engine rankings of third party sites, or to
further unlawful acts (such as phishing) or mislead recipients as to the source of the material (such as spoofing);
</div>
</li>
<li>the Content is not pornographic, does not contain threats or incite violence, and does not violate the privacy or publicity rights of any third party;</li>
<li>your site is not getting advertised via unwanted electronic messages such as spam links on newsgroups, email lists, other blogs and web sites, and similar unsolicited promotional methods;</li>
<li>
<div>your site is not named in a manner that misleads your readers into thinking that you are another person or company. For example, your blog’s URL or name is not the name of a person other than yourself or company other than your own; and
<span style="background-color: initial;">you have, in the case of Content that includes computer code, accurately categorized and/or described the type, nature, uses and effects of the materials, whether requested to do so by Respond or otherwise.</span>
</div>
</li>
<li>By submitting Content to Respond for inclusion on your Website, you grant Respond a world-wide, royalty-free, and non-exclusive license to reproduce, modify, adapt and publish the Content solely for the purpose of displaying, distributing
and promoting your blog. If you delete Content, Respond will use reasonable efforts to remove it from the Website, but you acknowledge that caching or references to the Content may not be made immediately unavailable.
</li>
<li>Without limiting any of those representations or warranties, Respond has the right (though not the obligation) to, in Respond sole discretion (i) refuse or remove any content that, in Respond's reasonable opinion,
violates any Respond policy or is in any way harmful or objectionable, or (ii) terminate or deny access to and use of the Website to any individual or entity for any reason, in Respond sole discretion. Respond will
have no obligation to provide a refund of any amounts previously paid.
</li>
</ul>
<h3>Payment and Renewal</h3>
<p>Respond is a paid service. By downloading and installing the application, you agree to pay Respond the fees indicated for that service. Payments will be charged on a pre-pay basis on the day you sign up and will cover the use of that service
for the period as indicated. Fees are not refundable.
</p>
<h4>Automatic Renewal</h4>
<p>Unless you notify Respond before the end of the applicable subscription period that you want to cancel your subscription, your subscription will automatically renew and you authorize us to collect the then-applicable annual
or monthly subscription fee (as well as any taxes) using any credit card or other payment mechanism we have on record for you. Subscriptions can be canceled at any time in the Account section of your dashboard.
</p>
<h3>Responsibility of Website Visitors</h3>
<p>Respond has not reviewed, and cannot review, all of the material, including computer software, posted to the Website, and cannot therefore be responsible for that material’s content, use or effects. By operating the Website, Respond
does not represent or imply that it endorses the material there posted, or that it believes such material to be accurate, useful or non-harmful. You are responsible for taking precautions as necessary to protect yourself and your computer
systems from viruses, worms, Trojan horses, and other harmful or destructive content. The Website may contain content that is offensive, indecent, or otherwise objectionable, as well as content containing technical inaccuracies, typographical
mistakes, and other errors. The Website may also contain material that violates the privacy or publicity rights, or infringes the intellectual property and other proprietary rights, of third parties, or the downloading, copying or use
of which is subject to additional terms and conditions, stated or unstated. Respond disclaims any responsibility for any harm resulting from the use by visitors of the Website, or from any downloading by those visitors of content there
posted.Content Posted on Other Websites. We have not reviewed, and cannot review, all of the material, including computer software, made available through the websites and webpages to which Respond links, and that link to Respond. Respond does
not have any control over those non-Respond websites and webpages, and is not responsible for their contents or their use. By linking to a non-Respond website or webpage, Respond does not represent or imply
that it endorses such website or webpage. You are responsible for taking precautions as necessary to protect yourself and your computer systems from viruses, worms, Trojan horses, and other harmful or destructive content. Respond disclaims
any responsibility for any harm resulting from your use of non-Respond websites and webpages.
</p>
<h3>Copyright Infringement and DMCA Policy</h3>
<p>Respond asks others to respect its intellectual property rights, it respects the intellectual property rights of others. If you believe that material located on or linked to by Respond.com violates your copyright, you are encouraged
to notify Respond in accordance with Respond’s Digital Millennium Copyright Act (“DMCA”) Policy. Respond will respond to all such notices. Respond will terminate a visitor’s access to and use of the Website if, under appropriate circumstances, the visitor is determined to be a repeat infringer of the copyrights or other intellectual
property rights of Respond or others. In the case of such termination, Respond will have no obligation to provide a refund of any amounts previously paid to Respond.Intellectual Property. This Agreement does not transfer from
Respond to you any Respond or third party intellectual property, and all right, title and interest in and to such property will remain (as between the parties) solely with Respond. Respond, Respond, respondcms.com,
the respondcms.com logo, and all other trademarks, service marks, graphics and logos used in connection with Respond.io, or the Website are trademarks or registered trademarks of Respond or Respond licensors. Other trademarks,
service marks, graphics and logos used in connection with the Website may be the trademarks of other third parties. Your use of the Website grants you no right or license to reproduce or otherwise use any Respond or third-party
trademarks.
</p>
<h3>Termination</h3>
<p>Respond may terminate your access to future updates of Respond, with or without cause, with or without notice, effective immediately. If you wish to terminate this Agreement or your Respond CMS account (if you have
one), you may simply email us or contact us using the form on the site. All provisions of this Agreement which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers,
indemnity and limitations of liability.
</p>
<h3>Disclaimer of Warranties</h3>
<p>The Website is provided “as is”. Respond and its suppliers and licensors hereby disclaim all warranties of any kind, express or implied, including, without limitation, the warranties of merchantability, fitness for a particular
purpose and non-infringement. Neither Respond nor its suppliers and licensors, makes any warranty that the Website will be error free or that access thereto will be continuous or uninterrupted. If you’re actually reading
this, here’s a treat. You understand that you download from, or otherwise obtain content or services through, the Website at your own discretion and risk.Limitation of Liability. In no event will Respond, or its suppliers or licensors,
be liable with respect to any subject matter of this agreement under any contract, negligence, strict liability or other legal or equitable theory for: (i) any special, incidental or consequential damages; (ii) the cost of procurement
for substitute products or services; (iii) for interruption of use or loss or corruption of data; or (iv) for any amounts that exceed the fees paid by you to Respond under this agreement during the twelve (12) month period prior
to the cause of action. Respond shall have no liability for any failure or delay due to matters beyond their reasonable control. The foregoing shall not apply to the extent prohibited by applicable law.
</p>
<h3>General Restrictions and Warranties</h3>
<p>You represent and warrant that (i) your use of the Website will be in strict accordance with the Respond Privacy Policy, with this Agreement and with all applicable laws and regulations (including without limitation any local
laws or regulations in your country, state, city, or other governmental area, regarding online conduct and acceptable content, and including all applicable laws regarding the transmission of technical data exported from the United States
or the country in which you reside) and (ii) your use of the Website will not infringe or misappropriate the intellectual property rights of any third party.
</p>
<h3>Indemnification</h3>
<p> You agree to indemnify and hold harmless Respond, its contractors, and its licensors, and their respective directors, officers, employees and agents from and against any and all claims and expenses, including attorneys’ fees,
arising out of your use of the Website, including but not limited to your violation of this Agreement.
</p>
<h3>Miscellaneous</h3>
<p>This Agreement constitutes the entire agreement between Respond and you concerning the subject matter hereof, and they may only be modified by a written amendment signed by an authorized executive of Respond, or by the posting by Respond
of a revised version. Except to the extent applicable law, if any, provides otherwise, this Agreement, any access to or use of the Website will be governed by the laws of the state of Missouri, U.S.A., excluding its conflict of law provisions,
and the proper venue for any disputes arising out of or relating to any of the same will be the state and federal courts located in St. Louis County, Missouri. Except for claims for injunctive or equitable relief or claims regarding intellectual
property rights (which may be brought in any competent court without the posting of a bond), any dispute arising under this Agreement shall be finally settled in accordance with the Comprehensive Arbitration Rules of the Judicial Arbitration
and Mediation Service, Inc. (“JAMS”) by three arbitrators appointed in accordance with such Rules. The arbitration shall take place in St. Louis, Missouri, in the English language and the arbitral decision may be enforced in any court.
The prevailing party in any action or proceeding to enforce this Agreement shall be entitled to costs and attorneys’ fees. If any part of this Agreement is held invalid or unenforceable, that part will be construed to reflect the parties’
original intent, and the remaining portions will remain in full force and effect. A waiver by either party of any term or condition of this Agreement or any breach thereof, in any one instance, will not waive such term or condition or
any subsequent breach thereof. You may assign your rights under this Agreement to any party that consents to, and agrees to be bound by, its terms and conditions; Respond may assign its rights under this Agreement without
condition. This Agreement will be binding upon and will inure to the benefit of the parties, their successors and permitted assigns.
</p>
</div>
</div>
</div>
<footer role="contentinfo" class="base-padding align-center pad-top pad-bottom">
<h2>Build fast, responsive sites with Respond.</h2>
<p>Built by <NAME> in Manchester, MO. Respond CMS is the white-label, flat-file, multi-site, incredibly fast CMS of your dreams built on the Lumen PHP and Angular frameworks. Respond is built so that you can quickly build beautiful, responsive websites. The latest version features flat-file storage, a beautiful visual editor, and fast static sites.</p>
<nav>
<ul respond-plugin type="menu" menu="footer"><li><a href="index">Home</a></li><li><a href="download">Get Started</a></li><li><a href="learn">Learn</a></li><li active><a href="page/terms-of-service">Terms</a></li><li><a href="page/privacy-policy">Privacy Policy</a></li><li><a href="help">Help</a></li></ul>
</nav>
</footer>
</body>
<!-- js -->
<script src="js/site.all.js?v=1"></script>
<!-- respond-plugin:analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34995127-1', 'auto');
ga('send', 'pageview');
</script>
<!-- /respond-plugin:analytics -->
</html>
<file_sep><!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Respond - Developer Tools</title>
<!-- meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Learn about the developer tools available within Respond">
<meta name="keywords" content="">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<!-- base -->
<base href="../">
<!-- open graph -->
<meta property="og:url" content="https://respondcms.com/documentation/developer-tools" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Developer Tools" />
<meta property="og:description" content="Learn about the developer tools available within Respond" />
<meta property="og:image" content="https://respondcms.com/" />
<!-- icons -->
<link theme-icon rel="icon" href="resources/icon.png">
<meta theme-color name="msapplication-TileColor" content="#2F3243">
<meta theme-color name="msapplication-TileImage" content="#2F3243">
<meta theme-color name="theme-color" content="#2F3243">
<link theme-icon rel="apple-touch-icon" href="resources/icon.png">
<!-- font -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- css -->
<link type="text/css" href="css/libs.min.css" rel="stylesheet">
<link type="text/css" href="css/site.css" rel="stylesheet">
<link type="text/css" href="css/plugins.css" rel="stylesheet">
<style respond-settings></style></head>
<body class="content" data-lastmodified="2018-06-30T12:12:31+0000" data-template="default" data-tags="" show-cart="false">
<header role="banner">
<a class="brand md-plus" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<a class="brand sm" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<nav class="navbar md-plus" role="navigation">
<ul respond-plugin type="menu" menu="primary"><li><a href="index">Home</a></li><li><a href="download">Download</a></li><li><a href="page/tour">Tour</a></li><li><a href="learn">Learn</a></li><li><a href="page/about">About</a></li><li><a href="help">Help</a></li></ul>
</nav>
<div class="menu sm" toggle-drawer>
<svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="24" viewbox="0 0 24 24" width="24">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
</svg>
</div>
<div class="search" respond-search>
<svg fill="#fff" height="24" viewbox="0 0 24 24" width="24" preserveaspectratio="xMidYMid meet"><g><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></g></svg>
</div>
</header>
<nav class="drawer">
<ul respond-menu type="primary">
<li><a href="index">Home</a></li>
<li><a href="download">Pricing</a></li>
<li><a href="page/tour">Tour</a></li>
<li><a href="learn">Learn</a></li>
<li><a href="page/about">About</a></li>
<li><a href="help">Help</a></li>
</ul>
</nav>
<div id="content" class="container" role="main">
<div id="block-1" class="block row">
<div class="col col-md-12">
<h1>Developer Tools</h1>
<p>You can access the developer tools available to your site through the /developer route in your app. Just login to your site and update your url with the /developer route (e.g. https://app.myrespond.com/developer).</p>
<table class="table">
<thead>
<tr>
<th>Tool</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Re-publish Plugins</td>
<td>This tool walks through the pages in your site and re-publishes the plugins on each page. It does this by querying the DOM for the [respond-plugin] attribute and then updates the element with content from the associated plugin. This is helpful when developing or modifying plugins for your site. An error when executing this function typically means you have an error in your plugin.</td>
</tr>
<tr>
<td>Re-index Pages</td>
<td>This tool updates the current index (data/pages.json) with new files in your site's directory. The tool also updates your sitemap.xml file. This tool allows you to bring in pages into Respond that you develop outside of the CMS.</td>
</tr>
<tr>
<td>Re-publish Sitemap</td>
<td>This tool updates your sitemap.xml file (but does not reindex your pages).</td>
</tr>
<tr>
<td>Migrate Respond 5 site</td>
<td>This tool aids in the process of migrating your site from Respond 5 to 6. More details below.</td>
</tr>
</tbody>
</table>
<h3>R5 Migration Tool</h3>
<p>While the R5 migration tool does not completely move your site from R5 to R6, it does much of the heavy lifting. A list is outlined below:</p>
<ul>
<li>Removes web component JS</li>
<li>Removes respond-language, respond-language-toggle, respond-cart, respond-cart-toggle, and respond-search tags</li>
<li>Updates the respond-map tag with the R6 equivalent</li>
<li>Updates the respond-html tag with the R6 equivalent</li>
<li>Updates the respond-video tag with the R6 equivalent</li>
<li>Updates the respond-gallery tag with the R6 equivalent</li>
<li>Updates the respond-menu tag with the R6 equivalent</li>
<li>Updates the respond-form tag with the R6 equivalent</li>
<li>Updates the respond-list [type=blog] tag with the R6 equivalent</li>
<li>Sets the [nav] element in the header to the primary R6 menu</li>
<li>Removes [data-i18n] attributes</li>
<li>Removes [data-nested] attributes</li>
<li>Removes [data-backgroundimage] attributes</li>
<li>Removes [data-backgroundstyle] attributes</li>
<li>Removes [data-containerid] attributes</li>
<li>Removes [data-containercssclass] attributes</li>
<li>Removes [page] attributes</li>
<li>Removes absolute links to images</li>
<li>Publishes R6 plugins</li>
</ul>
</div>
</div>
</div>
<footer role="contentinfo" class="base-padding align-center pad-top pad-bottom">
<h2>Build fast, responsive sites with Respond.</h2>
<p>Built by <NAME> in Manchester, MO. Respond CMS is the white-label, flat-file, multi-site, incredibly fast CMS of your dreams built on the Lumen PHP and Angular frameworks. Respond is built so that you can quickly build beautiful, responsive websites. The latest version features flat-file storage, a beautiful visual editor, and fast static sites.</p>
<nav>
<ul respond-plugin type="menu" menu="footer"><li><a href="index">Home</a></li><li><a href="download">Get Started</a></li><li><a href="learn">Learn</a></li><li><a href="page/terms-of-service">Terms</a></li><li><a href="page/privacy-policy">Privacy Policy</a></li><li><a href="help">Help</a></li></ul>
</nav>
</footer>
</body>
<!-- js -->
<script src="js/site.all.js?v=1"></script>
<!-- respond-plugin:analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34995127-1', 'auto');
ga('send', 'pageview');
</script>
<!-- /respond-plugin:analytics -->
</html>
<file_sep>> Coming soon: [A minimalist validation library for client side and server side.](https://github.com/DiegoLopesLima/warble).
# jQuery Validate
> License: <a href="http://www.opensource.org/licenses/mit-license.php" target="_blank">_MIT_</a>.
> Version: _1.1.2_.
> Requires: _jQuery 1.7+_.
To use _jQuery Validate_ you just need to include in your code a version of the <a href="http://jquery.com/" target="_blank">jQuery library</a> equal or more recent than `1.7` and a file with the plugin. <a href="https://www.dropbox.com/s/p5xhpb52572xy5b/jQuery%20Validate%201.1.2.zip" target="_blank">Click here to download the plugin</a>.
After this, you just need select your form and calling the `jQuery.fn.validate` method.
See a example:
```javascript
jQuery('form').validate();
```
After calling the `jQuery.fn.validate` method, you can validate your fields using <a href="http://www.w3.org/TR/2011/WD-html5-20110525/elements.html#embedding-custom-non-visible-data-with-the-data-attributes" target="_blank">data attributes</a>, that are valid to the <a href="http://www.w3.org/TR/html5/" target="_blank">HTML5</a>, according to the <a href="http://www.w3.org/" target="_blank">W3C</a>.
See a example to required field:
```html
<form>
<input type="text" data-required />
</form>
```
_jQuery Validate_ supports all fields of the HTML5 and uses <a href="http://www.w3.org/WAI/PF/aria/" target="_blank">WAI-ARIA</a> for accessibility. You can use several attributes to your validations.
## Attributes
<table>
<tr>
<th width="110px">Attribute</th>
<th>Description</th>
<th width="75px">Default</th>
</tr>
<tr>
<td>data-conditional</td>
<td>Accepts one or more indexes separated by spaces from the `conditional` object that should contain a the boolean return function.</td>
<td></td>
</tr>
<tr>
<td>data-ignore-case</td>
<td>Accepts a boolean value to specify if field is case-insensitive.</td>
<td>true</td>
</tr>
<tr>
<td>data-mask</td>
<td>Accepts a mask to change the field value to the specified format. The mask should use the character groups of the regular expression passed to the <a href="#data-pattern">`data-pattern`</a> attribute.</td>
<td>${0}</td>
</tr>
<tr>
<td>data-pattern</td>
<td>Accepts a regular expression to test the field value.</td>
<td>/(?:)/</td>
</tr>
<tr>
<td>data-prepare</td>
<td>Accepts a index from the `prepare` object that should contain a function to receive the field value and returns a new value treated.</td>
<td></td>
</tr>
<tr>
<td>data-required</td>
<td>Accepts a boolean value to specify if field is required.</td>
<td>false</td>
</tr>
<tr>
<td>data-trim</td>
<td>Accepts a boolean value. If true, removes the spaces from the ends in the field value. (The field value is not changed)</td>
<td>false</td>
</tr>
<tr>
<td>data-validate</td>
<td>You can use the `data-validate` to calling extensions.</td>
<td></td>
</tr>
</table>
## Parameters
<table>
<tr>
<th width="110px">Parameter</th>
<th>Description</th>
<th width="75px">Default</th>
</tr>
<tr>
<td>conditional</td>
<td>Accepts a object to store functions from validation.</td>
<td></td>
</tr>
<tr>
<td>filter</td>
<td>Accepts a selector string or function to filter the validated fields.</td>
<td>*</td>
</tr>
<tr>
<td>nameSpace</td>
<td>A namespace used in all delegates events.</td>
<td>validate</td>
</tr>
<tr>
<td>onBlur</td>
<td>Accepts a boolean value. If true, triggers the validation when blur the field.</td>
<td>false</td>
</tr>
<tr>
<td>onChange</td>
<td>Accepts a boolean value. If true, triggers the validation when change the field value.</td>
<td>false</td>
</tr>
<tr>
<td>onKeyup</td>
<td>Accepts a boolean value. If true, triggers the validation when press any key.</td>
<td>false</td>
</tr>
<tr>
<td>onSubmit</td>
<td>Accepts a boolean value. If true, triggers the validation when submit the form.</td>
<td>true</td>
</tr>
<tr>
<td>prepare</td>
<td>Accepts a object to store functions to prepare the field values.</td>
<td></td>
</tr>
<tr>
<td>sendForm</td>
<td>Accepts a boolean value. If false, prevents submit the form (Useful to submit forms via <a href="http://api.jquery.com/jQuery.ajax/" target="_blank">AJAX</a>).</td>
<td>true</td>
</tr>
<tr>
<td>waiAria</td>
<td>Accepts a boolean value. If false, disables <a href="http://www.w3.org/WAI/PF/aria/" target="_blank">WAI-ARIA</a>.</td>
<td>true</td>
</tr>
</table>
## Callbacks
<table>
<tr>
<th width="110px">Callback</th>
<th>Description</th>
</tr>
<tr>
<td>valid</td>
<td>Accepts a function to be calling when form is valid. The context (`this`) is the current verified form and the parameters are respectively `event` and `options`.</td>
</tr>
<tr>
<td>invalid</td>
<td>Accepts a function to be calling when form is invalid. The context (`this`) is the current verified form and the parameters are respectively `event` and `options`.</td>
</tr>
<tr>
<td>eachField</td>
<td>Accepts a function to be calling to each field. The context (`this`) is the current verified field and the parameters are respectively `event`, `status` and `options`.</td>
</tr>
<tr>
<td>eachInvalidField</td>
<td>Accepts a function to be calling when field is invalid. The context (`this`) is the current verified field and the parameters are respectively `event`, `status` and `options`.</td>
</tr>
<tr>
<td>eachValidField</td>
<td>Accepts a function to be calling when field is valid. The context (`this`) is the current verified field and the parameters are respectively `event`, `status` and `options`.</td>
</tr>
</table>
## Removing validation
You can remove validation of a form using the `jQuery.fn.validateDestroy` method.
Example:
```javascript
jQuery('form').validateDestroy();
```
## Changing the default values of `jQuery.fn.validate`
You can changes the default values of `jQuery.fn.validate` using `jQuery.validateSetup` method.
Example:
```javascript
jQuery('form').validateSetup({
sendForm : false,
onKeyup : true
});
```
## Creating descriptions
You can create descriptions to the field states.
Example:
```html
<form>
<input type="text" data-describedby="messages" data-description="test" />
<span id="messages"></span>
</form>
```
```javascript
$('form').validate({
description : {
test : {
required : '<div class="error">Required</div>',
pattern : '<div class="error">Pattern</div>',
conditional : '<div class="error">Conditional</div>',
valid : '<div class="success">Valid</div>'
}
}
});
```
## Creating extensions
You can use the `jQuery.validateExtend` method to extend the validations and calling the extensions with `data-validate` attribute.
Example:
```html
<form>
<input type="text" name="age" data-validate="age" />
</form>
```
```javascript
jQuery('form').validate();
jQuery.validateExtend({
age : {
required : true,
pattern : /^[0-9]+$/,
conditional : function(value) {
return Number(value) > 17;
}
}
});
```
<file_sep><?php
/* Respond List Plugin
* <div respond-plugin type="list" display="list|thumbnail|map" url="page/"></div>
*/
$html = '<div class="list">';
if (function_exists("url_starts_with") == false) {
// check if a string starts with a $needle
function url_starts_with($haystack, $needle) {
$length = strlen($needle);
return (substr($haystack, 0, $length) === $needle);
}
}
// add map-container for maps
if ($attributes['display'] == 'map') {
$html .= '<div class="map-container"></div>';
}
// add tag
$tag = '';
// get tag (if set)
if (isset($attributes['tag'])) {
$tag = $attributes['tag'];
}
// walk through pages and filter by url
foreach ($pages as $page) {
// filter by tag
if ($tag != '') {
if (isset($page['tags'])) {
$tags = explode(',', $page['tags']);
$tags = array_map('trim', $tags);
if (!in_array($tag, $tags)) {
continue;
}
}
else {
continue;
}
}
// check if the URL starts with
if (url_starts_with($page['url'], $attributes['url'])) {
if ($attributes['display'] == 'thumbnail') {
if(isset($page['thumb'])) {
if($page['thumb'] != '') {
// list thumb
$html .= '<div class="list-thumb">' .
'<a href="'.$page['url'].'" title="'.$page['description'].'"><img src="'.$page['thumb'].'"></a>'.
'<h5><a href="'.$page['url'].'">'.$page['title'].'</a></h5>'.
'</div>';
}
}
}
else if ($attributes['display'] == 'map') {
// check for location
if(isset($page['location'])) {
// make sure the location is set
if($page['location'] != '') {
$html .= '<div class="list-item">' .
'<h5 title><a href="'.$page['url'].'">'.$page['title'].'</a></h5>'.
'<p address>'.$page['location'].'</p>'.
'<p>'.$page['description'].'</p>'.
'</div>';
}
}
}
else {
// show list item
$html .= '<div class="list-item">' .
'<h5><a href="'.$page['url'].'">'.$page['title'].'</a></h5>'.
'<p>'.$page['description'].'</p>'.
'</div>';
}
}
}
$html .= '</div>';
print $html;
?><file_sep><!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Respond - Privacy Policy</title>
<!-- meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Read our privacy policy.">
<meta name="keywords" content="">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<!-- base -->
<base href="../">
<!-- open graph -->
<meta property="og:url" content="https://respondcms.com/page/privacy-policy" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Privacy Policy" />
<meta property="og:description" content="Read our privacy policy." />
<meta property="og:image" content="https://respondcms.com/" />
<!-- icons -->
<link theme-icon rel="icon" href="resources/icon.png">
<meta theme-color name="msapplication-TileColor" content="#2F3243">
<meta theme-color name="msapplication-TileImage" content="#2F3243">
<meta theme-color name="theme-color" content="#2F3243">
<link theme-icon rel="apple-touch-icon" href="resources/icon.png">
<!-- font -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- css -->
<link type="text/css" href="css/libs.min.css" rel="stylesheet">
<link type="text/css" href="css/site.css" rel="stylesheet">
<link type="text/css" href="css/plugins.css" rel="stylesheet">
<style respond-settings></style></head>
<body class="content" data-lastmodified="2018-06-30T12:12:31+0000" data-template="default" data-tags="" show-cart="false">
<header role="banner">
<a class="brand md-plus" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<a class="brand sm" href="index"><img theme-logo src="resources/respond-logo.png"></a>
<nav class="navbar md-plus" role="navigation">
<ul respond-plugin type="menu" menu="primary"><li><a href="index">Home</a></li><li><a href="download">Download</a></li><li><a href="page/tour">Tour</a></li><li><a href="learn">Learn</a></li><li><a href="page/about">About</a></li><li><a href="help">Help</a></li></ul>
</nav>
<div class="menu sm" toggle-drawer>
<svg xmlns="http://www.w3.org/2000/svg" fill="#fff" height="24" viewbox="0 0 24 24" width="24">
<path d="M0 0h24v24H0z" fill="none"/>
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
</svg>
</div>
<div class="search" respond-search>
<svg fill="#fff" height="24" viewbox="0 0 24 24" width="24" preserveaspectratio="xMidYMid meet"><g><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></g></svg>
</div>
</header>
<nav class="drawer">
<ul respond-menu type="primary">
<li><a href="index">Home</a></li>
<li><a href="download">Pricing</a></li>
<li><a href="page/tour">Tour</a></li>
<li><a href="learn">Learn</a></li>
<li><a href="page/about">About</a></li>
<li><a href="help">Help</a></li>
</ul>
</nav>
<div id="content" class="container" role="main">
<div id="block-1" class="block row">
<div class="col col-md-12">
<h1>Privacy Policy</h1>
<h2>Your privacy is important to us. Here are a few of our core principles:</h2>
<ul>
<li>We don't ask for information unless we need it</li>
<li>We don't require any information to create a site, you enter as much or as little as you are comfortable with</li>
<li>We only store what you enter on the server</li>
<li>We use strong cryptography to store your password and do not store identifiable information in cookies/session</li>
<li>We use <a href="http://stripe.com">Stripe</a> to process Credit Cards. We do not store your Credit Card Information.</li>
</ul>
<h2>Website Visitors</h2>
<p>Like most website operators, Respond collects non-personally-identifying information of the sort that web browsers and servers typically make available, such as the browser type, language preference, referring site, and the date and time of
each visitor request. Respond’s purpose in collecting non-personally identifying information is to better understand how Respond’s visitors use its website. From time to time, Respond may release non-personally-identifying information
in the aggregate, e.g., by publishing a report on trends in the usage of its website.
</p>
<p>Respond also collects potentially personally-identifying information like Internet Protocol (IP) addresses for logged in users. Respond only discloses logged in user addresses under the same circumstances that it uses and discloses personally-identifying
information as described below.
</p>
<h2>Gathering of Personally-Identifying Information</h2>
<p>Certain visitors to Respond’s websites choose to interact with Respond in ways that require Respond to gather personally-identifying information. The amount and type of information that Respond gathers depends on the nature of
the interaction. For example, Respond users who sign up for our service enter their email, name, password, and property information. We only require email, name, password, and address to create an account. All other information
is supplied at the discretion of the user. Respond does not disclose personally-identifying information other than as described below. And visitors can always refuse to supply personally-identifying information, with the caveat that
it may prevent them from engaging in certain website-related activities.
</p>
<h3>Aggregated Statistics</h3>
<p>Respond may collect statistics about the behavior of visitors to its websites. For instance, Respond may monitor listings on the site. Respond may display this information publicly or provide it to others. However, Respond does
not disclose personally-identifying information other than as described below.
</p>
<h3>Protection of Certain Personally-Identifying Information</h3>
<p>Respond discloses potentially personally-identifying and personally-identifying information only to those of its employees, contractors and affiliated organizations that (i) need to know that information in order to process it on Respond’s
behalf or to provide services available at Respond’s websites, and (ii) that have agreed not to disclose it to others. Some of those employees, contractors and affiliated organizations may be located outside of your home country; by using
Respond’s websites, you consent to the transfer of such information to them. Respond will not rent or sell potentially personally-identifying and personally-identifying information to anyone. Other than to its employees, contractors
and affiliated organizations, as described above, Respond discloses potentially personally-identifying and personally-identifying information only in response to a subpoena, court order or other governmental request, or when Respond
believes in good faith that disclosure is reasonably necessary to protect the property or rights of Respond, third parties or the public at large. If you are a registered user of an Respond website and have supplied your email address,
Respond may occasionally send you an email to tell you about new features, solicit your feedback, or just keep you up to date with what’s going on with Respond and our products. We primarily use our various product blogs to communicate
this type of information, so we expect to keep this type of email to a minimum. If you send us a request (for example via a support email or via one of our feedback mechanisms), we reserve the right to publish it in order to help us clarify
or respond to your request or to help us support other users. Respond takes all measures reasonably necessary to protect against the unauthorized access, use, alteration or destruction of potentially personally-identifying and personally-identifying
information.
</p>
<h3>Sessions</h3>
<p>A session is a string of information that a website stores on a visitor’s computer, and that the visitor’s browser provides to the website each time the visitor returns. Respond uses sessions to help Respond identify and track visitors,
their usage of Respond website, and their website access preferences. Respond visitors who do not wish to have sessions placed on their computers should set their browsers to refuse sessions before using Respond’s websites, with
the drawback that certain features of Respond’s websites may not function properly without the aid of cookies.
</p>
<h3>Business Transfers</h3>
<p>If Respond, or substantially all of its assets, were acquired, or in the unlikely event that Respond goes out of business or enters bankruptcy, user information would be one of the assets that is transferred or acquired by a third party.
You acknowledge that such transfers may occur, and that any acquirer of Respond may continue to use your personal information as set forth in this policy.
</p>
<h3>Ads</h3>
<p>Ads appearing on any of our websites may be delivered to users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile information about
you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This Privacy Policy covers the use of cookies by Respond
and does not cover the use of cookies by any advertisers.
</p>
<h3>Privacy Policy Changes</h3>
<p>Although most changes are likely to be minor, Respond may change its Privacy Policy from time to time, and in Respond’s sole discretion. Respond encourages visitors to frequently check this page for any changes to its Privacy Policy.
Your continued use of this site after any change in this Privacy Policy will constitute your acceptance of such change.
</p>
</div>
</div>
</div>
<footer role="contentinfo" class="base-padding align-center pad-top pad-bottom">
<h2>Build fast, responsive sites with Respond.</h2>
<p>Built by <NAME> in Manchester, MO. Respond CMS is the white-label, flat-file, multi-site, incredibly fast CMS of your dreams built on the Lumen PHP and Angular frameworks. Respond is built so that you can quickly build beautiful, responsive websites. The latest version features flat-file storage, a beautiful visual editor, and fast static sites.</p>
<nav>
<ul respond-plugin type="menu" menu="footer"><li><a href="index">Home</a></li><li><a href="download">Get Started</a></li><li><a href="learn">Learn</a></li><li><a href="page/terms-of-service">Terms</a></li><li active><a href="page/privacy-policy">Privacy Policy</a></li><li><a href="help">Help</a></li></ul>
</nav>
</footer>
</body>
<!-- js -->
<script src="js/site.all.js?v=1"></script>
<!-- respond-plugin:analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34995127-1', 'auto');
ga('send', 'pageview');
</script>
<!-- /respond-plugin:analytics -->
</html>
<file_sep>[docs](/docs/README.md)
<file_sep>var respond = respond || {};
/*
* Shows a toast
* Usage:
* respond.toast.show('success', 'Saved!');
* respond.toast.show('failure', 'Error!');
*/
respond.toast = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the toast
*/
setup: function() {
var current;
current = document.createElement('div');
current.setAttribute('class', 'app-toast');
current.innerHTML = 'Sample Toast';
// append toast
document.body.appendChild(current);
return current;
},
/**
* Shows the toast
*/
show: function(status, text) {
var current;
current = document.querySelector('.app-toast');
if(current == null) {
current = toast.setup();
}
current.removeAttribute('success');
current.removeAttribute('failure');
current.setAttribute('active', '');
// add success/failure
if (status == 'success') {
current.setAttribute('success', '');
if(text == '' || text == undefined || text == null) {
text = '<svg xmlns="http://www.w3.org/2000/svg" fill="#000000" height="24" viewBox="0 0 24 24" width="24">' +
'<path d="M0 0h24v24H0z" fill="none"/>' +
'<path d="M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z"/>' +
'</svg>';
}
}
else if (status == 'failure') {
current.setAttribute('failure', '');
if(text == '' || text == undefined || text == null) {
text = '<svg xmlns="http://www.w3.org/2000/svg" fill="#000000" height="24" viewBox="0 0 24 24" width="24">' +
'<path d="M0 0h24v24H0V0z" fill="none"/>' +
'<path d="M11 15h2v2h-2zm0-8h2v6h-2zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/>' +
'</svg>';
}
}
// set text
current.innerHTML = text;
// hide toast
setTimeout(function() {
current.removeAttribute('active');
}, 1000);
}
}
})();
respond.toast.setup();
/**
* Handles plugins functionality for Respond
*
*/
respond.plugins = (function() {
'use strict';
return {
setup:function(){
// generic success toast
if(window.location.hash) {
var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character
if(hash === 'success') {
respond.toast.show('success');
}
else if(has === 'recaptcha-failure') {
respond.toast.show('failure');
}
else if(has === 'recaptcha-failure-no-secret') {
respond.toast.show('failure');
}
}
},
/**
* Find the parent by a selector ref: http://stackoverflow.com/questions/14234560/javascript-how-to-get-parent-element-by-selector
* @param {Array} config.sortable
*/
findParentBySelector: function(elm, selector) {
var all, cur;
all = document.querySelectorAll(selector);
cur = elm.parentNode;
while (cur && !respond.plugins.collectionHas(all, cur)) { //keep going up until you find a match
cur = cur.parentNode; //go up
}
return cur; //will return null if not found
},
/**
* Gets the query string paramger
* @param {String} name
* @param {String} url
*/
getQueryStringParam: function(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, "\\$&");
var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, " "));
},
/**
* Helper for findParentBySelecotr
* @param {Array} config.sortable
*/
collectionHas: function(a, b) { //helper function (see below)
var i, len;
len = a.length;
for (i = 0; i < len; i += 1) {
if (a[i] == b) {
return true;
}
}
return false;
}
}
})();
respond.plugins.setup();
/*
* Handles maps in respond
*/
respond.map = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the lightbox
*/
setup: function() {
var maps, x;
// setup maps
maps = document.querySelectorAll('[type=map]');
// setup submit event for form
for(x=0; x<maps.length; x++) {
respond.map.setupMap(maps[x]);
}
},
/**
* Setups a map
*
*/
setupMap: function(el) {
var address, container, zoom, defaultZoom, mapOptions, map;
// get container, address and zoom
container = el.querySelector('.map-container');
address = el.getAttribute('address');
zoom = el.getAttribute('zoom');
// set zoom
defaultZoom = 8;
if (zoom != 'auto' && zoom != undefined) {
defaultZoom = parseInt(zoom);
}
// create the map
var mapOptions = {
center: new google.maps.LatLng(38.6272, -90.1978),
zoom: defaultZoom,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// create map and bounds
map = new google.maps.Map(container, mapOptions);
// set location
respond.map.setLocation(map, address);
},
/**
* Sets the location on the map (this.map) to the current address (this.address)
*/
setLocation: function(map, address) {
var latitude, longitude, content, infowindow, marketext, marker, marktext, coords;
// look for a default address
if (address != null && address != undefined) {
// geo-code the address
var geocoder = new google.maps.Geocoder();
var context = this;
geocoder.geocode({
'address': address
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
content = results[0].formatted_address;
coords = new google.maps.LatLng(latitude, longitude);
infowindow = new google.maps.InfoWindow({
content: content
});
// create marker
marktext = '<div>' + content + '</div>';
marker = new google.maps.Marker({
position: coords,
map: map,
title: marktext
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
map.setCenter(coords);
}
});
}
}
}
})();
respond.map.setup();
/*
* Handles forms in Respond
*/
respond.form = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the lightbox
*/
setup: function() {
var form, forms, x, status, id, success, error, holder, recaptchaError, siteKey, submit;
// setup [respond-form]
forms = document.querySelectorAll('[respond-form]');
// setup form
for(x=0; x<forms.length; x++) {
// add submit
forms[x].addEventListener('submit', respond.form.submitForm);
// add hidden field to track submission url
var input = document.createElement("input");
input.setAttribute("type", "hidden");
input.setAttribute("name", "submitted-from");
input.setAttribute("value", window.location.href);
forms[x].appendChild(input);
}
// handle messaging
status = respond.plugins.getQueryStringParam('formstatus');
if(status != '' && status != null) {
id = respond.plugins.getQueryStringParam('formid');
if(id != '' && id != null) {
form = document.querySelector('#' + id);
if(form != null) {
success = form.getAttribute('data-success') || '';
error = form.getAttribute('data-error') || '';
recaptchaError = form.getAttribute('data-recaptcha-error') || '';
// show success
if(status == 'success' && success != '') {
respond.toast.show('success', success);
}
else if(status == 'success'){
respond.toast.show('success');
}
// show error
if(status == 'error' && error != '') {
respond.toast.show('failure', error);
}
else if(status == 'error') {
respond.toast.show('failure');
}
// show error
if(status == 'recaptcha-failure' && recaptchaError != '') {
respond.toast.show('failure', recaptchaError);
}
else if(status == 'recaptcha-failure') {
respond.toast.show('failure');
}
}
}
}
// add recaptcha script
if(document.querySelector('.g-recaptcha-holder') != null) {
document.write('<script src="https://www.google.com/recaptcha/api.js?onload=onloadReCaptchaCallback&render=explicit" async defer></script>');
document.write('<script>function onloadReCaptchaCallback(){ respond.form.setupRecaptcha(); }</script>');
}
},
/**
* checks for errors prior to submitting the form
*
*/
submitForm: function(e) {
var form, groups, submission, label, id, type, required, x, hasError = false;
// get reference to form
form = e.target;
// select all inputs in the local DOM
groups = form.querySelectorAll('.form-group');
// walk through inputs
for(x=0; x<groups.length; x++) {
// get name, id, type
label = groups[x].getAttribute('data-label');
id = groups[x].getAttribute('data-id');
type = groups[x].getAttribute('data-type');
required = groups[x].getAttribute('data-required');
// get value by type
var value = '';
if(type == 'text' || type == 'email' || type == 'number' || type == 'url' || type == 'tel' || type == 'date' || type == 'time'){
value = groups[x].querySelector('input').value;
}
else if(type == 'textarea'){
value = groups[x].querySelector('textarea').value;
}
else if(type == 'radiolist'){
var radio = groups[x].querySelector('input[type=radio]:checked');
if(radio != null){
value = radio.value;
}
}
else if(type == 'select'){
value = groups[x].querySelector('select').value;
}
else if(type == 'checkboxlist'){
var checkboxes = groups[x].querySelectorAll('input[type=checkbox]:checked');
// create comma separated list
for(y=0; y<checkboxes.length; y++){
value += checkboxes[y].value + ', ';
}
// remove trailing comma and space
if(value != ''){
value = value.slice(0, -2);
}
}
// check required fields
if(required == 'true' && value == ''){
groups[x].className += ' has-error';
hasError = true;
}
}
// exit if error
if(hasError == true) {
form.querySelector('.error').setAttribute('visible', '');
// stop processing
e.preventDefault();
return false;
}
// set loading
form.querySelector('.loading').setAttribute('visible', '');
return true;
},
/**
* clears the form a form
*
*/
clearForm:function(form) {
var els, x;
// remove .has-error
els = form.querySelectorAll('.has-error');
for(x=0; x<els.length; x++){
els[x].classList.remove('has-error');
}
// clear text fields
els = form.querySelectorAll('input[type=text]');
for(x=0; x<els.length; x++){
els[x].value = '';
}
// clear text areas
els = form.querySelectorAll('textarea');
for(x=0; x<els.length; x++){
els[x].value = '';
}
// clear checkboxes
els = form.querySelectorAll('input[type=checkbox]');
for(x=0; x<els.length; x++){
els[x].checked = false;
}
// clear radios
els = form.querySelectorAll('input[type=radio]');
for(x=0; x<els.length; x++){
els[x].checked = false;
}
// reset selects
els = form.querySelectorAll('select');
for(x=0; x<els.length; x++){
els[x].selectedIndex = 0;
}
},
/**
* Setup recaptcha
*/
setupRecaptcha: function() {
var form, forms, x, status, id, success, error, holder, recaptchaError, siteKey, submit;
// setup [respond-form]
forms = document.querySelectorAll('[respond-form]');
// setup form
for(x=0; x<forms.length; x++) {
// add submit
forms[x].addEventListener('submit', respond.form.submitForm);
// determine if recaptcha is setup
holder = forms[x].querySelector('.g-recaptcha-holder');
if(holder != null) {
submit = forms[x].querySelector('[type=submit]');
if(submit != null) {
submit.setAttribute('disabled', 'disabled');
}
(function(form){
siteKey = holder.getAttribute('data-sitekey');
var holderId = grecaptcha.render(holder,{
'sitekey': siteKey,
'badge' : 'inline', // possible values: bottomright, bottomleft, inline
'callback' : function (recaptchaToken) {
submit = form.querySelector('[type=submit]');
if(submit != null) {
submit.removeAttribute('disabled');
}
}
});
form.onsubmit = function (evt){
//evt.preventDefault();
//grecaptcha.execute(holderId);
};
})(forms[x]);
}
}
}
}
})();
respond.form.setup();
/*
* Shows a lightbox
* Usage:
* <a href="path/to/image.png" title="Caption" respond-lightbox><img src="path/to/thumb.png"></a>
*/
respond.lightbox = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the lightbox
*/
setup: function() {
var lb, close, els, el, img, p, x;
// create lighbox
lb = document.createElement('div');
lb.setAttribute('class', 'respond-lightbox');
lb.innerHTML = '<div class="respond-lightbox-close" on-click="close">' +
'<svg xmlns="http://www.w3.org/2000/svg" fill="#FFFFFF" height="24" viewBox="0 0 24 24" width="24">' +
'<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>' +
'<path d="M0 0h24v24H0z" fill="none"/>' +
'</svg>' +
'</div>' +
'<div class="respond-lightbox-body"><img><p>Sample Caption</p></div>';
// append lightbox
document.body.appendChild(lb);
// handle close
close = document.querySelector('.respond-lightbox-close');
close.addEventListener('click', function(e) {
lb.removeAttribute('visible');
});
// get lightbox items
els = document.querySelectorAll('[respond-lightbox]');
for(x=0; x<els.length; x++) {
els[x].addEventListener('click', function(e) {
e.preventDefault();
el = e.target;
if(el.nodeName === 'IMG') {
el = respond.plugins.findParentBySelector(el, '[respond-lightbox]');
}
// show the lightbox
lb.setAttribute('visible', '');
// set image
img = lb.querySelector('img');
img.src = el.getAttribute('href');
// set caption
p = lb.querySelector('p');
p.innerHTML = el.getAttribute('title');
});
}
},
}
})();
respond.lightbox.setup();
/*
* Shows a searchbox
* Usage:
* <a respond-search></a>
*/
respond.searchbox = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the lightbox
*/
setup: function() {
var sb, close, els, el, form, img, p, x, y, term, results, ext, data;
// create lighbox
sb = document.createElement('div');
sb.setAttribute('class', 'respond-searchbox');
sb.innerHTML = '<div class="respond-searchbox-close" on-click="close">' +
'<svg xmlns="http://www.w3.org/2000/svg" fill="#000000" height="24" viewBox="0 0 24 24" width="24">' +
'<path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/>' +
'<path d="M0 0h24v24H0z" fill="none"/>' +
'</svg>' +
'</div>' +
'<form class="respond-searchbox-form">' +
'<input type="text" placeholder="Search">' +
'<div class="respond-search-results"></div>' +
'</form>';
// append lightbox
document.body.appendChild(sb);
// handle close
close = document.querySelector('.respond-searchbox-close');
if(close !== null) {
close.addEventListener('click', function(e) {
sb.removeAttribute('visible');
});
}
// get lightbox items
els = document.querySelectorAll('[respond-search]');
for(x=0; x<els.length; x++) {
els[x].addEventListener('click', function(e) {
e.preventDefault();
el = e.target;
if(el.nodeName === 'IMG' || el.nodeName === 'SVG') {
el = respond.plugins.findParentBySelector(el, '[respond-search]');
}
// show the lightbox
sb.setAttribute('visible', '');
});
}
// handle submit
form = document.querySelector('.respond-searchbox-form');
if(form !== null) {
form.addEventListener('submit', function(e) {
e.preventDefault();
term = form.querySelector('input[type=text]').value;
results = document.querySelector('.respond-search-results');
// clear existing results
results.innerHTML = '';
var context = this;
// submit form
var xhr = new XMLHttpRequest();
// set URI
var uri = 'data/pages.json';
xhr.open('GET', encodeURI(uri));
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onload = function() {
if(xhr.status === 200){
// get data
data = JSON.parse(xhr.responseText);
ext = '';
// check for friendly URLs
if(window.location.href.indexOf('.html') !== -1){
ext = '.html';
}
// set class for data
for(x in data){
// pages are stored in objects
if(typeof(data[x]) == 'object'){
// check for results in non-includeOnly pages
// this is what will be returned
var result = {
title: data[x]['title'],
url: data[x]['url'] + ext,
description: data[x]['description']
}
// walk through data[x]
for(y in data[x]){
var text = data[x].text.toLowerCase();
// searh for the term
if(text.search(new RegExp(term.toLowerCase(), 'i')) != -1){
results.innerHTML += '<div class="respond-search-result"><h2><a href="' + result.url + '">' + result.title + '</a></h2>' +
'<small><a href="' + result.url + '">' + result.url + '</a></small>' +
'<p>' + result.description + '</p></div>';
break;
}
}
}
}
}
else if(xhr.status !== 200){
console.log('[respond.error] respond-search component: failed post, xhr.status='+xhr.status);
}
};
// send xhr
xhr.send();
});
}
},
}
})();
respond.searchbox.setup();
/*
* Handles lists in respond
*/
respond.list = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the lightbox
*/
setup: function() {
var lists, x, y, display, container, items=[], address='', title='', link='', map=null, el;
// setup maps
lists = document.querySelectorAll('[type=list]');
// setup submit event for form
for(x=0; x<lists.length; x++) {
display = lists[x].getAttribute('display');
if(display != null && display != undefined) {
// if [display=map] setup the map
if(display == 'map') {
container = lists[x].querySelector('.map-container');
// setup map on the container
if(container != null) {
map = respond.list.setupMap(container);
}
// set points on the map
items = lists[x].querySelectorAll('.list-item');
for(y=0; y<items.length; y++) {
// get address
el = items[y].querySelector('[address]');
address = '';
if(el != null) {
address = el.innerHTML;
}
// get title
el = items[y].querySelector('[title]');
title = '';
if(el != null) {
title = el.innerHTML;
}
// get link
el = items[y].querySelector('a');
link = '';
if(el != null) {
link = el.getAttribute('href');
}
// map address
if(map != null && address != '') {
respond.list.addPoint(map, address, title, link);
}
}
}
}
}
},
/**
* Setups a map
*
*/
setupMap: function(el) {
var address, container, zoom, defaultZoom, mapOptions, map;
// get container, address and zoom
container = el;
address = el.getAttribute('address');
zoom = el.getAttribute('zoom');
// set zoom
defaultZoom = 8;
if (zoom != 'auto' && zoom != undefined) {
defaultZoom = parseInt(zoom);
}
// create the map
var mapOptions = {
center: new google.maps.LatLng(38.6272, -90.1978),
zoom: defaultZoom,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
// create map and bounds
map = new google.maps.Map(container, mapOptions);
return map;
},
/**
* Adds a point to the map
*/
addPoint: function(map, address, title, link) {
var latitude, longitude, content, infowindow, marketext, marker, marktext, coords;
// look for a default address
if (address != null && address != undefined) {
// geo-code the address
var geocoder = new google.maps.Geocoder();
var context = this;
geocoder.geocode({
'address': address
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
latitude = results[0].geometry.location.lat();
longitude = results[0].geometry.location.lng();
content = marktext = '<div><h4><a href="' + link + '">' + title + '</a></h4><p>' + results[0].formatted_address + '</p></div>';
coords = new google.maps.LatLng(latitude, longitude);
infowindow = new google.maps.InfoWindow({
content: content
});
// create marker
marktext = '<div>' + results[0].formatted_address + '</div>';
marker = new google.maps.Marker({
position: coords,
map: map,
title: marktext
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map, marker);
});
map.setCenter(coords);
}
});
}
}
}
})();
respond.list.setup();
/*
* Loads a component
* Usage:
* respond.toast.show('success', 'Saved!');
* respond.toast.show('failure', 'Error!');
*/
respond.component = (function() {
'use strict';
return {
version: '0.0.1',
/**
* Creates the component
*/
setup: function() {
var els, el, x, component, delay=0;
els = document.querySelectorAll('[respond-plugin][type=component][runat=client]');
for(x=0; x<els.length; x++) {
if(els[x].hasAttribute('component') == true) {
component = els[x].getAttribute('component');
if(els[x].hasAttribute('delay')) {
delay = parseInt(els[x].getAttribute('delay'));
}
if(component != '') {
el = els[x];
function loadComponent(el, component) {
var request = new XMLHttpRequest();
request.open('GET', 'components/' + component, true);
request.onload = function() {
if (request.status >= 200 && request.status < 400) {
var html = request.responseText;
el.innerHTML = html;
// setup other plugins
respond.map.setup();
respond.form.setup();
respond.lightbox.setup();
respond.list.setup();
} else {
console.log('[respond.component] XHR error, status=' + request.status);
}
};
request.onerror = function() {
console.log('[respond.component] XHR connection error');
};
request.send();
}
if(delay > 0) {
setTimeout(function() {loadComponent(el, component);}, delay);
}
else {
loadComponent(el, component);
}
}
}
}
}
}
})();
respond.component.setup();<file_sep>'use strict';
angular.module('catchMeApp').factory('mySocket', ['socketFactory', function (socketFactory) {
return socketFactory();
}]);
<file_sep>/**
* Require classes.
*/
var Main = require('./main')
, Horizontal = require('./horizontal')
, Vertical = require('./vertical');
/**
* Set default values.
*
* @api public
*/
var defaults = {
callback: function() {}
, decimal: false
, disable: false
, disableOpacity: 0.5
, hideRange: false
, klass: ''
, min: 0
, max: 100
, start: null
, step: null
, vertical: false
};
/**
* Expose proper type of `Powerange`.
*/
module.exports = function(element, options) {
options = options || {};
for (var i in defaults) {
if (options[i] == null) {
options[i] = defaults[i];
}
}
if (options.vertical) {
return new Vertical(element, options);
} else {
return new Horizontal(element, options);
}
};<file_sep>'use strict';
angular.module('catchMeApp')
.controller('MainController', ['$scope', 'mySocket',
function ($scope, mySocket) {
$scope.loading = true;
$scope.emails = [];
mySocket.on('emails', function (emails) {
$scope.emails = $scope.emails.concat(emails);
});
$scope.clear = function () {
$scope.emails = [];
delete $scope.selected;
mySocket.emit('emails:delete');
};
$scope.select = function (id) {
var i = $scope.emails.length;
var email;
while (i--) {
email = $scope.emails[i];
if (email._id === id) {
$scope.selected = email;
i = 0;
}
}
};
}
]);
<file_sep>'use strict';
var argv = require('minimist')(process.argv.slice(2));
var express = require('express');
var mailer = require('./lib/mailer');
var sockets = require('./lib/socketio.js');
var Datastore = require('nedb');
var db = new Datastore();
GLOBAL.db = db;
// Set default node environment to development
process.env.NODE_ENV = process.env.NODE_ENV || 'development';
var config = require('./lib/config/config.js');
// Setup Express
var app = express();
require('./lib/config/express')(app);
require('./lib/routes')(app);
var server = require('http').createServer(app);
var mail = mailer.register(argv.mailPort || config.mailPort);
sockets.register(server, mail);
var serverPort = argv.appPort || config.port;
server.listen(serverPort, config.ip, function () {
console.log('Express server listening on %s, in %s mode', serverPort, process.env.NODE_ENV);
});
// Expose app
exports = module.exports = server;
<file_sep>'use strict';
var path = require('path');
var forever = require('forever');
exports.partials = function (req, res) {
var stripped = req.url.split('.')[0];
var requestedView = path.join('./', stripped);
res.render(requestedView, function (err, html) {
if (err) {
res.status(404);
res.send(404);
} else {
res.send(html);
}
});
};
exports.quit = function (req, res) {
forever.list(false, function (err, list) {
if (err) { return res.send(500, err); }
list = list || [];
var currentProcess;
for (var i = 0; i < list.length; i++) {
if (list[i].pid === process.pid) {
currentProcess = i;
break;
}
}
if (currentProcess || currentProcess === 0) {
forever.stop(currentProcess);
return res.send(200);
}
var message = process.env !== 'production' ?
'CatchMe is not in production mode' :
'Error, I can\'t find current process';
res.send(404, message);
});
};
exports.index = function(req, res) {
res.render('index');
};
<file_sep>window.onload = function() {
document.querySelector('.js-ie-message').style.display = 'block';
};<file_sep>(function(window) {
"use strict"
function Valinator(options, callback) {
this._options = options;
this._callback = callback;
};
Valinator.prototype.validate = function validate() {
var options = this._options;
var callback = this._callback;
if (options.address.length > 512) {
return callback('Address exceeds maximum allowable length of 512.');
}
options.provider.request(options.address, callback);
};
window.Valinator = Valinator;
})(window);<file_sep>#!/usr/bin/env node
var argv = require('minimist')(process.argv.slice(2));
var config = require('../dist/lib/config/config.js');
var forever = require('forever');
process.env.NODE_ENV = 'production';
if(argv.f === 'true'){
forever.start(__dirname + '/../dist/server.js', { options: process.argv });
} else {
forever.startDaemon(__dirname + '/../dist/server.js', {options: process.argv});
}
var serverPort = argv.appPort || config.port;
var mailPort = argv.mailPort || config.mailPort;
console.log('Send your emails to smtp://127.0.0.1:%s and receive them on http://127.0.0.1:%s', mailPort, serverPort);
<file_sep>(function(window, $) {
$.fn.valinator = function(options, callback) {
var provider;
if (typeof options.provider == 'object' && options.provider.name != 'undefined') {
if (options.provider.name == 'mailgun') {
provider = new MailgunProvider(options.provider.options);
}
} else {
provider = options.provider;
}
return this.each(function() {
$(this).focusout(function() {
var address = $(this).val();
if (address == '') return;
new Valinator({ address: address, provider: provider }, callback).validate();
});
});
};
})(window, jQuery);<file_sep>function validateForm() {
var x = document.forms["myForm"]["fname"].value;
if (x == null || x == "") {
alert("Name must be filled out");
return false;
}
}<file_sep><?php
// get a readable date for the site's timezone
$date = DateTime::createFromFormat("Y-m-d\TH:i:sO", $page['lastModifiedDate']);
$local = new DateTimeZone($site['timeZone']);
$date->setTimezone($local);
$readable = $date->format('D, M d y h:i a');
?>
<p class="respond-byline">Published by <?php print $page['firstName']; ?> <?php print $page['lastName']; ?> on <?php print $readable; ?></p><file_sep>'use strict';
var index = require('./controllers');
var emails = require('./controllers/emails.js');
module.exports = function(app) {
app.route('/emails/:email/download')
.get(emails.download);
app.route('/emails/:email')
.get(emails.details);
app.route('/partials/*')
.get(index.partials);
app.route('/quit')
.get(index.quit);
app.route('/*')
.get(index.index);
}; | 2b311db91c41cc7e3246cd4ba210e06e3f04b733 | [
"JavaScript",
"PHP",
"HTML",
"Markdown"
] | 64 | JavaScript | samuelbetio/LDPage | bd15e65d05d36b7108cd4fb2c8be83e4890f59b9 | 8bfa3ce5066ba2039499d857a6dd6c12c8795939 |
refs/heads/master | <repo_name>ligecarryme/doodlesnake<file_sep>/snake/MyPanel.java
package com.snake;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
public class MyPanel extends JPanel implements KeyListener, Runnable {
private static final int BODY_SIZE=20;
private static final int UP=0;
private static final int DOWN=1;
private static final int LEFT=2;
private static final int RIGHT=3;
int speed=300;
Snake snake;
Food food;
OtherSnake otherSnake;
public MyPanel(Snake snake,Food food,OtherSnake otherSnake) {
// TODO 自动生成的构造函数存根
this.snake=snake;
this.food=food;
this.otherSnake=otherSnake;
}
public void paint(Graphics g){
super.paint(g);
g.setColor(Color.GRAY);
for (int i = 0; i <39; i++) {
g.fill3DRect(i*BODY_SIZE, 0, BODY_SIZE, BODY_SIZE, true);
g.fill3DRect(0, i*BODY_SIZE, BODY_SIZE, BODY_SIZE, true);
g.fill3DRect(i*BODY_SIZE, 543, BODY_SIZE, BODY_SIZE, true);
g.fill3DRect(762, i*BODY_SIZE, BODY_SIZE, BODY_SIZE, true);
}
g.setColor(Color.YELLOW);
for(Point it:otherSnake.body)
g.fill3DRect(it.x*BODY_SIZE, it.y*BODY_SIZE, BODY_SIZE,BODY_SIZE,true);
g.setColor(Color.BLUE);
g.fill3DRect(otherSnake.body.getFirst().x*BODY_SIZE, otherSnake.body.getFirst().y*BODY_SIZE, BODY_SIZE, BODY_SIZE, true);
g.setColor(Color.GREEN);
g.fill3DRect(food.x* BODY_SIZE, food.y*BODY_SIZE, BODY_SIZE,BODY_SIZE, true);
for(Point it:snake.body)
g.fill3DRect(it.x*BODY_SIZE,it.y*BODY_SIZE,BODY_SIZE, BODY_SIZE, true);
g.setColor(Color.RED);
g.fill3DRect(snake.head.x*BODY_SIZE, snake.head.y*BODY_SIZE, BODY_SIZE, BODY_SIZE, true);
}
public void move(int dir){
//System.out.println("moving");
dir=snake.dir;
switch (dir) {
case UP:
snake.head.y--;
if (snake.head.y<0) {
snake.head.y=27;
}
break;
case DOWN:
snake.head.y++;
if (snake.head.y>27) {
snake.head.y=0;
}
break;
case LEFT:
snake.head.x--;
if (snake.head.x<0) {
snake.head.x=38;
}
break;
case RIGHT:
snake.head.x++;
if (snake.head.x>38) {
snake.head.x=0;
}
break;
}
Point p=new Point(snake.head);
snake.body.addFirst(p);
if(snake.isEat(food)){
food = new Food(snake);
}else
snake.body.removeLast();
if (snake.isOut()) {
JOptionPane.showMessageDialog(this,"YOU DEAD!!!"+"你的长度: "+snake.body.size(),"死亡窗口",JOptionPane.WARNING_MESSAGE);
System.out.println("YOU DEAD!!!");
snake.Dead(0);
}
if (snake.isCrash()) {
JOptionPane.showMessageDialog(this,"YOU DEAD HAHAHA!!!"+"你的长度: "+snake.body.size(),"死亡窗口",JOptionPane.WARNING_MESSAGE);
System.out.println("YOU DEAD HAHAHA!!!");
snake.Dead(0);
}
if (snake.isCollide()) {
JOptionPane.showMessageDialog(this,"YOU DEAD HAHA!!!"+"你的长度: "+snake.body.size(),"死亡窗口",JOptionPane.WARNING_MESSAGE);
System.out.println("YOU DEAD HAHA!!!");
snake.Dead(0);
}
if (snake.isWin()==1) {
int m=JOptionPane.showConfirmDialog(this," 你的长度: "+snake.body.size()+" YOU WIN!!! 是否继续?","胜利窗口",JOptionPane.YES_NO_OPTION,JOptionPane.PLAIN_MESSAGE);
if (m==JOptionPane.NO_OPTION || m==JOptionPane.CLOSED_OPTION) {
snake.Dead(0);
}
}
speed+=10;
//System.out.println("你的长度:"+snake.body.size()+" YOU WIN!!!");
repaint();
}
@Override
public void run() {
// TODO 自动生成的方法存根
while(true){
move(snake.dir);
//otherSnake.move();
//System.out.println("+++"+otherSnake.body);
//otherSnake2.move(RIGHT);
//otherSnake3.move(DOWN);
try {
Thread.sleep(speed);
} catch (Exception e) {}
// TODO: handle exception
}
}
@Override
public void keyTyped(KeyEvent e) {
// TODO 自动生成的方法存根
}
@Override
public void keyPressed(KeyEvent e) {
// TODO 自动生成的方法存根
speed-=12;
//speed+=10;
switch (e.getKeyCode()) {
case KeyEvent.VK_LEFT:
snake.dir=LEFT;
break;
case KeyEvent.VK_RIGHT:
snake.dir=RIGHT;
break;
case KeyEvent.VK_UP:
snake.dir=UP;
break;
case KeyEvent.VK_DOWN:
snake.dir=DOWN;
break;
}
}
@Override
public void keyReleased(KeyEvent e) {
// TODO 自动生成的方法存根
}
}
<file_sep>/README.md
# doodlesnake
a java program about many doodle snake
<file_sep>/snake/OtherSnake.java
package com.snake;
import java.awt.Point;
import java.util.LinkedList;
import java.util.Random;
import javax.swing.JOptionPane;
public class OtherSnake implements Runnable{
LinkedList<Point> body;
Random r;
Point point;
int x,y,n;
int length;
String string;
Snake snake;
Food food;
public OtherSnake() {
//this.hand=hand;
body=new LinkedList<Point>();
r=new Random();
x=r.nextInt(30)+5;
y=r.nextInt(20)+5;
string=JOptionPane.showInputDialog(null,"输入敌蛇的整数长度(1~50 easy;51~999 hard):","",JOptionPane.PLAIN_MESSAGE);
if(string==null || string.equals("0"))System.exit(0);
length=Integer.valueOf(string);
for(int j=0;j<length;j++){
Point point=new Point(x+j, y);
body.add(point);
}
}
/*boolean isEat(Food food){
if(x==food.x && y==food.y) return true;
return false;
}*/
public void move(){
int dir;
r=new Random();
int[] a=new int[]{0,1,1,1,1,1,1,1,1,1,1,2,2,2,3};
dir=a[r.nextInt(15)];
if ((n==0 && dir==1)||(n==1 && dir==0)||(n==2 && dir==3)||(n==3 && dir==2)) {
return;
}
/*System.out.println("1"+dir);*/
switch (dir) {
case 0:
y--;
if (y<1) {
y=26;
}
break;
case 1:
y++;
if (y>26) {
y=1;
}
break;
case 2:
x--;
if (x<1) {
x=37;
}
break;
case 3:
x++;
if (x>37) {
x=1;
}
break;
}
n=dir;
//System.out.println("2"+n);
Point point=new Point(x,y);
//if (body.size()<=20) {
body.addFirst(point);
body.removeLast();
//System.out.println("x="+x+"y="+y);
}
@Override
public void run() {
// TODO Auto-generated method stub
while(true){
move();
try {
Thread.sleep(200);
} catch (Exception e) {
// TODO: handle exception
}
}
}
}
/* for(int i=0;i<5;i++){
x=r.nextInt(36);
y=r.nextInt(27);
for(int j=0;j<3;j++){
Point point=new Point(x+j, y);
body.add(point);}
}
// TODO 自动生成的构造函数存根
}*/
| d3e420b6e3593c42da9b354c1abfa64b68fd4d22 | [
"Markdown",
"Java"
] | 3 | Java | ligecarryme/doodlesnake | addbc859d039d9b39ae780ac3f9e88c946bf4dac | 457178a0c5c687c349babfb58bea95caafa3131b |
refs/heads/master | <repo_name>rogrenke/bookmark_manager4<file_sep>/spec/features/filter_by_tag_spec.rb
feature 'filter by tag' do
scenario 'displays links tagged with bubbles' do
visit '/links/new'
fill_in('title', with: 'Bubble Test')
fill_in('url', with: 'https://www.bubbles.com')
fill_in('tags', with: 'bubbles')
click_button 'Add link'
visit '/links/new'
fill_in('title', with: 'Not Bubble Test')
fill_in('url', with: 'https://www.no-bubbles.com')
fill_in('tags', with: 'stars')
click_button 'Add link'
visit '/tags/bubbles'
expect(page).to have_content 'Bubble Test'
expect(page).not_to have_content("Not Bubble Test")
end
end
<file_sep>/spec/features/creating_links_spec.rb
feature 'submit a new link' do
scenario 'save a new link into the database' do
visit '/links/new'
fill_in('title', with: 'Makers Academy')
fill_in('url', with: 'https://makersacademy.com')
fill_in('tags', with: 'Awesome')
click_button 'Add link'
expect(page).to have_content 'Makers Academy'
end
end
<file_sep>/spec/features/does_not_save_links_in_test_spec.rb
feature 'removes new links from test database' do
scenario 'Does not include added link' do
visit '/links'
expect(page).to_not have_content 'Amazon'
end
end
<file_sep>/spec/features/list_of_links_spec.rb
feature 'Seeing list of links' do
scenario 'user can see list of links, even if it\'s empty' do
visit '/links/new'
fill_in('title', with: 'Makers Academy')
fill_in('url', with: 'https://makersacademy.com')
fill_in('tags', with: 'Awesome')
click_button 'Add link'
# Link.create(url: 'http://google.com', title: 'Google', tags: 'search')
visit '/links'
expect(page.status_code).to eq 200
# within 'ul#links' do
expect(page).to have_content 'Makers Academy'
# end
end
end
<file_sep>/README.md
# bookmark_manager
Week 4 - Bookmark Manager
User Stories
------------
As a User
So that I can quickly see all the bookmark links
I want to see a full list of links on homepage
As a User
So that I can quickly find website I recently bookmarked
I would like to see links in descending chronological order
As a User
So that I can add a new Bookmark
I want to add a new link and title to my bookmark manager
As a User
So that I can tag similar bookmarks to organise
I would like to add tags to the links in my bookmark manager
As a User
So that I can see similar bookmarks
I want to filter links by tags
|Objects |Messages |
|--- |--- |
|User | |
|Bookmark Mang. |See full list of links in BMM |
| |See by descending chronological order|
| |Add new bookmark(link) |
| |Tag bookmark(link) |
| |Filter links by tag |
<file_sep>/app/app.rb
ENV['RACK_ENV'] ||= 'development'
require 'sinatra/base'
require_relative 'data_mapper_setup'
class List < Sinatra::Base
get '/' do
"Bookmark Manager"
end
get '/links' do
@all_links = Link.all
erb :links
end
get '/links/new' do
erb :link_new
end
post '/links' do
link = Link.create(title: params[:title], url: params[:url])
tag_name_array = params[:tags].split(';')
tag_name_array.each do |tag_name|
tag = Tag.create(name: tag_name)
link.tags << tag
link.save
end
# link = LinkTag.get(link.id, tag.id)
# p link.tag_id
# @tag = Tag.get(link.tag_id).name
# p Tag.all
redirect '/links'
end
get '/tags/:name' do
@links = Link.all.select do |link|
link.tags.map(&:name).include?(params[:name])
# link.tags.first.name == params[:name]
end
erb :tags
end
end
<file_sep>/spec/features/add_tag_spec.rb
feature 'Adding tag' do
scenario 'tagging link on creation' do
visit '/links/new'
fill_in('title', with: 'Makers Academy')
fill_in('url', with: 'https://makersacademy.com')
fill_in('tags', with: 'Awesome')
click_button 'Add link'
link = Link.first
expect(link.tags.map(&:name)).to include('Awesome')
end
scenario 'adding multiple tags' do
visit '/links/new'
fill_in('title', with: 'Facebook')
fill_in('url', with: 'https://facebook.com')
fill_in('tags', with: 'Social;network;us')
click_button 'Add link'
link = Link.all
p link
expect(link.tags.map(&:name)).to include('Social')
expect(link.tags.map(&:name)).to include('network')
expect(link.tags.map(&:name)).to include('us')
end
end
<file_sep>/config.ru
require_relative 'app/app.rb'
run List
| 2e875dbebb16eb58c45b08f97f8031d324dbee57 | [
"Markdown",
"Ruby"
] | 8 | Ruby | rogrenke/bookmark_manager4 | 9e7315ab5b1e956c1d75f7f991abffbcc6b4f2cf | d0bdd01bf5f643419bfcaf72cbbf052a30a3370e |
refs/heads/master | <file_sep>#include <iostream>
#include <deque>
#include <string>
#include <cmath>
using namespace std;
typedef long long ull;
namespace
{
typedef deque<ull> bigint;
const ull base = 9;
const ull base10 = pow(10, base);
class BigInteger
{
public:
static void print(bigint a)
{
for (ull i = 0; i < a.size(); ++i)
{
int ndigits = a[i] > 0 ? (int) log10 ((double) a[i]) + 1 : 1;
if (ndigits < base && i != 0)
{
for (int j = 0; j < base - ndigits; ++j)
cout << 0;
}
cout << a[i];
}
cout << endl;
}
static bigint str_to_bigint(string str)
{
bigint res;
for (ull i = 0; i < str.length(); i += base)
{
ull shift = i + base;
if (shift > str.length()) shift -= shift - str.length();
string curr_digit_str(str.end() - shift, str.end() - i);
res.push_front(atoi(curr_digit_str.c_str()));
}
return res;
}
static bigint mul(bigint a, bigint b)
{
ull cnt = 0;
bigint res;
for (ull i = b.size() - 1; i >= 0; --i)
{
bigint r = mul(a, b[i]);
for (ull i = 0; i < cnt; ++i) { r.push_back(0); }
res = add(res, r);
cnt++;
}
return res;
}
static bigint mul(bigint a, ull b)
{
bigint res;
ull mem = 0;
for (ull i = a.size() - 1; i >= 0; --i)
{
ull r = a[i] * b + mem;
res.push_front(r % base10);
mem = (r - r % base10) / base10;
}
if (mem != 0) res.push_front(mem);
return res;
}
static bigint add(bigint a, bigint b)
{
if (a.size() < b.size()) while (a.size() != b.size()) { a.push_front(0); }
else if (a.size() > b.size()) while (a.size() != b.size()) { b.push_front(0); }
bigint res;
ull mem = 0;
for (ull i = a.size() - 1; i >= 0; --i)
{
ull r = a[i] + b[i] + mem;
res.push_front(r % base10);
mem = (r - r % base10) / base10;
}
if (mem != 0) res.push_front(mem);
return res;
}
};
}
ull a, b;
bigint biga, bigb;
bigint modified_fib(ull n)
{
for (int i = 0; i < n - 2; ++i)
{
bigint r = BigInteger::add(BigInteger::mul(bigb, bigb), biga);
biga = bigb;
bigb = r;
}
return bigb;
}
int main()
{
cin >> a >> b;
biga.push_back(a);
bigb.push_back(b);
ull N;
cin >> N;
bigint res = modified_fib(N);
BigInteger::print(res);
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
bool isSubsetSum(ll arr[], ll n, ll sum)
{
// The value of subset[i%2][j] will be true
// if there exists a subset of sum j in
// arr[0, 1, ...., i-1]
bool subset[2][sum + 1];
for (ll i = 0; i <= n; i++) {
for (ll j = 0; j <= sum; j++) {
// A subset with sum 0 is always possible
if (j == 0)
subset[i % 2][j] = true;
// If there exists no element no sum
// is possible
else if (i == 0)
subset[i % 2][j] = false;
else if (arr[i - 1] <= j)
subset[i % 2][j] = subset[(i + 1) % 2]
[j - arr[i - 1]] || subset[(i + 1) % 2][j];
else
subset[i % 2][j] = subset[(i + 1) % 2][j];
}
}
return subset[n % 2][sum];
}
int main()
{
ll t;
cin>>t;
while(t--)
{
ll n;
cin>>n;
ll a[n],i,sum=0;
for(i=0;i<n;i++){cin>>a[i];sum+=a[i];}
//cout<<sum<<endl;
if(n==1)cout<<"NO"<<endl;
else if(sum%2==1)cout<<"NO"<<endl;
else{
sum=sum/2;
/*
ll local_sum=0;
sort(a,a+n);
for(i=0;i<n;i++)cout<<a[i]<<" ";
cout<<endl;
i=0;
while(i<n && local_sum<sum ){
local_sum+=a[i];
i++;
}
if(local_sum==sum)
*/if(isSubsetSum(a,n,sum)==true)
cout<<"YES"<<endl;
else cout<<"NO"<<endl;
}
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#include<string.h>
using namespace std;
#define NO_OF_CHARS 256
bool ispalindrome(string str){
size_t len = str.length();
for(int i = 0; i < len/2; i++){
if(str[i] != str[len-1-i]){
return false;
}
}
return true;
}
bool canFormPalindrome(string str)
{
if(ispalindrome(str)){
return true;
}
int len=str.length();
int pos;
int count[NO_OF_CHARS] = {0};
int fake_count=0;
for (int i = 0; str[i]; i++)
count[str[i]]++;
int odd = 0;
for (int i = 0; i < NO_OF_CHARS; i++)
{
if (count[i] & 1)
odd++;
if (odd > 1)
return false;
}
//cout<<len<<" string length"<<endl;
int lmt=(int )len/2;
//cout<<str<<endl;
for (int j=0;j<lmt;j++){
//cout<<str[j]<<" "<<str[len-j-1]<<endl;
if(str[j]!=str[len-j-1] )
{
if(fake_count==1){
//cout<<str[j]<<" "<<exep1<<endl;
string my_string =str;
my_string[pos]=str[j];
my_string[j]=str[pos];
//cout<<my_string<<endl;
if(ispalindrome(my_string))
{
return true;
}
}
pos=j;
++fake_count;
if(fake_count>2)
return false;
}
}
return true;
}
int main()
{
int n;
cin>>n;
char s[100000];
for (int i=0;i<n;i++)
{
cin>>s;
canFormPalindrome(s)? cout << "Yes\n":
cout << "No\n";
}
return 0;
}
<file_sep>#include <iostream>
#include <stack>
#include <string>
int main(){
std::string s,w="";
std::stack <std::string> myStack;
long long int q;
int op,k;
std::cin>>q;
for(int i=0;i<q;i++){
std::cin >> op;
if(op==1){
std::cin>>w;
//Push s into the stack, before performing append
myStack.push(s);
s += w;
}else if(op==2){
std::cin>>k;
//Push s into the stack before removing last k elements
myStack.push(s);
//Remove last k elements
while(k>0){
s.pop_back();
k--;
}
}else if(op==3){
std::cin>>k;
std::cout<<s[k-1]<<std::endl;
}else if(op==4){
s = myStack.top();
myStack.pop();
}
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--){
ll n;
cin>>n;
ll a[n];
unordered_map<ll , ll > hash;
for(ll i=0;i<n;i++){
cin>>a[i];
hash[a[i]]++;
}
bool flag=false;
for(ll i=0;i<n;i++){
if(hash[a[i]]==1){
cout<<a[i]<<endl;
flag=true;
break;
}
}
if(flag==false){
cout<<"0"<<endl;
}
}
return 0;
}
<file_sep>def solve(parenthesis):
stack = []
cur = 0
ret = 0
for i, e in enumerate(parenthesis):
if e == '(':
stack.append(cur)
cur = 0
elif e == ')' and len(stack) > 0:
cur += stack.pop() + 2
ret = max(ret, cur)
elif e == ')' and len(stack) == 0:
cur = 0
return ret
t=int(input())
while(t):
s=input()
x=solve(s)
print(x)
t=t-1
<file_sep>#include <stdio.h>
#include <limits.h>
int minDistance(int dist[], bool sptSet[],int mx)
{
int min = INT_MAX, min_index;
for (int v = 0; v < mx; v++)
if (sptSet[v] == false && dist[v] <= min)
min = dist[v], min_index = v;
return min_index;
}
int printSolution(int dist[], int n,int mx)
{
printf("mxertex Distance from Source\n");
for (int i = 0; i < mx; i++)
printf("%d tt %d\n", i, dist[i]);
}
void dijkstra(int **graph, int src,int mx)
{
int dist[mx];
bool sptSet[mx];
for (int i = 0; i < mx; i++)
dist[i] = INT_MAX, sptSet[i] = false;
dist[src] = 0;
for (int count = 0; count < mx-1; count++)
{
int u = minDistance(dist, sptSet,mx);
sptSet[u] = true;
for (int v = 0; v < mx; v++)
if (!sptSet[v] && graph[u][v] && dist[u] != INT_MAX
&& dist[u]+graph[u][v] < dist[v])
dist[v] = dist[u] + graph[u][v];
}
printSolution(dist, mx,mx);
}
int main()
{
int mx=9;
int graph[mx][mx] = {{0, 4, 0, 0, 0, 0, 0, 8, 0},
{4, 0, 8, 0, 0, 0, 0, 11, 0},
{0, 8, 0, 7, 0, 4, 0, 0, 2},
{0, 0, 7, 0, 9, 14, 0, 0, 0},
{0, 0, 0, 9, 0, 10, 0, 0, 0},
{0, 0, 4, 14, 10, 0, 2, 0, 0},
{0, 0, 0, 0, 0, 2, 0, 1, 6},
{8, 11, 0, 0, 0, 0, 1, 0, 7},
{0, 0, 2, 0, 0, 0, 6, 7, 0}
};
dijkstra(graph, 3,mx);
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
ll sum_subsequence(ll a[],ll n){
ll ans=0;
for(ll i=0;i<n;i++)ans+=a[i];
return (ans*pow(2,n-1));
}
int main()
{
ll t;
cin>>t;
while(t--)
{
string s;
cin>>s;
ll a[10000];
ll n=s.length();
for(ll i=0;i<n;i++)a[i]=(int)s[i]-'0';
cout<<sum_subsequence(a,n)<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
vector<long long int> prime_factors(long long int n,ll mynum, ll rem){
ll pos=mynum*mynum;
vector<long long int> prime_factor_list;
if(n%2==0){
if(pos%2==rem)prime_factor_list.push_back(2);
}
while(n%2==0){
n=n/2;
}
for(int i=3;i<=sqrt(n);i=i+2){
while(n%i==0){
if(pos%i==rem)prime_factor_list.push_back(i);
n=n/i;
}
}
if(n>2){
if(pos%n==rem)prime_factor_list.push_back(n);
}
return prime_factor_list;
}
int main()
{
string y;
tc{
ll mynum=31623;
ll rem;
cout<<"1"<<" "<<mynum<<endl;
fflush(stdout);
cin>>rem;
ll val=(mynum*mynum)-rem;
vector<ll>plist=prime_factors(val,mynum,rem);
//sort(plist.begin(),plist.end(),greater<ll>());
ll snum=10000007;
ll rem2;
cout<<1<<" "<<snum<<endl;
fflush(stdout);
cin>>rem2;
ll calc=(snum*snum);
vector<ll>final;
for(ll ele : plist){
if(calc % ele ==rem2){
final.push_back(ele);
break;
}
}
if(final.size()==1){
cout<<"2"<<" "<<final[0]<<endl;
fflush(stdout);
cin>>y;
}
else if(final.size()>1)cerr<<"wrong approach"<<endl;
if(y=="NO")return 0;
}
return 0;
}<file_sep>#include <bits/stdc++.h>
using namespace std;
vector<int> bellmanFord(int n,int source, vector<pair<int, int> > G[]) {
int INF = (int) 1e9;
vector<int> D(n, INF);
D[source]=0;
for(int i=0; i<n-1; i++) {
for(int u=0; u<n; u++) {
for(auto edge: G[u]) {
int v = edge.first, w = edge.second;
if(D[u]!=INF)
D[v] = min(D[v], D[u] + w);
}
}
}
//To find if a negative cycle exists.
for(int u=0; u<n; u++) {
for(auto edge: G[u]) {
int v = edge.first, w = edge.second;
if(D[u]!=INF and D[v] > D[u] + w) {
//Negative Cycle exists!!
assert(0);
}
}
}
return D;
}
int main(){
int n,m,s,x,y,z;
cin>>n>>m>>s; //Input the number of nodes(0 based), number of edges and the source vertex.
vector<pair<int,int> > *G=new vector<pair<int,int> >[n];
vector<int>ans;
for(int i=0;i<m;i++){
cin>>x>>y>>z; //Input the starting vertex of the edge, the ending vertex and the cost of the edge.
G[x].push_back(make_pair(y,z));
}
ans = bellmanFord(n,s,G); //ans has the cost from source to all the vertices.
for(int i=0;i<n;i++)
cout<<ans[i]<<" ";
cout<<endl;
}
<file_sep>#include <bits/stdc++.h>
#define INF 1000000000
using namespace std;
int main(){
int m,s,x,y,z,n;
cin>>n>>m>>s; //Input the number of nodes(0 based), number of edges and the source vertex.
int G[n][n];
for(int i=0;i<n;i++)
for(int j=0;j<n;j++){
if(i==j)
G[i][j]=0;
else
G[i][j]=INF;
}
for(int i=0;i<m;i++){
cin>>x>>y>>z; //Input the starting vertex of the edge, the ending vertex and the cost of the edge.
G[x][y]=z;
}
//Code for Floyd Warshall which computes all pair shortest path.
for(int k=0; k<n; k++) {
for(int i=0; i<n; i++) {
for(int j=0; j<n; j++) {
G[i][j] = min(G[i][j], G[i][k] + G[k][j]);
}
}
}
for(int i=0;i<n;i++){
for(int j=0;j<n;j++)
cout<<G[i][j]<<" ";
cout<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
ll a[100001];
int binarySearch(int low,int high,int key)
{
//for sorted arrays
//Ascending order
while(low<=high)
{
int mid=(low+high)/2;
if(a[mid]<key)low=mid+1;
else if(a[mid]>key)high=mid-1;
else return mid;
}
return -1;
}
int revBinarySearch(int low,int high,int key)
{
// for reverse sorted arrays
//Descending order
while(low<=high)
{
int mid=(low+high)/2;
if(a[mid]<key)high=mid-1;
else if(a[mid]>key)low=mid+1;
else return mid;
}
return -1;
}
int main()
{
FIO
ll n;
cin>>n;
ll i;
for(i=0;i<n;i++)cin>>a[i];
ll q;
cin>>q;
for(i=0;i<q;i++){
ll key;
cin>>key;
if(a[0]<a[n-1])
cout<<binarySearch(0,n,key)+1<<endl;
else
cout<<n-revBinarySearch(0,n-1,key)<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int main()
{
FIO
tc{
map<string,ll,ll>points;
map<string,ll,ll>::iterator it;
string a,b,d;
ll ap,bp;
ll i;
for(i=0;i<12;i++){
cin>>a>>ap>>d>>bp>>b;
ll pa,pb;
if(a>b){pa=3;pb=0;}
else if(a==b){pa=1;pb=1;}
else {pa=0;pb=3;}
it=points.find(a);
if(it==points.end())points.insert({a,pa,(ap-bp)});
else points.at(a)=(points.find(a)->second)+pa;
it=points.find(b);
if(it==points.end())points.insert({b,pb});
else points.at(b)=(points.find(b)->second)+pb;
it=goaldif.find(a);
if(it==goaldif.end())points.insert({a,ap-bp});
else goaldif.at(a)=(goaldif.find(a)->second)+(ap-bp);
it=goaldif.find(b);
if(it==goaldif.end())points.insert({a,bp-ap});
else goaldif.at(b)=(goaldif.find(b)->second)+(bp-ap);
}
ll mp=-1;
ll mg=-1;
string sa,sb;
ll wpa,wpb;
ll gpa,gpb;
for(it=points.begin();it!=points.end();++it){
if(it->second>mp){mp=it->second;sa=it->first;}
}
wpa=mp;
it=points.find(sa);
points.erase(it);
mp=-1;
for(it=points.begin();it!=points.end();++it){
if(it->second>mp){mp=it->second;sb=it->first;}
}
wpb=mp;
if(wpa!=wpb)cout<<sa<<" "<<sb<<endl;
else {
cout<<"sorry";
}
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
using namespace std;
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
ll digits(ll n){
ll res=0;
while(n>0){
n=n/10;
res+=1;
}
return res;
}
ll query(ll num,ll l, ll r){
ll res=0;
if(num==2){
ll a[10]={1,0,1,0,1,0,1,0,1,0};
for(ll i=l;i<=r;i++)res+=a[i];
return res;
}
else if(num==3){
ll b[10]={1,0,0,1,0,0,1,0,0,1};
for(ll i=l;i<=r;i++)res+=b[i];
return res;
}
else if(num==6){
ll c[10]={1,0,0,0,0,0,1,0,0,0};
for(ll i=l;i<=r;i++)res+=c[i];
return res;
}
else return 0;
}
int main()
{
FIO;
{
ll l,r;
cin>>l>>r;
ll d;
ll count =0;
ll i;
ll temp;
bool lflag=true;
bool rflag=true;
ll fnum=0,snum=0;
//from 0 to i digit
ll two[10]={5,4,4,3,3,2,2,1,1,0};
ll three[10]={4,3,3,3,2,2,2,1,1,1};
ll five[10]={1,1,1,1,1,1,0,0,0,0};
ll six[10]={2,1,1,1,1,1,1,0,0,0};
ll seven[10]={1,1,1,1,1,1,1,1,0,0};
//from i to 9 digit
ll two_[10]={1,1,2,2,3,3,4,4,5,5};
ll three_[10]={1,1,1,2,2,2,3,3,3,4};
ll five_[10]={0,0,0,0,0,1,1,1,1,1};
ll six_[10]={1,1,1,1,1,1,2,2,2,2};
ll seven_[10]={0,0,0,0,0,0,0,1,1,1};
if(l<10)count=10-l,l=10;
else {
ll ld=digits(l);
ll rd=digits(r);
ll larray[ld];
ll rarray[rd];
//create an array of numbers
ll val=l;
for(i=0;i<ld;i++){
d=val%10;
larray[ld-i-1]=d;
val=val/10;
}
val=r;
for(i=0;i<rd;i++){
d=val%10;
rarray[rd-i-1]=d;
val=val/10;
}
if(rd==18)r=r-1,rd=rd-1;
if(ld!=rd){
ll llimit,rlimit;
//calclate llmiit and rlimit
//till l+1 digit to r-1 digit count PR numbers
for(i=ld+1;i<=rd-1;i++){
//check if i should be equal or less than rd
count+=(two[1]*pow(5,i-1));
count+=(three[1]*pow(4,i-1));
count-=(six[1]*pow(2,(i-1)));
count+=(five[1]);
count+=seven[1];
}
cout<<count<<endl;
}
else {
ll pos;
for(i=0;i<ld;i++){
if(larray[i]==rarray[i])continue;
else {pos=i;break;}
}
temp=query(2,larray[pos],rarray[pos]);
if(temp!=0){
if(temp>2){count+=((temp-2)*pow(5,(ld-pos-1)));temp=2;}
else if(temp==1 && larray[pos]%2==1 && rarray[pos]%2==1 ){count+=(pow(5,(ld-pos-1)));rflag=false;lflag=false;}
else if(temp==1 && larray[pos]%2==1 && rarray[pos]%2==0)lflag=false;
else if(temp==1 && larray[pos]%2==0 && rarray[pos]%2==1)rflag=false;
else if(temp==2 && larray[pos]%2==1 && rarray[pos]%2==1){count+=(2*pow(5,(ld-pos-1)));lflag=false;rflag=false;}
else if(temp==2 && larray[pos]%2==1 && rarray[pos]%2==0){count+=(pow(5,(ld-pos-1)));lflag=false;}
else if(temp==2 && larray[pos]%2==0 && rarray[pos]%2==1){count+=(pow(5,(ld-pos-1)));rflag=false;}
//else if(temp>2 && larray[pos]%2==1 && rarray[pos]%2==1){count+=(2*pow(5,(ld-pos-1)));lflag=false;rflag=false;}
//else if(temp>2 && larray[pos]%2==1 && rarray[pos]%2==0){count+=(pow(5,(ld-pos-1)));lflag=false;}
//else if(temp>2 && larray[pos]%2==0 && rarray[pos]%2==1){count+=(pow(5,(ld-pos-1)));rflag=false;}
for(i=pos+1;i<ld;i++){
if(lflag==true){
//do left operation
temp=query(2,larray[i],9);
if(larray[i]%2!=0){
count+=(temp*pow(5,(ld-i-1)));
lflag=false;
}
else count+=((temp-1)*pow(5,(ld-i-1)));
}
if(rflag==true){
//do right operation
temp=query(3,0,rarray[i]);
if(rarray[i]%2!=0){
count+=(temp*pow(5,(ld-i-1)));
rflag=false;
}
else count+=((temp-1)*pow(5,(ld-i-1)));
}
}
if(lflag==true)count+=1;
if(rflag==true)count+=1;
}
lflag=true;rflag=true;
temp=query(3,larray[pos],rarray[pos]);
if(temp!=0){
if(temp>2){count+=((temp-2)*pow(4,(ld-pos-1)));temp=2;}
else if(temp==1 && larray[pos]%3!=0 && rarray[pos]%3!=0){count+=(pow(4,(ld-pos-1)));lflag=false;rflag=false;}
else if(temp==1 && larray[pos]%3!=0 && rarray[pos]%3==0)lflag=false;
else if(temp==1 && larray[pos]%3==0 && rarray[pos]%3!=0)rflag=false;
else if(temp==2 && larray[pos]%3!=0 && rarray[pos]%3!=0){count+=(2*pow(4,(ld-pos-1)));lflag=false;rflag=false;}
else if(temp==2 && larray[pos]%3!=0 && rarray[pos]%3==0){count+=(pow(4,(ld-pos-1)));lflag=false;}
else if(temp==2 && larray[pos]%3==0 && rarray[pos]%3!=0){count+=(pow(4,(ld-pos-1)));rflag=false;}
for(i=pos+1;i<ld;i++){
if(lflag==true){
temp=query(3,larray[i],9);
if(larray[i]%3!=0){
count+=(temp*pow(4,(ld-i-1)));
lflag=false;
}
else count+=((temp-1)*pow(4,(ld-i-1)));
}
if(rflag==true){
temp=query(3,0,rarray[i]);
if(rarray[i]%3!=0){
count+=(temp*pow(4,(ld-i-1)));
rflag=false;
}
else count+=((temp-1)*pow(4,(ld-i-1)));
}
}
if(lflag==true)count+=1;
if(rflag==true)count+=1;
}
lflag=true;rflag=true;
temp=query(6,larray[pos],rarray[pos]);
if(temp!=0){
if(temp==2 && larray[pos]%6==0 && rarray[pos]%6!=0){count-=(pow(2,(ld-i-1)));rflag=false;}
else if(temp==1 && larray[pos]%6!=0 && rarray[pos]%6!=0){count-=(pow(2,(ld-i-1)));rflag=false;lflag=false;}
else if(temp==1 && larray[pos]%6!=0 && rarray[pos]%6==0)lflag=false;
else if(temp==1 && larray[pos]%6==0 && rarray[pos]%6!=0)rflag=false;
for(i=pos+1;i<ld;i++){
if(lflag==true){
temp=query(6,larray[i],9);
if(larray[i]%6!=0){
count-=(temp*pow(2,(ld-i-1)));
lflag=false;
}
else count-=((temp-1)*pow(2,ld-i-1));
}
if(rflag==true){
temp=query(6,0,rarray[i]);
if(rarray[i]%6==0){
count-=(temp*pow(2,(ld-i-1)));
rflag=false;
}
else count-=((temp-1)*pow(2,(ld-i-1)));
}
}
if(lflag==true)count-=1;
if(rflag==true)count-=1;
}
for(i=0;i<ld;i++){
fnum+=(5*pow(10,i));
}
if(fnum>=l && fnum<=r)count+=1;
for(i=0;i<ld;i++){
snum+=(7*pow(10,i));
}
if(snum>=l && snum<=r)count+=1;
cout<<count<<endl;
}
}
}
return 0;
}<file_sep>#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
long long iNum = 0;
void cntInv(vector<int>& a, vector<int>& b, int l, int r){
if(r - l < 2)
return;
int mid = (l + r) / 2;
cntInv(b, a, l, mid);
cntInv(b, a, mid, r);
int i = mid - 1;
int j = r - 1;
int k = r - 1;
while(i >= l && j >= mid){
if(a[j] >= a[i])
b[k--] = a[j--];
else{
iNum += j - mid + 1;
b[k--] = a[i--];
}
}
while(i >= l){
b[k--] = a[i--];
}
while(j >= mid){
b[k--] = a[j--];
}
}
int main() {
int T;
cin >> T;
while(T--){
vector<int> a;
int n;
cin >> n;
for(int i = 0; i < n; ++i){
int num;
cin >> num;
a.push_back(num);
}
vector<int> b(a);
iNum = 0;
cntInv(a, b, 0, a.size());
cout << iNum << endl;
}
return 0;
}
<file_sep>int main() {
int N;
cin >> N;
vector <int> s;
vector <int> max;
max.push_back(0);
while (N--) {
int q;
cin >> q;
if (q==1) {
int x;
cin >> x;
s.push_back(x);
if ((x>=max.back())) max.push_back(x);
}
else if (q==2) {
if (s.back()==max.back()) max.pop_back();
s.pop_back();
}
else cout << max.back() << endl;
}
return 0;
}
//code which i tried
/*
class stack{
int *arr;
int top;
//int prev_max;
//int prev_min;
int max;
int min;
public:
stack(int size=SIZE);
int peak();
void push(int );
void pop();
}
stack::stack(int size){
arr=new int[size];
top=-1;
max=0;
min=0;
}
void stack::push(int x){
top=top+1;
arr[top]=x;
if(x>max){
max=x;
}
if(x<min){
min=x;
}
//top=top+1;
}
void stack::pop(){
delete arr;
top=top-1;
//return(arr[top--]);
}
int stack::peak(){
return(arr[top]);
}
*/
<file_sep>#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <unordered_set>
#include <cmath>
#define nfs ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define ll long long int
#define pr 1000000007
#define pb push_back
#define lim 100000
using namespace std;
int freq[20][100001],part[20][100001]; ll ans[100001],fans=0;
int main()
{
nfs;
int i,j,n,m,inp,k;
cin>>n>>m;
for(i=0;i<n;i++)
for(j=0;j<m;j++){
cin>>inp;
freq[i][inp]++;
}
for(j=lim;j;j--){
ll tmp=1,tmp2=1;
for(i=0;i<n;i++){
for(k=j;k<=lim;k+=j)
part[i][j] += freq[i][k];
tmp += part[i][j];
part[i][j]++;
tmp2 = (tmp2*part[i][j])%pr;
// cout<<i<<" "<<j<<" "<<part[i][j]<<endl;
}
ans[j] = (tmp2 + (pr - tmp)%pr)%pr;
for(k=2*j;k<=lim;k+=j) ans[j] = (ans[j] + (pr - ans[k])%pr)%pr;
fans = (fans + (ans[j]*j)%pr)%pr;
}
cout<<fans<<"\n";
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
ll prime_factors(long long int n,ll backup){
ll max=1;
if(n%2==0)max=2;
while(n%2==0){
n >>= 1;
}
for(int i=3;i<=sqrt(n);i=i+2){
while(n%i==0){
if(i>backup)return i;
n=n/i;
}
}
if(n>2){
if(n>max)max=n;
}
return max;
}
int main()
{
FIO
tc
{
ll n;
cin>>n;
ll res=prime_factors((n+1),n);
//cout<<sum;
if(n==1)cout<<"YES"<<endl;
else if(n==2)cout<<"NO"<<endl;
else if(n==3)cout<<"YES"<<endl;
else if(res>n)cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
//int diff(int ,int);
int diff(int i,int j){
if(i>j)return (26-i+j);
else return (j-i);
}
int main() {
string s;
int k,i,j;
bool flag=false;
char start='a';
cin>>s;
cin>>k;
int len=s.length();
map<char,int >c;
for(i=1;i<27;i++){
c[start+i-1]=i;
//c.insert(pair<char,int>(start+i-1,i));
}
int a[len-1][2];
for(i=0;i<len;i++){
int temp1=c[s[i]];
int temp2=c[s[i+1]];
a[i][0]=diff(temp1,temp2);
a[i][1]=0;
}
for(j=0;j<k;j++){
int max=0;
int pos=0;
for(i=0;i<len-1;i++){
if(a[i][0]>=max && a[i][1]==0){
max=a[i][0];
pos=i;
}
}
a[pos][1]=1;
//cout<<a[pos][0]<<" ";
}
//cout<<endl;
int val=0;
int sum=0;
for(i=len-1;i>=0;i--){
if(a[i][1]==0){
//flag=false;
sum=sum+a[i][0]+val;
val=val+1;
}
else if(a[i][1]==1){
//flag=true;
val=0;
}
}
/*for(i=0;i<len-1;i++)cout<<a[i][0]<<" ";
cout<<endl;
for(j=0;j<len-1;j++)cout<<a[j][1]<<" ";
cout<<endl;*/
cout<<sum;
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
vector<int>soldiers;
int tent[1001][1001];
bool visited[1001][1001];
int n ,m;
void bfs(int i ,int j){
int counter=1;
queue<pair<int,int>>q;
int x,y;
int mx[8]={-1,0,1,-1,1,-1,0,1};
int my[8]={-1,-1,-1,0,0,1,1,1};
q.push(make_pair(i,j));
visited[i][j]=true;
while(!q.empty()){
int x=q.front().first;
int y=q.front().second;
q.pop();
for(int l=0;l<8;l++){
int tx=x+mx[l];
int ty=y+my[l];
if(tx<0 || ty <0)continue;
if(tx>=n || ty>= m)continue;
else if(visited[tx][ty]==false && tent[tx][ty]==1){
counter+=1;
q.push(make_pair(tx,ty));
visited[tx][ty]=true;
}
}
}
soldiers.push_back(counter);
}
int main()
{
FIO
{
tc{
cin>>n>>m;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
cin>>tent[i][j];
}
}
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
visited[i][j]=false;
}
}
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
if(visited[i][j]==false && tent[i][j]==1){
bfs(i,j);
}
}
}
int max_ele=0;
for(int ele : soldiers){
if(ele>max_ele)max_ele=ele;
}
cout<<soldiers.size()<<" "<<max_ele<<endl;
soldiers.clear();
}
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
int main()
{
FIO
{
tc{
string s;
cin>>s;
int n=s.length();
int count=0;
bool high=false;
bool low=false;
bool flag=false;
int l=0;int r=0;
for(int i=0;i<n;i++){
if(s[i]=='(' && flag==false){flag=true;l=1;r=0;}
else if(s[i]=='(' && flag==true){l=l+1;r=0;}
else if(s[i]==')' && flag==false){l=l-1;r=r+1;
if(l<0){l=0;r=0;}
if(r>count)count=r;
}
else if(s[i]==')' && flag==true){flag=false;l=l-1;r=r+1;if(r>count)count=r;}
//if(s[i]=='(' && high==false){high=true;low=false;}
}
cout<<count*2<<endl;
}
}
return 0;
}
<file_sep>void levelOrder(Node* root)
{
int level=0;
Node *cur=root;
queue<Node*>q;
q.push(cur);
q.push(NULL);
while(q.size()!=1){
cur=q.front();
q.pop();
if(cur!=NULL){
cout<<cur->data<<" ";
}
else if(cur==NULL){
cout<<'$'<<" ";
q.push(NULL);
continue;
}
if(cur->left)q.push(cur->left);
if(cur->right)q.push(cur->right);
}
cout<<'$';
}
//to print level order sum in binary tree
void levelOrder(Node* root)
{
vector<int >res;
int sum=0;
int level=0;
Node *cur=root;
queue<Node*>q;
q.push(cur);
q.push(NULL);
while(q.size()!=1){
cur=q.front();
q.pop();
if(cur!=NULL){
sum+=cur->data;
cout<<cur->data<<" ";
}
else if(cur==NULL){
res.push_back(sum);
sum=0;
cout<<'$'<<" ";
q.push(NULL);
continue;
}
if(cur->left)q.push(cur->left);
if(cur->right)q.push(cur->right);
}
res.push_back(sum);
cout<<'$';
cout<<endl;
for(int ele : res)cout<<ele<<" ";
cout<<endl;
}
<file_sep>#include <iostream>
#include <cmath>
#include <vector>
#include <set>
using namespace std;
int main() {
vector<int> primes;
primes.push_back(2);
for (int i = 3; i <= 32000; i+=2) {
bool isprime = true;
int cap = sqrt(i) + 1;
vector<int>::iterator p;
for (p = primes.begin(); p != primes.end(); p++) {
if (*p >= cap) break;
if (i % *p == 0) {
isprime = false;
break;
}
}
if (isprime) primes.push_back(i);
}
int T,N,M;
cin >> T;
for (int t = 0; t < T; t++) {
//if (t) cout << endl;
cin >> M >> N;
if (M < 2) M = 2;
int cap = sqrt(N) + 1;
set<int> notprime;
notprime.clear();
vector<int>::iterator p;
for (p = primes.begin(); p != primes.end(); p++) {
if (*p >= cap) break;
int start;
if (*p >= M) start = (*p)*2;
else start = M + ((*p - M % *p) % *p);
for (int j = start; j <= N; j += *p) {
notprime.insert(j);
}
}
for (int i = M; i <= N; i++) {
if (notprime.count(i) == 0) {
cout << i << endl;
}
}
cout<<endl;
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
void solve(){
string str;
cin>>str;
regex r("1[0]+1");
smatch m;
int count=0;
while(regex_search(str,m,r)) // this function is searching for the regular expression in the string
{
int index=m.position(0)+m.length()-1;// for this case 10101 (answer should be 2 in this case)
str=str.substr(index); // after firstmatch we need to start our next search from index 2
++count; //increment the counter every times a string matches with regular expression
}
cout<<count<<"\n";
}
int main()
{
int t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int main()
{
tc{
int n;
int result=0;
cin>>n;
vector<int > a(n,0);
loop(i,0,n)
{
cin >> a[i];
}
cout<<result<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
struct Node {
int data;
Node *next;
Node(int x){
data=x;
next=NULL;
}
};
void print(Node *head){
Node *cur=head;
while(cur!=NULL){
cout<<cur->data<<" ";
cur=cur->next;
}
cout<<endl;
}
Node *evenodd(Node *head){
Node *cur=head;
Node *even=NULL;
Node *odd=NULL;
Node *etail=NULL;
Node *otail=NULL;
while(cur!=NULL){
if(cur->data%2==0){
//even
if(even==NULL){even=cur;cur=cur->next;even->next=NULL;etail=even;}
else {
etail->next=cur;
etail=cur;
cur=cur->next;
etail->next=NULL;
}
}
else {
//odd
if(odd==NULL){odd=cur;cur=cur->next;odd->next=NULL;otail=odd;}
else {
otail->next=cur;
otail=cur;
cur=cur->next;
otail->next=NULL;
}
}
}
if(odd==NULL)return even;
if(even==NULL)return odd;
else {
etail->next=odd;
return even;
}
}
int main()
{
int t;
cin>>t;
while(t--)
{
Node *head=NULL;
Node *cur=head;
int n;
cin>>n;
int x;
while(n--){
cin>>x;
if(cur==NULL){
head=new Node(x);
cur=head;
}
else {
Node *new_node=new Node(x);
cur->next=new_node;
cur=new_node;
}
}
//print(head);
Node *res=evenodd(head);
print(res);
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
bool valid(char ch) {
if(tolower(ch)>='a' && tolower(ch)<='z') return 1;
if(ch>='0' && ch<='9') return 1;
return 0;
}
bool check(string s) {
int n = s.size();
int i = 0, j= n-1;
while(i < j) {
if(s[i] != s[j]) return 0;
i++; j--;
}
return 1;
}
int main()
{
//code
int t;
cin>>t;
cin.ignore();
while(t--) {
string s;
getline(cin, s);
string res;
for(int i=0;i<s.size();i++) {
if(valid(s[i])) {
res += tolower(s[i]);
}
}
cout<<(check(res) ? "YES\n" : "NO\n");
}
return 0;
}
<file_sep>#include <stdio.h>
#include <stdlib.h>
/* a node of the doubly linked list */
struct Node
{
int data;
struct Node *next;
struct Node *prev;
};
/* Function to delete a node in a Doubly Linked List.
head_ref --> pointer to head node pointer.
del --> pointer to node to be deleted. */
void deleteNode(struct Node **head_ref, struct Node *del)
{
/* base case */
if(*head_ref == NULL || del == NULL)
return;
/* If node to be deleted is head node */
if(*head_ref == del)
*head_ref = del->next;
/* Change next only if node to be deleted is NOT the last node */
if(del->next != NULL)
del->next->prev = del->prev;
/* Change prev only if node to be deleted is NOT the first node */
if(del->prev != NULL)
del->prev->next = del->next;
/* Finally, free the memory occupied by del*/
free(del);
return;
}
/* UTILITY FUNCTIONS */
/* Function to insert a node at the beginning of the Doubly Linked List */
void push(struct Node** head_ref, int new_data)
{
/* allocate node */
struct Node* new_node =
(struct Node*) malloc(sizeof(struct Node));
/* put in the data */
new_node->data = new_data;
/* since we are adding at the begining,
prev is always NULL */
new_node->prev = NULL;
/* link the old list off the new node */
new_node->next = (*head_ref);
/* change prev of head node to new node */
if((*head_ref) != NULL)
(*head_ref)->prev = new_node ;
/* move the head to point to the new node */
(*head_ref) = new_node;
}
/* Function to print nodes in a given doubly linked list
This function is same as printList() of singly linked lsit */
void printList(struct Node *node)
{
while(node!=NULL)
{
printf("%d ", node->data);
node = node->next;
}
}
/* Drier program to test above functions*/
int main()
{
/* Start with the empty list */
struct Node* head = NULL;
/* Let us create the doubly linked list 10<->8<->4<->2 */
push(&head, 2);
push(&head, 4);
push(&head, 8);
push(&head, 10);
printf("\n Original Linked list ");
printList(head);
/* delete nodes from the doubly linked list */
deleteNode(&head, head); /*delete first node*/
deleteNode(&head, head->next); /*delete middle node*/
deleteNode(&head, head->next); /*delete last node*/
/* Modified linked list will be NULL<-8->NULL */
printf("\n Modified Linked list ");
printList(head);
getchar();
}
#include <stdio.h>
#include <stdlib.h>
/*
* Basic structure of Node
*/
struct node {
int data;
struct node * prev;
struct node * next;
}*head, *last;
/*
* Functions used in this program
*/
void createList(int n);
void displayList();
void deleteFromBeginning();
void deleteFromEnd();
void deleteFromN(int position);
int main()
{
int n, data, choice=1,left_val=0,right_val=0;
head = NULL;
last = NULL;
scanf("%d",&n);
createList(n);
displayList();
while(head!=NULL && last!=NULL){
if(head->data>last->data){
left_val=left_val+head->data;
deleteFromBeginning();
}
else{
left_val=left_val+last->data;
deleteFromEnd();
}
if(head->data>last->data){
right_val=right_val+head->data;
deleteFromBeginning();
}
else{
right_val=right_val+last->data;
deleteFromEnd();
}
}
if(left_val>right_val)
printf("%d",left_val);
else
printf("%d",right_val);
displayList();
//deleteFromBeginning();
//deleteFromEnd();
//deleteFromN(1);
//displayList();
printf("\n\n\n\n\n");
return 0;
}
void createList(int n)
{
int i, data;
struct node *newNode;
if(n >= 1)
{
/*
* Creates and links the head node
*/
head = (struct node *)malloc(sizeof(struct node));
//printf("Enter data of 1 node: ");
scanf("%d", &data);
head->data = data;
head->prev = NULL;
head->next = NULL;
last = head;
for(i=2; i<=n; i++)
{
newNode = (struct node *)malloc(sizeof(struct node));
//printf("Enter data of %d node: ", i);
scanf("%d", &data);
newNode->data = data;
newNode->prev = last; // Link new node with the previous node
newNode->next = NULL;
last->next = newNode; // Link previous node with the new node
last = newNode; // Make new node as last node
}
//printf("\nDOUBLY LINKED LIST CREATED SUCCESSFULLY\n");
}
}
void displayList()
{
struct node * temp;
int n = 1;
if(head == NULL)
{
printf("List is empty.\n");
}
else
{
temp = head;
printf("DATA IN THE LIST:\n");
while(temp != NULL)
{
printf("DATA of %d node = %d\n", n, temp->data);
n++;
/* Move the current pointer to next node */
temp = temp->next;
}
}
}
void deleteFromBeginning()
{
struct node * toDelete;
if(head == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = head;
head = head->next; // Move head pointer to 2 node
head->prev = NULL; // Remove the link to previous node
free(toDelete); // Delete the first node from memory
printf("SUCCESSFULLY DELETED NODE FROM BEGINNING OF THE LIST.\n");
}
}
void deleteFromEnd()
{
struct node * toDelete;
if(last == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = last;
last = last->prev; // Move last pointer to 2nd last node
last->next = NULL; // Remove link to of 2nd last node with last node
free(toDelete); // Delete the last node
printf("SUCCESSFULLY DELETED NODE FROM END OF THE LIST.\n");
}
}
void deleteFromN(int position)
{
struct node *current;
int i;
current = head;
for(i=1; i<position && current!=NULL; i++)
{
current = current->next;
}
if(position == 1)
{
deleteFromBeginning();
}
else if(current == last)
{
deleteFromEnd();
}
else if(current != NULL)
{
current->prev->next = current->next;
current->next->prev = current->prev;
free(current); // Delete the n node
printf("SUCCESSFULLY DELETED NODE FROM %d POSITION.\n", position);
}
else
{
printf("Invalid position!\n");
}
}
<file_sep>#include <deque>
#include <iostream>
using namespace std;
void showdq(deque <int> g)
{
deque <int> :: iterator it;
for (it = g.begin(); it != g.end(); ++it)
cout << '\t' << *it;
cout << '\n';
}
// A Dequeue (Double ended queue) based method for printing maximum element of
// all subarrays of size k
void printKMax(int arr[], int n, int k)
{
// Create a Double Ended Queue, Qi that will store indexes of array elements
// The queue will store indexes of useful elements in every window and it will
// maintain decreasing order of values from front to rear in Qi, i.e.,
// arr[Qi.front[]] to arr[Qi.rear()] are sorted in decreasing order
std::deque<int> Qi(k);
/* Process first k (or first window) elements of array */
int i;
for (i = 0; i < k; ++i) {
// For every element, the previous smaller elements are useless so
// remove them from Qi
while ((!Qi.empty()) && arr[i] >= arr[Qi.back()])
Qi.pop_back(); // Remove from rear
// Add new element at rear of queue
Qi.push_back(i);
}
// Process rest of the elements, i.e., from arr[k] to arr[n-1]
for (; i < n; ++i) {
// The element at the front of the queue is the largest element of
// previous window, so print it
cout << arr[Qi.front()] << " ";
showdq(Qi);
// Remove the elements which are out of this window
while ((!Qi.empty()) && Qi.front() <= i - k)
Qi.pop_front(); // Remove from front of queue
showdq(Qi);
// Remove all elements smaller than the currently
// being added element (remove useless elements)
while ((!Qi.empty()) && arr[i] >= arr[Qi.back()])
Qi.pop_back();
showdq(Qi);
// Add current element at the rear of Qi
Qi.push_back(i);
showdq(Qi);
}
// Print the maximum element of last window
cout << arr[Qi.front()];
}
// Driver program to test above functions
int main()
{
int arr[] = { 1,2,3,10,4,5,2,3,6};
int n = sizeof(arr) / sizeof(arr[0]);
int k = 3;
printKMax(arr, n, k);
return 0;
}
<file_sep>#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main() {
int n,i,j;
int arr[10][10];
int count=0;
max_count=0;
int max_sum=0;
int *p,*q;
scanf("%d",&n);
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&arr[i][j]);
if(arr[i][j])
max_count+=1;
}
}
for(i=0;i<n-1;i++){
for(j=0;j<n-1;j++){
if(arr[i][j]==1){
max_sum=arr[i-1][j-1]+
}
}
}
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
return 0;
}
<file_sep>Node* sortedMerge(Node* head1, Node* head2)
{
if(head1==NULL)return head2;
if(head2==NULL)return head1;
Node *cur1=head1;
Node *cur2=head2;
Node *returnval;
Node *temp;
if(cur1->data<cur2->data){returnval=cur1;}
else {returnval=cur2;}
while(cur1!=NULL && cur2!=NULL){
if(cur1->data<cur2->data){
while(cur1->data<cur2->data){
temp=cur1;
cur1=cur1->next;
if(cur1==NULL)break;
}
temp->next=cur2;
}
else {
while(cur2->data<cur1->data){
temp=cur2;
cur2=cur2->next;
if(cur2==NULL)break;
}
temp->next=cur1;
}
}
return returnval;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
const int MAX = 1e4+5;
int id[MAX] ,nodes,edges;
pair <long ,pair<int,int> > p[MAX];
void initialize(){
for(int i=0;i<MAX;i++)
id[i] = i;
}
int root(int x){
while(id[x]!=x){
id[x] = id[id[x]];
x = id[x];
}
return x;
}
void union1(int x,int y){
int p = root(x);
int q = root(y);
id[p] = id[q];
}
long Kruskal(pair <long ,pair<int,int> > p[]){
int x,y;
long cost,minimumCost = 0;
for(int i=0;i<edges;i++){
x = p[i].second.first;
y = p[i].second.second;
cost = p[i].first;
if(root(x)!=root(y)){
minimumCost += cost;
union1(x,y);
}
}
return minimumCost;
}
int main(void){
int x,y;
long weight,cost,minimumCost;
initialize();
cin>>nodes>>edges;
for(int i=0;i<edges;i++){
cin>>x>>y>>weight;
p[i] = make_pair(weight,make_pair(x,y));
}
sort(p,p+edges);
minimumCost = Kruskal(p);
cout<<minimumCost<<endl;
return 0;
}
<file_sep>#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <limits.h>
using namespace std;
// Prim's Algorithm is a greedy node-based algorithm that finds a MST (minimum spanning tree) in a graph
// Description of Algorithm:
// 1. Begin with a set of visited nodes that originally only contains the starting node
// 2. Iterate over the set of visited nodes and find the minimum weighted edge connecting a visited node with an unvisited node
// 3. Add the unvisited node to the set of visited nodes and add the weight of the edge to the size of the MST
// 4. Repeat step 2-3 until there are no longer any unvisited nodes
// Total runtime: Current implementation is O(V^3) but we can reduce this significantly
// We can get it down to O(V^2) using a more clever way to store the solved vertices
// We can get it down to O(ElogV) using a fibonacci heap + adjacency list
// See: http://www.geeksforgeeks.org/greedy-algorithms-set-5-prims-minimum-spanning-tree-mst-2/ for more details
int main() {
int N, M, S;
cin>>N>>M;
// Initialize graph
int **adjacency_matrix = new int*[N];
for(int i = 0; i < N; i++) {
adjacency_matrix[i] = new int[N];
for(int j = 0; j < N; j++) {
adjacency_matrix[i][j] = -1;
}
}
for(int i = 0; i < M; i++) {
int x, y, r;
cin>>x>>y>>r;
if(adjacency_matrix[x-1][y-1] != -1) {
// In case of an existing edge, choose the edge with a smaller weight
if(r < adjacency_matrix[x-1][y-1]) {
adjacency_matrix[x-1][y-1] = r;
adjacency_matrix[y-1][x-1] = r;
}
} else {
adjacency_matrix[x-1][y-1] = r;
adjacency_matrix[y-1][x-1] = r;
}
}
// Perform Prim's Algorithm
bool finished = false;
int size = 0;
bool *visited = new bool[N];
// Start at node S and keep traversing until all reachable nodes from S have been visited
// visited = node is in our spanning tree, !visited = node is not in our spanning tree
cin>>S;
visited[S-1] = true;
bool found_unvisited = true;
while(found_unvisited) {
found_unvisited = false;
int unvisited_node = 0;
// Look for the smallest edge that connects one of our visited nodes with an unvisited node
int min_edge = INT_MAX; // Start with the large possible edge value
for(int i = 0; i < N; i++) {
// If the node is in our visited set, check it's adjacent nodes for a minimum edge
if(visited[i]) {
for(int j = 0; j < N; j++) {
// If there's an edge between our visited node (i) and an unvisited node (j)
if(!visited[j] && adjacency_matrix[i][j] != -1) {
found_unvisited = true;
if(adjacency_matrix[i][j] < min_edge) {
unvisited_node = j;
min_edge = adjacency_matrix[i][j];
}
}
}
}
}
if(found_unvisited) {
// Add the node to our set and increase the size the spanning tree
visited[unvisited_node] = true;
size += min_edge;
}
}
cout<<size<<"\n";
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
string longDivision(string number, int divisor)
{
string ans;
int idx = 0;
int temp = number[idx] - '0';
while (temp < divisor)
temp = temp * 10 + (number[++idx] - '0');
while (number.size() > idx)
{
ans += (temp / divisor) + '0';
temp = (temp % divisor) * 10 + number[++idx] - '0';
}
if (ans.length() == 0)
return "0";
return ans;
}
string multiply(string num1, string num2)
{
int n1 = num1.size();
int n2 = num2.size();
if (n1 == 0 || n2 == 0)
return "0";
vector<int> result(n1 + n2, 0);
int i_n1 = 0;
int i_n2 = 0;
for (int i=n1-1; i>=0; i--)
{
int carry = 0;
int n1 = num1[i] - '0';
i_n2 = 0;
for (int j=n2-1; j>=0; j--)
{
int n2 = num2[j] - '0';
int sum = n1*n2 + result[i_n1 + i_n2] + carry;
carry = sum/10;
result[i_n1 + i_n2] = sum % 10;
i_n2++;
}
if (carry > 0)
result[i_n1 + i_n2] += carry;
i_n1++;
}
int i = result.size() - 1;
while (i>=0 && result[i] == 0)
i--;
if (i == -1)
return "0";
string s = "";
while (i >= 0)
s += std::to_string(result[i--]);
return s;
}
bool isSmaller(string str1, string str2)
{
// Calculate lengths of both string
int n1 = str1.length(), n2 = str2.length();
if (n1 < n2)
return true;
if (n2 < n1)
return false;
for (int i=0; i<n1; i++)
if (str1[i] < str2[i])
return true;
else if (str1[i] > str2[i])
return false;
return false;
}
// Function for find difference of larger numbers
string findDiff(string str1, string str2)
{
// Before proceeding further, make sure str1
// is not smaller
if (isSmaller(str1, str2))
swap(str1, str2);
// Take an empty string for storing result
string str = "";
// Calculate length of both string
int n1 = str1.length(), n2 = str2.length();
// Reverse both of strings
reverse(str1.begin(), str1.end());
reverse(str2.begin(), str2.end());
int carry = 0;
// Run loop till small string length
// and subtract digit of str1 to str2
for (int i=0; i<n2; i++)
{
// Do school mathematics, compute difference of
// current digits
int sub = ((str1[i]-'0')-(str2[i]-'0')-carry);
// If subtraction is less then zero
// we add then we add 10 into sub and
// take carry as 1 for calculating next step
if (sub < 0)
{
sub = sub + 10;
carry = 1;
}
else
carry = 0;
str.push_back(sub + '0');
}
// subtract remaining digits of larger number
for (int i=n2; i<n1; i++)
{
int sub = ((str1[i]-'0') - carry);
// if the sub value is -ve, then make it positive
if (sub < 0)
{
sub = sub + 10;
carry = 1;
}
else
carry = 0;
str.push_back(sub + '0');
}
// reverse resultant string
reverse(str.begin(), str.end());
return str;
}
string removezeros(string s){
string res;
int pos=0;
for(int i=0;i<s.length();i++){
if(s[i]=='0')pos+=1;
else break;
}
for(int i=pos;i<s.length();i++){
res+=s[i];
}
return res;
}
int main()
{
FIO
tc{
string k;
int n;
int num=2;
cin>>n;
cin>>k;
string val=longDivision(k,n);
string mul=multiply(val,to_string(n));
//cout<<val<<" "<<mul<<endl;
if(k==mul)cout<<0<<endl;
else {
string x=findDiff(k,mul);//(k-(val*n))
x=removezeros(x);
string y=findDiff(to_string(n),x);//(n-(k-(val*n)))
y=removezeros(y);
string pk;
//cout<<x<<" "<<y<<endl;
if(n%2==1){
//string x=findDiff(k,multiply(val,to_string(n)));
if(isSmaller(x,y)==true){
pk=multiply(x,to_string(num));
pk=removezeros(pk);
cout<<pk<<endl;
}
else
{ pk=multiply(y,to_string(num));
pk=removezeros(pk);
cout<<pk<<endl;
}
}
else {
int lmt=n/2;
int gd=stoi(x);
if(gd==lmt){
cout<<n-1<<endl;
}
else {
if(isSmaller(x,y)==true){
pk=multiply(x,to_string(num));
pk=removezeros(pk);
cout<<pk<<endl;
}
else
{ pk=multiply(y,to_string(num));
pk=removezeros(pk);
cout<<pk<<endl;
}
}
}
}
}
/*
tc{
ll n,k;
cin>>n>>k;
ll val=k/n;
if((val*n)==k)cout<<0<<endl;
else{
if(n %2==1){
//odd
cout<<mini((k-(val*n)),(n-(k-(val*n))))*2<<endl;
//cout<<mini(abs((val*n)-k),(n-abs((val*n)-k)))*2<<endl;
}
else {
//even
ll lmt=n/2;
if((k-(val*n))==lmt){
cout<<n-1<<endl;
}
else {
cout<<mini((k-(val*n)),(n-(k-(val*n))))*2<<endl;
//cout<<mini(abs(k-(val*n)),(n-abs(k-(val*n))))*2<<endl;
}
}
}
}
*/
return 0;
}<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
//bfs implementation using queue
// return number of connected nodes for the given node
vector<int>adj[100001];
vector<bool>visited(100001,false);
int dist[100001];
void bfs(int s) {
dist[1]=-1;
queue<int>q;
q.push(s);
visited[s]=true;
while(!q.empty()){
s=q.front();
q.pop();
for(auto i=adj[s].begin();i!=adj[s].end();++i){
//for(int i : adj[s]){
if(visited[*i]==false){
q.push(*i);
visited[*i]=true;
dist[*i]=dist[s]+1;
}
}
}
}
int main()
{
FIO;
int n,m;
int count=0;
cin>>n;
int u,v;
for(int i=0;i<n-1;i++){
cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
bfs(1);
int q,index;
cin>>q;
int min=INT_MAX;
while(q--){
int a;
cin>>a;
if(dist[a]<min){
min=dist[a];
index=a;
}
}
cout<<index<<endl;
return 0;
}
<file_sep>#include <iostream>
using namespace std;
int main() {
int n;
int j;
bool terminate=false;
cin>>n;
int a[n];
int my_arr[101]={0};
for(int i=0;i<n;i++){
cin>>a[i];
my_arr[a[i]]+=1;
}
int c_arr[101]={-1};
int count=0;
for(j=0;j<101;j++){
if(my_arr[j]==1){
my_arr[j]=9999;
count=count+1;
}
}
if(count%2!=0){
cout<<"NO"<<endl;
terminate=true;
}
if(terminate==false){
cout<<"YES"<<endl;
int num=0;
for(j=0;j<101;j++){
if(my_arr[j]==9999){
c_arr[j]=num%2;
num=num+1;
}
}
for(j=0;j<n;j++){
if(my_arr[a[j]]==9999){
if(c_arr[a[j]]==0)cout<<"A";
else if(c_arr[a[j]]==1)cout<<"B";
}
}
cout<<endl;
}
}
<file_sep># graph representation in Matrix form
#graph traversal
#BFS or DFS
#breadth first search or depth first search
#depending on the situation of the search algorithm
#include <iostream>
using namespace std;
//bool A[100][100];
int main()
{
int x, y, nodes, edges,query,a_new,b_new;
//initialize(); //Since there is no edge initially
cin >> nodes; //Number of nodes
cin >> edges; //Number of edges
bool A[nodes][nodes];
for (int i=0;i<nodes;++i)
{
for (int j=0;j<nodes;++j)
{
A[i][j]=false;
}
}
for(int i = 0;i < edges;++i)
{
cin >> x >> y;
A[x][y] = true; //Mark the edges from vertex x to vertex y
}
cin>>query;
for (int k=0;k<query;k++)
{
cin>>a_new>>b_new;
//cout<<a_new<<b_new;
if(A[a_new][b_new]==true)
{
cout<<"YES"<<endl;
}
else
{
cout<<"NO"<<endl;
}
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
// for all a[i] , count all a[j] such that for all j>i && j<=n where a[i]==a[j]
ll count_freq_future(vector<ll> a, ll n){
ll count=0;
vector<ll>num_count(100001,0);
for(ll i=0;i<n;i++)num_count[a[i]]+=1;
for(ll i=0;i<n;i++){num_count[a[i]]-=1;count+=num_count[a[i]];}
return count;
}
inline ll max_of_array(vector<ll>a){
ll res=LONG_MIN;
for(ll ele : a)if(ele>res)res=ele;
return res;
}
inline ll min_of_array(vector<ll>a){
ll res=LONG_MAX;
for(ll ele : a)if(ele <res)res=ele;
return res;
}
int main()
{
tc{
ll n;
cin>>n;
vector<ll>a(n);
for(ll i=0;i<n;i++)cin>>a[i];
cout<<count_freq_future(a,n)<<endl;
}
return 0;
}<file_sep>#include<iostream>
using namespace std;
// A structure to represent a node in the adjacency list.
struct node
{
int data;
struct node *link;
};
// A structure to represent list of vertexes connected to the given vertex.
struct vertexlist
{
struct node *vlisthead;
};
// A structure to maintain the graph vertexes and its connections to other vertexes.
struct Graph
{
int v;
struct vertexlist *vl;
};
/ A function to declare the graph according to the number of vertex.
struct Graph* CreateGraph(int n)
{
int i;
struct Graph *vlist = new Graph;
vlist->v = n;
// declare a list for n vertex.
vlist->vl = new vertexlist[n+1];
// Assign the head to NULL.
for(i = 0; i < n+1; i++)
{
vlist->vl[i].vlisthead = NULL;
}
return vlist;
}
// A function to create a new data node.
struct node* NewNode(int value)
{
struct node *newnode = new node;
newnode->data = value;
newnode->link = NULL;
return newnode;
}
// A function to add the edge into the undirected graph.
void InsertNode(Graph *G, int v1, int v2)
{
node *newnode1 = NewNode(v1);
node *newnode2 = NewNode(v2);
node *temp = new node;
// Since it is undirected graph, count each edge as two connection.
// Connection 1, v2 to v1.
if(G->vl[v2].vlisthead == NULL)
{
// If the head is null insert the node to the head.
G->vl[v2].vlisthead = newnode1;
}
else
{
// Otherwise, add the node at the beginning.
newnode1->link = G->vl[v2].vlisthead;
G->vl[v2].vlisthead = newnode1;
}
// Connection 2, v1 to v2.
if(G->vl[v1].vlisthead == NULL)
{
// If the head is null insert the node to the head.
G->vl[v1].vlisthead = newnode2;
}
else
{
// Otherwise, add the node at the beginning.
newnode2->link = G->vl[v1].vlisthead;
G->vl[v1].vlisthead = newnode2;
}
}
int main()
{
int i, v, e;
// Take the input of the number of vertex and edges the graph have.
cout<<"Enter the number of vertexes of the graph: ";
cin>>v;
struct Graph *G = CreateGraph(v);
cout<<"\nEnter the number of edges of the graph: ";
cin>>e;
int edge[e][2];
// Take the input of the adjacent vertex pairs of the given graph.
for(i = 0; i < e; i++)
{
cout<<"\nEnter the vertex pair for edge "<<i+1;
cout<<"\nV(1): ";
cin>>edge[i][0];
cout<<"V(2): ";
cin>>edge[i][1];
InsertNode(G, edge[i][0], edge[i][1]);
}
// Print the incidence list representation of the graph.
cout<<"\n\nThe incidence list representation for the given graph: ";
for(i = 0; i < v; i++)
{
cout<<"\n\tV("<<i+1<<") -> { ";
while(G->vl[i+1].vlisthead != NULL)
{
cout<<G->vl[i+1].vlisthead->data<<" ";
G->vl[i+1].vlisthead = G->vl[i+1].vlisthead->link;
}
cout<<"}";
}
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
int main()
{
ll t;
cin>>t;
while(t--)
{
ll n,s,i;
cin>>n>>s;
ll a[n];
ll l=0,r=0,c=0,sum=0;
for(i=0;i<n;i++)cin>>a[i];
i=0;
bool bk=false;
while(r<=n && l<=n){
if(sum<s){
sum+=a[r];
r=r+1;
}
else if(sum>s){
sum-=a[l];
l=l+1;
}
else if(sum==s)break;
//i++;
}
if(r>=n ){
while(l<=n && sum>s){
sum-=a[l];
l=l+1;
if(sum==s)break;
}
}
if(l==r)cout<<"-1"<<endl;
else
cout<<l+1<<" "<<r<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define ll long long int
// get next greater element of a given number in a sorted array
ll next_highest_number(ll arr[], ll low, ll high, ll key,ll size){
if (low>high){
if(high<(size-1))return arr[high+1];
else return -1;
}
ll mid = (low+high)/2;
if(arr[mid]==key){
if(mid<(size-1))return arr[mid+1];
else return -1;
}
else if(arr[mid]>key)next_highest_number(arr,low,mid-1,key,size);
else next_highest_number(arr,mid+1,high,key,size);
}
int main() {
ll arr[12]={2,6,9,12,18,24,36,42,44,49,60,74};
ll key;
cin>>key;
ll size=sizeof(arr)/sizeof(ll);
cout<<next_highest_number(arr,0,size-1,key,size);
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define ll long long int
// Returns count of subsets of arr[] with XOR value equals
// to k.
ll subsetXOR(ll arr[], ll n, ll k)
{
// Find maximum element in arr[]
ll max_ele = arr[0];
for (ll i=1; i<n; i++)
if (arr[i] > max_ele)
max_ele = arr[i];
// Maximum possible XOR value
ll m = (1 << (ll)(log2(max_ele) + 1) ) - 1;
// The value of dp[i][j] is the number of subsets having
// XOR of their elements as j from the set arr[0...i-1]
ll dp[n+1][m+1];
// Initializing all the values of dp[i][j] as 0
for (ll i=0; i<=n; i++)
for (ll j=0; j<=m; j++)
dp[i][j] = 0;
// The xor of empty subset is 0
dp[0][0] = 1;
// Fill the dp table
for (ll i=1; i<=n; i++)
for (ll j=0; j<=m; j++)
dp[i][j] = dp[i-1][j] + dp[i-1][j^arr[i-1]];
// The answer is the number of subset from set
// arr[0..n-1] having XOR of elements as k
return dp[n][k];
}
// Driver program to test above function
int main()
{
ll n; cin>>n;
ll arr[n];
for(ll i=0;i<n;i++) cin>>arr[i];
cout <<subsetXOR(arr, n, 0)-1<<endl;
return 0;
}
<file_sep>#include <string>
#include <vector>
#include <map>
#include <list>
#include <iterator>
#include <set>
#include <queue>
#include <iostream>
#include <sstream>
#include <stack>
#include <deque>
#include <cmath>
#include <memory.h>
#include <cstdlib>
#include <cstdio>
#include <cctype>
#include <algorithm>
#include <utility>
using namespace std;
#define FOR(i, a, b) for(int i = (a); i < (b); ++i)
#define RFOR(i, b, a) for(int i = (b) - 1; i >= (a); --i)
#define REP(i, N) FOR(i, 0, N)
#define RREP(i, N) RFOR(i, N, 0)
#define ALL(V) V.begin(), V.end()
#define SZ(V) (int)V.size()
#define PB push_back
#define MP make_pair
#define Pi 3.14159265358979
typedef long long Int;
typedef unsigned long long UInt;
typedef vector <int> VI;
typedef pair <int, int> PII;
VI a[1<<17];
bool was[1<<17];
int n,m;
int dfs(int cur)
{
if (was[cur])
return 0;
was[cur] = true;
int res = 1;
REP(i,SZ(a[cur]))
{
int nx = a[cur][i];
res += dfs(nx);
}
return res;
}
int main()
{
// freopen("in.txt", "r", stdin);
// freopen("out.txt", "w", stdout);
scanf("%d%d",&n,&m);
REP(i,m)
{
int x,y;
scanf("%d%d",&x,&y);
a[x].push_back(y);
a[y].push_back(x);
}
VI all;
REP(i,n)
{
if (!was[i])
{
all.push_back(dfs(i));
}
}
Int res = 0;
Int sum = 0;
REP(i, SZ(all))
{
res += sum * all[i];
sum += all[i];
}
cout << res << endl;
return 0;
}
<file_sep>/**
* C program to delete a node from Doubly linked list
*/
#include <stdio.h>
#include <stdlib.h>
/*
* Basic structure of Node
*/
struct node {
int data;
struct node * prev;
struct node * next;
}*head, *last;
/*
* Functions used in this program
*/
void createList(int n);
void displayList();
void deleteFromBeginning();
void deleteFromEnd();
void deleteFromN(int position);
int main()
{
int n, data, choice=1;
head = NULL;
last = NULL;
/*
* Run forever until user chooses 0
*/
while(choice != 0)
{
printf("============================================\n");
printf("DOUBLY LINKED LIST PROGRAM\n");
printf("============================================\n");
printf("1. Create List\n");
printf("2. Delete node - from beginning\n");
printf("3. Delete node - from end\n");
printf("4. Delete node - from N\n");
printf("5. Display list\n");
printf("0. Exit\n");
printf("--------------------------------------------\n");
printf("Enter your choice : ");
scanf("%d", &choice);
switch(choice)
{
case 1:
printf("Enter the total number of nodes in list: ");
scanf("%d", &n);
createList(n);
break;
case 2:
deleteFromBeginning();
break;
case 3:
deleteFromEnd();
break;
case 4:
printf("Enter the node position which you want to delete: ");
scanf("%d", &n);
deleteFromN(n);
break;
case 5:
displayList();
break;
case 0:
break;
default:
printf("Error! Invalid choice. Please choose between 0-5");
}
printf("\n\n\n\n\n");
}
return 0;
}
/**
* Creates a doubly linked list of n nodes.
* @n Number of nodes to be created
*/
void createList(int n)
{
int i, data;
struct node *newNode;
if(n >= 1)
{
/*
* Creates and links the head node
*/
head = (struct node *)malloc(sizeof(struct node));
printf("Enter data of 1 node: ");
scanf("%d", &data);
head->data = data;
head->prev = NULL;
head->next = NULL;
last = head;
/*
* Create and link rest of the n-1 nodes
*/
for(i=2; i<=n; i++)
{
newNode = (struct node *)malloc(sizeof(struct node));
printf("Enter data of %d node: ", i);
scanf("%d", &data);
newNode->data = data;
newNode->prev = last; // Link new node with the previous node
newNode->next = NULL;
last->next = newNode; // Link previous node with the new node
last = newNode; // Make new node as last node
}
printf("\nDOUBLY LINKED LIST CREATED SUCCESSFULLY\n");
}
}
/**
* Display the content of the list from beginning to end
*/
void displayList()
{
struct node * temp;
int n = 1;
if(head == NULL)
{
printf("List is empty.\n");
}
else
{
temp = head;
printf("DATA IN THE LIST:\n");
while(temp != NULL)
{
printf("DATA of %d node = %d\n", n, temp->data);
n++;
/* Move the current pointer to next node */
temp = temp->next;
}
}
}
/**
* Delete or remove the first node of the doubly linked list
*/
void deleteFromBeginning()
{
struct node * toDelete;
if(head == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = head;
head = head->next; // Move head pointer to 2 node
head->prev = NULL; // Remove the link to previous node
free(toDelete); // Delete the first node from memory
printf("SUCCESSFULLY DELETED NODE FROM BEGINNING OF THE LIST.\n");
}
}
/**
* Delete or remove the last node of the doubly linked list
*/
void deleteFromEnd()
{
struct node * toDelete;
if(last == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = last;
last = last->prev; // Move last pointer to 2nd last node
last->next = NULL; // Remove link to of 2nd last node with last node
free(toDelete); // Delete the last node
printf("SUCCESSFULLY DELETED NODE FROM END OF THE LIST.\n");
}
}
/**
* Delete node from any position in the doubly linked list
*/
void deleteFromN(int position)
{
struct node *current;
int i;
current = head;
for(i=1; i<position && current!=NULL; i++)
{
current = current->next;
}
if(position == 1)
{
deleteFromBeginning();
}
else if(current == last)
{
deleteFromEnd();
}
else if(current != NULL)
{
current->prev->next = current->next;
current->next->prev = current->prev;
free(current); // Delete the n node
printf("SUCCESSFULLY DELETED NODE FROM %d POSITION.\n", position);
}
else
{
printf("Invalid position!\n");
}
}
<file_sep>struct Node
{
int data;
struct Node *next;
}
//linked list traversal
void Print(Node *head)
{
Node *temp = head;
while(temp != NULL){
std::cout << temp->data << endl;
temp = temp->next;
}
}
//insert new node
Node* Insert(Node *head,int data)
{
Node *temp=new Node();
temp->data = data;
temp->next = NULL;
if(head == NULL)
{
head = temp;
}
else
{
Node *p;
p = head;
while(p->next != NULL)
p = p->next;
p->next = temp;
}
return(head);
}
//Insert node at the head of linked list
Node* Insert(Node *head,int data)
{
// Complete this method
Node *temp = new Node();
Node *cpyhead = head;
temp->data = data;
temp->next = cpyhead;
head=temp;
return head;
}
//insert at nth position
Node* InsertNth(Node *head, int data, int position)
{
Node *root;
root= head;
Node *temp = new Node();
temp->data=data;
if (position<0){return NULL; }
else if (position==0){
temp->next= head;
return temp;
}else{
while(position-1>0){
position--;
head= head->next;
}
temp->next= head->next;
head->next= temp;
return root;
}
}
//to delete a node at nth position
Node* Delete(Node *head, int position)
{
Node *root;
Node *before;
before=head;
root=head;
if(position<0){return NULL;}
else if(position==0){
root=head->next;
return root;
}
else{
while(position>0){
position--;
before=head;
head=head->next;
}
before->next=head->next;
delete head;
return root;
}
}
//print reverse order of linked list recursion method
void ReversePrint(Node *head){
if(head==NULL) return;
else{
ReversePrint(head->next);
cout<<head->data<<endl;
}
}
//print reverse order of singly linked list without recursion
void ReversePrint(Node *head)
{
struct Node* last = NULL;
while(head != NULL) {
struct Node* temp = new Node;
temp->data = head->data;
temp->next = last;
last = temp;
head = head->next;
}
while(last != NULL) {
cout<<last->data<<endl;
last = last->next;
}
}
//another method of reversing an linked list without recursion
//faster method compared to recursion
//best one
//less memory constraint
void ReversePrint(Node *head) {
if (!head) return;
auto reverse = [](Node* head, bool print) {
auto curr = head->next;
head->next = nullptr;
auto prev = head;
while (curr) {
if (print) cout << prev->data << "\n";
auto temp = curr->next;
curr->next = prev;
prev = curr;
curr = temp;
}
if (print) cout << prev->data << "\n";
return prev;
};
head = reverse(head, false);
head = reverse(head, true);
}
//return a reverse of a linked list
//better solution
Node* Reverse(Node *head)
{
Node *tail, *t;
tail = NULL;
while (head != NULL) {
t = head->next;
head->next = tail;
tail = head;
head = t;
}
return tail;
// Complete this method
}
//based on non-recursive method
// Non-recursive version
Node* Reverse(Node *head)
{
Node *tail, *t;
tail = NULL;
while (head != NULL) {
t = head->next;
head->next = tail;
tail = head;
head = t;
}
return tail;
// Complete this method
}
// Recursive version
Node* Reverse(Node *head)
{
if (head == nullptr || head->next == nullptr)
return head;
Node *newhead = Reverse(head->next);
head->next->next = head;
head->next = nullptr;
return newhead;
}
// Non-recursive version, using stack
#include <stack>
Node *Reverse(Node *head)
{
if (head != nullptr)
{
Node *curr = head;
std::stack<Node *> ps;
while(curr)
{
ps.push(curr);
curr = curr->next;
}
Node *newhead = ps.top();
while(!ps.empty())
{
Node *prev = ps.top();
ps.pop();
prev->next = ps.empty()? nullptr : ps.top();
}
return newhead;
}
return head;
}
//compare 2 linked list
int CompareLists(Node *headA, Node* headB)
{
if (headA == NULL && headB == NULL) {
return 1;
} else if (headA == NULL || headB == NULL) {
return 0;
}
if (headA->data == headB->data) {
return CompareLists(headA->next, headB->next);
} else {
return 0;
}
}
//merge 2 sorted list
Node* MergeLists(Node *headA, Node* headB)
{
if (headA == NULL && headB == NULL) return NULL;
else if (headA == NULL) return headB;
else if (headB == NULL) return headA;
if(headA->data <= headB->data)
headA->next = MergeLists(headA->next, headB);
else {
Node* temp = headB;
headB = headB->next;
temp->next = headA;
headA = temp;
headA->next = MergeLists(headA->next, headB);
}
return headA;
}
//print data of nth node from tail
int GetNode(Node *head,int positionFromTail)
{
int index = 0;
Node* current = head;
Node* result = head;
while(current!=NULL)
{
current=current->next;
if (index++>positionFromTail)
{
result=result->next;
}
}
return result->data;
}
//delete similar linked list numbers
Node* RemoveDuplicates(Node *head)
{
if(head=='\0' || head->next=='\0')
return head;
else
{
Node *current=head;
while(current->next!='\0')
{
if(current->data!= current->next->data)
current=current->next;
else
{
delete current->next;
current->next=current->next->next;
}
}
return head;
}
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
bool mycompare(int x,int y)
{string k,l;
k=to_string(x);
l=to_string(y);
return (k+l>=l+k);
}
int main() {
int t;
cin>>t;
while(t--)
{int n;
cin>>n;
vector<int> a(n);
for(int i=0;i<n;i++)
cin>>a[i];
sort(a.begin(),a.end(),mycompare);
string output;
for(int i=0;i<n;i++)
{string m=to_string(a[i]);
output+=m;
}
cout<<output<<endl;
}
return 0;
}
<file_sep>#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <utility>
#include <algorithm>
using namespace std;
/*Union find by path compression and union by ranks*/
int P[5000], R[5000];
void init() {
for(int i=0;i<5000;i++) {
P[i]=i;
R[i]=0;
}
}
int find(int n) {
if(P[n] == n) return n;
return P[n] = find(P[n]);
}
void join(int a, int b) {
a=find(a);
b=find(b);
if(R[a]<R[b]) P[a] = b;
else {
P[b] = a;
if(R[a] == R[b]) R[a]++;
}
}
typedef pair<int,int> pii;
typedef pair<int,pii> edge;
typedef long long ll;
#define co(e) e.first
#define n1(e) e.second.first
#define n2(e) e.second.second
#define pb push_back
#define all(A) A.begin(), A.end()
int main() {
int T;
scanf("%d",&T);
assert(T>=1 && T<=5);
while(T--) {
int N, M1, M2;
scanf("%d %d %d",&N,&M1,&M2);
assert(N>=1 && N<=5000);
assert(M1>=1 && M1<=20000);
assert(M2>=1 && M2<=20000);
vector<edge> e1, e2;
for(int i=0;i<M1;i++) {
int a, b, c;
scanf("%d %d %d",&a,&b,&c);
assert(a>=0 && a<N && b>=0 && b<N);
assert(a != b);
assert(c>=1 && c<=1000000000);
e1.pb(edge(c,pii(a,b)));
}
for(int i=0;i<M2;i++) {
int a, b, c;
scanf("%d %d %d",&a,&b,&c);
assert(a>=0 && a<N && b>=0 && b<N);
assert(a != b);
assert(c>=1 && c<=1000000000);
e2.pb(edge(c,pii(a,b)));
}
/*Sorting the edges by weights*/
sort(all(e1));
sort(all(e2));
reverse(all(e2));
/*
Implement the kruskal's algorithm.
Parse through M2 first.
Parse through M1 then.
*/
int cnt=0;
ll r1=0, r2=0;
init();
for(int i=0;i<M2;i++) if( find(n1(e2[i])) != find(n2(e2[i])) ) {
join(n1(e2[i]),n2(e2[i]));
r2 += co(e2[i]);
cnt++;
}
for(int i=0;i<M1;i++) if( find(n1(e1[i])) != find(n2(e1[i])) ) {
join(n1(e1[i]),n2(e1[i]));
r1 += co(e1[i]);
cnt++;
}
if(cnt < N-1) {
printf("impossible\n");
} else {
assert(cnt == N-1);
printf("%lld %lld\n",r2,r1+r2);
}
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
int main()
{
ll t;
cin>>t;
while(t--)
{
string s;
int c[256]={0};
c['A']=2;c['B']=22;c['C']=222;c['D']=3;c['E']=33;c['F']=333;c['G']=4;
c['H']=44;c['I']=444;c['J']=5;c['K']=55;c['L']=555;c['M']=6;c['N']=66;c['O']=666;
c['P']=7;c['Q']=77;c['R']=777;c['S']=7777;c['T']=8;c['U']=88;c['V']=888;c['W']=9;
c['X']=99;c['Y']=999;c['Z']=9999;c[' ']=0;
getline(cin, s);
while (s.length()==0 )
getline(cin, s);
ll l=s.length();
for(ll i=0;i<l;i++)cout<<c[s[i]];
cout<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
#include <utility>
//typedef pair<int ,int>ipair;
using namespace std;
int grid[101][101];
int escape_from_grid(int grid[][101],int row,int col,int sx,int sy) {
//cout<<sx<<" "<<sy<<endl;
if(sx==0 || sy==0 || sx==row-1 || sy==col-1)return 0;
int x,y,tx,ty,i;
int mx[4]={-1,1,0,0};
int my[4]={0,0,1,-1};
queue<pair<int,int>>q;
bool vis[101][101];memset(vis,false,sizeof(vis));
int dist[101][101];memset(dist,0,sizeof(dist));
q.push(make_pair(sx,sy));
int mini=101;
dist[sx][sy]=0;
while(!q.empty()){
x=q.front().first;
y=q.front().second;
q.pop();
for(i=0;i<4;i++){
tx=x+mx[i];
ty=y+my[i];
if(tx<0 || ty<0)continue;
if(tx>=row || ty>=col)continue;
else if(!vis[tx][ty] && grid[tx][ty]==0 ){
//cout<<tx<<" "<<ty<<endl;
vis[tx][ty]=true;
dist[tx][ty]=dist[x][y]+1;
q.push(make_pair(tx,ty));
if(tx==0 || ty==0 || tx==row-1 || ty==col-1){if(dist[tx][ty]<mini)mini=dist[tx][ty];}
}
}
}
if(mini==101)return -1;
else return mini;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int grid_x;
cin >> grid_x;
int grid_y;
cin >> grid_y;
int sx,sy;
for (int i_grid = 0; i_grid < grid_x; i_grid++) {
for (int j_grid = 0; j_grid < grid_y; j_grid++) {
cin >> grid[i_grid][j_grid];
if(grid[i_grid][j_grid]==2){sx=i_grid;sy=j_grid;}
}
}
int out_;
out_ = escape_from_grid(grid,grid_x,grid_y,sx,sy);
cout << out_;
return 0;
}
<file_sep>// C++ program to find sum of all minimum and maximum
// elements Of Sub-array Size k.
//reference :-https://www.geeksforgeeks.org/sum-minimum-maximum-elements-subarrays-size-k/
#include<bits/stdc++.h>
using namespace std;
// Returns sum of min and max element of all subarrays
// of size k
int SumOfKsubArray(int arr[] , int n , int k)
{
int sum = 0; // Initialize result
// The queue will store indexes of useful elements
// in every window
// In deque 'G' we maintain decreasing order of
// values from front to rear
// In deque 'S' we maintain increasing order of
// values from front to rear
deque< int > S(k), G(k);
// Process first window of size K
int i = 0;
for (i = 0; i < k; i++)
{
// Remove all previous greater elements
// that are useless.
while ( (!S.empty()) && arr[S.back()] >= arr[i])
S.pop_back(); // Remove from rear
// Remove all previous smaller that are elements
// are useless.
while ( (!G.empty()) && arr[G.back()] <= arr[i])
G.pop_back(); // Remove from rear
// Add current element at rear of both deque
G.push_back(i);
S.push_back(i);
}
// Process rest of the Array elements
for ( ; i < n; i++ )
{
// Element at the front of the deque 'G' & 'S'
// is the largest and smallest
// element of previous window respectively
sum += arr[S.front()] + arr[G.front()];
// Remove all elements which are out of this
// window
while ( !S.empty() && S.front() <= i - k)
S.pop_front();
while ( !G.empty() && G.front() <= i - k)
G.pop_front();
// remove all previous greater element that are
// useless
while ( (!S.empty()) && arr[S.back()] >= arr[i])
S.pop_back(); // Remove from rear
// remove all previous smaller that are elements
// are useless
while ( (!G.empty()) && arr[G.back()] <= arr[i])
G.pop_back(); // Remove from rear
// Add current element at rear of both deque
G.push_back(i);
S.push_back(i);
}
// Sum of minimum and maximum element of last window
sum += arr[S.front()] + arr[G.front()];
return sum;
}
// Driver program to test above functions
int main()
{
int arr[] = {2, 5, -1, 7, -3, -1, -2} ;
int n = sizeof(arr)/sizeof(arr[0]);
int k = 3;
cout << SumOfKsubArray(arr, n, k) ;
return 0;
}
<file_sep>#include <iostream>
#include <stdio.h>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
int main()
{
string s;
getline(cin,s);
while(s!=""){
string out="";
out+=s[0];
int i;
int l=s.length();
for(i=1;i<l;i++){
if(s[i-1]=='/' && s[i]=='/' ){
break;
}
else if(s[i-1]=='-' && s[i]=='>'){
out[out.length()-1]='.';
}
else out+=s[i];
}
for(int k=i;k<l;k++)out+=s[k];
cout<<out<<endl;
if(!getline(cin,s))break;
}
return 0;
}
<file_sep>/* Author : - Lilliput */
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
int main()
{
ll t;
cin>>t;
while(t--){
ll n,i,j,k,count=1;
cin>>n;
ll a[n][n];
for(i=0;i<n;i++){
for(j=0;j<n;j++){
a[i][j]=0;
}
}
if(n==1 || n==3 || n==5)cout<<-1<<endl;
else if(n%2==0){
ll num=n/2;
cout<<num*num<<endl;
count=num*num;
count=1;
for(i=0;i<n;i=i+2){
for(j=0;j<n;j=j+2){
a[i][j]=count;
a[i][j+1]=count;
a[i+1][j+1]=count;
count=count+1;
}
}
for(i=0;i<n;i++){
for(j=0;j<n;j++){
cout<<a[i][j]<<" ";
}
cout<<endl;
}
}
else{
ll p=(n-7)/2;
ll lmt=p;
ll res=16+(p*9)+(p*(p-1));
cout<<res<<endl;
p=n-7;
//fill 7*7 matrix
{
for(j=0;j<6;j=j+2){
a[p][j]=res;
a[p+1][j]=res;
a[p][j+1]=res;
res=res-1;
}
a[p][6]=res;
a[p+1][5]=res;
a[p+1][6]=res;
res=res-1;
a[p+1][1]=res;
a[p+2][0]=res;
a[p+2][1]=res;
res=res-1;
a[p+1][3]=res;
a[p+2][2]=res;
a[p+2][3]=res;
res=res-1;
a[p+2][4]=res;
a[p+2][5]=res;
a[p+3][4]=res;
res=res-1;
a[p+2][6]=res;
a[p+3][5]=res;
a[p+3][6]=res;
res=res-1;
a[p+3][0]=res;
a[p+3][1]=res;
a[p+4][0]=res;
res=res-1;
a[p+3][2]=res;
a[p+4][1]=res;
a[p+4][2]=res;
res=res-1;
a[p+3][3]=res;
a[p+4][3]=res;
a[p+4][4]=res;
res=res-1;
a[p+5][0]=res;
a[p+5][1]=res;
a[p+6][0]=res;
res=res-1;
a[p+5][2]=res;
a[p+6][2]=res;
a[p+6][3]=res;
res=res-1;
a[p+5][3]=res;
a[p+5][4]=res;
a[p+6][4]=res;
res=res-1;
a[p+4][5]=res;
a[p+4][6]=res;
a[p+5][6]=res;
res=res-1;
a[p+5][5]=res;
a[p+6][5]=res;
a[p+6][6]=res;
res=res-1;
}
//filling Row wise of the matrix above 7*7 matrix
for(i=0;i<p;i=i+2){
for(j=0;j<n-3;j=j+2){
a[i][j]=res;
a[i][j+1]=res;
a[i+1][j+1]=res;
res=res-1;
}
}
// fill 2*3 grid with 2 l shaped blocks from top to bottom
for(i=0;i<p;i=i+2){
{
a[i][j]=res;
a[i+1][j]=res;
a[i][j+1]=res;
res=res-1;
a[i][j+2]=res;
a[i+1][j+1]=res;
a[i+1][j+2]=res;
res=res-1;
}
}
//from row =n-7 till end fill with blocks from top
for(i=p;i<n-1;i=i+2){
for(j=7;j<n;j=j+2){
a[i][j]=res;
a[i][j+1]=res;
a[i+1][j]=res;
res=res-1;
}
}
//fill final row at the bottom
i=n-1;
for(j=7;j<n;j=j+2){
a[i-1][j+1]=res;
a[i][j]=res;
a[i][j+1]=res;
res=res-1;
}
//print the matrix
for(i=0;i<n;i++){
for(j=0;j<n;j++){
cout<<a[i][j]<<" ";
}
cout<<endl;
}
}
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
#define mx 100001
pair<ll , pair<ll,ll>>graph[mx];
ll id[mx];
void initialise(){
for(ll i=0;i<mx;i++)id[i]=i;
}
ll root(ll x){
while(id[x]!=x){
id[x]=id[id[x]];
x=id[x];
}
return x;
}
void union1(ll x, ll y){
ll p=root(x);
ll q=root(y);
id[p]=id[q];
}
long long int kruskal(int e, int v, pair<ll , pair<ll,ll>>graph[]){
ll mincost=0;
ll cost,st,en;
for(ll i=0;i<e;i++){
st=graph[i].second.first;
en=graph[i].second.second;
cost=graph[i].first;
if(root(st)!=root(en)){
mincost+=cost;
union1(st,en);
}
}
return mincost;
}
int main()
{
initialise();
ll e,v,w,st,en;
cin>>v>>e;
for(ll i=0;i<e;i++){
cin>>st>>en>>w;
graph[i]=make_pair(w,make_pair(st,en));
}
sort(graph,graph+e);
ll minimumcost=kruskal(e,v,graph);
cout<<minimumcost<<endl;
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int main()
{
FIO
tc{
string n;
int d;
cin>>n>>d;
int l=n.length();
int i,max=0,min=0,spos=0,epos=0,count=0;
int var;
int j;
int globalcount=0;
int spoint=-1,epoint=l;
while(spoint<epoint && min<d){
min=d;
count=0;
for(i=spoint+1;i<l;i++){
var=(int(n[i])-48);
if(var<=min){
if(var<min){
min=var;
spoint=i;
count=1;
}
else {
spoint=i;
count+=1;
}
}
}
globalcount+=count;
for(j=0;j<count;j++)cout<<min;
if(min==d)break;
}
int lmt=l-globalcount;
for(i=0;i<lmt;i++)cout<<d;
cout<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define mod 1000000007
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
ll binpow(ll a, ll b){
a=a%mod;
ll res=1;
while(b>0){
if(b & 1 )res=(res*a)%mod;
a=(a*a)%mod;
b >>= 1;
}
return res;
}
long long binpower(long long a, long long b) {
long long res = 1;
while (b > 0) {
if (b & 1)
res = res * a;
a = a * a;
b >>= 1;
}
return res;
}
int main()
{
FIO;
tc{
ll a,b;
cin>>a>>b;
cout<<binpow(a,b)<<endl;
cout<<binpower(a,b)<<endl;
}
return 0;
}
<file_sep>
#include <stdio.h>
#include <stdlib.h>
/*
* Basic structure of Node
*/
struct node {
int data;
struct node * prev;
struct node * next;
}*head, *last;
int count=0;
/*
* Functions used in this program
*/
void createList(int n);
void displayList();
void deleteFromBeginning();
void deleteFromEnd();
void deleteFromN(int position);
int main()
{
int n, data, choice=1,left_val=0,right_val=0,i;
int val1,val2;
head = NULL;
last = NULL;
scanf("%d",&n);
createList(n);
displayList();
while(count>2){
val1=head->data;
val2=last->data;
if(val1>val2){
left_val=left_val+val1;
deleteFromBeginning();
}
else{
left_val=left_val+val2;
deleteFromEnd();
}
if(head->data>last->data){
right_val=right_val+head->data;
deleteFromBeginning();
}
else{
right_val=right_val+last->data;
deleteFromEnd();
}
}
if(head->data>last->data){
left_val=left_val+head->data;
right_val=right_val+last->data;
}
else{
left_val=left_val+last->data;
right_val=right_val+head->data;
}
if(left_val>right_val)
printf("%d",left_val);
else
printf("%d",right_val);
//displayList();
//deleteFromBeginning();
//deleteFromEnd();
//deleteFromN(1);
//displayList();
printf("\n\n\n\n\n");
return 0;
}
void createList(int n)
{
int i, data;
struct node *newNode;
if(n >= 1)
{
/*
* Creates and links the head node
*/
head = (struct node *)malloc(sizeof(struct node));
//printf("Enter data of 1 node: ");
scanf("%d", &data);
head->data = data;
head->prev = NULL;
head->next = NULL;
last = head;
count++;
for(i=2; i<=n; i++)
{
newNode = (struct node *)malloc(sizeof(struct node));
//printf("Enter data of %d node: ", i);
scanf("%d", &data);
newNode->data = data;
newNode->prev = last;
newNode->next = NULL;
last->next = newNode;
last = newNode;
count++;
}
//printf("\nDOUBLY LINKED LIST CREATED SUCCESSFULLY\n");
}
}
void displayList()
{
struct node * temp;
int n = 1;
if(head == NULL)
{
printf("List is empty.\n");
}
else
{
temp = head;
printf("DATA IN THE LIST:\n");
while(temp != NULL)
{
printf("DATA of %d node = %d\n", n, temp->data);
n++;
/* Move the current pointer to next node */
temp = temp->next;
}
}
}
void deleteFromBeginning()
{
struct node * toDelete;
if(head == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = head;
head = head->next; // Move head pointer to 2 node
head->prev = NULL; // Remove the link to previous node
free(toDelete); // Delete the first node from memory
count--;
printf("SUCCESSFULLY DELETED NODE FROM BEGINNING OF THE LIST.\n");
}
}
void deleteFromEnd()
{
struct node * toDelete;
if(last == NULL)
{
printf("Unable to delete. List is empty.\n");
}
else
{
toDelete = last;
last = last->prev; // Move last pointer to 2nd last node
last->next = NULL; // Remove link to of 2nd last node with last node
free(toDelete); // Delete the last node
count--;
printf("SUCCESSFULLY DELETED NODE FROM END OF THE LIST.\n");
}
}
void deleteFromN(int position)
{
struct node *current;
int i;
current = head;
for(i=1; i<position && current!=NULL; i++)
{
current = current->next;
}
if(position == 1)
{
deleteFromBeginning();
}
else if(current == last)
{
deleteFromEnd();
}
else if(current != NULL)
{
current->prev->next = current->next;
current->next->prev = current->prev;
free(current); // Delete the n node
printf("SUCCESSFULLY DELETED NODE FROM %d POSITION.\n", position);
}
else
{
printf("Invalid position!\n");
}
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n,k;
cin>>n>>k;
long long int a[26881];
long long int count=0;
long long int lmt=sqrt(n);
if(sqrt(n)==lmt){
a[0]=lmt;
count++;
}
else if(sqrt(n)!=lmt){
lmt=lmt+1;
}
for(long long int i=1;i<lmt;i++){
if(n%i==0){
a[count]=i;
a[count+1]=n/i;
count=count+2;
}
}
sort(a,a+count);
if(k>count){
cout<<-1<<endl;
}
else{
cout<<a[k-1]<<endl;
}
}
return 0;
//31622777 31622776
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
ll sum_of_all_digits_of_array(ll a[], ll n){
ll sum=0;
ll i;
register ll temp;
for(i=0;i<n;i++){
temp=a[i];
while(temp>0){
sum+=(temp%10);
temp=temp/10;
}
}
return sum;
}
int main()
{
int t;
cin>>t;
while(t--)
{
ll sum=0,n,i;
cin>>n;
ll a[n];
for(i=0;i<n;i++)cin>>a[i];
sum=sum_of_all_digits_of_array(a,n);
if(sum%3==0)cout<<"1"<<endl;
else cout<<"0"<<endl;
}
return 0;
}
<file_sep>
// get intersection point from 2 linked lists in the shape of Y with different lengths
int intersectPoint(Node* head1, Node* head2)
{
// Your Code Here
int l1=1;
int l2=1;
if(head1==NULL || head2==NULL)return -1;
Node *cur1=head1;
Node *cur2=head2;
while(cur1!=NULL){
cur1=cur1->next;
l1+=1;
}
while(cur2!=NULL){
cur2=cur2->next;
l2+=1;
}
//cout<<l1<<" "<<l2<<endl;
if(l1>l2){
cur1=head1;
cur2=head2;
while(l1>l2){
cur1=cur1->next;
l1-=1;
}
}
else if(l2>l1){
cur2=head2;
cur1=head1;
while(l2>l1){
cur2=cur2->next;
l2-=1;
}
}
//here l1=l2
bool flag=false;
while(cur1!=NULL || cur2!=NULL){
if(cur1==cur2){flag=true;return cur1->data;break;}
cur1=cur1->next;
cur2=cur2->next;
}
return -1;
}
<file_sep>// C++ program to find minimum and second minimum
// using minimum number of comparisons
#include <bits/stdc++.h>
using namespace std;
// Tournament Tree node
struct Node
{
int idx;
Node *left, *right;
};
// Utility function to create a tournament tree node
Node *createNode(int idx)
{
Node *t = new Node;
t->left = t->right = NULL;
t->idx = idx;
return t;
}
// This function traverses tree across height to
// find second smallest element in tournament tree.
// Note that root is smallest element of tournament
// tree.
void traverseHeight(Node *root, int arr[], int &res)
{
// Base case
if (root == NULL || (root->left == NULL &&
root->right == NULL))
return;
// If left child is smaller than current result,
// update result and recur for left subarray.
if (res > arr[root->left->idx] &&
root->left->idx != root->idx)
{
res = arr[root->left->idx];
traverseHeight(root->right, arr, res);
}
// If right child is smaller than current result,
// update result and recur for left subarray.
else if (res > arr[root->right->idx] &&
root->right->idx != root->idx)
{
res = arr[root->right->idx];
traverseHeight(root->left, arr, res);
}
}
// Prints minimum and second minimum in arr[0..n-1]
void findSecondMin(int arr[], int n)
{
// Create a list to store nodes of current
// level
list<Node *> li;
Node *root = NULL;
for (int i = 0; i < n; i += 2)
{
Node *t1 = createNode(i);
Node *t2 = NULL;
if (i + 1 < n)
{
// Make a node for next element
t2 = createNode(i + 1);
// Make smaller of two as root
root = (arr[i] < arr[i + 1])? createNode(i) :
createNode(i + 1);
// Make two nodes as children of smaller
root->left = t1;
root->right = t2;
// Add root
li.push_back(root);
}
else
li.push_back(t1);
}
int lsize = li.size();
// Construct the complete tournament tree from above
// prepared list of winners in first round.
while (lsize != 1)
{
// Find index of last pair
int last = (lsize & 1)? (lsize - 2) : (lsize - 1);
// Process current list items in pair
for (int i = 0; i < last; i += 2)
{
// Extract two nodes from list, make a new
// node for winner of two
Node *f1 = li.front();
li.pop_front();
Node *f2 = li.front();
li.pop_front();
root = (arr[f1->idx] < arr[f2->idx])?
createNode(f1->idx) : createNode(f2->idx);
// Make winner as parent of two
root->left = f1;
root->right = f2;
// Add winner to list of next level
li.push_back(root);
}
if (lsize & 1)
{
li.push_back(li.front());
li.pop_front();
}
lsize = li.size();
}
// Traverse tree from root to find second minimum
// Note that minimum is already known and root of
// tournament tree.
int res = INT_MAX;
traverseHeight(root, arr, res);
cout << "Minimum: " << arr[root->idx]
<< ", Second minimum: " << res << endl;
}
// Driver code
int main()
{
int arr[] = {61, 6, 100, 9, 10, 12, 17};
int n = sizeof(arr)/sizeof(arr[0]);
findSecondMin(arr, n);
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
#include <time.h>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll Random(ll lower, ll upper) {ll num = (rand() % (upper - lower + 1)) + lower;return num;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
vector<long long int> prime_factors(long long int n,ll mynum, ll rem){
ll pos=mynum*mynum;
vector<long long int> prime_factor_list;
if(n%2==0){
if(pos%2==rem)prime_factor_list.push_back(2);
}
while(n%2==0){
n=n/2;
}
for(int i=3;i<=sqrt(n);i=i+2){
if(pos%i==rem)prime_factor_list.push_back(i);
while(n%i==0){
n=n/i;
}
}
if(n>2){
if(pos%n==rem)prime_factor_list.push_back(n);
}
return prime_factor_list;
}
int main()
{
string y;
tc{
ll mynum=31623;//or check with 31623 or 31627
ll rem;
std::vector<ll>::iterator it;
cout<<"1"<<" "<<mynum<<endl;
fflush(stdout);
cin>>rem;
ll val1=(mynum*mynum)-rem;
vector<ll>plist1=prime_factors(val1,mynum,rem);
sort(plist1.begin(),plist1.end());
ll snum=31627;
ll chk=snum*snum;
ll rem2;
map<ll,ll>m;
bool flag=false;
for( ll ele : plist1){
rem2=chk%ele;
if(m.find(rem2)==m.end())m[rem2]=ele;
else {flag=true;break;}
}
if(flag==false){
cout<<1<<" "<<snum<<endl;
fflush(stdout);
cin>>rem2;
cout<<2<<" "<<m[rem2]<<endl;
fflush(stdout);
cin>>y;
}
else {
ll fst=plist1[plist1.size()-1];
for(ll gd=1;gd<fst+1;gd++ )
{
snum=gd;
chk=snum*snum;
flag=false;
m.clear();
for(ll ele : plist1){
rem2=chk%ele;
if(m.find(rem2)==m.end())m[rem2]=ele;
else {flag=true;break;}
}
if(flag==false)break;
}
cout<<1<<" "<<snum<<endl;
fflush(stdout);
cin>>rem2;
cout<<2<<" "<<m[rem2]<<endl;
fflush(stdout);
cin>>y;
}
if(y=="No")return 0;
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
int flipbits(int n) {
int res=n^((1<<32)-1);
return res;
}
int main() {
int n;
cin >> n;
int result = flipbits(n);
cout << result << endl;
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main() {
int T;
cin >> T;
for(int a0 = 0; a0 < T; a0++){
unsigned N;
cin >> N;
cout <<~N<< endl;
}
return 0;
}
<file_sep>#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
int main() {
int t;
scanf("%d",&t);
while(t--)
{
int n;
scanf("%d",&n);
vector<int> inp(n);
for(int i=0;i<n;i++)
scanf("%d",&inp[i]);
vector<long long> out(n);
vector<long long> sec(n);
out[n-1] = 1;
for(int i=n-2;i>=0;i--)
{
sec[i+1] = 1;
out[i] = 1 + out[i+1];
if(inp[i]==2&&i+2<n)
{
out[i]+=out[i+2];
if(inp[i+1]==2&&i+3<n)
out[i]+=1+out[i+3];
else
out[i]+=1;
if(i+3<n&&inp[i+3]==2)
out[i]+=sec[i+3];
sec[i+1]+=1;
if(i+3<n&&inp[i+3]==2)
sec[i+1]+=sec[i+3];
}
out[i]%=1000000007;
sec[i]%=1000000007;
}
printf("%lld\n",out[0]);
}
}
<file_sep>/*#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
ll n,k;
cin>>n>>k;
ll a[n];
map<ll , ll>m;
ll i;
for(i=0;i<n;i++)cin>>a[i];
for(i=0;i<k;i++){
m[a[i]]++;
}
auto it=m.rbegin();
cout<<it->first<<" ";
ll pos=0;
for(i=k;i<n;i++){
m[a[i]]++;
m[a[pos]]--;
if(m[a[pos]]==0)m.erase(a[pos]);
pos++;
it=m.rbegin();
cout<<it->first<<" ";
}
cout<<endl;
}
return 0;
}*/
// best solution
#include<iostream>
using namespace std;
#define ll long long int
int main()
{
int li;
cin >> li;
while(li--)
{
ll n,t;
cin >> n >> t;
ll arr[n];
int initialMax = -1;
ll pos;
for(int i=0;i<n;i++)
{
cin >> arr[i];
}
for(int j=0;j<t;j++)
{
if(arr[j] > initialMax)
{
initialMax = arr[j];
pos = j;
}
}
cout << initialMax << " ";
for(int i=1;i<n-t+1;i++)
{
if(pos>=i)
{
if(arr[i+t-1] > initialMax)
{
cout << arr[i+t-1] << " ";
initialMax = arr[i+t-1];
pos = i+t-1;
}
else
{
cout << initialMax << " ";
}
}
else if(pos<i)
{
ll newMax=-1;
for(int j=i;j<=i+t-1;j++)
{
if(arr[j] > newMax)
{
newMax = arr[j];
pos = j;
}
}
initialMax = newMax;
cout << initialMax << " ";
}
}
cout << "\n";
}
return 0;
}
/*
or
int main()
{
int t;
cin >> t;
while(t--)
{
int n, k;
cin>>n>>k;
int a[n];
forall(i,0,n) cin>>a[i];
forall(i,0,n-k+1)
cout<<*max_element(a+i, a+i+k)<<' ';
cout<<'\n';
}
}
*/
<file_sep>void leftView(Node *root)
{
int res[1002]={0};
int sum=0;
int level=0;
Node *cur=root;
queue<Node*>q;
q.push(cur);
q.push(NULL);
while(q.size()!=1){
cur=q.front();
q.pop();
if(cur!=NULL){
if(res[level]==0)
res[level]=cur->data;
}
else if(cur==NULL){
level+=1;
q.push(NULL);
continue;
}
if(cur->left)q.push(cur->left);
if(cur->right)q.push(cur->right);
}
for(int i=0;i<=level;i++){
cout<<res[i]<<" ";
}
}
void rightView(Node *root)
{
int res[1002]={0};
int sum=0;
int level=0;
Node *cur=root;
queue<Node*>q;
q.push(cur);
q.push(NULL);
while(q.size()!=1){
cur=q.front();
q.pop();
if(cur!=NULL){
res[level]=cur->data;
}
else if(cur==NULL){
level+=1;
q.push(NULL);
continue;
}
if(cur->left)q.push(cur->left);
if(cur->right)q.push(cur->right);
}
for(int i=0;i<=level;i++){
cout<<res[i]<<" ";
}
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int main()
{
FIO
tc{
ll n,k;
cin>>n>>k;
ll a[n],i,j,m,lcount,l,y,z,slen,f;
ll bcount=0;
ll mymaxi=-1;
ll mymin=2001;
ll ifzero[2001]={0};
bool flag=false;
ll track;
//ll s[2001]={0};
ll startpoint=2001;
bool myflag=false;
for(i=0;i<n;i++){cin>>a[i];ifzero[a[i]]+=1;if(a[i]<startpoint)startpoint=a[i];}
for(i=startpoint;i<2001;i++){
if(ifzero[ifzero[i]]>0){flag=true;break;}
}
if(flag==false)cout<<0<<endl;
else {
for(i=0;i<n;i++){
ll s[2001]={0};
ll distcount=0;
mymaxi=-1;
mymin=2001;
for(j=i;j<n;j++){
ll kele=0;
slen=(j-i+1);
distcount+=1;
if(a[j]>mymaxi)mymaxi=a[j];
if(a[j]<mymin)mymin=a[j];
s[a[j]]+=1;
if(s[a[j]]>1)distcount-=1;
//find kth element
if (distcount==slen){
if(s[1]==1)bcount+=1;
}
else {
if (k>=slen){
//calc m
if(k%slen==0){
m=k/slen;
}
else {
m=k/slen;
m+=1;
}
if(k%slen==0){
if(s[s[mymaxi]]>0)bcount+=1;
}
else if((m*(slen-1))<k){
if(s[s[mymaxi]]>0)bcount+=1;
}
else {
kele=0;
for(l=mymin;l<=mymaxi;l++){
kele+=(m*s[l]);
if(kele>=k){
if(s[s[l]]>0)bcount+=1;
break;
}
}
}
}
else {
kele=0;
for(l=mymin;l<=mymaxi;l++){
kele+=s[l];
if(kele>=k){if(s[s[l]]>0)bcount+=1;break;}
}
}
}
}
}
}
cout<<bcount<<endl;
}
return 0;
}
<file_sep>n=int(input())
A=-1
B=-1
C=-1
minA=100001
minB=100001
minC=100001
minAB=100001
minAC=100001
minBC=100001
minABC=100001
terminate_flag=0
for _ in range(n):
cost,vitamin=input().split(' ')
cost=int(cost)
if 'A' in vitamin:
A=1
if 'B' in vitamin:
B=1
if 'C' in vitamin:
C=1
if vitamin == "A":
if cost<minA:
minA=cost
elif vitamin =="B":
if cost<minB:
minB=cost
elif vitamin =="C":
if cost<minC:
minC=cost
elif (vitamin =="AB" or vitamin =="BA"):
if cost<minAB:
minAB=cost
elif (vitamin =="BC" or vitamin =="CB"):
if cost<minBC:
minBC=cost
elif (vitamin=="AC" or vitamin=="CA"):
if cost<minAC:
minAC=cost
else:
if cost<minABC:
minABC=cost
lst=list()
minval1=minA+minB+minC
lst.append(minval1)
minval2=minAB+minC
lst.append(minval2)
minval3=minBC+minA
lst.append(minval3)
minval4=minAC+minB
lst.append(minval4)
lst.append(minABC)
lst.append(minAB+minAC)
lst.append(minAB+minBC)
lst.append(minBC+minAC)
lst.append(minBC+minAB)
lst.append(minAC+minAB)
lst.append(minAC+minBC)
lst.append(minA+minB+minAC)
lst.append(minA+minB+minBC)
lst.append(minA+minC+minBC)
lst.append(minA+minC+minAB)
lst.append(minB+minC+minAC)
lst.append(minB+minC+minAB)
if(A==-1 or B==-1 or C==-1):
print("-1")
terminate_flag=1
if(terminate_flag==0):
print(min(lst))
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
long long int divisors(long long int n)
{
long long int count=0;
for (long long int i=1; i<=sqrt(n); i++)
{
if (n%i == 0)
{
if (n/i == i)
count=count+1;
else
count=count+2;
}
}
return count;
}
int main() {
long long int n;
cin>>n;
if(n==1)cout<<1;
else{
cout<<divisors(n)<<endl;
}
return 0;
}<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
bool ispresent[1000001]={false};
int main()
{
FIO
tc{
set<int>s;
int q;
cin>>q;
int e=0;
int o=0;
std::set<int>::iterator it;
memset(ispresent,false,sizeof(ispresent));
//unordered_map<int,bool>ispresent;
while(q--){
int num;
cin>>num;
if(ispresent[num]==false){
for(int ele : s){
//cout<<ele<<" ";
int val=ele^num;
if(ele != num && ispresent[val]==false)
{
s.insert(val);
ispresent[val]=true;
if(__builtin_popcount (val) %2 ==1)o+=1;
else e+=1;
}
}
if(ispresent[num]==false)
{
s.insert(num);
ispresent[num]=true;
if(__builtin_popcount (num) %2 ==1)o+=1;
else e+=1;
}
//cout<<endl;
}
cout<<e<<" "<<o<<endl;
}
}
return 0;
}<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int main()
{
FIO
tc{
ll n;
cin>>n;
string s;
char c;
cin>>s>>c;
ll dp[n];
memset(dp,0LL,sizeof(dp));
ll i=0,cc=0,prev=-1;
for(i=0;i<n;i++){
if(s[i]==c){
cc+=1;
dp[i]=(i-prev-1);
prev=i;
}
}
//for (i=0;i<n;i++)cout<<dp[i]<<" ";
//cout<<endl;
ll res=0;
for(i=0;i<n;i++){
if(s[i]==c){
cc-=1;
res+=(n-cc);
res+=(dp[i]*(n-i-1-cc));
}
}
cout<<res<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
vector<int>adj[100001];
vector<bool>visited(100001,false);
int soldiers[100001];
int csol=0;
int totalkilled=0;
int totalsoldiers=0;
int injuredsoldiers=0;
vector<int >ktent;
void dfs(int s,int n){
int max=INT_MIN;
vector<int>here;
int maxid=0;
stack<int>stk;
stk.push(s);
while(!stk.empty()){
s=stk.top();
stk.pop();
if(visited[s]==false){
visited[s]=true;
here.push_back(s);
//if(soldiers[s]>max){max=soldiers[s];maxid=s;}
}
for ( int ele : adj[s]){
if(visited[ele]==false){
stk.push(ele);
}
}
}
sort(here.begin(),here.end());
for(int val : here){
if(soldiers[val]>max){
max=soldiers[val];
maxid=val;
}
}
totalkilled+=max;
injuredsoldiers-=max;
ktent.push_back(maxid);
}
int main()
{
FIO
{
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++){cin>>soldiers[i];injuredsoldiers+=soldiers[i];}
for(int i=0;i<m;i++){
int a,b;
cin>>a>>b;
adj[a].push_back(b);
adj[b].push_back(a);
}
for(int i=1;i<=n;i++){
if(visited[i]==false){
dfs(i,n);
}
}
cout<<totalkilled<<" "<<injuredsoldiers<<endl;
sort(ktent.begin(),ktent.end());
for(int e: ktent){
cout<<e<<" ";
}
cout<<endl;
}
return 0;
}
<file_sep>// Bear and Stickman
// author: Errichto
#include<bits/stdc++.h>
using namespace std;
const int mod = 1e9 + 7;
bool t[205][205];
int bin(int a, int b) {
int s = 1;
for(int i = 1; i <= b; ++i)
s = s * (a + 1 - i) / i;
return s;
}
int main() {
int n, m;
scanf("%d %d", &n, &m);
while(m--) {
int a, b;
scanf("%d%d", &a, &b);
t[a][b] = t[b][a] = true;
}
int s = 0;
for(int a = 1; a <= n; ++a)
for(int b = 1; b <= n; ++b)
if(t[a][b]) {
int x = 0, y = 0, z = 0;
for(int i = 1; i <= n; ++i) {
if(t[a][i] && t[b][i]) ++y;
else if(t[a][i]) ++x;
else if(t[b][i]) ++z;
}
--x; --z;
for(int two = 0; two <= 2; ++two)
for(int three = 0; three <= 3; ++three) {
s += (long long) bin(y, two) * bin(x, 2-two) * bin(y-two, three) * bin(z, 3-three) % mod;
s %= mod;
}
}
printf("%d\n", s);
return 0;
}
<file_sep>#include <cstdio>
#include<bits/stdc++.h>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <vector>
using namespace std;
int main() {
deque <int> q ;
int n,k;
cin>>n>>k;
vector<int > arr(n,0);
for(int j=0;j<n;j++){
cin>>arr[j];
}
int max=0;
int second_max=0;
for(int l=0;l<k;l++)
{
if(arr[l]>second_max)
{
int temp=second_max;
second_max=arr[l];
if(second_max>max){
second_max=max;
max=temp;
}
}
q.push_back(arr[l]);
}
for(int i=k;i<n;i++)
{
cout<<max<<" ";
int temp2=arr[k];
int x=q.back();
int y=q.front();
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
int n,m;
long long sum=0;
int occupancy=0;
long long max=INT_MIN;
long long min=INT_MAX;
cin>>n;
cin>>m;
int a[n]={0};
for(int i=0;i<n;i++){
cin>>a[i];
sum=sum+a[i];
if(a[i]<min)min=a[i];
if(a[i]>max)max=a[i];
}
int total=sum+m;
if(total%n==0){
occupancy=total/n;
}
else {
occupancy=(total/n)+1;
}
int res=0;
if(occupancy>max)res=occupancy;
else res=max;
cout<<res<<" "<<max+m;
return 0;
}
<file_sep>#include <bits/stdc++.h>
#include<string.h>
using namespace std;
bool palindromeCheck(string s){
int l=0;
l=s.length();
bool flag=true;
for (int i=0;i<l;i++)
{
if(s[i]!=s[l-i-1])
{
flag=false;
break;
}
}
return flag;
}
int main() {
string s;
cin >> s;
bool result = palindromeCheck(s);
if(result == true)
{
cout<<"YES";
}
else
{
cout<<"NO";
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
//to find largest prime factors of a given number and if required
//return the list of all prime factors of a given number
using namespace std;
vector<long long int> prime_factors(long long int n){
long long int max=1;
vector<long long int> prime_factor_list;
if(n%2==0)max=2;
while(n%2==0){
prime_factor_list.push_back(2);
n=n/2;
}
for(int i=3;i<=sqrt(n);i=i+2){
while(n%i==0){
prime_factor_list.push_back(i);
if(i>max)max=i;
n=n/i;
}
}
if(n>2){
if(n>max)max=n;
prime_factor_list.push_back(n);
}
cout<<max<<endl;
return prime_factor_list;
}
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n;
cin>>n;
vector<long long int> result;
result=prime_factors(n);
}
return 0;
}
<file_sep>map<int,int>m;
//using recursion
void solve(Node *root, int i){
if(root==NULL)return;
if(m.find(i)==m.end())m[i]=root->data;
else m[i]+=root->data;
solve(root->left,i-1);
solve(root->right,i+1);
}
void printVertical(Node *root)
{
solve(root,0);
for(auto i : m)cout<<i.second<<" ";
m.clear();
}
<file_sep>// Finds and prints all jumping numbers smaller than or
// equal to x.
#include<bits/stdc++.h>
using namespace std;
// Prints all jumping numbers smaller than or equal to x starting
// with 'num'. It mainly does BFS starting from 'num'.
void bfs(int x, int num)
{
// Create a queue and enqueue 'i' to it
queue<int > q;
q.push(num);
// Do BFS starting from i
while (!q.empty())
{
num = q.front();
q.pop();
if (num <= x)
{
cout << num << " ";
int last_dig = num % 10;
// If last digit is 0, append next digit only
if (last_dig == 0)
q.push((num*10) + (last_dig+1));
// If last digit is 9, append previous digit only
else if (last_dig == 9)
q.push( (num*10) + (last_dig-1) );
// If last digit is neighter 0 nor 9, append both
// previous and next digits
else
{
q.push((num*10) + (last_dig-1));
q.push((num*10) + (last_dig+1));
}
}
}
}
// Prints all jumping numbers smaller than or equal to
// a positive number x
void printJumping(int x)
{
cout << 0 << " ";
for (int i=1; i<=9 && i<=x; i++)
bfs(x, i);
}
// Driver program
int main()
{
int x = 499999;
printJumping(x);
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
inline ll binpow(ll a, ll b, ll m){
a=a%m;
ll res=1;
while(b>0){
if(b & 1 )res=(res*a)%m;
a=(a*a)%m;
b >>= 1;
}
return res;
}
void solve(){
//your code here
ll a,b,m;
cin>>a>>b;
cout<<binpow(a,b,10)<<endl;
}
int main()
{
FIO
tc{
solve();
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
vector<long long int > prime_range(long long int a,long long int b)
{
vector<long long int >prime_range_list;
long long int lmt=b+1;
bool primes[lmt];
memset(primes,true,sizeof(primes));
for(long long int p=2;p*p<lmt;p++){
if(primes[p]==true){
for(long long int i=p*2;i<lmt;i=i+p){
primes[i]=false;
}
}
}
long long int start=a;
if(a==1){
start=a+1;
}
for(long long int x=start;x<lmt;x++){
if(primes[x]==true){
prime_range_list.push_back(x);
}
}
return prime_range_list;
}
int main()
{
int t;
cin>>t;
while(t--)
{
long long int a,b;
cin>>a>>b;
vector<long long int>res=prime_range(a,b);
for(auto y:res){
cout<<y<< " ";
}
cout<<endl;
}
return 0;
}
<file_sep>//double simpson(double l,double r){return (r-l)/6*(f(l)+4*f((l+r)/2)+f(r));}
#include<bits/stdc++.h>
const double eps=1e-12; // represents how much precision you need
double f(double x){ /* function for integration */}
double simpson(double l,double r){return (r-l)/6*(f(l)+4*f((l+r)/2)+f(r));}
double calc(double l,double r,double ans)
{
double m=(l+r)/2,x=simpson(l,m),y=simpson(m,r);
if(abs(x+y-ans)<eps)return x+y;
return calc(l,m,x)+calc(m,r,y);
}
int main()
{
double L,R;
scanf("%lf%lf",&L,&R);
printf("%.8f\n",calc(L,R,simpson(L,R)));
return 0;
}
<file_sep>#include <iostream>
using namespace std;
long long maxSum(long long n)
{
if (n == 1)
return 1;
else
return (n * (n - 1) / 2) - 1 + n / 2;
}
int main()
{
long long t;
cin>>t;
long long n;
for(int i=0;i<t;i++){
cin>>n;
cout << maxSum(n)<<endl;
}
return 0;
}
<file_sep>#include<iostream>
using namespace std;
struct node
{
int data;
node *next;
};
class list
{
private:
node *head, *tail;
public:
list()
{
head=NULL;
tail=NULL;
}
void createnode(int value)
{
node *temp=new node;
temp->data=value;
temp->next=NULL;
if(head==NULL)
{
head=temp;
tail=temp;
temp=NULL;
}
else
{
tail->next=temp;
tail=temp;
}
}
void display()
{
node *temp=new node;
temp=head;
while(temp!=NULL)
{
cout<<temp->data<<"\t";
temp=temp->next;
}
}
void insert_start(int value)
{
node *temp=new node;
temp->data=value;
temp->next=head;
head=temp;
}
void insert_position(int pos, int value)
{
node *pre=new node;
node *cur=new node;
node *temp=new node;
cur=head;
for(int i=1;i<pos;i++)
{
pre=cur;
cur=cur->next;
}
temp->data=value;
pre->next=temp;
temp->next=cur;
}
void delete_first()
{
node *temp=new node;
temp=head;
head=head->next;
delete temp;
}
void delete_last()
{
node *current=new node;
node *previous=new node;
current=head;
while(current->next!=NULL)
{
previous=current;
current=current->next;
}
tail=previous;
previous->next=NULL;
delete current;
}
void delete_position(int pos)
{
node *current=new node;
node *previous=new node;
current=head;
for(int i=1;i<pos;i++)
{
previous=current;
current=current->next;
}
previous->next=current->next;
}
};
int main()
{
list obj;
obj.createnode(25);
obj.createnode(50);
obj.createnode(90);
obj.createnode(40);
cout<<"\n--------------------------------------------------\n";
cout<<"---------------Displaying All nodes---------------";
cout<<"\n--------------------------------------------------\n";
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"-----------------Inserting At End-----------------";
cout<<"\n--------------------------------------------------\n";
obj.createnode(55);
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"----------------Inserting At Start----------------";
cout<<"\n--------------------------------------------------\n";
obj.insert_start(50);
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"-------------Inserting At Particular--------------";
cout<<"\n--------------------------------------------------\n";
obj.insert_position(5,60);
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"----------------Deleting At Start-----------------";
cout<<"\n--------------------------------------------------\n";
obj.delete_first();
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"-----------------Deleing At End-------------------";
cout<<"\n--------------------------------------------------\n";
obj.delete_last();
obj.display();
cout<<"\n--------------------------------------------------\n";
cout<<"--------------Deleting At Particular--------------";
cout<<"\n--------------------------------------------------\n";
obj.delete_position(4);
obj.display();
cout<<"\n--------------------------------------------------\n";
system("pause");
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main()
{
int i,j,k,n,t,temp;
cin>>t;
for(i=0;i<t;i++)
{
int flag=0;
cin>>n;
vector <bool> a(101,false);
a[0]=true;
for(j=0;j<n;j++)
{
cin>>temp;
if(temp>0)a[temp]=true;
}
for(k=0;k<101;k++){
if(a[k]==false){
cout<<k<<endl;
break;
}
}
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
vector<string> split_string(string);
long int journeyToMoon(int n, vector<vector<int>> astronaut) {
int len=astronaut.size();
bool visited[n]={false};
vector<int>a[n];
for(int i=0;i<len;i++){
a[astronaut[i][0]].push_back(astronaut[i][1]);
a[astronaut[i][1]].push_back(astronaut[i][0]);
}
long int sum = 0;
long int result = 0;
for(int i=0;i<n;i++){
if(visited[i]==false){
int loc_count=1;
queue<int>q;
q.push(i);
visited[i]=true;
while(!q.empty()){
int t=q.front();
q.pop();
for(int ele : a[t]){
if(visited[ele]==false){
q.push(ele);
visited[ele]=true;
loc_count+=1;
}
}
}
result += sum*loc_count;
sum+=loc_count;
}
}
return result;
}
int main()
{
ofstream fout(getenv("OUTPUT_PATH"));
string np_temp;
getline(cin, np_temp);
vector<string> np = split_string(np_temp);
int n = stoi(np[0]);
int p = stoi(np[1]);
vector<vector<int>> astronaut(p);
for (int i = 0; i < p; i++) {
astronaut[i].resize(2);
for (int j = 0; j < 2; j++) {
cin >> astronaut[i][j];
}
cin.ignore(numeric_limits<streamsize>::max(), '\n');
}
long int result = journeyToMoon(n, astronaut);
fout << result << "\n";
fout.close();
return 0;
}
vector<string> split_string(string input_string) {
string::iterator new_end = unique(input_string.begin(), input_string.end(), [] (const char &x, const char &y) {
return x == y and x == ' ';
});
input_string.erase(new_end, input_string.end());
while (input_string[input_string.length() - 1] == ' ') {
input_string.pop_back();
}
vector<string> splits;
char delimiter = ' ';
size_t i = 0;
size_t pos = input_string.find(delimiter);
while (pos != string::npos) {
splits.push_back(input_string.substr(i, pos - i));
i = pos + 1;
pos = input_string.find(delimiter, i);
}
splits.push_back(input_string.substr(i, min(pos, input_string.length()) - i + 1));
return splits;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
long long int kprime(long long int n, long long int k){
long long int kmax=1;
long long int kt=0;
if(n%2==0){
kt=kt+1;
if(kt==k)return 2;
}
while(n%2==0){
n=n/2;
}
long long int prev=2;
for(int i=3;i<=sqrt(n);i=i+2){
while(n%i==0){
if(prev!=i){
prev=i;
kt=kt+1;
if(kt==k)return i;
}
n=n/i;
}
}
if(n>2){
kt=kt+1;
if(kt==k)return n;
}
else return -1;
}
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n,k;
cin>>n>>k;
cout<<kprime(n,k);
cout<<endl;
}
return 0;
}
<file_sep>void topView(Node *root)
{
if(root==NULL)return;
queue<pair<Node*,int>>q;
Node *cur=root;
int pos=0;
q.push(make_pair(cur,pos));
//mp[0]=cur->data;
int newpos;
map<int,int>mp;
while(!q.empty() ){
cur=q.front().first;
newpos=q.front().second;
q.pop();
if(mp.find(newpos)==mp.end())mp[newpos]=cur->data;
if(cur->left){
int tst=newpos-1;
q.push(make_pair(cur->left,tst));
}
if(cur->right){
int tst=newpos+1;
q.push(make_pair(cur->right,tst));
}
}
for(auto ele : mp){
cout<<ele.second<<" ";
}
//64 32 16 8 4 2 1 3 7 15 31 63
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
vector<int> dijkstra(int n,int source, vector<pair<int, int> > G[]) {
int INF = (int)1e9;
vector<int> D(n, INF);
D[source] = 0;
set<pair<int, int> > Q;
Q.insert({0,source});
while(!Q.empty()) {
auto top = Q.begin();
int u = top->second;
Q.erase(top);
for(auto next: G[u]) {
int v = next.first, weight = next.second;
if( D[u] + weight < D[v] ) {
if(Q.find( {D[v],v})!=Q.end())
Q.erase(Q.find( {D[v], v} ));
D[v] = D[u] + weight;
Q.insert( {D[v], v} );
}
}
}
return D;
}
int main(){
int n,m,s,x,y,z;
cin>>n>>m>>s;
//Input the number of nodes(0 based), number of edges and the source vertex.
vector<pair<int,int> > *G=new vector<pair<int,int> >[n];
vector<int>ans;
for(int i=0;i<m;i++){
cin>>x>>y>>z;
//Input the starting vertex of the edge, the ending vertex and the cost of the edge.
G[x].push_back(make_pair(y,z));
}
ans = dijkstra(n,s,G); //ans has the cost from source to all the vertices.
for(int i=0;i<n;i++)
cout<<ans[i]<<" ";
cout<<endl;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#define ll long long int
using namespace std;
vector<long long int> factors(long long int n){
vector<long long int> factor_list;
for (ll i=1; i<=sqrt(n); i++)
{
if (n%i == 0)
{
if (n/i == i)
factor_list.push_back(i);
else{
factor_list.push_back(i);
factor_list.push_back(n/i);
}
}
}
return factor_list;
}
ll check( ll a[], ll n){
while(--n>0 && a[n]==a[0]);
return n!=0;
}
int main() {
ll n;
cin>>n;
vector<ll>res=factors(n);
sort(res.begin(),res.end());
for(ll x:res)cout<<x<<" ";
return 0;
}<file_sep>#include <iostream>
using namespace std;
// Data structure to store Adjacency list nodes
struct Node {
int val, cost;
Node* next;
};
// Data structure to store graph edges
struct Edge {
int src, dest, weight;
};
class Graph
{
// Function to allocate new node of Adjacency List
Node* getAdjListNode(int value, int weight, Node* head)
{
Node* newNode = new Node;
newNode->val = value;
newNode->cost = weight;
// point new node to current head
newNode->next = head;
return newNode;
}
int N; // number of nodes in the graph
public:
// An array of pointers to Node to represent
// adjacency list
Node **head;
// Constructor
Graph(Edge edges[], int n, int N)
{
// allocate memory
head = new Node*[N]();
this->N = N;
// initialize head pointer for all vertices
for (int i = 0; i < N; ++i)
head[i] = nullptr;
// add edges to the directed graph
for (unsigned i = 0; i < n; i++)
{
int src = edges[i].src;
int dest = edges[i].dest;
int weight = edges[i].weight;
// insert in the beginning
Node* newNode = getAdjListNode(dest, weight, head[src]);
// point head pointer to new node
head[src] = newNode;
// Uncomment below lines for undirected graph
/*
newNode = getAdjListNode(src, weight, head[dest]);
// change head pointer to point to the new node
head[dest] = newNode;
*/
}
}
// Destructor
~Graph() {
for (int i = 0; i < N; i++)
delete[] head[i];
delete[] head;
}
};
// print all neighboring vertices of given vertex
void printList(Node* ptr, int i)
{
while (ptr != nullptr)
{
cout << "(" << i << ", " << ptr->val
<< ", " << ptr->cost << ") ";
ptr = ptr->next;
}
cout << endl;
}
// Graph Implementation in C++ without using STL
int main()
{
// array of graph edges as per above diagram.
Edge edges[] =
{
// (x, y, w) -> edge from x to y having weight w
{ 0, 1, 6 }, { 1, 2, 7 }, { 2, 0, 5 }, { 2, 1, 4 },
{ 3, 2, 10 }, { 4, 5, 1 }, { 5, 4, 3 }
};
// Number of vertices in the graph
int N = 6;
// calculate number of edges
int n = sizeof(edges)/sizeof(edges[0]);
// construct graph
Graph graph(edges, n, N);
// print adjacency list representation of graph
for (int i = 0; i < N; i++)
{
// print all neighboring vertices of vertex i
printList(graph.head[i], i);
}
return 0;
}
<file_sep>
#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
ll n;
cin>>n;
ll a[n];
for(ll i=0;i<n;i++)cin>>a[i];
ll count=0,sum=0;
unordered_map<ll,ll>mp;
for(ll i=0;i<n;i++){
sum+=a[i];
if(sum==0)count+=1;
if(mp.find(sum)!=mp.end()){
count+=mp[sum];
}
mp[sum]+=1;
}
cout<<count<<endl;
}
return 0;
}
/*
#include <bits/stdc++.h>
using namespace std;
int sub(int a[],int n){
int sum=0,count=0;
unordered_map<int,int>ump;
ump[0]++;
for(int i=0;i<n;i++){
sum+=a[i];
if(ump.find(sum)!=ump.end()){
count+=ump[sum];
}
ump[sum]++;
}
return count;
}
int main() {
int t;cin>>t;
while(t--){
int n;cin>>n;
int a[n];
for(int i=0;i<n;i++)cin>>a[i];
cout<<sub(a,n)<<"\n";
}
return 0;
}
*/
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t--){
int r_dig[10]={3,0,1,2,2,2,2,2,2,3};
int l_dig[10]={0,3,3,2,1,1,1,1,1,1};
long long l,r,result=0,count=0;
cin>>l>>r;
int lr=l/10;
lr=(lr*10)+10;
int rr=r/10;
rr=rr*10;
int last_l=l%10;
int last_r=r%10;
if((rr-lr)==0)result=l_dig[last_l];
else result=(((rr-lr)/10)*3)+l_dig[last_l]+r_dig[last_r];
cout<<result<<endl;
//cout<<endl;
}
return 0;
}<file_sep>#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <string>
#include <bitset>
#include <cstdio>
#include <limits>
#include <vector>
#include <climits>
#include <cstring>
#include <cstdlib>
#include <fstream>
#include <numeric>
#include <sstream>
#include <iostream>
#include <algorithm>
#include <unordered_map>
#include<iostream>
using namespace std;
struct node
{
int height;
int location;
bool drowned;
node *next;
};
class list
{
private:
node *head, *tail;
public:
list()
{
head=NULL;
tail=NULL;
}
void createnode(int height,int location)
{
node *temp=new node;
temp->height=height;
temp->location=location;
temp->drowned=false;
temp->next=NULL;
if(head==NULL)
{
head=temp;
tail=temp;
temp=NULL;
}
else
{
tail->next=temp;
tail=temp;
}
}
void display()
{
node *temp=new node;
temp=head;
while(temp!=NULL)
{
cout<<temp->height<<temp->location<<temp->drowned<<"\t";
temp=temp->next;
}
}
void delete_position(int pos)
{
node *current=new node;
node *previous=new node;
current=head;
for(int i=1;i<pos;i++)
{
previous=current;
current=current->next;
}
previous->next=current->next;
}
};
int main() {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
return 0;
}
#include<iostream>
using namespace std;
struct node
{
int height;
int location;
bool drowned;
node *next;
};
class list
{
private:
node *head, *tail;
public:
list()
{
head=NULL;
tail=NULL;
}
void createnode(int height,int location)
{
node *temp=new node;
temp->height=height;
temp->location=location;
temp->drowned=false;
temp->next=NULL;
if(head==NULL)
{
head=temp;
tail=temp;
temp=NULL;
}
else
{
tail->next=temp;
tail=temp;
}
}
void display()
{
node *temp=new node;
temp=head;
while(temp!=NULL)
{
cout<<temp->height<<temp->location<<temp->drowned<<"\t";
temp=temp->next;
}
}
void delete_position(int pos)
{
node *current=new node;
node *previous=new node;
current=head;
for(int i=1;i<pos;i++)
{
previous=current;
current=current->next;
}
previous->next=current->next;
}
void drown(int pos)
{
node *temp=new node;
temp=head;
while(temp!=NULL){
if(temp->location==pos){
temp->drowned==true;
break;
}
temp=temp->next;
}
/*for(int x2=1;x2<pos;x2++){
temp=temp->next;
}
temp->drowned=true;*/
}
void evacuate(int pos)
{
node *temp=new node;
temp=head;
node *temp2=new node;
//node *current=new node;
//node *previous=new node;
//current=head;
for(int x1=1;x1<pos;x1++)
{
temp=temp->next;
//previous=current;
//current=current->next;
}
//previous->next=current->next;
temp2=temp;
int count=pos;
while(temp2!=NULL){
if(temp2->height>temp->height ){
if(temp2->drowned==false){
cout<<temp2->location<<endl;
break;
}
else{
cout<<"DROWNED"<<endl;
}
}
else{
temp2=temp2->next;
count=count+1;
}
}
if(temp2==NULL){
cout<<"IMPOSSIBLE"<<endl;
}
}
};
int main()
{
list obj;
int num,query;
cin>>num;
int i,j;
char status;
int height,location;
bool drowned;
for(i=0;i<num;i++){
cin>>location>>height;
obj.createnode(height,location);
}
cin>>query;
for(j=0;j<query;j++){
cin>>status>>location;
if(status=='e'){
obj.evacuate(location);
}
else{
obj.drown(location);
}
}
obj.display();
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
vector<int>adj[200001];
int max_depth=0;
vector<bool>visited(200001,false);
int dist[200001];
ll a[200001];
vector<ll>lvl[200001];
void bfs(int s) {
dist[1]=0;
queue<int>q;
q.push(s);
lvl[0].push_back(a[s]);
visited[s]=true;
while(!q.empty()){
s=q.front();
q.pop();
//for(auto i=adj[s].begin();i!=adj[s].end();++i){
for(int i : adj[s]){
if(visited[i]==false){
q.push(i);
visited[i]=true;
dist[i]=dist[s]+1;
lvl[dist[i]].push_back(a[i]);
if(dist[i]>max_depth)max_depth=dist[i];
}
}
}
}
int main()
{
FIO;
int n,m;
int count=0;
int q;
cin>>n;
int u,v;
//for(int i=1;i<=n;i++)cin>>a[i];
for(int i=0;i<n-1;i++){
cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
bfs(1);
cin>>q;
cout<<lvl[q-1].size()<<endl;
//for(int i=0;i<=max_depth;i++){
// sort(lvl[i].begin(),lvl[i].end());
/*for(int ele:lvl[i]){
cout<<ele<<" ";
}
cout<<endl;
*/
//}
/*
int level;
ll x;
while(q--){
cin>>level>>x;
level=level%(max_depth+1);
ll ans=-1;
for(ll ele : lvl[level]){
if(ele >=x){
ans=ele;
break;
}
}
cout<<ans<<endl;
}
*/
return 0;
}
<file_sep>map<int,int>m;
int i=0;
void fill(Node *root,int i)
{
if(root==NULL)return;
m[i]=root->data;
fill(root->left,i-1);
fill(root->right,i+1);
}
void bottomView(Node *root)
{
if(root==NULL)return;
m[i]=root->data;
fill(root->left,i-1);
fill(root->right,i+1);
for(auto i : m)cout<<i.second<<" ";
m.clear();
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define ll long long int
ll factorial[2000000];
ll max_fact=1;
ll fact(ll x){
ll i;
if(x<=max_fact)return factorial[x];
else{
for(i=max_fact+1;i<=x;i++){
factorial[i]=(factorial[i-1]*i)%mod;
}
max_fact=x;
return factorial[x];
}
}
int main()
{
factorial[0]=1;
factorial[1]=1;
ll t;
cin>>t;
while(t--){
ll n;
cin>>n;
cout<<fact(n)<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define mod 10000007
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
inline ll binpow(ll a, ll b){
a=a%mod;
ll res=1;
while(b>0){
if(b & 1 )res=(res*a)%mod;
a=(a*a)%mod;
b >>= 1;
}
return res;
}
void solve(){
//your code here
//Zsum solution for spoj
while(1){
ll n,k;
cin>>n>>k;
if(n==0 && k==0)break;
ll res=(binpow(n,n)+binpow(n,k))%mod;
ll res2=(2*binpow((n-1),(n-1)))%mod;
ll res3=(2*binpow((n-1),k))%mod;
res=(res+res2+res3)%mod;
cout<<res<<"\n";
}
}
int main()
{
FIO
{
solve();
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
void dfs(int u,bool visited[],vector<int>V[])
{
visited[u]=true;
vector<int>::iterator it;
for(it=V[u].begin();it!=V[u].end();it++)
{
if(!visited[*it])
{
dfs((*it),visited,V);
}
}
}
int main()
{
int n,m,k,u,v;
cin>>n>>m;
vector<int>V[n+1];
int sz=0;
for(int i=0;i<m;i++)
{
cin>>u>>v;
V[u].push_back(v);
V[v].push_back(u);
}
bool * visited=new bool [n+1];
memset(visited,false,sizeof(visited));
int num_of_connected=0;
for(int i=1;i<=n;i++)
{
if(visited[i]==false)
{
dfs(i,visited,V);
//cout<<i<<endl;
num_of_connected++;
}
}
cout<<num_of_connected<<endl;
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
inline ll max(ll a, ll b){return a>b?a:b;}
inline ll min(ll a, ll b){return a<b?a:b;}
unsigned int gcd(unsigned int u, unsigned int v)
{
int shift;
if (u == 0) return v;
if (v == 0) return u;
shift = __builtin_ctz(u | v);
u >>= __builtin_ctz(u);
do {
v >>= __builtin_ctz(v);
if (u > v) {
unsigned int t = v;
v = u;
u = t;
}
v = v - u;
} while (v != 0);
return u << shift;
}
int main()
{
FIO
tc{
set<int>s;
int n;
cin>>n;
int a[n];
int maxi=INT_MIN;
int sec_maxi=INT_MIN;
int mini=INT_MAX;
for(int i=0;i<n;i++){
cin>>a[i];
if(a[i]>maxi){sec_maxi=maxi;maxi=a[i];}
else if(a[i]>sec_maxi && a[i]!=maxi)sec_maxi=a[i];
if(a[i]<mini)mini=a[i];
s.insert(a[i]);
}
if(sec_maxi==INT_MIN)sec_maxi=maxi;
if(mini==1){
cout<<1+maxi<<endl;
}
else if(maxi==mini){
cout<<maxi+maxi<<endl;
}
else if(s.size()==2){
int gcdq=0;
for(int ele : s)gcdq+=ele;
cout<<gcdq<<endl;
}
else {
int cmp1=0,cmp2=0;
int gcd1,gcd2;
s.erase(s.find(maxi));
gcd1=mini;
for(int i: s){
gcd1=gcd(i,gcd1);
}
cmp1=gcd1+maxi;
s.erase(s.find(sec_maxi));
s.insert(maxi);
gcd2=mini;
for(int i : s){
gcd2=gcd(i,gcd2);
}
cmp2=gcd2+sec_maxi;
if(cmp1>cmp2)cout<<cmp1<<endl;
else cout<<cmp2<<endl;
}
}
return 0;
}
<file_sep> #include<bits/stdc++.h>
#define ll long long
using namespace std;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
ll t;
cin>>t;
while(t--){
ll n,x,y,z;
cin>>n>>x>>y>>z;
ll a,flag=0,b;
for(ll i=0;i<n;i++){
cin>>a;
while(a%x==0 && a>0){
a=a/x;
}
while(a%y==0 && a>0){
a=a/y;
}
while(a%z==0 && a>0){
a=a/z;
}
//mx = max(mx,a[i]);
//cout<<a[i]<<" ";
if(i==0){
b=a;
continue;
}
flag += a==b;
b=a;
}
if(flag!=n-1) cout<<"She can't"<<endl;
else cout<<"She can"<<endl;
}
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
//dfs implementation using stack
// return number of connected nodes for the given node
vector<int>adj[100001];
vector<bool>visited(100001,false);
int ans=0;
void dfs(int s) {
stack<int>stk;
stk.push(s);
while(!stk.empty()){
s=stk.top();
stk.pop();
if(!visited[s]){
cout<<s<<" ";
visited[s]=true;
ans++;
}
//in this case while iterating a vector list use auto operator to iterate through all the elements
//and as well as if you use auto use *iterator name while accessing that
// else use directly for(int iterator_name : adj[s]) to access the elements in the list seperately
for(auto i=adj[s].begin();i!=adj[s].end();++i){
//for(int i : adj[s]){
if(visited[*i]==false){
stk.push(*i);
}
}
}
}
int main()
{
int n,m;
int count=0;
cin>>n>>m;
int u,v;
for(int i=0;i<m;i++){
cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
int x;
cin>>x;
dfs(x);
cout<<n-ans<<endl;
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
vector<int>adj[100001];
int bfs(int s,int d){
if(d==1)return adj[s].size();
else {
int level[100001]={0};
//vector<int>level[100001];
int dist[100001]={0};
bool visited[100001]={false};
dist[s]=0;
queue<int>q;
q.push(s);
visited[s]=true;
while(!q.empty()){
int t=q.front();
q.pop();
for(int ele : adj[t]){
if(!visited[ele]){
q.push(ele);
visited[ele]=true;
dist[ele]=dist[t]+1;
level[dist[ele]]+=1;
//level[dist[ele]].push_back(ele);
}
}
}
return level[d];
}
}
int main()
{
FIO
int n,e;
cin>>n>>e;
for(int i=0;i<e;i++){
int u,v;
cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
int query;
cin>>query;
while(query--){
int node,distance;
cin>>node>>distance;
cout<<bfs(node,distance)<<endl;
}
return 0;
}
<file_sep>#include <stdio.h>
#include <string.h>
#include <stdbool.h>
int ROW=0;
int COL=0;
int isSafe(int M[][COL], int row, int col, bool visited[][COL])
{
return (row >= 0) && (row < ROW) &&
(col >= 0) && (col < COL) &&
(M[row][col] && !visited[row][col]);
}
void DFS(int M[][COL], int row, int col, bool visited[][COL])
{
static int rowNbr[] = {-1, -1, -1, 0, 0, 1, 1, 1};
static int colNbr[] = {-1, 0, 1, -1, 1, -1, 0, 1};
visited[row][col] = true;
for (int k = 0; k < 8; ++k)
if (isSafe(M, row + rowNbr[k], col + colNbr[k], visited) )
DFS(M, row + rowNbr[k], col + colNbr[k], visited);
}
int countIslands(int M[][COL])
{
bool visited[ROW][COL];
memset(visited, 0, sizeof(visited));
int count = 0;
for (int i = 0; i < ROW; ++i)
for (int j = 0; j < COL; ++j)
if (M[i][j] && !visited[i][j])
{
DFS(M, i, j, visited);
++count;
}
return count;
}
int main()
{
int n,i,j;
scanf("%d",&n);
ROW=n;
COL=n;
int M[n][n];
for(i=0;i<n;i++){
for(j=0;j<n;j++){
scanf("%d",&M[i][j]);
}
}
printf("%d\n", countIslands(M));
return 0;
}
<file_sep>// find longest subarray with equal zero and one's
#include <bits/stdc++.h>
using namespace std;
int maxLen(int arr[], int n);
int main() {
// your code goes here
int T;
cin>>T;
while(T--)
{
int n;
cin>>n;
int a[n];
for(int i=0;i<n;i++)
cin>>a[i];
cout<<maxLen(a,n)<<endl;
}
return 0;
}
int maxLen(int A[],int n)
{
for(int i=0;i<n;i++)if(A[i]==0)A[i]=-1;
map<int,int>m;
int sum=0,len=0;
//m[0]=-1;
for(int i=0;i<n;i++){
sum+=A[i];
if(A[i]==0 && len==0)len=1;
if(sum==0)len=i+1;
if(m.find(sum)!=m.end()){
len=max(len,i-m[sum]);
}
else m[sum]=i;
}
return len;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
int main() {
//code
int t;
cin>>t;
while(t--){
int n;
cin>>n;
vector<pair<int , int>> v;
for(int i = 0 ; i < n ; i++){
int a;
cin>>a;
v.push_back(make_pair(a , i));
}
sort(v.begin() , v.end());
int len = v.size() - 1;
int ans = 0;
int max_index = v[len].second;
for(int i = len-1 ; i >= 0;i--){
ans = max(ans , max_index - v[i].second);
max_index = max(max_index , v[i].second);
}
cout<<ans<<'\n'; }
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
long long int smallest_prime(long long int n){
long long int min=1;
if(n==1)return 1;
else if(n%2==0)return 2;
else {
for(long long int i=3;i<=sqrt(n);i=i+2){
if(n%i==0)return i;
}
}
return n;
}
int main()
{
int t;
//cin>>t;
t=1;
while(t--)
{
long long int n;
n=586;
//cin>>n;
for(long long int i=1;i<=n;i++){
cout<<smallest_prime(i)<<" ";
}
cout<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define mod 1000000007
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
inline ll binpow(ll a, ll b){
//a=a%mod;
ll res=1;
while(b>0){
if(b & 1 )res=(res*a)%mod;
a=(a*a)%mod;
b >>= 1;
}
return res;
}
void solve(){
//LOCKER solution for spoj
//Reference : Given a number K, Find the combination of numbers having
//sum equal to K and their Product being the largest.
//https://medium.com/@palak001/spoj-locker-magic-of-the-locker-a758bccf432f
ll n;
cin>>n;
ll rem=n%3;
ll d=n/3;
ll ans=1;
if(rem==1 && n!=1){
ans=binpow(3,d-1);
ans=(ans*4)%mod;
}
else if(rem==2){
ans=binpow(3,d);
ans=(ans*2)%mod;
}
else ans=binpow(3,d);
cout<<ans<<"\n";
}
int main()
{
FIO
tc{
solve();
}
return 0;
}
<file_sep>#include <iostream>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
int index(int freq[], int n)
{
int max = INT_MIN;
int index = -1;
loop(i,0,n)
{
if(freq[i] > max)
{
max = freq[i];
index = i;
}
}
return index;
}
int main()
{
tc
{
int n;
cin >> n;
int a[n];
int freq[61] = {0};
loop(i,0,n)
{
cin >> a[i];
freq[a[i]]++;
}
for (int i = 0;i<61;i++)
{
int j = index(freq,61);
if(freq[j] > 0)
{
for (int k=0;k<freq[j];k++)
cout << j << " ";
}
freq[j] = 0;
}
cout << endl;
}
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int index(vector<int> freq ,int lmt){
int max=-1;
int idx=-1;
for(int i=0;i<lmt;i++){
if(freq[i]>max){
max=freq[i];
idx=i;
}
}
return idx;
}
int main()
{
int i,j,k,n,t,temp;
cin>>t;
//vector <int > a(t,0);
for(i=0;i<t;i++)
{
cin>>n;
vector <int> a(60,0);
vector<int > freq(60,0);
for(j=0;j<n;j++){
cin>>a[j];
freq[a[j]]++;
}
int lmt_count=0;
for(k=0;k<61;k++){
if(freq[k]>0)lmt_count++;
}
//lmt_count=lmt_count+1;
for(k=0;k<lmt_count;k++){
int my_ele=index(freq,61);
if(my_ele>=0){
for(int l=freq[my_ele];l>0;l--){
cout<<my_ele<<" ";
}
freq[my_ele]=0;
}
}
cout<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
list <int > binary(int n){
list<int>b;
int x=n;
while(x>0){
b.push_back(x%2);
x=x/2;
}
return b;
}
int main(){
int n;
cin>>n;
list <int > bin=binary(n);
for(auto x : bin){
cout<<x;
}
cout<<endl;
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main()
{
int i,j,k,n,t;
//my_list=new list<int>[100]; //2D list declaration
//my_list::iterator it;
cin>>t;
while(t--)
{
cin>>n;
vector <int > a(n,0);
int sum=0;
for(i=0;i<n;i++){
cin>>a[i];
sum+=a[i];
}
cin>>k;
if(sum%k||n%2)cout<<"False";
else cout<<"True";
cout<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
vector<int> twoNumbers(vector<int>& nums) {
int xorAll=0;
for(int i=0;i<nums.size();i++){
xorAll=(xorAll^nums[i]);
}
int bit=xorAll&(~(xorAll-1));
int number1=0,number2=0;
for(int i=0;i<nums.size();i++){
if(nums[i]&bit){
number1=number1^nums[i];
}
else{
number2=number2^nums[i];
}
}
return {number1,number2};
}
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
n=(2*n)+2;
vector<int> v(n);
for(int i=0;i<n;i++){
cin>>v[i];
}
vector<int> numbers=twoNumbers(v);
sort(numbers.begin(),numbers.end());
cout<<numbers[0]<<" "<<numbers[1]<<endl;
}
}
<file_sep>Node *flatten(Node *root)
{
if(root==NULL)return root;
Node *cur=root;
int a[1001]={0};
queue<Node*>q;
q.push(cur);
int min=1001;
while(!q.empty()){
cur=q.front();
if(cur->data<min)min=cur->data;
a[cur->data]+=1;
if(cur->next!=NULL)q.push(cur->next);
if(cur->bottom!=NULL)q.push(cur->bottom);
q.pop();
}
Node *cur_move=new Node;
cur_move->data=min;
cur_move->bottom=NULL;
cur_move->next=NULL;
Node *returnval=cur_move;
a[min]-=1;
for(int i=min;i<1001;i++){
while(a[i]>0){
Node *cur_new=new Node;
cur_new->data=i;
cur_new->next=NULL;
cur_new->bottom=NULL;
cur_move->bottom=cur_new;
cur_move=cur_new;
a[i]-=1;
}
}
return returnval;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main(){
long long t;
cin>>t;
while(t--){
long long n,k,count=0;
cin>>n>>k;
long long a[n];
long long i;
long long sum=0;
for(i=0;i<n;i++){
cin>>a[i];
sum=sum+a[i];
}
for(int j=0;j<n;j++){
if((a[j]+k) > (sum-a[j])){
count=count+1;
}
}
cout<<count<<endl;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
vector<long long int >prime_pair(long long int n){
vector<long long int >res;
long long int lmt=n+1;
long long int count=0;
bool primes[lmt];
memset(primes,true,sizeof(primes));
for(long long int p=2;p*p<lmt;p++){
if(primes[p]==true){
for(long long int i=p*2;i<lmt;i=i+p){
primes[i]=false;
}
}
}
long long int x,y;
vector<long long int >prime_list;
for(long long int j=2;j<=lmt;j++){
if(primes[j]==true){
prime_list.push_back(j);
count++;
}
}
x=0;
y=count-1;
for(long long int k=0;k<count && x<=y;k++){
if((prime_list[x]+prime_list[y])==n){
res.push_back(prime_list[x]);
res.push_back(prime_list[y]);
return res;
}
else if((prime_list[x]+prime_list[y])<n){
x=x+1;
}
else if((prime_list[x]+prime_list[y])>n){
y=y-1;
}
}
res.push_back(1);
res.push_back(1);
return res;
}
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n;
cin>>n;
vector<long long int >res=prime_pair(n);
for(auto z:res){
cout<<z<<" ";
}
cout<<endl;
}
return 0;
}
<file_sep>// Iterative C++ program to find modular
// inverse using extended Euclid algorithm
#include <stdio.h>
// Returns modulo inverse of a with respect
// to m using extended Euclid Algorithm
// Assumption: a and m are coprimes, i.e.,
// gcd(a, m) = 1
int modInverse(int a, int m)
{
int m0 = m;
int y = 0, x = 1;
if (m == 1)
return 0;
while (a > 1)
{
// q is quotient
int q = a / m;
int t = m;
// m is remainder now, process same as
// Euclid's algo
m = a % m, a = t;
t = y;
// Update y and x
y = x - q * y;
x = t;
}
// Make x positive
if (x < 0)
x += m0;
return x;
}
// Driver program to test above function
int main()
{
int a = 5, m = 1000000007;
printf("Modular multiplicative inverse is %d\n",
modInverse(a, m));
return 0;
}
<file_sep>
#include<stdio.h>
#include<stdlib.h>
struct linked_list
{
int number;
struct linked_list *next;
struct linked_list *previous;
};
typedef struct linked_list node;
node *head=NULL, *tail=NULL;
node* getNewNode(int val);
void insert_at_head(int value);
void insert_at_tail(int value);
void insert_at_middle(int value, int position);
void deleteNode(int position);
void printLinkedListForward();
void printLinkedListBackward();
int main()
{
int a = 5, b = 15, c = 43, d = 23, e = 12, f = 66, g = 99, h =65, i = 20, j = 8;
int pos = 2, insertMidValue = 500, deletePos = 4;
//Create a linked list
printf("Insert nodes at tail: %d, %d, %d\n", a, b, c);
insert_at_tail(a);
insert_at_tail(b);
insert_at_tail(c);
//print the list forward
printLinkedListForward();
printf("Insert node: %d at middle. Position: %d\n", insertMidValue, pos);
insert_at_middle(insertMidValue, pos); //here midValue = 500 and pos = 2
//print the list forward
printLinkedListForward();
printf("Delete item of position number %d", deletePos);
deleteNode(deletePos);
//print the list forward
printLinkedListForward();
printf("Insert nodes at front: %d\n", d);
insert_at_head(d);
//print the list forward
printLinkedListForward();
printf("Insert nodes at tail: %d\n", e);
insert_at_tail(e);
//print the list forward
printLinkedListForward();
printf("Insert nodes at front: %d\n", f);
insert_at_head(f);
//print the list forward
printLinkedListForward();
printf("Delete first node of list\n");
deleteNode(1);
//print the list forward
printLinkedListForward();
printf("Insert nodes at tail: %d, %d, %d, %d\n", g, h, i, j);
insert_at_tail(g);
insert_at_tail(h);
insert_at_tail(i);
insert_at_tail(j);
//print the list forward
printLinkedListForward();
//print the list backward
printLinkedListBackward();
return 0;
}
/*
User defined functions
*/
//create a new node and returns to caller
node* getNewNode(int val)
{
node *temp_node;
temp_node = (node *) malloc(sizeof(node));
temp_node->number=val;
temp_node->next=NULL;
temp_node->previous=NULL;
return temp_node;
}
//Insert a node at front of the list. This node will be the new head
void insert_at_head(int value)
{
node *newNode = getNewNode(value);
if(head==NULL) //For the 1st element
{
//For now, newNode is the only one node of list
//So it it is head and also tail
head=newNode;
tail=newNode;
return;
}
//newNode will be the NEW HEAD of list.
//So it'll point to head as 'next node'
newNode->next = head;
head->previous = newNode; //before, the previous node of head was NULL. but now newNode
head = newNode; //update the global node 'head' by newNode
}
//Insert a node after last node
void insert_at_tail(int value)
{
node *newNode = getNewNode(value);
if(head==NULL) //For the 1st element
{
head=newNode;
tail=newNode;
return;
}
//'tail' is a global node. 'newNode' will be the next node of tail.
//finally newNode will be the 'tail' node of the list
tail->next = newNode;
newNode->previous = tail; //'newNode' point 'tail' node as previous node
tail = newNode; // update the global node 'tail' by newNode.
}
//Insert a node at front of the list. This node will be the new head
void insert_at_middle(int value, int position)
{
node *newNode = getNewNode(value);
if(head==NULL) //For the 1st element
{
//For now, newNode is the only one node of list
//So it it is head and also tail
head=newNode;
tail=newNode;
return;
}
node *temp = (node *) malloc(sizeof(node));
temp = head;
int i = 1;
//find the position where our newNode will put
while((i < position-1) && temp->next!=NULL){
temp = temp->next;
i++;
}
newNode->next = temp->next; //newNode's next node will be the next node of temp
newNode->previous = temp; //newNode's previous node will be the temp node
if(temp->next)
temp->next->previous = newNode; //newNode will be the previous node of temp->next node
temp->next = newNode; //update the next node of temp
}
// delete any node of list according to position
void deleteNode(int position){
if(head==NULL) return;
if(position==1){ // delete 1st (head) node
head = head->next;
if(head->next==NULL) // IF the list contained only one item and that was head. So head->next is NULL
tail = NULL; // 1st node is deleted so list is empty. head and tail both are NULL
else
head->next->previous = NULL;
return;
}
node *temp = (node*) malloc(sizeof(node));
node *tempAnother = (node*) malloc(sizeof(node));
int i = 1;
temp = head;
while((i < position) && temp->next!=NULL){ // find the desired node to delete
temp = temp->next;
i++;
}
if(i == position){ // desired position found
// temp node will be deleted
tempAnother = temp->previous;
tempAnother->next = temp->next;
if(temp->next==NULL) // desired node is the last node of list
tail = tempAnother;
else
temp->next->previous = tempAnother; // tempAnother is the previous node of temp->next node
free(temp);
}
else
printf("Desired position does not exist! Position: %d\n", i);
}
// print the list in forward order
void printLinkedListForward()
{
printf("\nYour updated linked list in FORWARD ORDER:\n");
node *myList;
myList = head;
while(1)
{
if(head==NULL || tail==NULL) break;
printf("%d ", myList->number);
if(myList==tail) break;
myList = myList->next;
}
puts("\n");
}
// print the list in reverse order
void printLinkedListBackward()
{
printf("\nYour full linked list in REVERSE ORDER:\n");
node *myList;
myList = tail;
while(1)
{
if(head==NULL || tail==NULL) break;
printf("%d ", myList->number);
if(myList->previous==NULL) break;
myList = myList->previous;
}
puts("\n");
}
<file_sep>#include <vector>
#include <map>
#include<bits/stdc++.h>
using namespace std;
long long int max_frequency(vector<long long int> const& v)
{
map<long long int, long long int> frequencyMap;
long long int maxFrequency = 0;
long long int mostFrequentElement = 0;
for (long long int x : v)
{
long long int f = ++frequencyMap[x];
if (f > maxFrequency)
{
maxFrequency = f;
mostFrequentElement = x;
}
}
return maxFrequency;
}
int main()
{
long long int t,n,i,j,temp;
cin>>t;
while(t--){
cin>>n;
vector<long long int >v;
for(i=0;i<n;i++){
cin>>temp;
v.push_back(temp);
}
cout<<max_frequency(v)<<endl;
}
}<file_sep>#include<bits/stdc++.h>
using namespace std;
int main()
{
long long int n,i,x,y,z;
cin>>n;
while(n--){
cin>>x>>y>>z;
if((x+y-z)==0 || (x-y+z)==0 || (y-x+z)==0){
cout<<"yes"<<endl;
continue;
}
else {
cout<<"no"<<endl;
continue;
}
}
return 0;
}<file_sep>#include <bits/stdc++.h>
using namespace std;
vector<int> num;
int a, b, d, k;
int DP[12][12][2];
/// DP[p][c][f] = Number of valid numbers <= b from this state
/// p = current position from left side (zero based)
/// c = number of times we have placed the digit d so far
/// f = the number we are building has already become smaller than b? [0 = no, 1 = yes]
int call(int pos, int cnt, int f){
if(cnt > k) return 0;
if(pos == num.size()){
if(cnt == k) return 1;
return 0;
}
if(DP[pos][cnt][f] != -1) return DP[pos][cnt][f];
int res = 0;
int LMT;
if(f == 0){
/// Digits we placed so far matches with the prefix of b
/// So if we place any digit > num[pos] in the current position, then the number will become greater than b
LMT = num[pos];
} else {
/// The number has already become smaller than b. We can place any digit now.
LMT = 9;
}
/// Try to place all the valid digits such that the number doesn't exceed b
for(int dgt = 0; dgt<=LMT; dgt++){
int nf = f;
int ncnt = cnt;
if(f == 0 && dgt < LMT) nf = 1; /// The number is getting smaller at this position
if(dgt == d) ncnt++;
if(ncnt <= k) res += call(pos+1, ncnt, nf);
}
return DP[pos][cnt][f] = res;
}
int solve(int b){
num.clear();
while(b>0){
num.push_back(b%10);
b/=10;
}
reverse(num.begin(), num.end());
/// Stored all the digits of b in num for simplicity
memset(DP, -1, sizeof(DP));
int res = call(0, 0, 0);
return res;
}
int main () {
cin >> a >> b >> d >> k;
int res = solve(b) - solve(a-1);
cout << res << endl;
return 0;
}
<file_sep># -*- coding: utf-8 -*-
"""
Created on Sat Feb 2 13:14:48 2019
@author: sanath
"""
hostnames = ['10.245.0.100','10.245.0.800','google.com','10.45.80.21','10.33.33.21']
#example
#mylist = 0
#liste = 0
#for i in hostname:
# value = os.system("ping -c 1" + i)
# print("ip er ", i)
# print(value)
# if value == "1":
# print("skrammel")
#
#print("værdien er", i)
import os
import csv
liste2 = []
for hostname in hostnames:
response = os.system('ping -c 1 ' + hostname)
if response == 0:
print (hostname, 'is up')
elif response == 1:
print (hostname, 'is down')
with open('bruger.csv', 'a', newline ="\n") as fd:
fd.write(hostname+",")
fd.close()
print ("Første kørsel gennemført")
with open('bruger.csv') as csv_file:
csv_reader = csv.reader(csv_file, delimiter=',')
line_count = 0
for row in csv_reader:
response2 = os.system('ping -c 1 ' + hostname)
if response == 0:
print(hostname, 'is up')
elif response == 1:
print(hostname, 'is down')
print('Processed {line_count} lines.')
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i];
vector<int>adj[100001];
void bfs(int s, int dist[]) {
vector<bool>visited(100001,false);
dist[1]=0;
queue<int>q;
q.push(s);
visited[s]=true;
while(!q.empty()){
s=q.front();
q.pop();
for(auto i=adj[s].begin();i!=adj[s].end();++i){
//for(int i : adj[s]){
if(visited[*i]==false){
q.push(*i);
visited[*i]=true;
dist[*i]=dist[s]+1;
}
}
}
}
int main()
{
FIO;
tc{
int n,m;
cin>>n>>m;
int u,v;
int dist[n+1]={0};
for(int i=0;i<m;i++){
cin>>u>>v;
adj[u].push_back(v);
adj[v].push_back(u);
}
bfs(1,dist);
//shortest distance between 1 and n
cout<<dist[n]<<endl;
for(int i=0;i<=n;i++){
adj[i].clear();
}
for(int i=0;i<=n;i++)dist[i]=0;
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int i,j,k,n;
cin>>n;
int a[n],count[21]={0},res=0,reso=0;
for(i=0;i<n;i++){
cin>>a[i];
count[a[i]]+=1;
}
if(n==2){
for(i=0;i<=20;i++){
if(count[i]==1 && count[i-1]==1)cout<<(i+(i-1))<<endl;
}
}
else{
for(i=20;i>0;i--){
if(count[i]>0 && count[i-1]>0){
if(count[i]>=count[i-1]){
count[i-1]=0;
}
else count[i-1]-=count[i];
}
}
for(i=0;i<21;i++){
if(count[i]>0)res+=(i*count[i]);
}
cout<<res<<endl;
}
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
void insertionSort(int arr[], int length);
void printArray(int array[],int size);
int* insertionsort(int *arr,int n);
//1.select the first unsorted element
//2.swap the other element on right to create the correct position and shift the unsorted element
//3.advance the marker to the right one element
int* insertionsort(int *arr,int n)
{
int i,key,j;
for(i=1;i<n;i++)
{
key=arr[i];
j=i-1;
while(j>=0 && arr[j]>key)
{
arr[j+1]=arr[j];
j=j-1;
}
arr[j+1]=key;
}
return arr;
}
void insertionSort(int *arr, int length) {
int i, j ,tmp;
for (i = 1; i < length; i++) {
j = i;
while (j > 0 && arr[j - 1] > arr[j]) {
tmp = arr[j];
arr[j] = arr[j - 1];
arr[j - 1] = tmp;
j--;
}
printArray(arr,length);
}
}
void printArray(int *array, int size){
//cout<< "Sorting tha array using Insertion sort... ";
int j;
for (j=0; j < size;j++)
for (j=0; j < size;j++)
cout<< array[j] <<" ";
cout << endl;
}
int main() {
int n;
cin >> n;
int arr[n];
for(int arr_i = 0; arr_i < n; arr_i++){
cin >> arr[arr_i];
}
insertionSort(arr , n);
return 0;
}
//second code geeks for geeks
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <assert.h>
#include <bits/stdc++.h>
using namespace std;
void insertionsort( int arr[],int length);
void printArray(int array[],int size);
void insertionsort(int *arr,int n)
{
int i,key,j;
for(i=1;i<n;i++)
{
key=arr[i];
j=i-1;
while(j>=0 && arr[j]>key)
{
arr[j+1]=arr[j];
j=j-1;
}
arr[j+1]=key;
}
printArray(arr,n);
}
void printArray(int *array, int size){
//cout<< "Sorting tha array using Insertion sort... ";
int j;
for (j=0; j < size;j++)
for (j=0; j < size;j++)
cout<< array[j] <<" ";
cout << endl;
}
int main(void) {
int N;
scanf("%d", &N);
int arr[N], i;
for(i = 0; i < N; i++) {
scanf("%d", &arr[i]);
}
insertionsort( arr,N);
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
long long min=LONG_MAX;
long long max=LONG_MIN;
cin>>n;
long long a[n];
for(int i=0;i<n;i++){
cin>>a[i];
if(a[i]<min)min=a[i];
if(a[i]>max)max=a[i];
}
int count=max-min+1-n;
cout<<count<<endl;
return 0;
}
<file_sep>#include <stdio.h>
#include <stdlib.h>
struct node
{
int info;
struct node *ptr;
}*front,*rear,*temp,*front1,*rear1;
int frontelement();
int rearelement();
void enq(int data);
void deq();
void pop();
void empty();
void display();
void create();
void queuesize();
int count = 0;
int main()
{
int no, ch, e,n,i;
create();
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d", &no);
enq(no);
}
display();
deq();
pop();
e = frontelement();
if (e != 0)
printf("Front element : %d", e);
else
printf("\n No front element in Queue as queue is empty");
e=rearelement();
if (e != 0)
printf("rear element : %d", e);
else
printf("\n No rear element in Queue as queue is empty");
empty();
display();
queuesize();
return 0;
}
void create()
{
front = rear = NULL;
}
/* Returns queue size */
void queuesize()
{
printf("\n Queue size : %d", count);
}
/* Enqueing the queue */
void enq(int data)
{
if (rear == NULL)
{
rear = (struct node *)malloc(1*sizeof(struct node));
rear->ptr = NULL;
rear->info = data;
front = rear;
}
else
{
temp=(struct node *)malloc(1*sizeof(struct node));
rear->ptr = temp;
temp->info = data;
temp->ptr = NULL;
rear = temp;
}
count++;
}
/* Displaying the queue elements */
void display()
{
front1 = front;
if ((front1 == NULL) && (rear == NULL))
{
printf("Queue is empty");
return;
}
while (front1 != rear)
{
printf(" %d ", front1->info);
front1 = front1->ptr;
}
if (front1 == rear)
printf(" %d ", front1->info);
}
/* Dequeing the queue */
void deq()
{
front1 = front;
if (front1 == NULL)
{
printf("\n Error: Trying to display elements from empty queue");
return;
}
else
if (front1->ptr != NULL)
{
front1 = front1->ptr;
//printf("\n Dequed value : %d ", front->info);
free(front);
front = front1;
}
else
{
//printf("\n Dequed value : %d", front->info);
free(front);
front = NULL;
rear = NULL;
}
count--;
}
void pop(){
//rear1=rear;
if(rear==NULL)
{
printf("ERROR");
return;
}
else if(rear->ptr !=NULL)
{
rear=rear->ptr;
free(rear);
//rear=rear1;
}
else{
free(rear);
front=NULL;
rear=NULL;
}
count--;
}
}
/* Returns the front element of queue */
int frontelement()
{
if ((front != NULL) && (rear != NULL))
return(front->info);
else
return 0;
}
int rearelement()
{
if((front !=NULL) && (rear!=NULL))
return(rear->info);
else
return 0;
}
/* Display if queue is empty or not */
void empty()
{
if ((front == NULL) && (rear == NULL))
printf("\n Queue empty");
else
printf("Queue not empty");
}
<file_sep>#include <iostream>
using namespace std;
// A function will return number of pair
// whose XOR is odd
long long countXorPair(long long arr[], int n)
{
// To store count of odd and even
// numbers
long long odd = 0, even = 0;
for (int i = 0; i < n; i++) {
if (arr[i] % 2 == 0)
even++;
else
odd++;
}
// Return number of pairs
return odd * even;
}
// Driver program to test countXorPair()
int main()
{
int n;
long long t;
cin>>t;
for (int i=0;i<t;i++){
cin>>n;
long long arr[n];
for(int j=0;j<n;j++){
cin>>arr[j];
}
int n = sizeof(arr) / sizeof(arr[0]);
cout << countXorPair(arr, n)<<endl;
}
return 0;
}
<file_sep>#include<vector>
#include<stack>
#include<set>
#include<map>
#include<queue>
#include<deque>
#include<string>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cstdlib>
#include<cstdio>
#include<cmath>
using namespace std;
// Input macros
#define s(n) scanf("%d",&n)
#define sc(n) scanf("%c",&n)
#define sl(n) scanf("%lld",&n)
#define sf(n) scanf("%lf",&n)
#define ss(n) scanf("%s",n)
// Useful constants
#define INF (int)1e9
#define EPS 1e-9
// Useful hardware instructions
#define bitcount __builtin_popcount
#define gcd __gcd
// Useful container manipulation / traversal macros
#define forall(i,a,b) for(int i=a;i<b;i++)
#define foreach(v, c) for( typeof( (c).begin()) v = (c).begin(); v != (c).end(); ++v)
#define all(a) a.begin(), a.end()
#define in(a,b) ( (b).find(a) != (b).end())
#define pb push_back
#define fill(a,v) memset(a, v, sizeof a)
#define sz(a) ((int)(a.size()))
#define mp make_pair
// Some common useful functions
#define maX(a,b) ( (a) > (b) ? (a) : (b))
#define miN(a,b) ( (a) < (b) ? (a) : (b))
#define checkbit(n,b) ( (n >> b) & 1)
#define DREP(a) sort(all(a)); a.erase(unique(all(a)),a.end())
#define INDEX(arr,ind) (lower_bound(all(arr),ind)-arr.begin())
using namespace std;
#if DEBUG && !ONLINE_JUDGE
#define debug(args...) (Debugger()) , args
class Debugger
{
public:
Debugger(const std::string& _separator = ", ") :
first(true), separator(_separator){}
template<typename ObjectType>
Debugger& operator , (const ObjectType& v)
{
if(!first)
std:cerr << separator;
std::cerr << v;
first = false;
return *this;
}
~Debugger() { std:cerr << endl;}
private:
bool first;
std::string separator;
};
template <typename T1, typename T2>
inline std::ostream& operator << (std::ostream& os, const std::pair<T1, T2>& p)
{
return os << "(" << p.first << ", " << p.second << ")";
}
template<typename T>
inline std::ostream &operator << (std::ostream & os,const std::vector<T>& v)
{
bool first = true;
os << "[";
for(unsigned int i = 0; i < v.size(); i++)
{
if(!first)
os << ", ";
os << v[i];
first = false;
}
return os << "]";
}
template<typename T>
inline std::ostream &operator << (std::ostream & os,const std::set<T>& v)
{
bool first = true;
os << "[";
for (typename std::set<T>::const_iterator ii = v.begin(); ii != v.end(); ++ii)
{
if(!first)
os << ", ";
os << *ii;
first = false;
}
return os << "]";
}
template<typename T1, typename T2>
inline std::ostream &operator << (std::ostream & os,const std::map<T1, T2>& v)
{
bool first = true;
os << "[";
for (typename std::map<T1, T2>::const_iterator ii = v.begin(); ii != v.end(); ++ii)
{
if(!first)
os << ", ";
os << *ii ;
first = false;
}
return os << "]";
}
#else
#define debug(args...) // Just strip off all debug tokens
#endif
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<int, LL> PIL;
typedef pair<LL, int> PLI;
typedef pair<LL, LL> PLL;
typedef vector<int> VI;
typedef vector<LL> VL;
typedef vector<vector<int> > VVI;
typedef vector<VL> VVL;
int ni()
{
int _num; s(_num);
return _num;
}
/*-------------------------Main code begins now ------------------------------*/
int testnum;
struct UnionFind
{
VI dad, mass;
int N;
UnionFind(int _N)
{
N = _N;
dad.resize(N);
mass.resize(N);
forall(i, 0, N)
dad[i] = -1, mass[i] = 1;
}
int find(int a)
{
if(dad[a] < 0) return a;
return dad[a] = find(dad[a]);
}
bool merge(int a, int b)
{
int c1 = find(a), c2 = find(b);
if(c1 != c2)
{
N--;
if(mass[c1] < mass[c2]) swap(c1, c2);
mass[c1] += mass[c2];
dad[c2] = c1;
return true;
}
return false;
}
int comps()
{
return N;
}
};
typedef pair<int, PII> edge;
#define FROM second.first
#define TO second.second
#define COST first
void preprocess()
{
}
int N, M1, M2;
const int max_edge = 100005;
edge one[max_edge], two[max_edge];
void solve()
{
UnionFind uf(N);
// Sort edges of second type in decreasing order
sort(two, two + M2);
reverse(two, two + M2);
LL profit = 0;
// Create a max spanning forest of type 2 edges
forall(i, 0, M2)
{
edge e = two[i];
if(uf.merge(e.FROM, e.TO))
profit += e.COST;
}
LL cost = profit;
// Sort edges of type 1 in incrasing order of cost
sort(one, one + M1);
// Add edges of type 1 to maximal forest created earlier
forall(i, 0, M1)
{
edge e = one[i];
if(uf.merge(e.FROM, e.TO))
cost += e.COST;
}
if(uf.comps() > 1)
printf("Impossible\n");
else
printf("%lld %lld\n", profit, cost);
}
int cnt = 0;
void check(int &var, int lo, int hi)
{
assert( s(var) == 1);
assert( lo <= var && var <= hi);
}
bool input()
{
int u, v, c;
check(N, 2, 5000);
check(M1, 1, 20000);
check(M2, 1, 20000);
forall(e, 0, M1)
{
check(u, 0, N-1);
check(v, 0, N-1);
assert(u != v);
check(c, 0, 1000000000);
one[e] = edge( c, PII(u,v));
}
forall(e, 0, M2)
{
check(u, 0, N-1);
check(v, 0, N-1);
assert( u != v);
check(c, 0, 1000000000);
two[e] = edge( c, PII(u,v));
}
return true;
}
int main()
{
preprocess();
int T = 1;
check(T, 1, 5);
for(testnum=1;testnum<=T;testnum++)
{
if(!input()) break;
solve();
}
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
void simpleSieve(int limit)
{
bool mark[limit];
memset(mark, true, sizeof(mark));
for (int p=2; p*p<limit; p++)
{
if (mark[p] == true)
{
for (int i=p*2; i<limit; i+=p)
mark[i] = false;
}
}
for (int p=2; p<limit; p++)
if (mark[p] == true)
cout << p << " ";
}
int main()
{
int t;
cin>>t;
while(t--)
{
long long int n;
cin>>n;
simpleSieve(n+1);
cout<<endl;
}
return 0;
}
<file_sep>#include <iostream>
using namespace std;
struct Node{
int val,cost;
Node* next;
};
struct Edge{
int src,dest,weight;
};
class Graph{
Node* getAdjList(int value,int weight ,Node* head){
Node* newnode = new Node;
newnode->val = value;
newnode->cost = weight;
newnode->next = head;
return newnode;
}
int N;
public:
Node **head;
Graph(Edge edges[],int nedges,int vertices){
head=new Node*[vertices]();
this->N=vertices;
for(int i=0;i<N;++i)
head[i]=nullptr;
for(int j=0;j<nedges;++j){
int src=edges[j].src;
int dest=edges[j].dest;
int weight=edges[j].weight;
Node* newnode= getAdjList(dest,weight,head[src]);
head[j]=newnode;
}
}
~Graph() {
for (int i = 0; i < N; i++)
delete[] head[i];
delete[] head;
}
};
void printlist(Node* ptr,int src){
while(ptr!=nullptr){
cout<<src<<" "<<ptr->val<<" "<<ptr->cost<<" ...";
ptr=ptr->next;
}
cout<<endl;
}
int main() {
int nedges,vertices;
cin>>vertices>>nedges;
Edge edges[nedges];
for(int i=0;i<nedges;i++){
cin>>edges[i].src>>edges[i].dest>>edges[i].weight;
}
Graph graph(edges,nedges,vertices);
for(int j=0;j<vertices;j++){
printlist(graph.head[j],j);
}
return 0;
}<file_sep>#include <bits/stdc++.h>
using namespace std;
#define ipair pair<int,int>
#define W 6
class Graph{
private:
int V;
vector<ipair> *adjL;
vector<bool> visited;
vector<int> distFromSrc;
public:
Graph(int V);
void addEdge(int src,int dest);
void BFS(int src);
};
Graph::Graph(int V){
this->V = V;
adjL = new vector<ipair>[V];
visited = vector<bool>(V,false);
distFromSrc = vector<int>(V,-1);
}
void Graph::addEdge(int src,int dest){
adjL[src].push_back(make_pair(dest,W));
adjL[dest].push_back(make_pair(src,W));
}
void Graph::BFS(int src){
distFromSrc[src] = 0;
queue<int> q;
q.push(src);
visited[src] = true;
while(!q.empty()){
int u = q.front();
q.pop();
for(auto &x : adjL[u]){
int v = x.first;
if(!visited[v] && (distFromSrc[v] == -1 || distFromSrc[u] + W < distFromSrc[v])){
visited[v] = true;
distFromSrc[v] = distFromSrc[u] + W;
q.push(v);
}
}
}
for(int i = 1; i < V; i++){
if(i == src)
continue;
cout<<distFromSrc[i]<<" ";
}
cout<<endl;
}
int main() {
int q;
cin >> q;
for(int a0 = 0; a0 < q; a0++){
int n;
int m;
cin >> n >> m;
Graph g(n+1);
for(int a1 = 0; a1 < m; a1++){
int u;
int v;
cin >> u >> v;
g.addEdge(u,v);
}
int s;
cin >> s;
g.BFS(s);
}
return 0;
}
<file_sep>template<typename T>
class custom_priority_queue : public std::priority_queue<T, std::vector<T>>
{
public:
bool remove(const T& value) {
auto it = std::find(this->c.begin(), this->c.end(), value);
if (it != this->c.end()) {
this->c.erase(it);
std::make_heap(this->c.begin(), this->c.end(), this->comp);
return true;
}
else {
return false;
}
}
};
void main()
{
custom_priority_queue<int> queue;
queue.push(10);
queue.push(2);
queue.push(4);
queue.push(6);
queue.push(3);
queue.remove(6);
while (!queue.empty())
{
std::cout << queue.top();
queue.pop();
if (!queue.empty())
{
std::cout << ", ";
}
}
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++) // i ko 0 se n
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
ll st[1000000];
ll a[1000000];
/*
//inline ll min(ll x ,ll y){return x<y?x:y;}
//inline ll max(ll x,ll y){return x>y?x:y;}
// segment tree point update and Range query
//whole program is written in 1 based indexing
// either we can declare a global array or a local array and pass it to build and update function
*/
void build(ll node,ll start,ll end ,ll st[],ll a[] ){
if(start==end){st[node]=a[start];return ;}
else{
ll mid=(start+end)/2;
build(2*node,start,mid,st,a);
build(2*node+1,mid+1,end,st,a);
st[node]=min(st[2*node],st[2*node+1]);
}
}
void update(ll node,ll start,ll end ,ll idx ,ll val,ll st[]){
if(start==end){
st[node]=val;
return;
}
else {
ll mid=(start+end)/2;
if(idx>=start && idx<=mid)update(2*node,start,mid,idx,val,st);
else update(2*node+1,mid+1,end,idx,val,st);
st[node]=min(st[node*2],st[node*2+1]);
}
}
ll query(ll node, ll start, ll end, ll l, ll r,ll st[]){
if(r<start || end<l)return INT_MAX;// here return outof case value
if(l<=start && r>=end)return st[node];
else{
ll mid=(start+end)/2;
ll p1=query(2*node,start,mid,l,r,st);
ll p2=query(2*node+1,mid+1,end,l,r,st);
return min(p1,p2);
}
}
int main()
{
ll n,q;
cin>>n>>q;
//ll a[n+1],st[2*n+1];
for(ll i=1;i<=n;i++)cin>>a[i];
//construct segment tree
build(1,1,n,st,a);
while(q--){
char w;
ll x,y;
cin>>w>>x>>y;
if(w=='u'){
//update segment tree
a[x]=y;
update(1,1,n,x,y,st);
}
else if(w=='q'){
//Query Segment tree
cout<<query(1,1,n,x,y,st)<<endl;
}
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
#define int long long int
#define endl "\n"
const int MOD=1e9+7;
const int N = 1e5+5;
bool vis[N]={false};
vector<int> adj[N];
int a[N];
int x;
int dfs(int i){
vis[i]=true;
int s=a[i];
for(auto x:adj[i]){
if(!vis[x]){
s+=dfs(x);
}
}
//cerr<<i+1<<" "<<max(s,-x)<<endl;
return max(s,-x);
}
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--){
int n;
cin>>n>>x;
for(int i=0;i<n;i++){
cin>>a[i];
}
for(int i=0;i<n-1;i++){
int u,v;
cin>>u>>v;
u--;
v--;
adj[u].push_back(v);
adj[v].push_back(u);
}
cout<<dfs(0)<<endl;
x=0;
memset(vis,0,sizeof(vis));
for(int i=0;i<N;i++){
adj[i].clear();
}
}
return 0;
}
<file_sep>#include <cmath>
#include <cstdio>
#include <vector>
#include <set>
#include <map>
#include <list>
#include <iostream>
#include <algorithm>
#include <limits.h>
using namespace std;
// Dijkstra's is a greedy SSSP (single source shortest path) algorithm
// - When the algorithm finishes, the shortest distance from source to all other vertex's in the graph will be known
// - Dikstra's only works for graphs with positive edge weights (use Bellman-Ford for negative edge weights)
// Description of Algorithm:
// 1. Create a set of unvisited vertices, all with initial distance INF
// 2. Mark the source node as visited with distance 0, update its neighbours to have distance equal to their edge weight
// 3. Find the unvisited vertex with the minimum distance (call it U)
// 4. Calculate the distance from U to each of its unvisited neighbours (call it D)
// 5. If D < the distance at that node, update the nodes distance from source
// 6. Mark U as visited
// Repeat steps 3-6 until the destination node is reached or till no unvisited vertex is found
// Total Runtime: O(V^2) in current implementation
// Can improve runtime to O(ElogV) using a heap
map<int, int>::iterator it;
void insertEdge(map<int,int>& map, int vertex, int weight) {
// Check if edge already exists
if(map.count(vertex) == 1) {
// If it does, only insert a new edge it if it's weight is less than the existing edge
if(weight < map[vertex]) {
map[vertex] = weight;
}
} else {
map.insert(pair<int, int>(vertex, weight));
}
}
// Function that implements Dijkstra's algorithm using adjacency list representation of a graph
void dijkstra(vector<map<int,int>>& adjacency_list, int src, int N)
{
// When the algorithm is finished, dist holds the shortest distance for each node
int dist[N];
bool determined[N] = {false};
// Initialize all vertices as an infinite distance away
for (int i = 0; i < N; i++) {
dist[i] = INT_MAX;
}
// Distance of source vertex from itself is always 0
dist[src] = 0;
// Iterate N-1 times, since each iteration will solve one vertex (and src has already been solved)
for (int count = 0; count < N-1; count++)
{
// Find the Minimum Distance Vertex (mdv) out of the set of remaining undetermined vertices
int mdv, min = INT_MAX, min_index;
for(int i = 0; i < N; i++) {
if(determined[i] == false && dist[i] < min) {
min = dist[i];
min_index = i;
}
}
// If all the remaining vertices are an "infinite distance" away, then we're done
if(min == INT_MAX) {
break;
}
mdv = min_index;
determined[mdv] = true;
// Iterate over adjacent vertexes of the mdv and update thier distances from src
for (it = adjacency_list[mdv].begin(); it != adjacency_list[mdv].end(); it++)
{
int av = it->first; // av = adjacent vertex
int weight = it->second;
// If av hasn't been determined and the path from mdv to av is shorter than it's
// current path (distance) from src
if(!determined[av] && (dist[mdv] + weight) < dist[av]) {
dist[av] = dist[mdv] + weight;
}
}
}
// Print the solution
for(int i = 0; i < N; i++) {
if(i!=0 && dist[i]!=0) {
if(dist[i] == INT_MAX) {
cout<<"-1 ";
} else {
cout<<dist[i]<<" ";
}
}
}
cout<<"\n";
}
int main() {
int T;
cin>>T;
while(T--) {
if(T < 0) {
break;
}
int N, M, start;
cin>>N;
cin>>M;
// Use an adjacency list to represent the graph (starting from index 1)
vector<map<int,int>> adjacency_list;
adjacency_list.resize(N+1);
for(int i = 0; i < M; i++) {
int vertex1, vertex2, weight;
map<int, int> map1, map2;
cin>>vertex1;
cin>>vertex2;
cin>>weight;
insertEdge(adjacency_list[vertex1], vertex2, weight);
insertEdge(adjacency_list[vertex2], vertex1, weight);
}
cin>>start;
dijkstra(adjacency_list, start, (N+1));
}
return 0;
}
<file_sep>#include<bits/stdc++.h>
using namespace std;
typedef int ll;
#define f(i,a,b) for(i=a;i<b;i++)
template <typename T>
inline void scan_num(T &a) {
register T c;
a = 0;
do c = getchar_unlocked(); while(c < '0');
do {
a = (a << 1) + (a << 3) + c - '0';
c = getchar_unlocked();
} while (c >= '0');
}
template <typename T>
inline void print_num(T a) {
char s[11];
T t = -1;
do {
s[++t] = a % 10 + '0';
a /= 10;
} while (a > 0);
while (t >= 0) putchar_unlocked(s[t--]);
putchar_unlocked('\n');
}
void swap(ll *x,ll *y)
{
ll tmp=*x;
*x=*y;
*y=tmp;
}
ll r,c,cnt;
ll a[1002][1002];
ll visit[1002][1002];
bool is_valid(ll x,ll y)
{
if((x>=0&&x<r)&&(y>=0&&y<c))
return true;
return false;
}
void bfs(ll x,ll y)
{
if((is_valid(x,y))&&(!visit[x][y])&&(a[x][y]))
{
visit[x][y]=1;
cnt--;
bfs(x+1,y);
bfs(x-1,y);
bfs(x,y+1);
bfs(x,y-1);
}
}
int main()
{
ll q,x,i,j,y;
scan_num(r);
scan_num(c);
scan_num(q);
cnt=0;
for(i=0;i<r;i++)
for(j=0;j<c;j++){
scan_num(a[i][j]);
if(a[i][j])
cnt++;}
memset(visit,0,sizeof(visit));
while(q--)
{
scan_num(x);
scan_num(y);
x--;
y--;
bfs(x,y);
print_num(cnt);
}
}
<file_sep>/*-------------------- Author : <NAME> --------------------*/
#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define mod 1000000007
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i]
inline ll sumofdigits(ll n){ll res=0;for (res = 0; n > 0;res += n % 10, n /= 10);return res;}
inline ll maxi(ll a, ll b){return a>b?a:b;}
inline ll mini(ll a, ll b){return a<b?a:b;}
inline void swap(ll *x,ll *y){ll tmp=*x;*x=*y;*y=tmp;}
unsigned int gcd(unsigned int u, unsigned int v)
{
int shift;
if (u == 0) return v;
if (v == 0) return u;
shift = __builtin_ctz(u | v);
u >>= __builtin_ctz(u);
do {
v >>= __builtin_ctz(v);
if (u > v) {
unsigned int t = v;
v = u;
u = t;
}
v = v - u;
} while (v != 0);
return u << shift;
}
inline ll binpow(ll a, ll b){
a=a%mod;
ll res=1;
while(b>0){
if(b & 1 )res=(res*a)%mod;
a=(a*a)%mod;
b >>= 1;
}
return res;
}
ll factorial[2000000];
ll max_fact=1;
ll fact(ll x){
ll i;
if(x<=max_fact)return factorial[x];
else{
for(i=max_fact+1;i<=x;i++)factorial[i]=(factorial[i-1]*i)%mod;
max_fact=x;
return factorial[x];
}
}
int modInverse(int a, int m)
{
int m0 = m;
int y = 0, x = 1;
if (m == 1) return 0;
while (a > 1)
{
int q = a / m;
int t = m;
m = a % m, a = t;
t = y;
y = x - q * y;
x = t;
}
if (x < 0) x += m0;
return x;
}
void solve(){
//your code here
}
int main()
{
FIO
factorial[0]=1;
factorial[1]=1;
tc{
solve();
}
return 0;
}
<file_sep># routine_codes
They are all about my day to day codes and few algorithms implemented.
<file_sep>struct node *reverse (struct node *head, int k)
{
node *tail=head;//for first time
node *cur=head;//cur val
node *curhead;
node *temp=cur->next;//ahead of 1
node *returnval;//returnable value
cur->next=NULL;
node *prev=cur;//below 1
cur=temp;
for(int i=0;i<k-1;i++){
if(temp==NULL)continue;
else {
temp=cur->next;
cur->next=prev;
prev=cur;
cur=temp;
}
}
returnval=prev;
curhead=prev;
//printList(temp);
//tail->next=temp;
while(temp!=NULL){
node *prevtail=tail;
temp=cur->next;
cur->next=NULL;
prev=cur;
tail=cur;
cur=temp;
//if(temp!=NULL)cout<<"prevtail "<<prevtail->data<<" tail "<<tail->data<<" temp "<<temp->data<<" cur "<<cur->data<<" prev "<<prev->data<<endl;
//printList(temp);
for(int i=0;i<k-1;i++){
if(temp==NULL)continue;
else{
temp=cur->next;
cur->next=prev;
prev=cur;
cur=temp;
//printList(prev);
}
}
prevtail->next=prev;
//tail=prev;
}
return returnval;
}
<file_sep>
#include <stdio.h>
#include <limits.h>
#include<stdlib.h>
int max(int a, int b) { return a > b ? a : b; }
int min(int a, int b) { return a < b ? a : b; }
int optimalStrategyOfGame(int* arr, int n)
{
int table[n][n], gap, i, j, x, y, z;
for (gap = 0; gap < n; ++gap)
{
for (i = 0, j = gap; j < n; ++i, ++j)
{
x = ((i+2) <= j) ? table[i+2][j] : 0;
y = ((i+1) <= (j-1)) ? table[i+1][j-1] : 0;
z = (i <= (j-2))? table[i][j-2]: 0;
table[i][j] = max(arr[i] + min(x, y), arr[j] + min(y, z));
}
}
return table[0][n-1];
}
int main()
{
int n,i;
int *arr;
scanf("%d",&n);
arr=(int *)malloc(n*sizeof(int));
for(i=0;i<n;i++){
scanf("%d",&arr[i]);
}
printf("%d", optimalStrategyOfGame(arr, n));
return 0;
}
<file_sep>#include <iostream>
#include <vector>
#include <list>
#include <queue>
using namespace std;
void solve(int num_of_nodes, int start_node, const vector<list<int>>& edges) {
vector<int> length_to_nodes(num_of_nodes + 1, -1);
queue<int> q;
length_to_nodes[start_node] = 0;
q.push(start_node);
while (!q.empty()) {
int current_node = q.front();
q.pop();
for (auto node : edges[current_node]) {
if (length_to_nodes[node] == -1) {
length_to_nodes[node] = length_to_nodes[current_node] + 6;
q.push(node);
}
}
}
for (int i = 1; i < length_to_nodes.size(); i++) {
if (length_to_nodes[i] != 0)
cout << length_to_nodes[i] << " ";
}
cout << endl;
}
int main() {
// freopen("input.txt", "r", stdin);
int num_of_tests;
cin >> num_of_tests;
for (int i = 0; i < num_of_tests; i++) {
int num_of_nodes, num_of_edges;
cin >> num_of_nodes;
cin >> num_of_edges;
vector<list<int>> edges(num_of_nodes + 1);
for (int j = 0; j < num_of_edges; j++) {
int node_1, node_2;
cin >> node_1 >> node_2;
edges[node_1].push_back(node_2);
edges[node_2].push_back(node_1);
}
int start_node;
cin >> start_node;
solve(num_of_nodes, start_node, edges);
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
bool isShuffledSubstring(string needle, string haystack);
bool isShuffledSubstring(string needle, string haystack)
{
//O(n) time complexity
int cur_val=needle.length();
if(cur_val>haystack.length())return false;
int val[128];
int val2[2][128];
memset(val,0,sizeof(val));
memset(val2,0,sizeof(val2));
for(int i=0;i<cur_val;i++){
val[needle[i]]+=1;
}
queue<char>q;
for(int i=0;i<cur_val;i++){
q.push(haystack[i]);
val2[0][haystack[i]]+=1;
}
bool flag=true;
int wrong_val=0;
for(int i=0;i<128;i++){
if(val[i]!=val2[0][i]){wrong_val+=1;val2[1][i]=1;}
}
if(wrong_val==0)return true;
int init_point=0;
for(int i=cur_val;i<haystack.length();i++){
char ini=q.front();
q.pop();
char cur=haystack[i];
q.push(cur);
val2[0][ini]-=1;
val2[0][cur]+=1;
if(val2[1][ini]==1 && val2[0][ini]==val[ini]){
//init wrong & now rectified
wrong_val-=1;
val2[1][ini]=0;
}
else if(val2[1][ini]==0 && val2[0][ini]!=val[ini]){
//init correct & now turned wrong
wrong_val+=1;
val2[1][ini]=1;
}
if(val2[1][cur]==1 && val2[0][cur]==val[cur]){
//init wrong & now rectified
wrong_val-=1;
val2[1][cur]=0;
}
else if(val2[1][cur]==0 && val2[0][cur]!=val[cur]){
//init correct & now turned wrong
wrong_val+=1;
val2[1][cur]=1;
}
if(wrong_val==0)return true;
}
return false;
}
int main(){
int t;
cin>>t;
while(t--)
{
string needle, haystack;
cin>>needle;
cin>>haystack;
if (isShuffledSubstring(needle, haystack))
cout << "Yes";
else
cout << "No";
cout << endl;
}
return 0;
}
<file_sep>#include <bits/stdc++.h>
using namespace std;
int lonelyinteger(vector <int> a) {
return accumulate(a.begin(), a.end(), 0, [](int k, int i){ return k = k ^ i;});
}
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int a_i = 0; a_i < n; a_i++){
cin >> a[a_i];
}
int result = lonelyinteger(a);
cout << result << endl;
return 0;
}
<file_sep>#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
using namespace std;
bool is_prime(int n) {
// Assumes that n is a positive natural number
// We know 1 is not a prime number
if (n == 1) {
return false;
}
int i = 2;
// This will loop from 2 to int(sqrt(x))
while (i*i <= n) {
// Check if i divides x without leaving a remainder
if (n % i == 0) {
// This means that n has a factor in between 2 and sqrt(n)
// So it is not a prime number
return false;
}
i += 1;
}
// If we did not find any factor in the above loop,
// then n is a prime number
return true;
}
bool is_prime(long long int n){
if(n==1)return false;
long long int i=2;
while(i*i<=n){
if(n%i==0)return false;
i+=1;
}
return true;
}
int main()
{
int n, k =3,num;
cin>>n;
for(int i=0;i<n;i++){
cin>>num;
is_prime(num) ? cout << "Prime"<<endl :
cout << "Not prime"<<endl;
}
return 0;
}
<file_sep>Node *compute(Node *head)
{
if(head->next==NULL)return head;
Node *cur=head;
Node *temp=cur->next;
Node *res;
bool flag=false;
while(temp!=NULL){
if(temp->data>cur->data){res=temp;flag=true;break;}
else {
cur=temp;
temp=temp->next;
}
}
if(flag==false)return cur;
else {
cur=res;
Node *prev=res;
if(cur->next==NULL)return res;
temp=cur->next;
while(temp!=NULL){
if(temp->data>cur->data){
prev->next=temp;
prev=temp;
cur=temp;
temp=temp->next;
}
else {
cur=temp;
temp=temp->next;
}
}
}
return res;
}
<file_sep>#include<bits/stdc++.h>
#define ll long long int
#define mod 1000000007
using namespace std;
typedef pair<int ,int>ipair;
#define max 1000
void ispath(int map[][1000],int n,int sx,int sy,bool vis[][1000]){
queue<ipair>q;
int i;
int x,y,tx,ty;
int mx[4]={-1,1,0,0};
int my[4]={0,0,1,-1};
q.push(make_pair(sx,sy));
// q.emplace_back(sx,sy); //vector.emplace_back(x,y) does the same task as of vector.push_back(make_pair(x,y))
while(!q.empty()){
x=q.front().first;
y=q.front().second;
q.pop();
for(i=0;i<4;i++){
tx=x+mx[i];
ty=y+my[i];
if(tx<0 || ty<0)continue;
if(tx>=n || ty>=n)continue;
else if(!vis[tx][ty] && map[tx][ty]>0 ){
vis[tx][ty]=true;
q.push(make_pair(tx,ty));
}
}
}
}
int main()
{
int t;
cin>>t;
while(t--)
{
int sx,sy,dx,dy,n,i,j;
cin>>n;
bool vis[1000][1000];
int map[1000][1000];
for(i=0;i<n;i++){
for(j=0;j<n;j++){
cin>>map[i][j];
vis[i][j]=false;
if(map[i][j]==1){sx=i;sy=j;}
if(map[i][j]==2){dx=i;dy=j;}
}
}
ispath(map,n,sx,sy,vis);
if(vis[dx][dy]==true)cout<<"1"<<endl;
else cout<<"0"<<endl;
}
return 0;
}
//here 1->source 2-> destination 3->path 0->wall or blocked path
//is path available from source to destination
// kind of snake and ladder problem
<file_sep>void printSpiral(Node* root)
{
vector<int >res[3000];
int level=0;
Node *cur=root;
queue<Node*>q;
q.push(cur);
q.push(NULL);
while(q.size()!=1){
cur=q.front();
q.pop();
if(cur!=NULL){
res[level].push_back(cur->data);
}
else if(cur==NULL){
level+=1;
q.push(NULL);
continue;
}
if(cur->left)q.push(cur->left);
if(cur->right)q.push(cur->right);
}
int val=1;
for(int j=0;j<=level;j++){
if(val==-1){
val=val*-1;
for(int i=0;i<res[j].size();i++)cout<<res[j][i]<<" ";
}
else {
val=val*-1;
for(int i=res[j].size()-1;i>=0;i--)cout<<res[j][i]<<" ";
}
}
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
#include <algorithm>
#include <map>
#include <cstdio>
#include <stack>
#include <cstdlib>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <list>
#include <vector>
#include <queue>
#include <climits>
#include <cmath>
#include <cstring>
#include <utility>
#include <iterator>
using namespace std;
#define loop(x,k,n) for(int x = k; x < n; x++)
#define revLoop(q,w) for (int q = w-1;q>=0 ;q--)
#define ll long long int
#define minMod 10e7+3
#define strInp(a) cin.getline(a,1000);
#define mp(a,b) make_pair(a,b)
#define init(a,n) memset(a,n,sizeof(a));
#define pb(i) push_back(i);
#define FIO ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define tc int t; cin >> t; while(t--)
#define arrInp(a,n) for (int i=0;i<n;i++) cin >> a[i];
char mat[100][100];
int dist[100][100];
bool visited[100][100];
void bfs(int sx,int sy,int n){
queue<pair<int,int>>q;
int x,y;
int tx,ty;
dist[sx][sy]=0;
q.push(make_pair(sx,sy));
visited[sx][sy]=true;
int mx[4]={0,1,0,-1};
int my[4]={-1,0,1,0};
while(!q.empty()){
x=q.front().first;
y=q.front().second;
q.pop();
for(int i=0;i<4;i++){
tx=x+mx[i];
ty=y+my[i];
if(tx <0 || ty <0)continue;
else if(tx>=n || ty >=n)continue;
else if(visited[tx][ty]==false && (mat[tx][ty]=='P' || mat[tx][ty]=='E')){
q.push(make_pair(tx,ty));
dist[tx][ty]=dist[x][y]+1;
visited[tx][ty]=true;
}
}
}
}
int main()
{
FIO
{
int n;
cin>>n;
int startx=0,starty=0;
int endx=0,endy=0;
for(int i=0;i<n;i++){
for(int j=0;j<n;j++){
cin>>mat[i][j];
visited[i][j]=false;
if(mat[i][j]=='S'){startx=i;starty=j;}
if(mat[i][j]=='E'){endx=i;endy=j;}
}
}
bfs(startx,starty,n);
cout<<dist[endx][endy]<<endl;
}
return 0;
}
<file_sep>#include <iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
long long int n,m,k,l,res;
cin>>n>>m>>k>>l;
if(n<m)cout<<"-1"<<endl;
else{
res=n/m;
if(((res*m)-k)<l){
cout<<"-1"<<endl;
}
else{
cout<<res<<endl;
}
}
return 0;
} | 181738b194a4e53a01004dcc04e13e92d37aec5d | [
"Markdown",
"C",
"Python",
"C++"
] | 149 | C++ | sanathvernekar/routine_codes | a898ca7e79cf39c289cb2fefaf764c9f8e0eb331 | 2e545b7a14ed45ab056b0901605939c4b0736b62 |
refs/heads/master | <file_sep># MIT License
# Copyright (c) 2017-2018 <NAME>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import sys
if "dns_proto.py" in sys.argv[0]:
print("[-] Instead of poking around just try: python xfltreat.py --help")
sys.exit(-1)
import struct
import socket
import math
import time
class DNS_Proto():
def __init__(self):
self.edns = 0
self.response_codes = ["",
"Query error: Format error - the DNS server does not support this format (maybe the query was too long)",
"Query error: Server failure - the DNS server failed (maybe the response was too long, or the server is not running)",
"Burning packets on server side",
"Query error: Not implemented - the DNS does not support the record type",
"Query error: Refused - DNS server is not willing to answer. (can the DNS server be used as relay?)",
"Other error, malformed request/response, etc."]
self.RR_types = {
0 : ["", None, None, None, None], # answer with no answers
1 : ["A", self.build_record_A, self.pack_record_id, self.unpack_record_hostname, self.calc_max_throughput_A],
2 : ["NS", self.build_record_NS, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id],
3 : ["MD", None, None, None, None],
4 : ["MF", None, None, None, None],
5 : ["CNAME", self.build_record_CNAME, self.pack_record_hostname, self.unpack_record_hostname, self.calc_max_throughput_CNAME],
6 : ["SOA", self.build_record_SOA, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id],
7 : ["MB", None, None, None, None],
8 : ["MG", None, None, None, None],
9 : ["MR", None, None, None, None],
10 : ["NULL", self.build_record_NULL, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id],
11 : ["WKS", None, None, None, None],
12 : ["PTR", None, None, None, None],
13 : ["HINFO", None, None, None, None],
14 : ["MINFO", None, None, None, None],
15 : ["MX", self.build_record_MX, self.pack_record_hostname, self.unpack_record_hostname, None],
16 : ["TXT", self.build_record_TXT, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id],
17 : ["RP", None, None, None, None],
18 : ["AFSDB", None, None, None, None],
19 : ["X25", None, None, None, None],
20 : ["ISDN", None, None, None, None],
21 : ["RT", None, None, None, None],
22 : ["NSAP", None, None, None, None],
23 : ["NSAP-PTR", None, None, None, None],
24 : ["SIG", None, None, None, None],
25 : ["KEY", None, None, None, None],
26 : ["PX", None, None, None, None],
27 : ["GPOS", None, None, None, None],
28 : ["AAAA", self.build_record_AAAA, self.pack_record_id, self.unpack_record_hostname, None],
29 : ["LOC", None, None, None, None],
30 : ["NXT", None, None, None, None],
31 : ["EID", None, None, None, None],
32 : ["NIMLOC", None, None, None, None],
33 : ["SRV", self.build_record_SRV, self.pack_record_hostname, self.unpack_record_hostname, None],
34 : ["ATMA", None, None, None, None],
35 : ["NAPTR", None, None, None, None],
36 : ["KX", None, None, None, None],
37 : ["CERT", None, None, None, None],
38 : ["A6", None, None, None, None],
39 : ["DNAME", None, None, None, None],
40 : ["SINK", None, None, None, None],
41 : ["OPT", None, None, None, None],
42 : ["APL", None, None, None, None],
43 : ["DS", None, None, None, None],
44 : ["SSHFP", None, None, None, None],
45 : ["IPSECKEY", None, None, None, None],
46 : ["RRSIG", self.build_record_RRSIG, self.pack_record_id, None, None],
47 : ["NSEC", None, None, None, None],
48 : ["DNSKEY", self.build_record_DNSKEY, self.pack_record_id, None, None],
49 : ["DHCID", None, None, None, None],
50 : ["NSEC3", None, None, None, None],
51 : ["NSEC3PARAM", None, None, None, None],
52 : ["TLSA", None, None, None, None],
53 : ["SMIMEA", None, None, None, None],
#54 : ["Unassigned", None, None, None, None],
55 : ["HIP", None, None, None, None],
56 : ["NINFO", None, None, None, None],
57 : ["RKEY", None, None, None, None],
58 : ["TALINK", None, None, None, None],
59 : ["CDS", None, None, None, None],
60 : ["CDNSKEY", None, None, None, None],
61 : ["OPENPGPKEY", None, None, None, None],
62 : ["CSYNC", None, None, None, None],
## TEST
#63-98 : ["Unassigned", None, None, None, None],
99 : ["SPF", None, None, None, None],
100 : ["UINFO", None, None, None, None],
101 : ["UID", None, None, None, None],
102 : ["GID", None, None, None, None],
103 : ["UNSPEC", None, None, None, None],
104 : ["NID", None, None, None, None],
105 : ["L32", None, None, None, None],
106 : ["L64", None, None, None, None],
107 : ["LP", None, None, None, None],
108 : ["EUI48", None, None, None, None],
109 : ["EUI64", None, None, None, None],
## TEST
#110-248 : ["Unassigned", None, None, None, None],
249 : ["TKEY", None, None, None, None],
250 : ["TSIG", None, None, None, None],
251 : ["IXFR", None, None, None, None],
252 : ["AXFR", None, None, None, None],
253 : ["MAILB", None, None, None, None],
254 : ["MAILA", None, None, None, None],
255 : ["*", self.build_record_ANY, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id],
256 : ["URI", None, None, None, None],
257 : ["CAA", None, None, None, None],
258 : ["AVC", None, None, None, None],
## TEST
#259-32767 : ["Unassigned", None, None, None, None],
32768 : ["TA", None, None, None, None],
32769 : ["DLV", None, None, None, None],
65399 : ["PRIVATE", self.build_record_PRIVATE, self.pack_record_id, self.unpack_record_id, self.calc_max_throughput_id]
## TEST
#65280-65534 : ["Private use", None, None, None, None],
## TEST
#65535 : "Reserved"
}
return
def set_edns(self, value):
self.edns = value
def calc_max_throughput_id(self, max_length, hostname, overhead, encoding_class):
return encoding_class.get_maximum_length(max_length - overhead)
def pack_record_id(self, data):
return data
def unpack_record_id(self, data):
return data
def pack_record_hostname(self, data):
hostname = ""
for j in range(0,int(math.ceil(float(len(data))/63.0))):
hostname += data[j*63:(j+1)*63]+"."
return hostname
def unpack_record_hostname(self, data):
hostname = self.hostnamebin_to_hostname(data)[1].replace(".", "")
return hostname.replace(".", "")
def calc_max_throughput_A(self, max_length, hostname, overhead, encoding_class):
# max - len("hostname.") - 1 - overhead - plus dots
max_length -= len(hostname) + 1
cap = 0
while max_length > 64:
cap += 63
max_length -= 64
cap += max_length - 1
return encoding_class.get_maximum_length(cap) - overhead
def build_record_OPT(self):
return struct.pack(">BHHBBHH", 0x00, 41, 4096, 0, 0, 0x8000, 0)
def build_record_A(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
#answers = struct.pack(">HHHIH", 0xc00c, 1, 1, 5, 4) + socket.inet_aton(record[2])
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIH", 0xc00c, 1, 1, 5, 4) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_AAAA(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
#answers = struct.pack(">HHHIH", 0xc00c, 1, 1, 5, 4) + socket.inet_aton(record[2])
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIH", 0xc00c, 28, 1, 5, 16) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_NS(self, record):
additional_record_num = 0
additional_records = ""
compress_hostname = self.hostname_to_hostnamebin(record[2])
answer_num = 1
answers = struct.pack(">HHHIH", 0xc00c, 2, 1, 3600, len(compress_hostname)) + compress_hostname
#additional_record_num = 1
#additional_records = compress_hostname + struct.pack(">HHIH", 1, 1, 5, 4) + socket.inet_aton("1.1.1.1")
return (answer_num, answers, additional_record_num, additional_records)
def calc_max_throughput_CNAME(self, max_length, hostname, overhead, encoding_class):
# -1 for the zero byte at the end
max_length -= 1
cap = 0
while max_length > 64:
cap += 63
max_length -= 64
cap += max_length - 1
return encoding_class.get_maximum_length(cap) - overhead
def build_record_CNAME(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
compress_hostname = self.hostname_to_hostnamebin(record[2][i])
answers += struct.pack(">HHHIH", 0xc00c, 5, 1, 5, len(compress_hostname)) + compress_hostname
return (answer_num, answers, additional_record_num, additional_records)
def build_record_MX(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
compress_hostname = self.hostname_to_hostnamebin(record[2][i])
answers += struct.pack(">HHHIHH", 0xc00c, 15, 1, 5, len(compress_hostname)+2, 10*i+10) + compress_hostname
return (answer_num, answers, additional_record_num, additional_records)
def build_record_SRV(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
compress_hostname = self.hostname_to_hostnamebin(record[2][i])
answers += struct.pack(">HHHIHHHH", 0xc00c, 33, 1, 5, len(compress_hostname)+6, 10*i+10, 20*i+10, 1337) + compress_hostname
return (answer_num, answers, additional_record_num, additional_records)
def build_record_DNSKEY(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIHHBB", 0xc00c, 48, 1, 5, len(record[2][i])+4, 0x0100, 3, 8) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_RRSIG(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
compress_hostname = self.hostname_to_hostnamebin(record[4])
answers += struct.pack(">HHHIHHBBIIIH", 0xc00c, 46, 1, 5, len(compress_hostname + record[2][i])+18, 16, 10, 2, 5, int(time.time()) + 3600*36,
int(time.time()) + 3600*12, 31005) + compress_hostname + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_ANY(self, record):
compress_hostname = self.hostname_to_hostnamebin(record[2])
additional_record_num = 0
additional_records = ""
answer_num = 2
answers = struct.pack(">HHHIH", 0xc00c, 5, 1, 5, len(compress_hostname)) + compress_hostname
answers += struct.pack(">HHHIH", 0xc00c, 1, 1, 5, 4) + socket.inet_aton(record[3])
return (answer_num, answers, additional_record_num, additional_records)
def build_record_SOA(self, record):
compress_hostname = self.hostname_to_hostnamebin(record[2])
additional_record_num = 0
additional_records = ""
answer_num = 1
#data = self.hostname_to_hostnamebin(record[2]) + self.hostname_to_hostnamebin(record[3]) + struct.pack(">IIIII", record[4], record[5], record[6], record[7], record[8])
data = compress_hostname + self.hostname_to_hostnamebin(record[3]) + struct.pack(">IIIII", record[4], record[5], record[6], record[7], record[8])
answers = struct.pack(">HHHIH", 0xc00c, 6, 1, 5, len(data)) + data
return (answer_num, answers, additional_record_num, additional_records)
def build_record_NULL(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIH", 0xc00c, 10, 1, 0, len(record[2][i])) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_PRIVATE(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIH", 0xc00c, 65399, 1, 0, len(record[2][i])) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def build_record_TXT(self, record):
additional_record_num = 0
additional_records = ""
answer_num = record[3]
answers = ""
for i in xrange(record[3]):
answers += struct.pack(">HHHIHB", 0xc00c, 16, 1, 0, len(record[2][i])+1, len(record[2][i])) + record[2][i]
return (answer_num, answers, additional_record_num, additional_records)
def get_RR_type(self, num):
if num in self.RR_types:
return self.RR_types[num]
else:
common.internal_print("Error: requested RR type was not in the list.", 1, -1)
return None
def reverse_RR_type(self, RRtype):
for i in self.RR_types:
if self.RR_types[i][0] == RRtype:
return self.RR_types[i]
return 0
def reverse_RR_type_num(self, RRtype):
for i in self.RR_types:
if self.RR_types[i][0] == RRtype:
return i
return 0
def get_record(self, short_hostname, qtype, zone):
if qtype not in self.RR_types:
return None
for i in xrange(len(zone)):
if (zone[i][0] == self.RR_types[qtype][0]) and (zone[i][1] == short_hostname):
return zone[i]
return None
def hostname_to_hostnamebin(self, hostname):
if hostname[len(hostname)-1:len(hostname)] != ".":
hostname += "."
i = 0
hostnamebin = ""
while not hostname[i:].find(".") == -1:
hostnamebin += struct.pack("B", hostname[i:].find(".")) + hostname[i:i+hostname[i:].find(".")]
i = i + hostname[i:].find(".")+1
hostnamebin += "\x00"
return hostnamebin
def hostnamebin_to_hostname(self, hostnamebin):
hostname = ""
i = 0
length = 0
while True:
if len(hostnamebin) > i:
l = struct.unpack("B",hostnamebin[i:i+1])[0]
if l > 63:
length += 2
break
if l == 0:
length += 1
break
hostname += hostnamebin[i+1:i+1+l] + "."
length += l + 1
i = i + l + 1
else:
break
return (length, hostname)
def is_valid_dns(self, msg, hostname):
# check if the message's len is more than the minimum
# header + base hostname + type+class
if len(msg) < (17 + len(hostname)):
return False
flags = struct.unpack(">H",msg[2:4])[0]
# if the message is not query
#if ((flags >> 15) & 0x1):
# return False
questions = struct.unpack(">H",msg[4:6])[0]
# if the message does not have any questions
if questions != 1:
return False
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[12:])
if hostname != question_hostname[len(question_hostname)-len(hostname):]:
return False
return True
def build_answer(self, transaction_id, record, orig_question):
if record == None:
flag = 0x8503 # 1000 0100 0000 0011
answer_num = 0
answers = ""
additional_record_num = 0
additional_records = ""
else:
flag = 0x8500 # 1000 0100 0000 0000
RRtype = self.reverse_RR_type(record[0])
if RRtype[1] == None:
answer_num = 0
answers = ""
additional_record_num = 0
additional_records = ""
else:
answer_num = 1
(answer_num, answers, additional_record_num, additional_records) = RRtype[1](record)
dns_header = struct.pack(">HHHHHH", transaction_id, flag, 1, answer_num, 0, additional_record_num)
return dns_header + orig_question + answers + additional_records
def build_query(self, transaction_id, data, hostname, RRtype):
flag = 0x0100 #0000 0010 0000 0000
additional_num = self.edns
dns_header = struct.pack(">HHHHHH", transaction_id, flag, 1, 0, 0, additional_num)
additional_records = ""
if self.edns:
additional_records = self.build_record_OPT()
qhostname = self.hostname_to_hostnamebin(data+hostname)
return dns_header + qhostname + struct.pack(">HH", RRtype, 1) + additional_records
def parse_questions(self, msg, nq):
ret = {"length": -1}
i = 0
for q in xrange(nq):
ret[q] = {}
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[i:])
if hlen == 0:
ret = {length: -1}
return ret
ret[q]["name"] = question_hostname
i += hlen
ret[q]["type"] = struct.unpack(">H",msg[i:i+2])[0]
i += 2
ret[q]["class"] = struct.unpack(">H",msg[i:i+2])[0]
i += 2
ret["length"] = i
return ret
def parse_answers(self, msg, nq):
ret = {"length": -1}
i = 0
for q in xrange(nq):
ret[q] = {}
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[i:])
if hlen == 0:
ret = {"length": -1}
return ret
ret[q]["name"] = question_hostname
i += hlen
ret[q]["type"] = struct.unpack(">H",msg[i:i+2])[0]
i += 2
ret[q]["class"] = struct.unpack(">H",msg[i:i+2])[0]
i += 2
ret[q]["ttl"] = struct.unpack(">I",msg[i:i+4])[0]
i += 4
ret[q]["datalen"] = struct.unpack(">H",msg[i:i+2])[0]
i += 2
ret[q]["data"] = msg[i:i+ret[q]["datalen"]]
i += ret[q]["datalen"]
ret["length"] = i
return ret
def parse_dns(self, msg, hostname):
rdata = ""
transaction_id = struct.unpack(">H",msg[0:2])[0]
flags = struct.unpack(">H",msg[2:4])[0]
nquestions = struct.unpack(">H",msg[4:6])[0]
nanswers = struct.unpack(">H",msg[6:8])[0]
nauthority = struct.unpack(">H",msg[8:10])[0]
nadditional = struct.unpack(">H",msg[10:12])[0]
i = 12
if ((flags & 0xF) > 0) and ((flags & 0xF) != 3):
# Format error/Server failure/Not Implemented/Refused
return (None, None, None, None, None, None, None, None)
questions = self.parse_questions(msg[i:], nquestions)
orig_question = msg[i:i+questions["length"]]
i += questions["length"]
answers = self.parse_answers(msg[i:], nanswers)
i += answers["length"]
return (transaction_id, not ((flags >> 15) & 0x01), questions[0]["type"], nquestions, questions, orig_question, nanswers, answers)
'''
# parse question
for q in xrange(questions):
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[i:])
if hlen == 0:
return (None, None, None, None, None, None, None, 6)
if question_hostname == hostname:
short_hostname = ""
else:
short_hostname = question_hostname[0:len(question_hostname)-len(hostname)-1]
if len(msg) >= i+hlen+4:
orig_question = msg[i:i+hlen+4]
i += hlen
qtype = struct.unpack(">H",msg[i:i+2])[0]
i += 4
else:
return (None, None, None, None, None, None, None, 6)
for q in xrange(answers):
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[i:])
if len(msg) >= i+hlen+10:
i += hlen + 8
rdlength = struct.unpack(">H",msg[i:i+2])[0]
if len(msg) >= i + 2 + rdlength:
rdata = msg[i+2:i+2+rdlength]
i += 2 + rdlength
else:
return (None, None, None, None, None, None, None, 6)
else:
return (None, None, None, None, None, None, None, 6)
for q in xrange(authority+additional):
(hlen, question_hostname) = self.hostnamebin_to_hostname(msg[i:])
if len(msg) >= i+hlen+10:
i += hlen + 8
rdlength = struct.unpack(">H",msg[i:i+2])[0]
if len(msg) >= i + 2 + rdlength:
i += 2 + rdlength
else:
return (None, None, None, None, None, None, None, 6)
else:
return (None, None, None, None, None, None, None, 6)
return (transaction_id, not ((flags >> 15) & 0x01), short_hostname, qtype, orig_question, rdata, i, 0, answers)
'''<file_sep># MIT License
# Copyright (c) 2018 <NAME>
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
import sys
import re
import os
import getopt
import random
import socket
import math
import dns_proto
class Tester():
def __init__(self):
self.DNS_proto = dns_proto.DNS_Proto()
self.mode = 0
self.nameserver = "8.8.8.8" # default google DNS server
self.domain = ""
self.short = "hsc"
self.long = ["help", "server", "client", "nameserver=", "domain="]
self.alphabet = "abcdefghijklmnopqrstuvwxyz0123456789"
def usage(self):
print("[*] Usage: python main.py [options]:\nOptions:\n-h\t--help\t\tusage of the tool (this help)\n-s\t--server\tserver mode (default)\n-c\t--client\tclient mode\n\t--nameserver\tspecify nameserver (IPv4 address)\n\t--domain\tspecify domain")
def run(self, argv):
sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0)
try:
opts, args = getopt.getopt(argv, self.short, self.long)
except getopt.GetoptError as e:
self.usage()
sys.exit(-1)
for opt, arg in opts:
if opt in ("-h", "--help"):
self.usage()
sys.exit(0)
elif opt in ("-s", "--server"):
self.mode = 0
elif opt in ("-c", "--client"):
self.mode = 1
elif opt in ("--nameserver"):
self.nameserver = arg
elif opt in ("--domain"):
self.domain = arg
if not is_ipv4(self.nameserver):
internal_print("Nameserver is not an IPv4 address, please correct", 1, -1)
self.usage()
sys.exit(-1)
if not is_hostname(self.domain):
internal_print("Domain is not a proper domain name, please correct", 1, -1)
self.usage()
sys.exit(-1)
self.domain += "."
try:
if not self.mode:
self.serve()
else:
self.connect()
except KeyboardInterrupt:
internal_print("Exiting")
def serve(self):
print("[*] Server mode started")
server_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
server_tuple = ("0.0.0.0", 53)
server_socket.bind(server_tuple)
while True:
raw_message, addr = server_socket.recvfrom(4096)
if not self.DNS_proto.is_valid_dns(raw_message, self.domain):
internal_print("Some garbage was received, not DNS query", 1, -1)
continue
(transaction_id_received, queryornot, qtype, nquestions, questions, orig_question, nanswers, answers) = self.DNS_proto.parse_dns(raw_message, self.domain)
if not queryornot:
internal_print("DNS answer instead of query, strange!?", 1, -1)
continue
if nquestions:
if len(questions[0]["name"])>5:
try:
num = int(questions[0]["name"][0:3])
length = int(questions[0]["name"][3:6])
except ValueError:
continue
record_type = questions[0]["name"][6:].split(".")[0].upper()
qtype = self.DNS_proto.reverse_RR_type_num(record_type)
if qtype in self.DNS_proto.RR_types:
if not self.DNS_proto.RR_types[qtype][1]:
internal_print("Record type not implemented yet.", 1, -1)
continue
else:
internal_print("Invalid record type requested.", 1, -1)
continue
RRtype = self.DNS_proto.RR_types[qtype]
encoded_text = []
for i in xrange(num):
pre_text = "".join([random.choice(self.alphabet) for i in xrange(length)])
encoded_text.append(RRtype[2](pre_text))
packet = self.DNS_proto.build_answer(transaction_id_received, [record_type, "", encoded_text, num, self.domain], orig_question)
server_socket.sendto(packet, addr)
def connect(self):
internal_print("Client mode started")
internal_print("Using {0} as DNS server".format(self.nameserver))
server_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
server_socket.settimeout(2.0)
server_tuple = (self.nameserver, 53)
# record A test
record_type = "A"
if not self.query(True, server_socket, server_tuple, record_type, record_type, 1, 4, 15, 0):
internal_print("Basic test failed. Either you network is lossy or the DNS server does not work.", 1, -1)
sys.exit(-1)
#rate limit test 1
print("")
num = 30
success = 0
internal_print("Testing for rate limitation with record type {0}/{1} packets: ".format(record_type, num), 0)
for i in xrange(num):
if self.query(False, server_socket, server_tuple, record_type, record_type, 1, 4, 15, 0):
success += 1
internal_dot_print(True)
else:
internal_dot_print(False)
print("")
# hard coded 90%, made up number
if (success/num)>0.90:
internal_print("{0}% packet loss".format(100-(success/num*100)), 1, 1)
else:
internal_print("{0}% packet loss, lossy network or rate limit in place".format(100-(success/num*100)), 1, -1)
internal_print("The following results might be incorrect", 1, -1)
# record A test with CNAME response
internal_print("Testing A record type with CNAME answer: ", 0, 0)
if self.query(False, server_socket, server_tuple, "A", "CNAME", 1, 4, 15, 0):
internal_print("Supported!", 1, 1)
else:
internal_print("Basic test failed. Either you network is lossy or the DNS does not work properly.", 1, -1)
sys.exit(-1)
# record CNAME test
record_type = "CNAME"
if not self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0):
internal_print("CNAME record did not work. Exiting.", 1, -1)
sys.exit(-1)
#rate limit test 2
print("")
num = 50
success = 0
internal_print("Testing for rate limitation with record type {0}/{1} packets: ".format(record_type, num), 0)
for i in xrange(num):
if self.query(False, server_socket, server_tuple, record_type, record_type, 1, 4, 15, 0):
success += 1
internal_dot_print(True)
else:
internal_dot_print(False)
print("")
# hard coded 90%, made up number
if (success/num)>0.90:
internal_print("{0}% packet loss. Tunnelling could work.".format(100-(success/num*100)), 1, 1)
else:
internal_print("{0}% packet loss, lossy network or rate limit in place".format(100-(success/num*100)), 1, -1)
internal_print("The following results might be incorrect", 1, -1)
# EDNS test
self.DNS_proto.set_edns(1)
record_type = "CNAME"
internal_print("Testing for EDNS support: ", 0, 0)
if self.query(False, server_socket, server_tuple, record_type, record_type, 10, 100, 15, 512):
internal_print("Supported!", 1, 1)
else:
internal_print("NOT supported!", 1, -1)
self.DNS_proto.set_edns(0)
# long domain name
internal_print("Testing for long domain names in request: ", 0, 0)
if self.query(False, server_socket, server_tuple, record_type, record_type, 1, 10, 100, 0):
internal_print("Supported!", 1, 1)
else:
internal_print("Long domain names are not allowed. Exiting.", 1, -1)
sys.exit(-1)
# long domain name + long answer
internal_print("Testing for big answer sizes: ", 0, 0)
for i in xrange(10):
internal_print("+{0}bytes: ".format(25*(i+1)), 0, 0)
if self.query(False, server_socket, server_tuple, record_type, record_type, i+1, 25, 100, 0):
internal_print("Supported!", 1, 1)
else:
internal_print("Too big", 1, -1)
# AAAA with multiple answers
record_type = "AAAA"
internal_print("Testing for IPv6 AAAA tunnelling: ", 1, 0)
for i in xrange(10):
internal_print("{0} answers: ".format((i+1)), 0, 0)
if self.query(False, server_socket, server_tuple, record_type, record_type, i+1, 16, 100, 0):
internal_print("Supported!", 1, 1)
else:
internal_print("Too big", 1, -1)
record_type = "TXT"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "PRIVATE"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "NULL"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "MX"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "SRV"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "DNSKEY"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 10, 15, 0)
record_type = "RRSIG"
self.query(True, server_socket, server_tuple, record_type, record_type, 1, 128, 15, 512)
def query(self, verbose, server_socket, server_tuple, record_type1, record_type2, num, length, domain_length, edns):
random_suffix = ""
random_string = "".join( [random.choice(self.alphabet) for j in xrange(domain_length)] )
for j in range(0,int(math.ceil(float(len(random_string))/63.0))):
random_suffix += random_string[j*63:(j+1)*63]+"."
record_hostname = format(num, "03d")+format(length, "03d")+record_type2.lower()+"."+random_suffix
transaction_id = int(random.random() * 65535)
if verbose:
internal_print("Testing {0} record type with {1} answer(s): ".format(record_type2, num), 0)
RRtype_num_r = self.DNS_proto.reverse_RR_type_num(record_type1)
RRtype_num_a = self.DNS_proto.reverse_RR_type_num(record_type2)
query = self.DNS_proto.build_query(transaction_id, record_hostname, self.domain, RRtype_num_r)
server_socket.sendto(query, server_tuple)
try:
while True:
raw_message, addr = server_socket.recvfrom(4096)
if not self.DNS_proto.is_valid_dns(raw_message, self.domain):
if verbose:
internal_print("Some garbage was received, not DNS answers", 1, -1)
continue
(transaction_id_received, queryornot, qtype, nquestions, questions, orig_question, nanswers, answers) = self.DNS_proto.parse_dns(raw_message, self.domain)
if transaction_id == transaction_id_received:
break
else:
if verbose:
internal_print("Wrong transaction_id received, ignoring.", 1, -1)
continue
if nanswers and ((RRtype_num_r == qtype)):
if not 0 in answers:
return False
if (answers[0]["type"] == RRtype_num_a):
if nanswers == num:
if verbose:
internal_print("Worked with {0} answer(s).".format(nanswers), 1, 1)
if edns:
if answers["length"] > edns:
return True
else:
return False
else:
if verbose:
internal_print("Only got back {0} answer(s).".format(nanswers), 1, -1)
return False
else:
if verbose:
internal_print("Unexpected record type {0}.".format(self.DNS_proto.RR_types[answers[0]["type"]][0]), 1, -1)
return False
else:
if verbose:
internal_print("Failed", 1, -1)
return False
except socket.timeout:
if verbose:
internal_print("No answer.", 1, -1)
return False
return True
def internal_dot_print(feedback):
colour = 1
if feedback == True:
if colour:
text = "\033[92m"
text += "."
if feedback == False:
if colour:
text = "\033[91m"
text += "!"
sys.stdout.write(text)
def internal_print(message, newline = 1, feedback = 0, verbosity = 0, severity = 0):
debug = ""
colour = 1
prefix = ""
if severity == 2:
debug = "DEBUG: "
if verbosity >= severity:
if feedback == -1:
if colour:
prefix = "\033[91m"
prefix += "[-]"
if feedback == 0:
if colour:
prefix = "\033[39m"
prefix += "[*]"
if feedback == 1:
if colour:
prefix = "\033[92m"
prefix += "[+]"
if colour:
sys.stdout.write("{0} {1}{2}\033[39m".format(prefix, debug, message))
else:
sys.stdout.write("{0} {1}{2}".format(prefix, debug, message))
if newline:
sys.stdout.write("\n")
def is_hostname(s):
return bool(re.match("^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$", s))
def is_ipv4(s):
return bool(re.match("^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$", s))
# main function
if __name__ == "__main__":
print("DNS Tunnel Checker v0.1 by <NAME> [@xoreipeip]")
tester = Tester()
tester.run(sys.argv[1:])<file_sep># DNS Tunnel Checker #
Basic DNS server checker tool based on a server+client architecture to map out which resource record types are useable over a DNS server. With reasonable knowledge this tool can be used to investigate the network's DNS server and its limitations and determine if DNS tunnelling is an option.
### Usage ###
You must own your own domain which points to your server just like it is required with all DNS tunnelling tools.
On the server side, the tool needs to be executed as:
`python main.py -s --domain [example.com]`
Client side:
`python main.py -c --domain [example.com] --nameserver [IP]`
### Steps and techniques ###
* A record - just to check the DNS server
* A record rate limit - to see whether a basic rate limit is in place or not
* A request with CNAME response - check basic functionality
* CNAME record - almost the same as the previous one
* CNAME record rate limit - to see if this record type is rate limited or not
* EDNS support - for longer than 512byte answers
* Long domain name - upstream check, if works than upstream could be used for tunnelling
* Long answer packets - non-EDNS maximum 512byte long packets with a longer domain name
* IPv6 record - with multiple answers. Multiple answers could be used for tunnelling
* TXT record - good for tunnelling
* PRIVATE record - great for tunnelling
* NULL record - great for tunnelling
* MX record - kind of the same as CNAME
* SRV record - kind of the same as CNAME
* DNSKEY record - binary data can be transmitted
* RRSIG record - binary data can be transmitted
| 8c28693e29165288777d15e926ee87a57881e57e | [
"Markdown",
"Python"
] | 3 | Python | attackgithub/DNSTunnelChecker | 674c97e351ad3032f208333c99285e2703606624 | 1f192c61545bae1b6b48c689eb762c2f85ea5767 |
refs/heads/master | <repo_name>TedSinger/blurbcloud<file_sep>/storage.go
package main
import (
"github.com/qustavo/dotsql"
"github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3"
)
type BlurbDB struct {
db sqlx.DB
queries map[string]string
}
func GetBlurbDB(dbName, queryFileName string) BlurbDB {
db := sqlx.MustConnect("sqlite3", dbName)
dot, _ := dotsql.LoadFromFile(queryFileName) // FIXME: pull routeMapFromDir from parade
bdb := BlurbDB{*db, dot.QueryMap()}
println(bdb.queries["init"])
db.MustExec(bdb.queries["init"])
return bdb
}
<file_sep>/routes.go
package main
import (
"net/http"
"strings"
"github.com/labstack/echo/v4"
)
func (bs BlurbServer) getView(c echo.Context) error {
blurbId := c.Param("blurb")
sbv := bs.GetBlurbById(blurbId)
return c.HTML(http.StatusOK, bs.AsFullHTML(sbv))
}
func (bs BlurbServer) getRoot(c echo.Context) error {
c.Response().Header().Set("Cache-control", "no-cache")
return c.Redirect(301, "/blurb/"+genNewBlurbId())
}
func (bs BlurbServer) getRaw(c echo.Context) error {
blurbId := c.Param("blurb")
sbv := bs.GetBlurbById(blurbId)
return c.String(200, bs.AsFullHTML(sbv))
}
func (bs BlurbServer) putBlurb(c echo.Context) error {
ubv := new(UnsanitizedBlurbVersion)
if err := c.Bind(ubv); err != nil {
println(err)
panic(err)
}
sbv := ubv.Sanitize()
_, err := bs.db.NamedExec(bs.queries["put_blurb"], &sbv)
if err == nil {
go bs.pub(sbv)
return c.String(200, "OK")
} else {
println(err)
return c.String(400, err.Error())
}
}
func (bs BlurbServer) getStreamingUpdates(c echo.Context) error {
blurbId := c.Param("blurb")
c.Response().Header().Set(echo.HeaderContentType, "text/event-stream")
c.Response().Header().Set("Cache-control", "no-cache")
ch, subId := bs.sub(blurbId)
oldText := ""
defer bs.unsub(blurbId, subId) // this does not work - the client closing the connection is undetectable here, and this function never terminates
for blurb_version := range ch {
if blurb_version.Body != oldText {
for _, chunk := range strings.Split(string(blurb_version.toBytes()), "\n") {
c.Response().Write([]byte("data: " + chunk + "\n"))
}
c.Response().Write([]byte("\n"))
c.Response().Flush()
oldText = blurb_version.Body
}
}
return nil
}
<file_sep>/main.go
package main
import (
"encoding/base64"
"flag"
"fmt"
"html/template"
"math/rand"
"regexp"
"time"
"bytes"
"encoding/json"
"github.com/labstack/echo/v4"
qrcode "github.com/skip2/go-qrcode"
"github.com/microcosm-cc/bluemonday"
)
const LETTERS = "abcdefghijklmnopqrstuvwxyz"
type BlurbTemplates struct {
viewHtml *template.Template
}
func GetTemplates() BlurbTemplates {
viewHtml, _ := template.ParseFiles("static/view.html")
return BlurbTemplates{viewHtml}
}
type BlurbServer struct {
BlurbTemplates
PubSub
BlurbDB
}
func run(port int, dbName string) {
bs := BlurbServer{GetTemplates(), GetPubSub(), GetBlurbDB(dbName, "queries.sql")}
now := time.Now()
rand.Seed(now.UnixNano())
e := echo.New()
e.Static("/static", "static")
e.GET("/", bs.getRoot)
e.GET("/stream/:blurb", bs.getStreamingUpdates)
e.GET("/raw/:blurb", bs.getRaw)
e.GET("/blurb/:blurb", bs.getView)
e.PUT("/blurb/:blurb", bs.putBlurb)
e.Start(fmt.Sprintf(":%d", port))
// defer bs.Close() FIXME: close the sqlite connection
}
func main() {
port := flag.Int("port", 22000, "")
dbName := flag.String("db", "blurbs.db", "sqlite filename")
flag.Parse()
run(*port, *dbName)
}
func genNewBlurbId() string {
ret := ""
for i := 0; i < 4; i++ {
n := rand.Intn(len(LETTERS))
ret += LETTERS[n : n+1]
}
return ret
}
func readPng(blurbId string) string {
var png []byte
png, err := qrcode.Encode("http://blurb.cloud/blurb/"+blurbId, qrcode.Low, 120)
if err != nil {
return ""
} else {
return base64.StdEncoding.EncodeToString(png)
}
}
func rgbOfInts(s string) bool {
m, _ := regexp.Match("^ ?rgb\\( ?\\d+, ?\\d+, ?\\d+\\);?$", []byte(s))
return m
}
type BlurbData struct {
SanitizedBlurbVersion
Png string
}
type UnsanitizedBlurbVersion struct {
Id string `param:"blurb"`
Version int64 `json:"blurb_version"`
Body string `json:"blurb_text"`
}
type SanitizedBlurbVersion struct {
Id string `param:"blurb"`
Version int64 `json:"blurb_version"`
Body string `json:"blurb_text"`
}
func (sbv SanitizedBlurbVersion) AsInnerHTML() template.HTML {
return template.HTML(sbv.Body)
}
func (sbv SanitizedBlurbVersion) toBytes() []byte {
ret, err := json.Marshal(sbv)
if err != nil {
panic(err)
}
return ret
}
func (bs BlurbServer) AsFullHTML(sbv SanitizedBlurbVersion) string {
blurbData := BlurbData{sbv,
readPng(sbv.Id)}
ret := bytes.Buffer{}
bs.viewHtml.Execute(&ret, blurbData)
return ret.String()
}
func (ubv UnsanitizedBlurbVersion) Sanitize() SanitizedBlurbVersion {
p := bluemonday.UGCPolicy()
p.AllowAttrs("style").Globally()
p.AllowStyles("background-color", "color").MatchingHandler(rgbOfInts).Globally()
return SanitizedBlurbVersion{ubv.Id, ubv.Version, p.Sanitize(ubv.Body)}
}
func (bs BlurbServer) GetBlurbById(blurbId string) SanitizedBlurbVersion {
args := map[string]interface{}{
"id": blurbId,
}
var sbv SanitizedBlurbVersion
stmt, err := bs.db.PrepareNamed(bs.queries["get_blurb"])
if err != nil {
println(err)
panic(err)
}
err = stmt.Get(&sbv, args)
if err != nil {
println(err)
panic(err)
}
println(sbv.Version)
return sbv
}
<file_sep>/main_test.go
package main
import (
"fmt"
"io/ioutil"
"net/http"
"net/url"
"testing"
"time"
"github.com/stretchr/testify/assert"
)
func getFreePort() int {
return 21212
}
func getFileName() string {
f, _ := ioutil.TempFile("/dev/shm", "*.db")
return f.Name()
}
func testPostGet(t *testing.T, rootUrl string) {
expected := "this is some <b>TEXT!</b>"
_, err := http.Post(rootUrl+"/blurb/foo?text="+url.QueryEscape(expected), "", nil)
if err != nil {
panic(err)
}
resp, err := http.Get(rootUrl + "/raw/foo")
if err != nil {
panic(err)
}
actual, err := ioutil.ReadAll(resp.Body)
if err != nil {
panic(err)
}
assert.Equal(t, expected, string(actual))
}
func Test(t *testing.T) {
port := getFreePort()
fn := getFileName()
go run(port, fn)
rootUrl := fmt.Sprintf("http://localhost:%d", port)
var err error
for i := 0; i < 10; i++ {
_, err := http.Get(rootUrl)
if err == nil {
break
}
time.Sleep(123 * time.Millisecond)
}
if err != nil {
panic(err)
}
testPostGet(t, rootUrl)
}
<file_sep>/queries.sql
-- name: init
create table if not exists blurb (
id text,
version int,
body text,
primary key (id, version)
);
-- name: get_blurb
select id, version, body from blurb
where id = :id
and version = (select max(version) from blurb where id = :id)
union all select :id as "id", 0 as "version",
'<u><em style="background-color:: rgb(255, 240, 201)">Blurb.cloud</em></u>
is a shared, local billboard. Anyone who sees a blurb can change the blurb.' as "body";
-- name: put_blurb
insert into blurb (id, version, body)
select :id, :version, :body
where :version > (select coalesce(max(version), 0)
from blurb
where id = :id);
<file_sep>/go.mod
module blurbcloud
require (
github.com/boltdb/bolt v1.3.1
github.com/jmoiron/sqlx v1.3.4
github.com/labstack/echo/v4 v4.1.10
github.com/mattn/go-sqlite3 v1.14.12
github.com/microcosm-cc/bluemonday v1.0.16
github.com/qustavo/dotsql v1.1.0
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
github.com/stretchr/testify v1.4.0
)
go 1.13
<file_sep>/pubsub.go
package main
import (
"math/rand"
)
type PubSub struct {
subs map[string]map[int]chan SanitizedBlurbVersion
}
func GetPubSub() PubSub {
return PubSub{map[string]map[int]chan SanitizedBlurbVersion{}}
}
func (ps PubSub) sub(itemId string) (chan SanitizedBlurbVersion, int) {
subId := 0
_, ok := ps.subs[itemId]
if !ok {
ps.subs[itemId] = map[int]chan SanitizedBlurbVersion{}
}
for ok := true; ok; _, ok = ps.subs[itemId][subId] {
subId = rand.Int()
}
ch := make(chan SanitizedBlurbVersion)
ps.subs[itemId][subId] = ch
return ch, subId
}
func (ps PubSub) unsub(itemId string, subId int) {
ch, ok := ps.subs[itemId][subId]
if ok {
close(ch)
}
delete(ps.subs[itemId], subId)
}
func (ps PubSub) pub(sbv SanitizedBlurbVersion) {
// if a channel is closed, this blocks forever. potential resource leak, but it shouldn't hurt clients
for _, channel := range ps.subs[sbv.Id] {
channel <- sbv
}
}
<file_sep>/static/viewFuncs.js
function fitText() {
// resize #blurb to the maximum without overflowing the screen
var textDiv = document.querySelector(".ql-editor");
var body = document.querySelector("#all")
textDiv.style.visibility = "hidden";
var tooSmall = 0;
var tooBig = 128;
while (tooBig > tooSmall + 1) {
var middle = (tooSmall + tooBig) / 2;
textDiv.style.fontSize = middle + 'px';
if (window.innerHeight > body.clientHeight) {
tooSmall = middle;
} else {
tooBig = middle;
}
}
textDiv.style.fontSize = tooSmall + 'px';
textDiv.style.visibility = "visible";
}
class BlurbHolder {
constructor(url, blurb_version) {
this.blurb_version = blurb_version
this.url = url
this.quill = new Quill('#blurb', {
theme: 'snow',
modules: { 'toolbar': [
['bold', 'italic', 'underline'],
['strike', { 'script': 'sub' }, { 'script': 'super' }],
['clean', { 'color': [] }, { 'background': [] }]
]}
});
var self = this;
var editor = document.querySelector('.ql-editor');
this.quill.on('text-change', function (delta) {
self.blurb_version += 1
const body = JSON.stringify({"blurb_text": editor.innerHTML, blurb_version: self.blurb_version});
const headers = new Headers({"Content-Type": "application/json"});
const request = new Request(self.url, {method: 'PUT'});
const promise = fetch(request, {
body: body,
headers: headers
});
fitText();
});
fitText()
};
useText = function(json) {
const data = JSON.parse(json);
console.log(data)
const blurbText = data["blurb_text"]
const version = data["blurb_version"]
if( version > this.blurb_version) {
this.blurb_version = version
const sel = this.quill.getSelection();
this.quill.clipboard.dangerouslyPasteHTML(blurbText, "silent");
this.quill.setSelection(sel);
fitText();
};
};
};
function getRawText(url) {
return m.request(url, {
background: true,
deserialize: function(value) {return value},
responseType: "",
extract: function(xhr) {return xhr.responseText}
})
};
function watchUpdates(rawurl, streamurl, method) {
if (typeof(EventSource) !== "undefined") {
var source = new EventSource(streamurl);
source.onmessage = function (event) { method(event.data); }
source.onerror = function () {
console.log("disconnected!");
setTimeout(function () {
console.log("reconnecting...");
watchUpdates(rawurl, streamurl, method); },
1000);
}
} else {
// poll
setTimeout(function () { getRawText(rawurl).then((x) => {method(x)}); }, 1 * 1000);
setTimeout(function () { watchUpdates(rawurl, streamurl, method); }, 1 * 1000);
}
}; | a650471e70dbb2c9c5b159ddf55e8869e7cfeace | [
"JavaScript",
"SQL",
"Go Module",
"Go"
] | 8 | Go | TedSinger/blurbcloud | 258ad5e8ddea376e870db613048fc7cf93ab269c | 5e068b68e22a839e8bcb82719ea21af9355cc59f |
refs/heads/master | <repo_name>ake111aa/Win10_calculator<file_sep>/README.md
# Win10_calculator
Windows 10 application "Advanced calculator". Yeah, my favorite calculator
Just tried to make an application for Windows 10. Don't ask me about this
<file_sep>/Calculator_with_OOP/MainPage.xaml.cs
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// Документацию по шаблону элемента "Пустая страница" см. по адресу http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
class Number
{
//two private variable
int num; //numeration
int denum; //denumeration
// constructors -------------strart
public Number()
{
this.num = 0;
this.denum = 1;
}
public Number(int num, int denum)
{
this.num = num;
this.denum = denum;
}
// constructors -------------end */
// Method of calculation
public Number Add(Number number)
{
Number result = new Number();
result.num = this.num * number.denum + number.num * this.denum;
result.denum = this.denum * number.denum;
//here will be the makeShorter function
result = makeShorter(result);
return result;
}
public Number Subtract(Number number)
{
Number result = new Number();
result.num = this.num * number.denum - number.num * this.denum;
result.denum = this.denum * number.denum;
//here will be the makeShorter function
result = makeShorter(result);
return result;
}
public Number Multiply(Number number)
{
Number result = new Number();
result.num = this.num * number.num;
result.denum = this.denum * number.denum;
//here will be the makeShorter function
result = makeShorter(result);
return result;
}
public Number Divide(Number number)
{
// there is no checking for division by zero
//because the constructor Number(string num) contains it
Number result = new Number();
result.num = this.num * number.denum;
result.denum = this.denum * number.num;
result = makeShorter(result);
return result;
}
private Number makeShorter(Number number)
{
Number result = new Number(number.num, number.denum);
while ((result.num % 10 == 0) && (result.denum % 10 == 0))
{
result.num = result.num / 10;
result.denum = result.denum / 10;
}
//--------------------------------------
while ((result.num % 7 == 0) && (result.denum % 7 == 0))
{
result.num = result.num / 7;
result.denum = result.denum / 7;
}
//--------------------------------------
while ((result.num % 5 == 0) && (result.denum % 5 == 0))
{
result.num = result.num / 5;
result.denum = result.denum / 5;
}
//--------------------------------------
while ((result.num % 3 == 0) && (result.denum % 3 == 0))
{
result.num = result.num / 3;
result.denum = result.denum / 3;
}
//--------------------------------------
while ((result.num % 2 == 0) && (result.denum % 2 == 0))
{
result.num = result.num / 2;
result.denum = result.denum / 2;
}
//-----
return result;
}
public string getNumber()
{
Number fraction = new Number(this.num, this.denum);
fraction = makeShorter(fraction);
string result;
if (denum != 1)
result = Convert.ToString(fraction.num) + '/' + Convert.ToString(fraction.denum);
else
result = Convert.ToString(fraction.num);
return result;
}
}
namespace Calculator_with_OOP
{
/// <summary>
/// Пустая страница, которую можно использовать саму по себе или для перехода внутри фрейма.
/// </summary>
public sealed partial class MainPage : Page
{
public MainPage()
{
this.InitializeComponent();
//Number firstNumber = new Number();
//Number secondNumber = new Number();
}
bool fractPressed = false;
bool isNumber = false; //it allows and blocks inputing of second action
int secondNumberPosition = 0;
Number firstNumber = new Number();
Number secondNumber = new Number();
string action;
private int getDigitLength(int n)
{
int result = (int)Math.Log10(n) + 1;
return result;
}
private Number convertNumber(string str)
{
//Number result = new Number();
int num = 0, denum = 1;
if ( (str.Contains('/')) || (str.Contains('.')) )
{
string[] split;
if (str.Contains('/')) {
split = str.Split('/');
num = Convert.ToInt32(split[0]);
denum = Convert.ToInt32(split[1]);
}
else // here is neccesary to finish the procession
{
try
{
double numberDouble = Double.Parse(str);
numberDouble = Math.Round(numberDouble, 3);
num = Convert.ToInt32(numberDouble * 1000);
denum = 1000;
}
catch (FormatException)
{
split = str.Split('.');
int first = Convert.ToInt32(split[0]);
int last = Convert.ToInt32(split[1]);
//int digitCount = getDigitLength(last);
while (getDigitLength(last) > 4) //the loop cuts digit to 3-length
{
last = (int)last / 10;
}
last *= 100;
num = first * 1000 + last;
textBlock1.Text = Convert.ToString(num) + "/" + Convert.ToString(denum);
denum = 1000;
}
//textBlock1.Text = Convert.ToString(num) + "/" + Convert.ToString(denum);
}
}
if ( (!str.Contains('/')) && (!str.Contains('.')))
num = Convert.ToInt32(str);
Number result = new Number(num, denum);
return result;
}
private void button1_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '7';
}
private void button1_Copy2_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '8';
}
private void button1_Copy3_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '9';
}
private void button1_Copy_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '4';
}
private void button1_Copy5_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '5';
}
private void button1_Copy6_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '6';
}
private void button1_Copy1_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '1';
}
private void button1_Copy8_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '2';
}
private void button1_Copy9_Click(object sender, RoutedEventArgs e)
{
inputBox.Text += '3';
}
private void newData() //the function renews app for new dta input
{
isNumber = false;
fractPressed = false;
}
private void button_Click(object sender, RoutedEventArgs e)
{
newData();
inputBox.Text = "";
}
private void button1_Copy4_Click(object sender, RoutedEventArgs e)
{
// add button
if ((!isNumber) && (!inputBox.Text.Equals("")))
{
firstNumber = convertNumber(inputBox.Text);
inputBox.Text += " + ";
secondNumberPosition = inputBox.Text.Length;
action = "add";
isNumber = true;
fractPressed = false;
}
}
private void multiplyButton_Click(object sender, RoutedEventArgs e)
{
//
if ((!isNumber) && (!inputBox.Text.Equals("")))
{
firstNumber = convertNumber(inputBox.Text);
inputBox.Text += " * ";
secondNumberPosition = inputBox.Text.Length;
action = "multiply";
isNumber = true;
fractPressed = false;
}
}
private void button3_Click(object sender, RoutedEventArgs e)
{
if (!inputBox.Text.Equals(""))
{
outputBox1.Text = "";
firstNumber = convertNumber(inputBox.Text);
outputBox1.Text = firstNumber.getNumber();
} else
outputBox1.Text = "Error";
}
private void fractButton_Click(object sender, RoutedEventArgs e)
{
if ((!inputBox.Text.Equals("")) && (!fractPressed))
{
inputBox.Text = inputBox.Text + '/';
fractPressed = true;
}
}
private void subtractButton_Click(object sender, RoutedEventArgs e)
{
//
if ((!isNumber) && (!inputBox.Text.Equals("")))
{
firstNumber = convertNumber(inputBox.Text);
inputBox.Text += " - ";
secondNumberPosition = inputBox.Text.Length;
action = "subtract";
isNumber = true;
fractPressed = false;
}
}
private void divideButton_Click(object sender, RoutedEventArgs e)
{
//
if ((!isNumber) && (!inputBox.Text.Equals("")))
{
firstNumber = convertNumber(inputBox.Text);
inputBox.Text += " : ";
secondNumberPosition = inputBox.Text.Length;
action = "divide";
isNumber = true;
outputBox1.Text += Convert.ToString(inputBox.Text.Length);
fractPressed = false;
}
}
private void dotButton_Click(object sender, RoutedEventArgs e)
{
if ( (inputBox.Text.Equals("")) && (!fractPressed) )
{
inputBox.Text = "0.";
} else
{
inputBox.Text += ".";
}
fractPressed = true;
}
private void resultButton_Click_1(object sender, RoutedEventArgs e)
{
if (isNumber)
{
string second = inputBox.Text.Substring(secondNumberPosition);
Number result = new Number();
secondNumber = convertNumber(second);
switch (action)
{
case "add":
result = firstNumber.Add(secondNumber);
break;
case "subtract":
result = firstNumber.Subtract(secondNumber);
break;
case "multiply":
result = firstNumber.Multiply(secondNumber);
break;
case "divide":
result = firstNumber.Divide(secondNumber);
break;
default:
inputBox.Text = "Error";
break;
}
inputBox.Text = result.getNumber();
newData();
}
}
}
}
| d620e1b861cceab6dc665aa7847a18587ed8f2ec | [
"Markdown",
"C#"
] | 2 | Markdown | ake111aa/Win10_calculator | a340319884328cd851b6d5ed609c8a04b77980ce | d7651af22427cfb9f977c146d357d53c613be4f6 |
refs/heads/master | <file_sep># Xendit Coding Exercise
The goal of these exercises are to assess your proficiency in software engineering that is related to the daily work that we do at Xendit. Please follow the instructions below to complete the assessment.
In this first exercise, the engineer needs to understand the product/service in a whole, and make a clear documentation out of it. After that, do a well defined PR so other engineer can understand the context of the PR, review, and drop some comments or feedbacks if needed.
## Endpoints
**1. Health check**<br />
> To check whether application is up and running properly
```json
POST /health
```
**2. Create ride**<br />
> To create a ride, with the following details
```json
POST /rides
```
**Request parameters**
Parameter | Description
--- | ---
start_lat|**number (required)**<br />The start latitude. Must be between -90 and 90
start_long|**number (required)**<br />The start latitude. Must be between -180 and 180
end_lat|**number (required)**<br />The start latitude. Must be between -90 and 90
end_long|**number (required)**<br />The start latitude. Must be between -180 and 180
rider_name|**string (required)**<br />The name of the rider. Must be a string that cannot be less than 1 in length
driver_name|**string (required)**<br />The name of the driver. Must be a string that cannot be less than 1 in length
driver_vehicle|**string (required)**<br />The name of the vehicle. Must be a string that cannot be less than 1 in length
**Response parameters**
Parameter | Description
--- | ---
rideID|**number (required)**<br />The ID of the request.
startLat|**number (required)**<br />The start latitude.
startLong|**number (required)**<br />The start latitude.
endLat|**number (required)**<br />The start latitude.
endLong|**number (required)**<br />The start latitude.
riderName|**string (required)**<br />The name of the rider.
driverName|**string (required)**<br />The name of the driver.
driverVehicle|**string (required)**<br />The name of the vehicle.
**3. Get all rides**<br />
> To get all created rides without any filter. Result is coming out as an array
```json
GET /rides
```
**Response parameters**
Parameter | Description
--- | ---
rideID|**number (required)**<br />The ID of the request.
startLat|**number (required)**<br />The start latitude.
startLong|**number (required)**<br />The start latitude.
endLat|**number (required)**<br />The start latitude.
endLong|**number (required)**<br />The start latitude.
riderName|**string (required)**<br />The name of the rider.
driverName|**string (required)**<br />The name of the driver.
driverVehicle|**string (required)**<br />The name of the vehicle.
**4. Get ride by id**<br />
> To get a specific ride by id. Result is coming out as an array (?)
```json
GET /rides/:id
```
**Response parameters**
Parameter | Description
--- | ---
rideID|**number (required)**<br />The ID of the request.
startLat|**number (required)**<br />The start latitude.
startLong|**number (required)**<br />The start latitude.
endLat|**number (required)**<br />The start latitude.
endLong|**number (required)**<br />The start latitude.
riderName|**string (required)**<br />The name of the rider.
driverName|**string (required)**<br />The name of the driver.
driverVehicle|**string (required)**<br />The name of the vehicle.<file_sep>"use strict";
const request = require("supertest");
const expect = require("expect.js");
const sqlite3 = require("sqlite3").verbose();
const db = new sqlite3.Database(":memory:");
const app = require("../src/app")(db);
const buildSchemas = require("../src/schemas");
describe("API tests", () => {
before(done => {
db.serialize(err => {
if (err) {
return done(err);
}
buildSchemas(db);
done();
});
});
after(() => {
db.close();
});
describe("App Test", () => {
describe("GET /health", () => {
it("should return health", done => {
request(app)
.get("/health")
.expect("Content-Type", /text/)
.expect(200, done);
});
});
describe("POST /rides", () => {
beforeEach(() => {
db.run(`DELETE FROM Rides`, err => {
if (err) throw err;
});
});
describe("all params are correct", () => {
it("should return rides detail", done => {
request(app)
.post("/rides")
.send({
start_lat: 0,
start_long: 1,
end_lat: 2,
end_long: 3,
rider_name: "Jancuk",
driver_name: "Jancuk 2",
driver_vehicle: "Motor"
})
.expect("Content-Type", /json/)
.expect(200)
.end((err, res) => {
if (err) return done(err);
expect(res.body).to.be.an("array");
expect(res.body).to.have.length(1);
expect(res.body[0].startLat).to.be.equal(0);
expect(res.body[0].startLong).to.be.equal(1);
expect(res.body[0].endLat).to.be.equal(2);
expect(res.body[0].endLong).to.be.equal(3);
expect(res.body[0].riderName).to.be.equal("Jancuk");
expect(res.body[0].driverName).to.be.equal("<NAME>");
expect(res.body[0].driverVehicle).to.be.equal("Motor");
return done();
});
});
});
describe("start latitude and longitude are invalid", () => {
it("should return validation error", done => {
request(app)
.post("/rides")
.send({
start_lat: 181,
start_long: 1,
end_lat: 2,
end_long: 3,
rider_name: "Jancuk",
driver_name: "<NAME>",
driver_vehicle: "Motor"
})
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "VALIDATION_ERROR",
message:
"Start latitude and longitude must be between -90 - 90 and -180 to 180 degrees respectively"
},
done
);
});
});
describe("end latitude and longitude are invalid", () => {
it("should return validation error", done => {
request(app)
.post("/rides")
.send({
start_lat: 0,
start_long: 1,
end_lat: 181,
end_long: 3,
rider_name: "Jancuk",
driver_name: "<NAME>",
driver_vehicle: "Motor"
})
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "VALIDATION_ERROR",
message:
"End latitude and longitude must be between -90 - 90 and -180 to 180 degrees respectively"
},
done
);
});
});
describe("rider name are invalid", () => {
it("should return validation error", done => {
request(app)
.post("/rides")
.send({
start_lat: 0,
start_long: 1,
end_lat: 2,
end_long: 3,
rider_name: "",
driver_name: "<NAME>",
driver_vehicle: "Motor"
})
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "VALIDATION_ERROR",
message: "Rider name must be a non empty string"
},
done
);
});
});
describe("driver name are invalid", () => {
it("should return validation error", done => {
request(app)
.post("/rides")
.send({
start_lat: 0,
start_long: 1,
end_lat: 2,
end_long: 3,
rider_name: "Jancuk",
driver_name: "",
driver_vehicle: "Motor"
})
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "VALIDATION_ERROR",
message: "Driver name must be a non empty string"
},
done
);
});
});
describe("driver vehicle are invalid", () => {
it("should return validation error", done => {
request(app)
.post("/rides")
.send({
start_lat: 0,
start_long: 1,
end_lat: 2,
end_long: 3,
rider_name: "Jancuk",
driver_name: "<NAME>",
driver_vehicle: ""
})
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "VALIDATION_ERROR",
message: "Driver vehicle must be a non empty string"
},
done
);
});
});
});
describe("GET /rides", () => {
beforeEach(() => {
db.run(`DELETE FROM Rides`, err => {
if (err) throw err;
});
});
describe("at least 1 ride exists", () => {
it("should return found rides", done => {
const record = [1, 0, 1, 2, 3, "Jancuk", "Jancuk 2", "Motor"];
db.run(
"INSERT INTO Rides(rideID, startLat, startLong, endLat, endLong, riderName, driverName, driverVehicle) VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
record,
function(err) {
if (err) {
throw err;
}
}
);
request(app)
.get("/rides")
.expect("Content-Type", /json/)
.expect(200)
.end((err, res) => {
if (err) return done(err);
expect(res.body).to.be.an("array");
expect(res.body).to.have.length(1);
expect(res.body[0].startLat).to.be.equal(0);
expect(res.body[0].startLong).to.be.equal(1);
expect(res.body[0].endLat).to.be.equal(2);
expect(res.body[0].endLong).to.be.equal(3);
expect(res.body[0].riderName).to.be.equal("Jancuk");
expect(res.body[0].driverName).to.be.equal("Jancuk 2");
expect(res.body[0].driverVehicle).to.be.equal("Motor");
return done();
});
});
});
describe("no ride exists", () => {
it("should return not found error", done => {
request(app)
.get("/rides")
.expect("Content-Type", /json/)
.expect(
200,
{
error_code: "RIDES_NOT_FOUND_ERROR",
message: "Could not find any rides"
},
done
);
});
});
});
});
});
| af5066c6bdc689816446755d084015818b391a5c | [
"Markdown",
"JavaScript"
] | 2 | Markdown | Teofebano/backend-coding-test | 5ff50a22b5d2d84869fae31893ea182e9a9a3c0e | 4821c3696deda4eea21ea7f9ced994afda7f65cd |
refs/heads/master | <file_sep>#include <opencv\highgui.h>
#include <opencv\cv.h>
#include <iostream>
using namespace cv;
using namespace std;
string intToString(int number){
std::stringstream ss;
ss << number;
return ss.str();
}
int main(int argc, char* argv[])
{
VideoCapture cap(0); // open the video camera no. 0
if(!cap.isOpened()) // if not success, exit program
{
cout << "ERROR INITIALIZING VIDEO CAPTURE" << endl;
return -1;
}
char* windowName = "Webcam Feed";
namedWindow(windowName,CV_WINDOW_AUTOSIZE); //create a window to display our webcam feed
string filename = "D:\hellomyVideo.avi";
int fcc = CV_FOURCC('D','I','V','3');
int fps = 20;
cv::Size frameSize(cap.get(CV_CAP_PROP_FRAME_WIDTH),cap.get(CV_CAP_PROP_FRAME_HEIGHT));
cv::VideoWriter writer ;
writer = VideoWriter(filename,fcc,fps,frameSize);
if(!writer.isOpened())
{
cout<<"ERRORRRR!!!!"<<endl;
getchar();
return -1;
}
while (1) {
Mat frame;
bool bSuccess = cap.read(frame); // read a new frame from camera feed
if (!bSuccess) //test if frame successfully read
{
cout << "ERROR READING FRAME FROM CAMERA FEED" << endl;
break;
}
writer.write(frame);
imshow(windowName, frame); //show the frame in "MyVideo" window
//listen for 10ms for a key to be pressed
switch(waitKey(10)){
case 27:
//'esc' has been pressed (ASCII value for 'esc' is 27)
//exit program.
return 0;
}
}
return 0;
}
//////////////////////////////////////////////////////////////////////////////////////////// | b7a56401c66ec2e770c704b59c593df814f99dfe | [
"C++"
] | 1 | C++ | OccupayPaymentGateway/payment | cb4cd399828cfe1fc6cf6f923d76243167ae6a31 | 3c6e41f03441d55a9bbc320b061eb6933cd20b7d |
refs/heads/master | <repo_name>amittaigames/Rogue<file_sep>/src/com/amittaigames/rogue/GameData.java
package com.amittaigames.rogue;
public class GameData {
public static final String[] races = new String[] {"Human", "Wizard", "Wolfman", "Alien", "Dooglius"};
} | 0a93a423adfc72439ea370dc264ef5692b51f58b | [
"Java"
] | 1 | Java | amittaigames/Rogue | c121979e520b1772accea68e977ffc6c819d8c02 | 0886c69a6c27e01fe890faeb064b95a90dac5b98 |
refs/heads/master | <repo_name>saksham0808/my-rc-files<file_sep>/.myscripts/updated-noip
#! /bin/bash
date > ~/.info/noip-log
<file_sep>/.zsh/bindkey.zsh
bindkey ' ' magic-space
autoload -U edit-command-line
zle -N edit-command-line
bindkey '\C-x\C-e' edit-command-line
bindkey '^Z' fancy-ctrl-z
# create a zkbd compatible hash;
# to add other keys to this hash, see: man 5 terminfo
typeset -A key
key[Home]=${terminfo[khome]}
key[End]=${terminfo[kend]}
key[Insert]=${terminfo[kich1]}
key[Delete]=${terminfo[kdch1]}
key[Up]=${terminfo[kcuu1]}
key[Down]=${terminfo[kcud1]}
key[Left]=${terminfo[kcub1]}
key[Right]=${terminfo[kcuf1]}
key[PageUp]=${terminfo[kpp]}
key[PageDown]=${terminfo[knp]}
# setup key accordingly
[[ -n "${key[Home]}" ]] && bindkey "${key[Home]}" beginning-of-line
[[ -n "${key[End]}" ]] && bindkey "${key[End]}" end-of-line
[[ -n "${key[Insert]}" ]] && bindkey "${key[Insert]}" overwrite-mode
[[ -n "${key[Delete]}" ]] && bindkey "${key[Delete]}" delete-char
[[ -n "${key[Up]}" ]] && bindkey "${key[Up]}" up-line-or-history
[[ -n "${key[Down]}" ]] && bindkey "${key[Down]}" down-line-or-history
[[ -n "${key[Left]}" ]] && bindkey "${key[Left]}" backward-char
[[ -n "${key[Right]}" ]] && bindkey "${key[Right]}" forward-char
[[ -n "${key[PageUp]}" ]] && bindkey "${key[PageUp]}" beginning-of-buffer-or-history
[[ -n "${key[PageDown]}" ]] && bindkey "${key[PageDown]}" end-of-buffer-or-history
# PageUp and PageDown would only show history items starting as typed
[[ -n "${key[PageUp]}" ]] && bindkey "${key[PageUp]}" history-beginning-search-backward
[[ -n "${key[PageDown]}" ]] && bindkey "${key[PageDown]}" history-beginning-search-forward
# Don't break my EMACS instinct.
# Allow C-P and C-N to do partial history matching.
# Never need to get to those far-off page up/down keys :)
bindkey '\C-P' history-beginning-search-backward
bindkey '\C-N' history-beginning-search-forward
# ZAW
# Credits where they're due :)
# https://github.com/zsh-users/zaw
# http://blog.patshead.com/2013/04/more-powerful-zsh-history-search-using-zaw.html
source $ZSH/zaw/zaw.zsh
bindkey '^R' zaw-history
bindkey -M filterselect '^R' down-line-or-history
bindkey -M filterselect '^S' up-line-or-history
bindkey -M filterselect '^E' accept-search
<file_sep>/.zsh/zshrc
# Source Prezto.
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
fi
path=(
/usr/local/{bin,sbin}
/usr/{bin,sbin}
/{bin,sbin}
/opt/bin
$HOME/.cabal/bin
$HOME/.local/bin
$HOME/.stack/programs/x86_64-linux/ghc-7.10.3
$HOME/arcanist/bin
$HOME/kubernetes/cluster/ubuntu/binaries
)
export EDITOR=vim
export VISUAL=vim
# Node version manager
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
export ZSH=$HOME/.zsh
source $ZSH/alias.zsh
source $ZSH/functions.zsh
source $ZSH/bindkey.zsh
source $ZSH/autojump.zsh
<file_sep>/.myscripts/gitconfig.sh
#! /bin/bash
git config --global user.name "<NAME>"
git config --global user.email "<EMAIL>"
<file_sep>/.myscripts/volume.sh
#! /bin/bash
# amixer sset Master 100%
# Get all sounds sources, get their names, form a command line with amixer and execute it
# amixer scontrols | grep -oE "'.*'" | awk -F\' \
# '{print "amixer -c 0 set \""$2"\" unmute 100"}' | sh
# Unmutes all audio devices and sets their volume to max.
# Basic setup for sound:
# Do a sudo systemctl enable alsa-restore
# And then start it
# Then do amixer sset Master unmute (add this to startup)
<file_sep>/.inscripts/sendhttppost
#! /bin/bash
export COOKIE='Cookie: id=saksham0808; timestamp=1430940663; auth=D546C5E71058DF8BDEF97D94CD8831D1E4598109'
http post localhost:7771/ed4j id="hackcave" name="Hack Cave" properties:='{}' $COOKIE
<file_sep>/.conky/greenconky/piechart.lua
--[[PIE CHART WIDGET BY WLOURF v1.2 26 may 2010
This widget draw a pie chart or a ring in a conky window.
More info on the parameters with pictures on this page :
http://u-scripts.blogspot.com/2010/04/pie-chart-widget.html
v1.0 10/04/2010 original release
v1.1 15/05/2010 the parameters are in a table (pie_settings), only the values in pie_settings.tableV are mandatory
added an option to draw values like a ring (type_arc="l")
v1.2 26/05/2010 add inverse_l parameter (for type_arc="l")
bug fix : line_lgth problem
read_df function improved
]]
require 'cairo'
--main function
function conky_main_pie()
if conky_window==nil then return end
--flag used in this script to display or not text informations
local file = io.open("/tmp/flag-conky-pie","r")
io.close()
flag_show_text=(file ~= nil)
-- ------------------PARAMETERS TO SET-----------------------
--all parameters are explained in CIRCLE for RAM bellow
--theses parameters are called many times so I put them into variables
local font_name,font_size="FreeSans",14
-- local col0,col1,col2=0x0033FF,0x3300FF,0x6600FF
local col0,col1,col2=0x333333,0x000000,0x222222
local colbg=0x222222
--for the clock
local temp = os.date("*t")
local hour=temp.hour
if hour>12 then hour=hour-12 end
local hpc,mpc,spc=hour/12,temp.min/60,temp.sec/60
pie_settings= {
{--CIRCLE 3 : DISK SPACE
tableV=read_df(false,true),
xc=640,
yc=460 ,
int_radius=133,
radius=240,
type_arc="r",
proportional=False,
first_angle=-180,
gradient_effect=false,
last_angle=-120,
show_text=true,
extend_line=true,
line_lgth=-110,
line_space=15,
txt_format="&l &n",
font_color=colbg,
tablebg={
{colbg,0.1},
},
tablefg={
{col0,1},
{col1,1},
{col2,1},
},
},
{--CIRCLE 3 : INTERNET SPEED
tableV={
{"lan dl","downspeedf","eth0",9000,"kb/s"},
{"lan ul","upspeedf","eth0",1000,"kb/s"},
{"wlan dl","downspeedf","wlan0",9000,"kb/s"},
{"wlan ul","upspeedf","wlan0",1000,"kb/s"},
},
xc=640,
yc=458 ,
int_radius=133,
radius=240,
type_arc="r",
proportional=false,
first_angle=-40,
gradient_effect=false,
last_angle=-0,
show_text=true,
line_lgth=-110,
line_space=15,
txt_format="&l &v",
font_color=colbg,
tablebg={
{colbg,0.1},
},
tablefg={
{col0,1},
{col1,1},
{col2,1},
},
},
{--CIRCLE 3 : CPU
tableV={
{"core 2","cpu","cpu 2",100,"%"},
{"core 1","cpu","cpu 1",100,"%"},
{"cpu total","cpu","cpu 0",100,"%"},
},
xc=640,
yc=458 ,
int_radius=133,
radius=240,
type_arc="r",
proportional=false,
first_angle=-80,
gradient_effect=false,
last_angle=-50,
show_text=true,
line_lgth=120,
line_space=15,
txt_format="&l &v",
font_color=colbg,
tablebg={
{colbg,0.1},
},
tablefg={
{col0,1},
{col1,1},
{col2,1},
},
},
{--CIRCLE 3 : MEMORY
tableV={
{"swap","swapperc",0,100,"%"},
{"mem","memperc","",100,"%"},
},
xc=640,
yc=460 ,
int_radius=133,
radius=250,
type_arc="r",
proportional=false,
first_angle=-110,
gradient_effect=false,
last_angle=-90,
show_text=true,
line_lgth=100,
line_space=15,
txt_format="&l &v",
font_color=colbg,
tablebg={
{colbg,0.1},
},
tablefg={
{col0,1},
{col1,1},
{col2,1},
},
},
{--CERCLE 2 : ARC 3 = IP ADRESS (invisible circle)
tableV={
-- {conky_parse("${addr wlan0}").." ","",0,100,""},
-- {conky_parse("${addr eth0}").." ","",0,100,""},
-- {conky_parse("192.168.0.1").." ","",0,100,""},
},
xc=100,
yc=250+5,
int_radius=0,
radius=1,
first_angle=210,
last_angle=330,
type_arc="r",
line_lgth=10,
line_width=0,
show_text=true,
txt_format="&l",
font_color=colbg,
tablebg={
{col2,0},
},
tablefg={
{col2,1},
},
},
{--CIRCLE 5 : MEMORY : ram
--I wrote all the possibles parameters available for the script, only tableV is mandatory
-- table of labels and values {{label,conky_variable,conky_argument,convert to Go-Mo-Ko units (true/false) or unit},
-- this table is mandatory, others parameters are optionals
tableV={
-- {"mem","memperc","",100,"%"},
},
--to know disk space, use this line
-- tableV=read_df(false,true),
--[[ another example
tableV={ {"cpu0","cpu","cpu0",100,"%"},
{"cpu1","cpu","cpu1",100,"%"},
{"fan","","${exec sensors | grep 'CPU Fan' | cut -c13-16}",2000," rpm"},
{"temp","","${exec sensors | grep 'Sys Temp' | cut -c15-17}",100,"°C"},
{"some stuff","",75.5,100,"°C"}
},
]]
xc=50, -- x center of the pie, default = conky_window.width/2
yc=700, -- y center of the pie, default = conky_window.height/2
int_radius=30, -- internal radius in pixel, default = conky_window.width/6
radius=45, -- external radius in pixel, default = conky_window.width/4
first_angle=0, -- first angle of the pie (in degrees), default=0
last_angle=360, -- last angle of the pie (in degrees), default=360
type_arc="l", -- fill the arc in a linear way (ring) or radial way (pie), values l or r, default=l
inverse_l_arc=false, -- inverse arc for rings (true/false), default=false
proportional=false, -- display proportional sectors (true/false); default =false
gradient_effect=true, -- gradient effect (true/false), default=true
line_lgth=50, -- length for horizontal line (from radius to end of line), default=radius
line_width=0, -- width of line, default=1
line_space=10, -- vertical space between two lines, default=10 pixels
extend_line=true, -- grow up the line (true/false) if length of text> line_lgth, default=true
nb_decimals=0, -- number of decimals for numbers, default=1
show_text=true,-- display text (true/false), default=true
txt_font=font_name, -- font, default "Japan"
font_size=12, -- font size, default=12
font_color=colbg, -- font color (for gradient) or nil (for constant color), default = nil
font_alpha=0.5, -- font alpha, default=1
txt_offset=1, -- space between text and line, default=1
txt_format="&l &v", -- string for formatting text, possibles values are : default = "&l : &v"
-- &l for label
-- &o for occupied percentage
-- &f for free percentage
-- &v for value
-- &n for free value (non-occupied)
-- &m for max value
-- &p for percentage value of full graph
tablebg={ -- table of tables of colours for background {colors,alpha}
{colbg,0.5},
},
tablefg={ -- table of tables of colours for foreground {colors,alpha}
{col2,1},
},
},
}
-------------------END OF PARAMETERS ---------------
local w=conky_window.width
local h=conky_window.height
local cs=cairo_xlib_surface_create(conky_window.display, conky_window.drawable, conky_window.visual, w, h)
cr=cairo_create(cs)
if tonumber(conky_parse('${updates}'))>5 then
for i in pairs(pie_settings) do
draw_pie(pie_settings[i])
end
end
cairo_destroy(cr)
end
function string:split(delimiter)
--source for the split function : http://www.wellho.net/resources/ex.php4?item=u108/split
local result = { }
local from = 1
local delim_from, delim_to = string.find( self, delimiter, from )
while delim_from do
table.insert( result, string.sub( self, from , delim_from-1 ) )
from = delim_to + 1
delim_from, delim_to = string.find( self, delimiter, from )
end
table.insert( result, string.sub( self, from ) )
return result
end
function rgb_to_r_g_b(colour, alpha)
return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
end
function round(num, idp)
local mult = 10^(idp or 0)
return math.floor(num * mult + 0.5) / mult
end
function size_to_text(size,nb_dec)
local txt_v
if nb_dec<0 then nb_dec=0 end
size = tonumber(size)
if size>1024*1024*1024*1024 then
txt_v=string.format("%."..nb_dec.."f TB",size/1024/1024/1024/1024)
elseif size>1024*1024*1024 then
txt_v=string.format("%."..nb_dec.."f GB",size/1024/1024/1024)
elseif size>1024*1024 then
txt_v=string.format("%."..nb_dec.."f MB",size/1024/1024)
elseif size>1024 then
txt_v=string.format("%."..nb_dec.."f KB",size/1024)
else
txt_v=string.format("%."..nb_dec.."f B",size)
end
return txt_v
end
function read_df(show_media,sort_table)
--read output of command df and return arrays of value for files systems
--reurn array of table {file syst, "", occupied space , total space , convert to G, M, K ...}
local f = io.popen("df")
local results={}
while true do
local line = f:read("*l")
if line == nil then break end
while string.match(line," ") do
line=string.gsub(line," "," ")
end
local arr_l=string.split(line," ")
local match = string.match(arr_l[1],"/")
if string.match(arr_l[1],"/") then
if not show_media then arr_l[6]=string.gsub(arr_l[6],"/media/","",1) end
table.insert(results,{arr_l[6],"",(arr_l[2]-arr_l[4])*1024,arr_l[2]*1024,true})
end
end
f:close()
if sort_table then
--how to sort table into table?
local flagS=true
while flagS do
for k=2, #results do
flagS=false
if tonumber(results[1][3])>tonumber(results[2][3]) then
local tmpV = results[1]
results[1] = results[2]
results[2] = tmpV
flagS=true
end
if tonumber(results[k][3])<tonumber(results[k-1][3]) then
local tmpV = results[k-1]
results[k-1] = results[k]
results[k] = tmpV
flagS=true
end
end
end
end
return results --array {file syst, occupied space , total space }
end
function draw_pie(t)
if t.tableV==nil then
print ("No input values ...")
return
else
tableV=t.tableV
end
if t.xc==nil then t.xc=conky_window.width/2 end
if t.yc==nil then t.yc=conky_window.height/2 end
if t.int_radius ==nil then t.int_radius =conky_window.width/6 end
if t.radius ==nil then t.radius =conky_window.width/4 end
if t.first_angle==nil then t.first_angle =0 end
if t.last_angle==nil then t.last_angle=360 end
if t.proportional==nil then t.proportional=false end
if t.tablebg==nil then t.tablebg={{0xFFFFFF,0.5},{0xFFFFFF,0.5}} end
if t.tablefg==nil then t.tablefg={{0xFF0000,1},{0x00FF00,1}} end
if t.gradient_effect==nil then t.gradient_effect=true end
if t.show_text==nil then t.show_text=true end
if t.line_lgth==nil then t.line_lgth=t.int_radius end
if t.line_space==nil then t.line_space=10 end
if t.line_width==nil then t.line_width=1 end
if t.extend_line==nil then t.extend_line=true end
if t.txt_font==nil then t.txt_font="monofur" end
if t.font_size==nil then t.font_size=16 end
--if t.font_color==nil then t.font_color=0xFFFFFF end
if t.font_alpha==nil then t.font_alpha = 1 end
if t.txt_offset==nil then t.txt_offset = 1 end
if t.txt_format==nil then t.txt_format = "&l : &v" end
if t.nb_decimals==nil then t.nb_decimals=0 end
if t.type_arc==nil then t.type_arc="l" end
if t.inverse_l_arc==nil then t.inverse_l_arc=false end
local function draw_sector(tablecolor,colorindex,pc,lastAngle,angle,radius,int_radius,gradient_effect,type_arc,inverse_l_arc)
--draw a portion of arc
radiuspc=(radius-int_radius)*pc+int_radius
angle0=lastAngle
val=1
if type_arc=="l" then
val=pc;radiuspc=radius
end
angle1=angle*val
if type_arc=="l" and inverse_l_arc then
cairo_save(cr)
cairo_rotate(cr,angle0+angle)
if gradient_effect then
local pat = cairo_pattern_create_radial (0,0, int_radius, 0,0,radius)
cairo_pattern_add_color_stop_rgba (pat, 0, rgb_to_r_g_b(tablecolor[colorindex][1],0))
cairo_pattern_add_color_stop_rgba (pat, 0.5, rgb_to_r_g_b(tablecolor[colorindex][1],tablecolor[colorindex][2]))
cairo_pattern_add_color_stop_rgba (pat, 1, rgb_to_r_g_b(tablecolor[colorindex][1],0))
cairo_set_source (cr, pat)
cairo_pattern_destroy(pat)
else
cairo_set_source_rgba(cr,rgb_to_r_g_b(tablecolor[colorindex][1],tablecolor[colorindex][2]))
end
cairo_move_to(cr,0,-int_radius)
cairo_line_to(cr,0,-radiuspc)
cairo_rotate(cr,-math.pi/2)
cairo_arc_negative(cr,0,0,radiuspc,0,-angle1)
cairo_rotate(cr,-math.pi/2-angle1)
cairo_line_to(cr,0,int_radius)
cairo_rotate(cr,math.pi/2)
cairo_arc(cr,0,0,int_radius,0,angle1)
cairo_close_path (cr);
cairo_fill(cr)
cairo_restore(cr)
else
cairo_save(cr)
cairo_rotate(cr,angle0)
if gradient_effect then
local pat = cairo_pattern_create_radial (0,0, int_radius, 0,0,radius)
cairo_pattern_add_color_stop_rgba (pat, 0, rgb_to_r_g_b(tablecolor[colorindex][1],0))
cairo_pattern_add_color_stop_rgba (pat, 0.5, rgb_to_r_g_b(tablecolor[colorindex][1],tablecolor[colorindex][2]))
cairo_pattern_add_color_stop_rgba (pat, 1, rgb_to_r_g_b(tablecolor[colorindex][1],0))
cairo_set_source (cr, pat)
cairo_pattern_destroy(pat)
else
cairo_set_source_rgba(cr,rgb_to_r_g_b(tablecolor[colorindex][1],tablecolor[colorindex][2]))
end
cairo_move_to(cr,0,-int_radius)
cairo_line_to(cr,0,-radiuspc)
cairo_rotate(cr,-math.pi/2)
cairo_arc(cr,0,0,radiuspc,0,angle1)
cairo_rotate(cr,angle1-math.pi/2)
cairo_line_to(cr,0,int_radius)
cairo_rotate(cr,math.pi/2)
cairo_arc_negative(cr,0,0,int_radius,0,-angle1)
cairo_close_path (cr);
cairo_fill(cr)
cairo_restore(cr)
end
end
function draw_lines(idx,nbArcs,angle,table_colors,idx_color,adjust,line_lgth,length_txt,txt_offset,radius,line_width,line_space,font_color,font_alpha)
--draw lines
local x0=radiuspc*math.sin(lastAngle+angle/2)
local y0=-radiuspc*math.cos(lastAngle+angle/2)
local x1=1.2*radius*math.sin(lastAngle+angle/2)
local y1=-1.2*radius*math.cos(lastAngle+angle/2)
local x2=line_lgth
local y2=y1
local x3,y3=nil,nil
if x0<=0 then
x2=-x2
end
if adjust then
if x0>0 and x2-x1<length_txt then x2=x1+length_txt end
if x0<=0 and x1-x2<length_txt then x2=x1-length_txt end
end
if idx>1 then
local dY = math.abs(y2-lastPt2[2])
if dY < line_space and lastPt2[1]*x1>0 then
if x0>0 then
y2 = line_space+lastPt2[2]
else
y2 = -line_space+lastPt2[2]
end
if (y2>y1 and x0>0) or (y2<y1 and x0<0 ) then
--x3 is for vertical segment if needed
x3,y3=x2,y2
x2=x1
if x3>0 then x3=x3+txt_offset end
else
Z=intercept({x0,y0},{x1,y1},{0,y2},{1,y2})
x1,y1=Z[1],Z[2]
end
end
else
--remind x2,y2 of first value
x2first,y2first = x2,y2
end
if font_color==nil then
cairo_set_source_rgba(cr,rgb_to_r_g_b(table_colors[idx_color][1],table_colors[idx_color][2]))
else
local pat = cairo_pattern_create_linear (x2,y2, x0,y0)
cairo_pattern_add_color_stop_rgba (pat, 0, rgb_to_r_g_b(font_color,font_alpha))
cairo_pattern_add_color_stop_rgba (pat, 1, rgb_to_r_g_b(table_colors[idx_color][1],table_colors[idx_color][2]))
cairo_set_source (cr, pat)
cairo_pattern_destroy(pat)
end
cairo_move_to(cr,x0,y0)
cairo_line_to(cr,x1,y1)
cairo_line_to(cr,x2,y2)
if x3~=nil then
cairo_line_to(cr,x3,y3)
x2,y2=x3,y3
end
cairo_set_line_width(cr,line_width)
cairo_stroke(cr)
--lastAngle=lastAngle+angle
return {x2,y2}
end
function intercept(p11,p12,p21,p22)
--calculate interscetion of two lines and return coordinates
a1=(p12[2]-p11[2])/(p12[1]-p11[1])
a2=(p22[2]-p21[2])/(p22[1]-p21[1])
b1=p11[2]-a1*p11[1]
b2=p21[2]-a2*p21[1]
X=(b2-b1)/(a1-a2)
Y=a1*X+b1
return {X,Y}
end
--some checks
if t.first_angle>=t.last_angle then
local tmp_angle=t.last_angle
--t.last_angle=t.first_angle
--t.first_angle=tmp_angle
print ("inversed angles")
end
if t.last_angle-t.first_angle>360 and t.first_angle>0 then
t.last_angle=360+t.first_angle
print ("reduce angles")
end
if t.last_angle+t.first_angle>360 and t.first_angle<=0 then
t.last_angle=360+t.first_angle
print ("reduce angles")
end
if t.int_radius<0 then t.int_radius =0 end
if t.int_radius>t.radius then
local tmp_radius=t.radius
t.radius=t.int_radius
t.int_radius=tmp_radius
print ("inversed angles")
end
if t.int_radius==t.radius then
t.int_radius=0
print ("int radius set to 0")
end
--end of checks
cairo_save(cr)
cairo_translate(cr,t.xc,t.yc)
cairo_set_line_join (cr, CAIRO_LINE_JOIN_ROUND)
cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND)
local nbArcs=#tableV
local anglefull= (t.last_angle-t.first_angle)*math.pi/180
local fullsize = 0
for i= 1,nbArcs do
fullsize=fullsize+tableV[i][4]
end
local cb,cf,angle=0,0,anglefull/nbArcs
lastAngle=t.first_angle*math.pi/180
lastPt2={nil,nil}
for i =1, nbArcs do
if t.proportional then
angle=tableV[i][4]/fullsize*anglefull
end
--set colours
cb,cf=cb+1,cf+1
if cb>#t.tablebg then cb=1 end
if cf>#t.tablefg then cf=1 end
if tableV[i][2]~="" then
str=string.format('${%s %s}',tableV[i][2],tableV[i][3])
else
str = tableV[i][3]
end
str=conky_parse(str)
value=tonumber(str)
if value==nil then value=0 end
--draw sectors
draw_sector(t.tablebg,cb,1,lastAngle,angle,t.radius,t.int_radius,t.gradient_effect,t.type_arc,t.inverse_l_arc)
--print (t.tablefg,cf,tableV[i][2],tableV[i][3],lastAngle,angle,t.radius,t.int_radius)
--print (cf,tableV[i],tableV[i][2],tableV[i][3])
draw_sector(t.tablefg,cf,value/tableV[i][4],lastAngle,angle,t.radius,t.int_radius,t.gradient_effect,t.type_arc,t.inverse_l_arc)
if t.show_text then
--draw text
local txt_l = tableV[i][1]
local txt_opc = round(100*value/tableV[i][4],t.nb_decimals).."%%"
local txt_fpc = round(100*(tableV[i][4]-value/tableV[i][4]),t.nb_decimals).."%%"
local txt_ov,txt_fv,txt_max
if tableV[i][5]==true then
txt_ov = size_to_text(value,t.nb_decimals)
txt_fv = size_to_text(tableV[i][4]-value,t.nb_decimals)
txt_max = size_to_text(tableV[i][4],t.nb_decimals)
else
if tableV[i][5]=="%" then tableV[i][5]="%%" end
txt_ov=string.format("%."..t.nb_decimals.."f ",value)..tableV[i][5]
txt_fv=string.format("%."..t.nb_decimals.."f",tableV[i][4]-value)..tableV[i][5]
txt_max=string.format("%."..t.nb_decimals.."f",tableV[i][4])..tableV[i][5]
end
txt_pc = string.format("%."..t.nb_decimals.."f",100*tableV[i][4]/fullsize).."%%"
local txt_out = t.txt_format
txt_out = string.gsub(txt_out,"&l",txt_l) --label
txt_out = string.gsub(txt_out,"&o",txt_opc)--occ. %
txt_out = string.gsub(txt_out,"&f",txt_fpc)--free %
txt_out = string.gsub(txt_out,"&v",txt_ov) --occ. value
txt_out = string.gsub(txt_out,"&n",txt_fv) --free value
txt_out = string.gsub(txt_out,"&m",txt_max)--max
txt_out = string.gsub(txt_out,"&p",txt_pc)--percent
local te=cairo_text_extents_t:create()
cairo_set_font_size(cr,t.font_size)
cairo_select_font_face(cr, t.txt_font, CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL)
cairo_text_extents (cr,txt_out,te)
--draw lines
lastPt2=draw_lines(i,nbArcs,angle,t.tablefg,cf,t.extend_line,t.line_lgth+t.radius,
te.width + te.x_bearing,t.txt_offset,t.radius,t.line_width,t.line_space,t.font_color,t.font_alpha)
local xA=lastPt2[1]
local yA=lastPt2[2]-t.line_width-t.txt_offset
if xA>0 then xA = xA-(te.width + te.x_bearing) end
cairo_move_to(cr,xA,yA)
cairo_show_text(cr,txt_out)
end
lastAngle=lastAngle+angle
end
cairo_restore(cr)
end
--[[END OF PIE CHART WIDGET]]<file_sep>/README.md
# my-rc-files
# DEPRECATED
Please refer to [my new and awesome config management system](https://github.com/sakshamsharma/dotfiles-genie) for the latest dotfiles.
Contains my rc files
Run **./.myscripts/add_rc.sh** to stage new changes.
**Basic requirements** (assuming standard installations already present):
1. Curl for Vundle.
2. Vundle (use git clone).
3. Powerline fonts (for Linux/Unix based systems for airline, included in this repo, just change the terminal font.).
4. create-ap package for WiFi hotspot.
**Contents:**
1. i3 config (A good way to start with i3 would be to look at things you can do in your config).
2. vimrc with plugins handled with Vundle. Run ':PluginInstall' after cloning in vim to pull all plugins. That's it.
3. zshrc (uses oh-my-zsh but only custom-selected portions to speed up) and a bashrc with aliases indispensible to me.
4. Conky vision config for an awesome looking transparent conky. (not mine)
5. A varied variety of self written scripts to do day to day tasks.
6. A script to create a new WiFi hotspot (edit the script for custom ssid and password).
7. Conky status bar config for i3.
8. i3status status bar for i3.
9. Powerline fonts for Airline plugin in vim to work. Try switching to any of the the powerline fonts in terminal to see the effect.
10. Touchegg configuration for a decent touchpad gesture list for Unity (depreciated).
The i3 and Vim portion is documented on my website at http://acehack.org
<file_sep>/.myscripts/newwifi.sh
#! /bin/bash
sudo rmmod rtl8723be
sudo modprobe rtl8723be
<file_sep>/.xinitrc
#!/bin/sh
#
# ~/.xinitrc
# Executed by startx (run your window manager from here)
# Set up screens and set background
if [ `xrandr | grep -c ' connected '` -eq 2 ]; then # dual-monitor
if [ `xrandr | grep VGA-1 | grep -c ' connected '` -eq 1 ]; then
xrandr --output LVDS-1 --auto --primary --output VGA-1 --auto --right-of LVDS-1
fi
if [ `xrandr | grep DVI-1 | grep -c ' connected '` -eq 1 ]; then
xrandr --output LVDS-1 --auto --primary --output DVI-1 --auto --right-of LVDS-1
fi
feh --bg-tile ~/Wallpapers/tile8.jpg
# xsetroot -solid \#cccccc
else
xrandr --output LVDS-1 --auto --primary --output VGA-1 --off --output DVI-1 --off
fi
# For NVIDIA driver (proprietary)
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
xrdb -merge /home/saksham/.Xresources
# To start dbus before other things
eval `dbus-launch --auto-syntax`
# configure synclient touchpad
/home/saksham/.myscripts/touchpad.sh
feh --bg-fill ~/Wallpapers/hack.jpg &
# Make caps a new control
setxkbmap -option ctrl:nocaps
xmodmap ~/.Xmodmap
urxvtd --quiet --opendisplay --fork
exec ssh-agent xmonad
<file_sep>/.conky/cputemp
#! /bin/bash
a=$(sensors|grep 'Core 0'|awk '{print $3}' | grep -E "^\+[0-9]+" -o | grep -E "[0-9]+" -o)
b=$(sensors|grep 'Core 1'|awk '{print $3}' | grep -E "^\+[0-9]+" -o | grep -E "[0-9]+" -o)
c=$(sensors|grep 'Core 2'|awk '{print $3}' | grep -E "^\+[0-9]+" -o | grep -E "[0-9]+" -o)
d=$(sensors|grep 'Core 3'|awk '{print $3}' | grep -E "^\+[0-9]+" -o | grep -E "[0-9]+" -o)
total=$((($a+$b+$c+$d)/4))
echo "${total}.0°C"
<file_sep>/.zsh/functions.zsh
# Run `ls` on a return press if the input is empty for now
accept-line() {
if [[ -z $BUFFER ]]; then
zle -I
ls
else
zle ".$WIDGET"
fi
}
zle -N accept-line
# Close Vim with Ctrl+z and then reopen it with Ctrl+z
# Credit: sheerun.net
fancy-ctrl-z () {
if [[ $#BUFFER -eq 0 ]]; then
BUFFER="fg"
zle accept-line
else
zle push-input
zle clear-screen
fi
}
zle -N fancy-ctrl-z
# Finally, make sure the terminal is in application mode, when zle is
# active. Only then are the values from $terminfo valid.
if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
function zle-line-init () {
printf '%s' "${terminfo[smkx]}"
}
function zle-line-finish () {
printf '%s' "${terminfo[rmkx]}"
}
zle -N zle-line-init
zle -N zle-line-finish
fi
zstyle ':filter-select:highlight' matched fg=green
zstyle ':filter-select' max-lines 3
zstyle ':filter-select' case-insensitive yes # enable case-insensitive
zstyle ':filter-select' extended-search yes # see below
<file_sep>/.myscripts/add_rc.sh
#!/bin/bash
cd ~
git add .vimrc .bashrc .conkyrc .conky/* .conky/.conky-vision-icons/* \
.i3/* README.md .gitignore .fonts/* .myscripts/* .vimperatorrc \
.zshrc .oh-my-zsh/* start_hotspot.sh .xinitrc \
.inscripts/* .tmux.conf .info/* .Xresources \
.config/gconf/* .config/gtk-2.0/* ~/.config/fish/config.fish \
.config/gtk-3.0/* .config/nautilus/* \
.config/touchegg/* .config/xfce4/*
<file_sep>/.myscripts/Setup.sh
#! /bin/bash
echo "Installing vundle"
~/.myscripts/InstallVundle.sh
echo "Creating undodir for Vim"
cd $HOME
mkdir .vim
cd .vim
mkdir undodir
cd $HOME
echo "Installing packer"
~/.myscripts/InstallPacker.sh
echo "Configuring Git (Saksham Sharma)"
~/.myscripts/gitconfig.sh
<file_sep>/.info/intern.md
Saksham's Ixchel notes
--------------
Files of interest:
1. For logging
~/ixchel/http/src/main/scala/org.gmantra.ixchel/IxchelHttp.scala
2. Contains code for sending messages to actors (renderer, async)
~/ixchel/core/src/main/scala/org.gmantra.ixchel/base/models/ix/IXOp.scala
3. Contains streamItem listing
core/src/main/scala/org.gmantra.ixchel/base/models/StreamItem.scala
Logger notes:
1. Where is kamon shutdown() ? It is started in file 1 above.
<file_sep>/.myscripts/recover_rc.sh
#!/bin/bash
git init
git remote add origin https://github.com/saksham0808/my-rc-files
git pull origin master
<file_sep>/.conky/gmail-notifier.py
from datetime import datetime
import os
from apiclient import errors
from apiclient.discovery import build
from httplib2 import Http
import oauth2client
from oauth2client import client
from oauth2client import tools
"""Get a list of Messages from the user's mailbox.
"""
try:
import argparse
flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
except ImportError:
flags = None
SCOPES = 'https://www.googleapis.com/auth/gmail.readonly'
CLIENT_SECRET_FILE = 'client_secret.json'
APPLICATION_NAME = 'Gmail Notifier'
def get_credentials():
"""Gets valid user credentials from storage.
If nothing has been stored, or if the stored credentials are invalid,
the OAuth2 flow is completed to obtain the new credentials.
Returns:
Credentials, the obtained credential.
"""
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir, 'gmail-notifier.json')
store = oauth2client.file.Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
if flags:
credentials = tools.run_flow(flow, store, flags)
else: # Needed only for compatability with Python 2.6
credentials = tools.run(flow, store)
print 'Storing credentials to ' + credential_path
return credentials
def ListMessagesMatchingQuery(service, user_id, query=''):
"""List all Messages of the user's mailbox matching the query.
Args:
service: Authorized Gmail API service instance.
user_id: User's email address. The special value "me"
can be used to indicate the authenticated user.
query: String used to filter messages returned.
Eg.- 'from:<EMAIL>.com' for Messages from a particular sender.
Returns:
List of Messages that match the criteria of the query. Note that the
returned list contains Message IDs, you must use get with the
appropriate ID to get the details of a Message.
"""
try:
response = service.users().messages().list(userId=user_id, q=query).execute()
messages = []
if 'messages' in response:
messages.extend(response['messages'])
while 'nextPageToken' in response:
page_token = response['nextPageToken']
response = service.users().messages().list(userId=user_id, q=query, pageToken=page_token).execute()
messages.extend(response['messages'])
return messages
except errors.HttpError, error:
print 'An error occurred: %s' % error
def ListMessagesWithLabels(service, user_id, label_ids=[]):
"""List all Messages of the user's mailbox with label_ids applied.
Args:
service: Authorized Gmail API service instance.
user_id: User's email address. The special value "me"
can be used to indicate the authenticated user.
label_ids: Only return Messages with these labelIds applied.
Returns:
List of Messages that have all required Labels applied. Note that the
returned list contains Message IDs, you must use get with the
appropriate id to get the details of a Message.
"""
try:
response = service.users().messages().list(userId=user_id, labelIds=label_ids).execute()
messages = []
if 'messages' in response:
messages.extend(response['messages'])
while 'nextPageToken' in response:
page_token = response['nextPageToken']
response = service.users().messages().list(userId=user_id, labelIds=label_ids, pageToken=page_token).execute()
messages.extend(response['messages'])
return messages
except errors.HttpError, error:
print 'An error occurred: %s' % error
def main():
credentials = get_credentials()
service = build('gmail', 'v1', http=credentials.authorize(Http()))
msgids = ListMessagesMatchingQuery(service, 'me', query='is:unread')
if (len(msgids)>0):
os.system('paplay /usr/share/sounds/freedesktop/stereo/complete.oga')
print "%s new message(s) in Inbox\n" % len(msgids)
for id in msgids:
message = service.users().messages().get(userId='me', id=id['id']).execute()
# Print Sender
headers = message['payload']['headers']
for i in range(len(headers)):
if headers[i]['name'] == "From":
sender = headers[i]['value'].replace('"', '')
sender = sender.split("<")
# get sender name, if no name then print email
if (sender[0].replace(" ", "") != ""):
print ">", sender[0]
else:
print ">", sender[1][:-1]
#print "From:", sender
## Print Subject
#for i in range(len(headers)):
#if headers[i]['name'] == "Subject":
#print "Sub: ", headers[i]['value']
##print message['snippet']
#print " "
else:
print "Yipeeee! No unread messages\n"
if __name__ == "__main__":
try:
main()
except:
print "Network unavailable :("
<file_sep>/.info/swap.sh
#! /bin/bash
echo "To see current swappiness value do: "
echo "\# cat /proc/sys/vm/swappiness"
echo "To change swappiness value temporarily: "
echo "\# sysctl vm.swappiness=10"
echo "To permanently change it, in /etc/sysctl.d/99-sysctl.conf, do: "
echo "\# vm.swappiness=10"
<file_sep>/.conky/gmail.py
#! /usr/bin/env python
import urllib.request
from xml.etree import ElementTree as etree
authdata = open('../.credentials/gmailauth')
username = authdata.readline().rstrip('\n')
password = authdata.readline().rstrip('\n')
authdata.close()
auth_handler = urllib.request.HTTPBasicAuthHandler()
auth_handler.add_password(realm='mail.google.com',
uri='https://mail.google.com/',
user= username,
passwd= password)
opener = urllib.request.build_opener(auth_handler)
urllib.request.install_opener(opener)
gmail = 'https://mail.google.com/gmail/feed/atom'
NS = '{http://purl.org/atom/ns#}'
with urllib.request.urlopen(gmail) as source:
tree = etree.parse(source)
fullcount = tree.find(NS + 'fullcount').text
print('Gmail: ' + fullcount + ' unread')
<file_sep>/.myscripts/lastresortforwifi.sh
#! /bin/bash
# This must be used only when nothing else is possible
echo "options rtl8723be fwlps=0" | sudo tee /etc/modprobe.d/rtl8723be.conf
# There is another command here:
# sudo modprobe iwlwifi lln_disable=1 swcrypto=1 fwlps=0
# If that doesn't work, try 'sudo iwconfig power off' to switch off power management
<file_sep>/.zsh/alias.zsh
# Packages
alias vim='nvim'
alias em='emacsclient'
# Package management
alias pac='sudo pacman -S'
alias emerge='sudo emerge --ask'
# Macros
alias proc='ps -e | grep'
alias lanping='ping -c 3 webmail.iitk.ac.in'
alias wanping='ping -c 3 www.google.com'
alias wifi='sudo wifi-menu'
alias fgrep='grep -r -i'
# Commonly used dirs
alias core='cd $HOME/ixchel/core/src/main/scala/org.gmantra.ixchel/models'
alias htt='cd $HOME/ixchel/http/src/main/scala/org.gmantra.ixchel/api'
# Mistakes
alias ks='ls'
alias sl='ls'
# Git aliases
alias g='git'
alias gco='git checkout'
alias gl="git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --abbrev-commit"
alias gs='git status -sb'
alias gd='git diff'
alias gpl='git pull'
alias gps='git push'
alias push='git push'
alias fet='git fetch'
alias fpush='git push -f'
# systemctl
alias sst='sudo systemctl start'
alias ssp='sudo systemctl stop'
alias ssr='sudo systemctl restart'
<file_sep>/.info/cpumode.sh
#!/bin/bash
echo "Setting to powersaver with min freq 800Mhz"
cpupower frequency-set -g powersave
echo "Remaining configuration in /etc/default/cpupower"
echo "Use cpupower frequency-set 2000MHz if you feel your laptop is slow."
echo "Use 'watch grep \"cpu MHz\" /proc/cpuinfo' to check current speed."
<file_sep>/.info/LinuxTricks.md
Linux tips and tricks
------------------------------
I'll be listing a few Linux tricks in this file, gathered from my own (often destructive) experiences,
or from the book 'The Linux Bible'
**Some nice commands**\n
- ln -s <file> <linkname> - Creates a symlink.
- ls -R lists all files recursively.
- ls -S lists them by size.
- renice -n <number -20 to 20> <process id> sets a CPU attention parameter. Lower is high attention.
**Some files you should know about**\n
- /etc/passwd - Stores information about user. *Confirm*
**File permissions**\n
First bit in *ls -l* is for directory. Next 3 for owner, next 3 for group and last 3 for others.
chmod xyz -- x for owner, y for group, z for others.
Their numerical values have specific meanings:
- 7 -- rwx
- 6 -- rw
- 5 -- rx
- 4 -- r
Another way is to use characters. Doing u+rw adds write permissions for user. Similarly for g (group) and o (other).
Doing a o-rw for example removes read write permissions for others.\n
Use -R to give the specific permissions to the whole directory.\n
*umask* decides the default permissions for a file/directory.\n
To own a file, you need to go sudo and take over the permissions with this format: *chown username:username filename*\n
This assigns the file to the user and the group of the user (only one *username* leaves the group root.)\n
**TODO**\n
- Add how to make a command run without sudo ( http://askubuntu.com/questions/159007/ )
<file_sep>/.inscripts/startpostgres
#! /bin/bash
docker run --name ixchel-db -e POSTGRES_PASSWORD=lehcxi -e POSTGRES_USER=ixchel -e POSTGRES_DB=IXCHEL --rm=true -p 5432:5432 postgres
<file_sep>/.myscripts/InstallPacker.sh
#! /bin/bash
cd $HOME
mkdir Builds
cd Builds
mkdir Packer
cd Packer
wget http://aur.archlinux.org/packages/pa/packer/PKGBUILD .
makepkg
echo "Please install packer from its folder in ~/Builds"
| 4b1f28dd36c63a98e915deb577aace50577530b2 | [
"Markdown",
"Python",
"Shell",
"Lua"
] | 25 | Shell | saksham0808/my-rc-files | 17466bab7f187efd435a13eaac18e6fb1144d0b1 | 3385b8cca5c8588241bdd1bc309f7c57dbe1e565 |
refs/heads/master | <repo_name>xen0l/dotfiles<file_sep>/zshrc
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=10000
zstyle :compinstall filename '/home/xenol/.zshrc'
fpath=(~/.zsh/plugins/zsh-completions/src $fpath)
autoload -Uz compinit
compinit
# Completion
zstyle ':completion:*:*:*:*:*' menu select
#zstyle ':completion:*:matches' group 'yes'
#zstyle ':completion:*:options' description 'yes'
#zstyle ':completion:*:options' auto-description '%d'
#zstyle ':completion:*:corrections' format ' %F{green}-- %d (errors: %e) --%f'
#zstyle ':completion:*:descriptions' format ' %F{yellow}-- %d --%f'
#zstyle ':completion:*:messages' format ' %F{purple} -- %d --%f'
#zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'
#zstyle ':completion:*:default' list-prompt '%S%M matches%s'
#zstyle ':completion:*' format ' %F{yellow}-- %d --%f'
#zstyle ':completion:*' group-name ''
#zstyle ':completion:*' verbose yes
# Kill
zstyle ':completion:*:*:*:*:processes' command "ps -u ${USER} -o pid,user,comm -w -w"
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
zstyle ':completion:*:*:kill:*' menu yes select
zstyle ':completion:*:*:kill:*' force-list always
zstyle ':completion:*:*:kill:*' insert-ids single
# Completion caching
zstyle ':completion:*' accept-exact '*(N)'
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path ~/.zsh/cache
# Ignore system users
zstyle ':completion:*:*:*:users' ignored-patterns _\*
# Custom zsh options
setopt appendhistory
setopt hist_ignore_all_dups
setopt nohashcmds
setopt nohashdirs
setopt rmstarsilent
setopt interactivecomments
setopt nobeep
# Useful stuff
export LANG=en_US.UTF-8
case ${OSTYPE} in
darwin*)
export PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:$HOME/bin
;;
solaris*)
export PATH=/usr/gnu/bin:/usr/gnu/sbin:/usr/bin:/usr/sbin:$PATH:$HOME/bin
;;
*)
export PATH=$PATH:$HOME/bin
;;
esac
export PAGER=less
export EDITOR=vim
# Aliases
case "${OSTYPE}" in
freebsd*|darwin*)
alias ls="ls -G"
;;
linux-gnu)
eval `dircolors -b`
alias ls="ls --color"
alias grep="grep --color=auto"
alias egrep="grep --color=auto"
;;
solaris*)
alias ls="ls --color=auto"
;;
esac
alias vi=vim
# Prompt
autoload -U colors zsh/terminfo
colors
setopt prompt_subst
# Colors
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
export PR_$color
export PR_LIGHT_$color
done
export PR_NO_COLOR="%{$terminfo[sgr0]%}"
# Check if we are connected via SSH or not
if [[ -n "$SSH_CLIENT" || -n "$SSH2_CLIENT" ]]; then
eval PR_HOST='${PR_MAGENTA}%m${PR_NO_COLOR}' # SSH connection
else
eval PR_HOST='${PR_NO_COLOR}%m${PR_NO_COLOR}' # no SSH connection
fi
# VCS
autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git
zstyle ':vcs_info:*' formats ' (%b)'
zstyle ':vcs_info:*' actionformats ' (%b|%a)'
precmd() {
vcs_info
}
PS1='%n@${PR_HOST} %c${vcs_info_msg_0_} %# '
PS2=$'%_> '
# Keybindings
bindkey -e
bindkey "\e[1~" beginning-of-line
bindkey "\e[4~" end-of-line
bindkey "\e[5~" beginning-of-history
bindkey "\e[6~" end-of-history
bindkey "\e[3~" delete-char
bindkey "\e[2~" quoted-insert
bindkey "\e[5C" forward-word
bindkey "\eOc" emacs-forward-word
bindkey "\e[5D" backward-word
bindkey "\eOd" emacs-backward-word
bindkey "\e\e[C" forward-word
bindkey "\e\e[D" backward-word
bindkey "\e[8~" end-of-line
bindkey "\e[7~" beginning-of-line
bindkey "\eOH" beginning-of-line
bindkey "\eOF" end-of-line
bindkey "\e[H" beginning-of-line
bindkey "\e[F" end-of-line
bindkey '^R' history-incremental-search-backward
# Colored man pages
export LESS_TERMCAP_mb=$'\e[01;31m' # begin blinking
export LESS_TERMCAP_md=$'\e[01;38;5;74m' # begin bold
export LESS_TERMCAP_me=$'\e[0m' # end mode
export LESS_TERMCAP_se=$'\e[0m' # end standout-mode
export LESS_TERMCAP_so=$'\e[38;5;246m' # begin standout-mode - info box
export LESS_TERMCAP_ue=$'\e[0m' # end underline
export LESS_TERMCAP_us=$'\e[04;38;5;146m' # begin underline
# Syntax highlighting plugin
if [[ -e ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh ]]; then
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
fi
# History substring search plugin
if [[ -e ~/.zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh ]]; then
source ~/.zsh/plugins/zsh-history-substring-search/zsh-history-substring-search.zsh
bindkey '^[[A' history-substring-search-up
bindkey '^[[B' history-substring-search-down
fi
# Autosuggestion plugin
if [[ -e ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh ]]; then
source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
fi
# virtualenvwrapper support
if command -V virtualenvwrapper_lazy.sh >/dev/null 2>&1; then
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Development
source $(command -v virtualenvwrapper_lazy.sh)
fi
| 7314b850fc66dc16d8e3a9aaa48d438a30e7dd95 | [
"Shell"
] | 1 | Shell | xen0l/dotfiles | da2d3261412dd0c67e2540bc39602a0e6560dd81 | ae5f89ae230a69dd639d64e8593c7e3e8025a1b3 |
refs/heads/master | <repo_name>mamatha515/javabasics<file_sep>/com/test/package1/Foo.java
package com.test.package1;
public class Foo {
String type;
public void print() {
System.out.println("Hi, I am Foo");
}
}
<file_sep>/com/test/test2/Car.java
package com.test.test2;
public class Car extends Vehicle{
public Car() {
System.out.println("Car");
}
}
<file_sep>/com/test/test4/Dog.java
package com.test.test4;
public class Dog extends Animal {
public String name;
protected String age;
private String type;
private Dog() {
this.type = type;
}
public Dog(String name, String weight, String type) {
super(name, weight);
this.type = type;
}
protected Dog(String name, String weight, String type, String color) {
super(name, weight);
this.type = type;
}
@Override
public void eat() {
System.out.println("Hey! I am dog, I eat in my own way");
}
}
<file_sep>/com/test/package2/Boo.java
package com.test.package2;
import com.test.package1.Foo;
public class Boo {
String type;
public static void main(String[] args) {
Foo foo = new Foo();
foo.print();
//AnotherClass anotherClass = new AnotherClass();
}
}
<file_sep>/com/test/demo3/Person.java
package com.test.demo3;
public class Person {
public static int uid = 1;
public String name;
public Person(String name) {
this.name = name;
uid++;
}
}
<file_sep>/com/test/demo1/Main.java
package com.test.demo1;
public class Main {
public static void main(String[] args) {
ConstructorChain chain1 = new ConstructorChain("1", "Mom", "Bangalore", "123456789");
}
}
<file_sep>/com/test/test3/Box.java
package com.test.test3;
public class Box {
private double height;
private double width;
private double length;
Box(double height, double width, double length){
}
}
<file_sep>/README.md
# Java Basics Repository
This repository contains the source code for Java basic concepts.<file_sep>/com/test/test5/DefaultPrinter.java
package com.test.test5;
public class DefaultPrinter implements Printable{
@Override
public void print() {
}
}
<file_sep>/com/test/demo3/StaticBlock.java
package com.test.demo3;
public class StaticBlock {
static {
System.out.println("Hello, I am from static");
}
public StaticBlock() {
System.out.println("Static block constructor");
}
}
<file_sep>/com/test/demo3/Main.java
package com.test.demo3;
public class Main {
public static void main(String[] args) {
Person person1 = new Person("Mamatha");
System.out.println(person1.name);
System.out.println(person1.uid);
System.out.println("****************************");
Person person2 = new Person("Somnath");
System.out.println(person2.name);
System.out.println(person2.uid);
System.out.println("****************************");
Person person3 = new Person("Swathi");
System.out.println(person3.name);
System.out.println(person3.uid);
System.out.println("****************************");
Person person4 = new Person("Sashi");
System.out.println(person4.name);
System.out.println(person4.uid);
}
}
<file_sep>/com/test/package1/Main.java
package com.test.package1;
class Main {
public static void main(String[] args) {
AnotherClass anotherClass = new AnotherClass();
anotherClass.test();
Foo foo = new Foo();
foo.type = "Car";
}
}
<file_sep>/com/test/demo2/Child.java
package com.test.demo2;
public class Child extends Parent {
private String type;
protected String name = "Child";
public Child() {
super();
System.out.println("I am Child class default Constructor");
}
public Child(String name) {
super(name);
System.out.println("I am from Child class");
}
public void test() {
System.out.println(super.name);
}
}
<file_sep>/com/test/test5/Editable.java
package com.test.test5;
public interface Editable extends Printable{
//void print();
void edit();
}
| f4258a44aba12284dc7e1b53ba62a774c19ceee5 | [
"Markdown",
"Java"
] | 14 | Java | mamatha515/javabasics | 96de785a974ed2460427e2e7a7328bb06cfdc2df | 89750f3fe6b1398dddb3ffd9f034e946f926a176 |
refs/heads/master | <file_sep>exports.index = function(req, res){
res.render('layout', { title: 'Express', username: req.params.username });
}; | c2488ae0139a79c69c09936b43f067ad8e66b914 | [
"JavaScript"
] | 1 | JavaScript | ddragostinov/Letters | 3f057db3d73a30bc11b925f75c99ac533326cdb7 | 8b9fa1cf422dda6965e60717953376cfcf8aca97 |
refs/heads/master | <file_sep>
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import TimeoutException
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
default_url = "https://tas.nutrislice.com/menu/tas/serving-line"
driver.get(default_url)
html = driver.find_element_by_xpath("/html")
print(html)
# timeout = 5
# try:
# button = EC.presence_of_element_located((By.CLASS_NAME, 'primary'))
# WebDriverWait(driver, timeout).until(button)
# except TimeoutException:
# print("Timed out waiting for page to load")
# finally:
# driver.find_element(By.XPATH, "/html/body/main/div/div[4]/button").click();
# print("Page loaded")
# body = driver.find_element(By.XPATH, "/html/body")
# main = body.find_element(By.TAG_NAME, "main")
# main.find_element(By.PARTIAL_LINK_TEXT, "Menus").click()
# print("go to next page")
# def get_context():
# body = driver.find_element(By.XPATH, "/html/body")
# main = body.find_element(By.TAG_NAME, "main")
# main.find_element(By.TAG_NAME, "button").click()
# time.sleep(0.5)
# body = driver.find_element(By.XPATH, "/html/body")
# main = body.find_element(By.TAG_NAME, "main")
# list_container = main.find_element(By.CLASS_NAME, "list-container")
# a = list_container.find_element(By.TAG_NAME, "a")
# print(a)
# import requests
# url ='https://tas.nutrislice.com/menu/menus-eula'
# html = requests.get(url)
# print(html.text) | ff733a462dfc08cb473d076da08322a6da887b5b | [
"Python"
] | 1 | Python | ChristianLin0420/TASwebCrawler | f8067967380d1669a5df184dd14ea1d7f83fc323 | b3ef7b074d9c7d6c24dfa497a1872ead175525fd |
refs/heads/master | <file_sep>package com.allstate;
import java.util.Date;
import java.util.UUID;
/**
* Created by localadmin on 7/28/16.
*/
public class Transaction {
private String id;
private float amount;
private Date date;
private TransactionType transactionType;
public Transaction(float amount, TransactionType transactionType ) {
this.id = UUID.randomUUID().toString();
this.amount = amount;
this.transactionType = transactionType;
this.date = new Date();
}
public void deleteme(){
}
public String getID() {
return id;
}
public void setID(String id) {
this.id = id;
}
public float getAmount() {
return amount;
}
public void setAmount(float amount) {
this.amount = amount;
}
public Date getDate() {
return date;
}
public void setDate(Date date) {
this.date = date;
}
public TransactionType getTransactionType() {
return transactionType;
}
public void setTransactionType(TransactionType transactionType) {
this.transactionType = transactionType;
}
@Override
public String toString() {
return "Transaction Type: " + this.transactionType + ", Amount: " + this.amount;
}
}
<file_sep>package com.allstate;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
/**
* Created by localadmin on 7/28/16.
*/
public class ClientTest {
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
@Test
public void testConstuctorWithName() throws Exception {
Client client = new Client("Bob");
assertNotNull(client.getId());
assertNotNull(client.getAccounts());
assertTrue(client.isActive());
}
@Test
public void testOpenAccount() throws Exception {
Client client = new Client("<NAME>");
Account a1 = new Account(AccountType.CHECKING);
client.addAccount(a1);
assertTrue(client.getAccounts().size() == 1);
assertTrue(client.getAccounts().get(0).getBalance() == 0.0f);
}
@Test
public void testCloseAccount() throws Exception {
Client client = new Client("<NAME>");
Account a1 = new Account(AccountType.SAVINGS);
Account a2 = new Account(AccountType.CHECKING);
client.addAccount(a1);
client.addAccount(a2);
client.getAccounts().get(0).deposit(1000);
client.getAccounts().get(1).deposit(5000);
client.closeAccount(a1.getId());
assertTrue(client.getAccounts().get(0).getBalance() == 0.0f);
}
}
<file_sep>package com.allstate;
import java.util.ArrayList;
import java.util.UUID;
/**
* Created by localadmin on 7/28/16.
*/
public class Bank {
private String id;
private String name;
private ArrayList<Client> clients;
public String getId() {
return id;
}
public String getName() {
return name;
}
public ArrayList<Client> getClients() {
return clients;
}
public Bank(String name) {
this.name = name;
this.id = UUID.randomUUID().toString();
this.clients = new ArrayList<>();
}
public void addClient(Client client) {
this.clients.add(client);
}
public void removeClient(String clientId) {
Client foundClient = this.clients.stream().filter(c -> c.getId() == clientId).findFirst().get();
foundClient.getAccounts().stream().map(a -> foundClient.closeAccount(a.getId()));
}
}
| 8bae6d52caa38a79a937c8a4c2f32eeae2f8293d | [
"Java"
] | 3 | Java | dmcgh/BankManagerJava | 09497c97a8c29b87d7c0af3cc59a563f816ad8c7 | 532e3a6ee697a495f987aa12a49248a71012d7ef |
refs/heads/master | <file_sep># Add working directory to path so that custom modules can be imported from there
import sys
sys.path.append('D:\\Abaqus\\abaqus-scripts')
import optimizations
import regionToolset
import __main__
from abaqusConstants import *
from abaqus import *
execfile("D:/Abaqus/abaqus-scripts/materials.py", __main__.__dict__)
s = mdb.models['Model-1'].ConstrainedSketch(name='__profile__',
sheetSize=100.0)
g, v, d, c = s.geometry, s.vertices, s.dimensions, s.constraints
s.setPrimaryObject(option=STANDALONE)
session.viewports['Viewport: 1'].view.setValues(nearPlane=68.6958,
farPlane=119.866, width=309.399, height=120.645, cameraPosition=(35.37,
-5.47245, 94.2809), cameraTarget=(35.37, -5.47245, 0))
s.rectangle(point1=(-50.0, 50.0), point2=(50.0, -50.0))
p = mdb.models['Model-1'].Part(name='Part-1', dimensionality=THREE_D,
type=DEFORMABLE_BODY)
p.BaseSolidExtrude(sketch=s, depth=100.0)
s.unsetPrimaryObject()
del mdb.models['Model-1'].sketches['__profile__']
mdb.models['Model-1'].HomogeneousSolidSection(name='Section-1',
material='Steel', thickness=None)
c = p.cells
cells = c.getSequenceFromMask(mask=('[#1 ]', ), )
region = regionToolset.Region(cells=cells)
p.SectionAssignment(region=region, sectionName='Section-1', offset=0.0,
offsetType=MIDDLE_SURFACE, offsetField='',
thicknessAssignment=FROM_SECTION)
a = mdb.models['Model-1'].rootAssembly
a.DatumCsysByDefault(CARTESIAN)
a.Instance(name='Part-1-1', part=p, dependent=ON)
p.seedPart(size=2.0, deviationFactor=0.1, minSizeFactor=0.1)
pickedRegions = c.getSequenceFromMask(mask=('[#1 ]', ), )
p.generateMesh(regions=pickedRegions)
p.deleteMesh()
pickedRegions = c.getSequenceFromMask(mask=('[#1 ]', ), )
p.setMeshControls(regions=pickedRegions, technique=BOTTOM_UP)
f = p.faces
pickedRegions = f.getSequenceFromMask(mask=('[#8 ]', ), )
p.generateMesh(regions=pickedRegions, boundaryPreview=ON)
mdb.meshEditOptions.setValues(enableUndo=True, maxUndoCacheElements=0.5)
faces = f.getSequenceFromMask(mask=('[#8 ]', ), )
pickedGeomSourceSide = regionToolset.Region(faces=faces)
v1 = p.vertices
v2 = p.vertices
vector = (v1[0], v2[1])
c1 = p.cells
p.generateBottomUpExtrudedMesh(cell=c1[0],
geometrySourceSide=pickedGeomSourceSide, extrudeVector=vector,
numberOfLayers=50)
a.regenerate()
session.viewports['Viewport: 1'].setValues(displayedObject=a)
session.viewports['Viewport: 1'].assemblyDisplay.setValues(mesh=OFF,
adaptiveMeshConstraints=ON)
session.viewports['Viewport: 1'].assemblyDisplay.meshOptions.setValues(
meshTechnique=OFF)
mdb.models['Model-1'].StaticStep(name='Step-1', previous='Initial')
session.viewports['Viewport: 1'].assemblyDisplay.setValues(step='Step-1')
session.viewports['Viewport: 1'].assemblyDisplay.setValues(loads=ON, bcs=ON,
predefinedFields=ON, connectors=ON, adaptiveMeshConstraints=OFF)
session.viewports['Viewport: 1'].view.setValues(nearPlane=247.454,
farPlane=484.254, width=381.423, height=148.73, viewOffsetX=41.448,
viewOffsetY=5.39056)
p1 = mdb.models['Model-1'].parts['Part-1']
session.viewports['Viewport: 1'].assemblyDisplay.setValues(loads=OFF, bcs=OFF,
predefinedFields=OFF, connectors=OFF)
session.viewports['Viewport: 1'].view.setValues(nearPlane=248.599,
farPlane=483.108, width=338.585, height=132.026, viewOffsetX=18.5983,
viewOffsetY=-3.14915)
session.viewports['Viewport: 1'].partDisplay.setValues(mesh=OFF)
session.viewports['Viewport: 1'].partDisplay.meshOptions.setValues(
meshTechnique=OFF)
session.viewports['Viewport: 1'].partDisplay.geometryOptions.setValues(
referenceRepresentation=ON)
session.viewports['Viewport: 1'].assemblyDisplay.setValues(mesh=ON, loads=OFF,
bcs=OFF, predefinedFields=OFF, connectors=OFF)
session.viewports['Viewport: 1'].assemblyDisplay.meshOptions.setValues(
meshTechnique=ON)
session.viewports['Viewport: 1'].setValues(displayedObject=p)
session.viewports['Viewport: 1'].partDisplay.setValues(mesh=ON)
session.viewports['Viewport: 1'].partDisplay.meshOptions.setValues(
meshTechnique=ON)
session.viewports['Viewport: 1'].partDisplay.geometryOptions.setValues(
referenceRepresentation=OFF)
session.viewports['Viewport: 1'].assemblyDisplay.setValues(mesh=OFF, loads=ON,
bcs=ON, predefinedFields=ON, connectors=ON)
session.viewports['Viewport: 1'].assemblyDisplay.meshOptions.setValues(
meshTechnique=OFF)
session.viewports['Viewport: 1'].assemblyDisplay.setValues(loads=OFF, bcs=OFF,
predefinedFields=OFF, connectors=OFF)
session.viewports['Viewport: 1'].partDisplay.geometryOptions.setValues(
referenceRepresentation=ON)
session.viewports['Viewport: 1'].setValues(displayedObject=p)
session.viewports['Viewport: 1'].partDisplay.setValues(sectionAssignments=ON,
engineeringFeatures=ON)
session.viewports['Viewport: 1'].partDisplay.geometryOptions.setValues(
referenceRepresentation=OFF)
session.viewports['Viewport: 1'].partDisplay.setValues(sectionAssignments=OFF,
engineeringFeatures=OFF, mesh=ON)
session.viewports['Viewport: 1'].partDisplay.meshOptions.setValues(
meshTechnique=ON)
p.undoMeshEdit()
faces = f.getSequenceFromMask(mask=('[#8 ]', ), )
pickedGeomSourceSide = regionToolset.Region(faces=faces)
v1 = p.vertices
v2 = p.vertices
vector = (v1[0], v2[1])
p.generateBottomUpExtrudedMesh(geometrySourceSide=pickedGeomSourceSide,
extrudeVector=vector, numberOfLayers=50)
a.regenerate()
session.viewports['Viewport: 1'].setValues(displayedObject=a)
session.viewports['Viewport: 1'].assemblyDisplay.setValues(loads=ON, bcs=ON,
predefinedFields=ON, connectors=ON)
session.viewports['Viewport: 1'].view.setValues(nearPlane=239.77,
farPlane=491.938, width=473.365, height=184.582, viewOffsetX=46.8073,
viewOffsetY=7.12677)
session.viewports['Viewport: 1'].view.setValues(nearPlane=279.237,
farPlane=465.699, width=551.284, height=214.965, cameraPosition=(
20.5196, 371.965, 55.5363), cameraUpVector=(-0.691576, -0.308161,
-0.653269), cameraTarget=(6.49977, 6.38039, 56.1536),
viewOffsetX=54.512, viewOffsetY=8.29987)
session.viewports['Viewport: 1'].view.setValues(nearPlane=251.494,
farPlane=466.934, width=496.512, height=193.608, cameraPosition=(
10.5864, 348.442, 137.213), cameraUpVector=(-0.679689, -0.170684,
-0.713365), cameraTarget=(5.95705, -8.25771, 56.0182),
viewOffsetX=49.0961, viewOffsetY=7.47525)
session.viewports['Viewport: 1'].view.setValues(nearPlane=257.022,
farPlane=468.841, width=507.428, height=197.864, cameraPosition=(
27.2778, 353.707, 127.145), cameraUpVector=(-0.689486, -0.158979,
-0.706637), cameraTarget=(5.29045, -4.61321, 56.6337),
viewOffsetX=50.1753, viewOffsetY=7.63957)
session.viewports['Viewport: 1'].view.setValues(nearPlane=254.785,
farPlane=467.168, width=503.012, height=196.142, cameraPosition=(
27.2778, 351.711, 127.145), cameraTarget=(5.29045, -6.6093, 56.6337),
viewOffsetX=49.7386, viewOffsetY=7.57308)
session.viewports['Viewport: 1'].view.setValues(nearPlane=245.426,
farPlane=457.266, width=484.536, height=188.938, cameraPosition=(
27.2778, 341.878, 127.145), cameraTarget=(5.29045, -16.4423, 56.6337),
viewOffsetX=47.9117, viewOffsetY=7.29491)
session.viewports['Viewport: 1'].view.setValues(nearPlane=262.889,
farPlane=450.524, width=519.014, height=202.382, cameraPosition=(
6.78256, 356.46, 66.8764), cameraUpVector=(-0.679041, -0.321494,
-0.659958), cameraTarget=(6.8092, -9.33341, 60.2566),
viewOffsetX=51.3208, viewOffsetY=7.81397)
session.viewports['Viewport: 1'].view.setValues(nearPlane=259.899,
farPlane=452.805, width=513.111, height=200.08, cameraPosition=(
-26.777, 356.46, 18.1713), cameraUpVector=(0.00178814, -0.321494,
-0.94691), cameraTarget=(-22.0026, -9.33341, 13.5857),
viewOffsetX=50.7371, viewOffsetY=7.72509)
session.viewports['Viewport: 1'].view.setValues(nearPlane=279.112,
farPlane=433.593, width=278.992, height=108.789, viewOffsetX=38.7791,
viewOffsetY=-29.858)
session.viewports['Viewport: 1'].view.setValues(nearPlane=260.996,
farPlane=458.397, width=260.884, height=101.728, cameraPosition=(
4.22084, 287.954, 269.932), cameraUpVector=(0.00135245, 0.405623,
-0.914039), cameraTarget=(-21.5524, 23.0476, 18.916),
viewOffsetX=36.2621, viewOffsetY=-27.92)
f1 = a.instances['Part-1-1'].elements
face1Elements1 = f1.getSequenceFromMask(mask=(
'[#0:31 #f0000000 #7f #1ffc000 #0 #7ff #1ffc0000',
' #0 #7ff0 #ffc00000 #1 #7ff00 #fc000000 #1f',
' #7ff000 #c0000000 #1ff #7ff0000 #0 #1ffc ]', ), )
region = a.Surface(face1Elements=face1Elements1, name='Surf-1')
mdb.models['Model-1'].Pressure(name='Load-1', createStepName='Step-1',
region=region, distributionType=UNIFORM, field='', magnitude=100.0,
amplitude=UNSET)
session.viewports['Viewport: 1'].view.setValues(nearPlane=243.126,
farPlane=476.266, width=458.893, height=178.938, viewOffsetX=69.5898,
viewOffsetY=-31.9876)
session.viewports['Viewport: 1'].view.setValues(nearPlane=257.54,
farPlane=497.838, width=486.097, height=189.546, cameraPosition=(
89.5081, 247.459, 327.957), cameraUpVector=(0.171122, 0.558747,
-0.811492), cameraTarget=(-3.93696, 59.315, 28.4268),
viewOffsetX=73.7153, viewOffsetY=-33.884)
session.viewports['Viewport: 1'].view.setValues(nearPlane=201.546,
farPlane=432.701, width=380.41, height=148.335, cameraPosition=(
-194.179, -160.871, 292.409), cameraUpVector=(-0.422677, -0.201754,
-0.883538), cameraTarget=(59.0279, -142.229, 28.9948),
viewOffsetX=57.6881, viewOffsetY=-26.517)
session.viewports['Viewport: 1'].view.setValues(nearPlane=262.136,
farPlane=462.106, width=494.771, height=192.929, cameraPosition=(
39.633, -378.192, 53.7584), cameraUpVector=(-0.432658, 0.266735,
-0.861196), cameraTarget=(98.5962, -22.3124, -7.24517),
viewOffsetX=75.0307, viewOffsetY=-34.4887)
session.viewports['Viewport: 1'].view.setValues(nearPlane=251.548,
farPlane=463.109, width=474.787, height=185.136, cameraPosition=(
52.211, -378.192, 58.3305), cameraUpVector=(-0.0375652, 0.266735,
-0.963037), cameraTarget=(131.131, -22.3124, 27.1897),
viewOffsetX=72.0001, viewOffsetY=-33.0956)
session.viewports['Viewport: 1'].view.setValues(nearPlane=263.535,
farPlane=451.122, width=323.88, height=126.292, viewOffsetX=124.602,
viewOffsetY=-0.759095)
session.viewports['Viewport: 1'].view.setValues(nearPlane=265.693,
farPlane=449.445, width=326.533, height=127.327, cameraPosition=(
51.1789, -378.192, 64.093), cameraUpVector=(0.0269137, 0.266735,
-0.963394), cameraTarget=(132.005, -22.3124, 38.299),
viewOffsetX=125.622, viewOffsetY=-0.765312)
session.viewports['Viewport: 1'].view.setValues(nearPlane=265.885,
farPlane=449.74, width=326.769, height=127.419, cameraPosition=(
51.1789, -378.442, 64.093), cameraTarget=(132.005, -22.5624, 38.299),
viewOffsetX=125.713, viewOffsetY=-0.765864)
session.viewports['Viewport: 1'].view.setValues(nearPlane=265.6,
farPlane=449.504, width=326.42, height=127.282, cameraPosition=(
51.1789, -378.174, 64.093), cameraTarget=(132.005, -22.2947, 38.299),
viewOffsetX=125.578, viewOffsetY=-0.765043)
session.viewports['Viewport: 1'].view.setValues(nearPlane=265.109,
farPlane=448.963, width=325.816, height=127.047, cameraPosition=(
51.1789, -377.644, 64.093), cameraTarget=(132.005, -21.7643, 38.299),
viewOffsetX=125.346, viewOffsetY=-0.763628)
session.viewports['Viewport: 1'].view.setValues(nearPlane=266.66,
farPlane=448.394, width=327.722, height=127.79, cameraPosition=(
51.1789, -376.989, 16.8562), cameraUpVector=(0.0269137, 0.38255,
-0.923543), cameraTarget=(132.005, -20.6262, 34.7777),
viewOffsetX=126.079, viewOffsetY=-0.768095)
session.viewports['Viewport: 1'].view.setValues(nearPlane=264.203,
farPlane=449.858, width=324.703, height=126.613, cameraPosition=(
55.8237, -376.989, 40.9805), cameraUpVector=(0.274604, 0.38255,
-0.882184), cameraTarget=(128.839, -20.6262, 80.0043),
viewOffsetX=124.917, viewOffsetY=-0.761019)
session.viewports['Viewport: 1'].view.setValues(nearPlane=270.471,
farPlane=430.484, width=332.407, height=129.617, cameraPosition=(
121.258, -353.87, 80.3275), cameraUpVector=(0.204359, 0.326573,
-0.922815), cameraTarget=(131.226, 11.847, 79.8071),
viewOffsetX=127.881, viewOffsetY=-0.779075)
session.viewports['Viewport: 1'].view.setValues(nearPlane=269.914,
farPlane=431.046, width=331.722, height=129.35, cameraPosition=(
120.699, -353.87, 82.7593), cameraUpVector=(0.219054, 0.326573,
-0.919438), cameraTarget=(130.674, 11.847, 82.398),
viewOffsetX=127.618, viewOffsetY=-0.77747)
session.viewports['Viewport: 1'].view.setValues(nearPlane=269.009,
farPlane=429.267, width=330.609, height=128.916, cameraPosition=(
135.823, -347.131, 81.4224), cameraUpVector=(0.205524, 0.339606,
-0.917838), cameraTarget=(130.02, 18.6745, 82.6064),
viewOffsetX=127.19, viewOffsetY=-0.774863)
session.viewports['Viewport: 1'].view.setValues(nearPlane=269.025,
farPlane=429.344, width=330.629, height=128.924, cameraPosition=(
139.39, -347.131, 43.3561), cameraUpVector=(-0.00449187, 0.339606,
-0.940557), cameraTarget=(133.997, 18.6745, 45.8053),
viewOffsetX=127.198, viewOffsetY=-0.774909)
session.viewports['Viewport: 1'].view.setValues(nearPlane=269.005,
farPlane=429.309, width=330.605, height=128.914, cameraPosition=(
137.491, -347.131, 43.3561), cameraTarget=(132.098, 18.6745, 45.8053),
viewOffsetX=127.188, viewOffsetY=-0.774851)
session.viewports['Viewport: 1'].view.setValues(nearPlane=267.467,
farPlane=427.766, width=328.715, height=128.178, cameraPosition=(
33.0022, -347.131, 43.3561), cameraTarget=(27.6092, 18.6745, 45.8053),
viewOffsetX=126.461, viewOffsetY=-0.770422)
session.viewports['Viewport: 1'].view.setValues(nearPlane=293.735,
farPlane=472.384, width=360.999, height=140.766, cameraPosition=(
-62.1765, -36.8537, -329.061), cameraUpVector=(0.27738, 0.920455,
0.275361), cameraTarget=(23.9712, -36.6954, 26.5047),
viewOffsetX=138.881, viewOffsetY=-0.846084)
session.viewports['Viewport: 1'].view.setValues(nearPlane=296.109,
farPlane=470.009, width=285.29, height=111.245, viewOffsetX=63.1827,
viewOffsetY=2.80361)
session.viewports['Viewport: 1'].view.setValues(nearPlane=295.823,
farPlane=471.273, width=285.014, height=111.137, cameraPosition=(
-57.6074, -39.1069, -329.061), cameraUpVector=(0.0874118, 0.957359,
0.275361), cameraTarget=(26.7631, -21.6982, 26.5047),
viewOffsetX=63.1216, viewOffsetY=2.8009)
session.viewports['Viewport: 1'].view.setValues(nearPlane=295.741,
farPlane=469.621, width=284.935, height=111.106, cameraPosition=(
-50.8428, -39.1069, -329.156), cameraUpVector=(0.0826404, 0.957359,
0.27683), cameraTarget=(27.3707, -21.6982, 27.8149),
viewOffsetX=63.104, viewOffsetY=2.80012)
session.viewports['Viewport: 1'].view.setValues(nearPlane=307.149,
farPlane=458.212, width=181.736, height=70.8652, viewOffsetX=43.207,
viewOffsetY=-18.0539)
session.viewports['Viewport: 1'].view.setValues(nearPlane=304.983,
farPlane=459.962, width=180.454, height=70.3653, cameraPosition=(
-51.1494, -36.5219, -329.104), cameraUpVector=(0.0723343, 0.956099,
0.283977), cameraTarget=(27.1229, -20.9412, 27.9385),
viewOffsetX=42.9022, viewOffsetY=-17.9266)
session.viewports['Viewport: 1'].view.setValues(nearPlane=304.969,
farPlane=460.21, width=180.446, height=70.3622, cameraPosition=(
-51.228, -36.9487, -329.104), cameraUpVector=(0.0583938, 0.957052,
0.283977), cameraTarget=(26.8089, -20.229, 27.9385),
viewOffsetX=42.9003, viewOffsetY=-17.9258)
session.viewports['Viewport: 1'].view.setValues(nearPlane=304.794,
farPlane=464.241, width=180.342, height=70.3218, cameraPosition=(
-51.228, -54.863, -328.929), cameraUpVector=(0.0583938, 0.969201,
0.239252), cameraTarget=(26.8089, -21.5902, 26.9529),
viewOffsetX=42.8757, viewOffsetY=-17.9155)
n1 = a.instances['Part-1-1'].nodes
nodes1 = n1.getSequenceFromMask(mask=(
'[#0:4063 #c0000000 #ff #7ffffc0 #fe000000 #3fff #fffff000',
' #80000001 #fffff #fffc0000 #7f #3ffffe0 #ff000000 #1fff',
' #fffff800 #c0000000 #1ff #0:53 #1ff8000 #ff800000 #fff',
' #7ffffc00 #e0000000 #3ffff #ffff0000 #1f #fffff8 #ffc00000',
' #7ff #3ffffe00 #f0000000 #7f ]', ), )
region = a.Set(nodes=nodes1, name='Set-1')
mdb.models['Model-1'].EncastreBC(name='BC-1', createStepName='Step-1',
region=region, localCsys=None)
session.viewports['Viewport: 1'].partDisplay.setValues(sectionAssignments=ON,
engineeringFeatures=ON, mesh=OFF)
session.viewports['Viewport: 1'].partDisplay.meshOptions.setValues(
meshTechnique=OFF)
p = mdb.models['Model-1'].parts['Part-1']
session.viewports['Viewport: 1'].setValues(displayedObject=p)
e = p.elements
elements = e.getSequenceFromMask(mask=('[#ffffffff:3906 #ff ]', ), )
region = regionToolset.Region(elements=elements)
p.SectionAssignment(region=region, sectionName='Section-1', offset=0.0,
offsetType=MIDDLE_SURFACE, offsetField='',
thicknessAssignment=FROM_SECTION)
optimizations.optimize_topology(session, p, 'Model-1', 'Step-1', 1.25, 10)
<file_sep>from abaqus import *
from abaqusConstants import *
import visualization
VIEWPORT_NAME = 'Viewport: 1'
JOB_NAME_BASE = 'Job'
def create_job(model_name, job_name):
return mdb.Job(name=job_name, model=model_name, numCpus=16, numDomains=128)
def run_job(job, job_name):
job.submit()
job.waitForCompletion()
return visualization.openOdb(path=job_name + '.odb')
def display_results(odb, viewport):
# Open the output database and display a default contour plot.
viewport.setValues(displayedObject=odb)
viewport.odbDisplay.display.setValues(plotState=CONTOURS_ON_DEF)
viewport.odbDisplay.commonOptions.setValues(renderStyle=FILLED)
def delete_points(odb, part, untouchable_nodes, load_step_name, remove_percent):
# Find elements where stress is minimal and delete them
results = [x for x in odb.steps[load_step_name].frames[-1]
.fieldOutputs["S"].values if x.elementLabel not in untouchable_nodes]
all_points = sorted(results, key=lambda x: x.mises)
print('total: ' + str(len(all_points)))
print('removed: ' + str(int(remove_percent * len(all_points) / 100)))
minStressPoints = [x.elementLabel for x in all_points][:int(
remove_percent * len(all_points) / 100)]
elements = [x for x in part.elements if x.label in minStressPoints]
part.deleteElement(elements=elements, deleteUnreferencedNodes=ON)
def get_max_stress(odb, load_step_name):
return max([x.mises for x in odb.steps[load_step_name].frames[-1].fieldOutputs["S"].values])
def optimize_topology(session, part, model_name, load_step_name, stress_multiplier, remove_percent_per_step):
untouchable_nodes = set()
for set_name in part.sets.keys():
untouchable_nodes.update(
[node.label for node in part.sets[set_name].nodes])
i = 0
max_stress_initial = None
while True:
job_name = JOB_NAME_BASE + '_' + str(i)
job = create_job(model_name, job_name)
odb = run_job(job, job_name)
display_results(odb, session.viewports[VIEWPORT_NAME])
max_stress = get_max_stress(odb, load_step_name)
if max_stress_initial is None:
max_stress_initial = max_stress
if max_stress > stress_multiplier * max_stress_initial:
break
delete_points(odb, part, untouchable_nodes,
load_step_name, remove_percent_per_step)
i += 1
if (__name__ == '__main__'):
model = mdb.models[mdb.models.keys()[0]]
part = model.parts[model.parts.keys()[0]]
optimize_topology(session, part, 'Model-1', 'Load', 1.25, 5)
<file_sep># Abaqus scripts [](https://travis-ci.org/siriak/abaqus-scripts) [](https://www.codacy.com/app/siriak/abaqus-scripts?utm_source=github.com&utm_medium=referral&utm_content=siriak/abaqus-scripts&utm_campaign=Badge_Grade) [](https://dashboard.guardrails.io/default/gh/siriak/abaqus-scripts)
Useful scripts that create materials, parts, meshes, optimize topology and so on.
<file_sep>STEEL = 'Steel'
def add_steel(model):
# Create a material.
steel = model.Material(name=STEEL)
# Create the elastic properties: youngsModulus is 209.E3 and poissonsRatio is 0.3
elasticProperties = (209.E3, 0.3)
steel.Elastic(table=(elasticProperties, ))
return steel
def add_all(model):
add_steel(model)
if (__name__ == "__main__"):
add_all(mdb.models[mdb.models.keys()[0]])
<file_sep># Add working directory to path so that custom modules can be imported from there
import optimizations
import materials
from abaqusConstants import *
from abaqus import *
import sys
sys.path.append('D:\\Abaqus\\abaqus-scripts')
VIEWPORT_NAME = 'Viewport: 1'
MODEL_NAME = 'Model-1'
SKETCH_NAME = 'BeamSketch'
PART_NAME = 'BeamPart'
MATERIAL_NAME = 'Steel'
SECTION_NAME = 'BeamSection'
INSTANCE_NAME = 'BeamInstance'
LOAD_STEP_NAME = 'Load'
INITIAL_STEP_NAME = 'Initial'
BOUNDARY_CONDITION_NAME = 'BCFixedSide'
PRESSURE_NAME = 'Pressure'
JOB_NAME_BASE = 'BeamJob'
def createSketch(model, sketchName):
# Create a sketch for the base feature.
mySketch = model.ConstrainedSketch(name=sketchName, sheetSize=250.)
# Create the rectangle.
mySketch.rectangle(point1=(-100, 10), point2=(100, -10))
return mySketch
def createPart(model, sketch, partName):
# Create a three-dimensional, deformable part.
myPart = model.Part(
name=partName, dimensionality=THREE_D, type=DEFORMABLE_BODY)
# Create the part's base feature by extruding the sketch through a distance of 25.0.
myPart.BaseSolidExtrude(sketch=sketch, depth=25.0)
return myPart
def createBottomUpExtrudedMesh(part):
import regionToolset
# Set mesh controls.
pickedRegions = part.cells.getSequenceFromMask(mask=('[#1 ]', ), )
part.setMeshControls(regions=pickedRegions, technique=BOTTOM_UP)
# Mesh top side.
part.seedPart(size=5.0, deviationFactor=0.1, minSizeFactor=0.1)
pickedRegions = part.faces.getSequenceFromMask(mask=('[#8 ]', ), )
part.generateMesh(regions=pickedRegions, boundaryPreview=ON)
# Extrude mesh.
faces = part.faces.getSequenceFromMask(mask=('[#8 ]', ), )
pickedGeomSourceSide = regionToolset.Region(faces=faces)
v = part.vertices
vector = (v[0], v[1])
return part.generateBottomUpExtrudedMesh(cell=part.cells[0], geometrySourceSide=pickedGeomSourceSide, extrudeVector=vector, numberOfLayers=4)
def createSection(model, part, materialName, sectionName):
# Create the solid section.
mySection = model.HomogeneousSolidSection(
name=sectionName, material=materialName, thickness=1.0)
# Assign the section to the region. The region refers to the single cell in this model.
region = (part.cells,)
part.SectionAssignment(region=region, sectionName=sectionName)
return mySection
def createSets(part):
nodes = part.nodes.getSequenceFromMask(mask=('[#1 #200 #40000 #8000000 #0 #10 #2000',
' #400000 #80000000 #0 #100 #20000 #4000000 #0',
' #8 #1000 #200000 #40000000 #0 #80 #10000',
' #2000000 #0 #4 #800 #100000 #20000000 #0',
' #40 #8000 #1000000 #0 #2 #400 #80000', ' #10000000 #0 #20 ]', ), )
part.Set(nodes=nodes, name='SetBCFixedSide')
nodes = part.nodes.getSequenceFromMask(mask=('[#ffffffff:7 #3fffff ]', ), )
part.Set(nodes=nodes, name='SetLoadPressure')
def createInstance(assembly, part, instanceName):
# Create a part instance.
return assembly.Instance(name=instanceName, part=part, dependent=ON)
def createLoadStep(model, loadStepName, previousStepName):
# Create a step. The time period of the static step is 1.0,
# and the initial incrementation is 0.1; the step is created
# after the initial step.
return model.StaticStep(name=loadStepName, previous=previousStepName, timePeriod=1.0, initialInc=0.1)
def createEncastreBoundaryCondition(instance, model, createStepName, boundaryConditionName):
region = instance.sets['SetBCFixedSide']
return model.EncastreBC(name=boundaryConditionName,
createStepName=createStepName, region=region)
def createPressure(model, instance, createStepName, pressureName):
# Find the top face using coordinates.
topFaceCenter = (0, 10, 12.5)
topFace = instance.faces.findAt((topFaceCenter,))
# Create a pressure load on the top face of the beam.
topSurface = ((topFace, SIDE1), )
return model.Pressure(name=pressureName, createStepName=createStepName, region=topSurface, magnitude=0.5)
model = mdb.models[mdb.models.keys()[0]]
sketch = createSketch(model, SKETCH_NAME)
part = createPart(model, sketch, PART_NAME)
materials.add_all(model)
mesh = createBottomUpExtrudedMesh(part)
section = createSection(model, part, MATERIAL_NAME, SECTION_NAME)
createSets(part)
assembly = model.rootAssembly
instance = createInstance(assembly, part, INSTANCE_NAME)
loadStep = createLoadStep(model, LOAD_STEP_NAME, INITIAL_STEP_NAME)
encastreBoundaryCondition = createEncastreBoundaryCondition(
instance, model, INITIAL_STEP_NAME, BOUNDARY_CONDITION_NAME)
pressure = createPressure(model, instance, LOAD_STEP_NAME, PRESSURE_NAME)
optimizations.optimize_topology(
session, part, MODEL_NAME, LOAD_STEP_NAME, 1.25, 2.5)
| 4b2f9f84fb25df5e6ca8d65cdf44641c1cfbd4dd | [
"Markdown",
"Python"
] | 5 | Python | zhfzzz/abaqus-scripts-1 | 4cd5e9e2a613f89d58e8c52c949ecb9f34120036 | 40e9e031b8afaee8306b95d69f5ac299620e0b08 |
refs/heads/master | <repo_name>anderam17/employee-manager<file_sep>/employee.js
const mysql = require("mysql");
const inquirer = require("inquirer");
const connection = mysql.createConnection({
host: "localhost",
port: 8889,
user: "root",
password: "<PASSWORD>",
database: "company",
});
function start() {
inquirer
.prompt({
name: "action",
type: "list",
message: "What would you like to do?",
choices: [
"View All Departments",
"View All Roles",
"View All Employees",
"Add Department",
"Add Role",
"Add Employee",
"Update Employee Roles",
"Exit"
]
})
.then((ans) => {
console.log(ans);
switch (ans.action) {
case "View All Departments":
viewDepartments();
break;
case "View All Roles":
viewRoles();
break;
case "View All Employees":
viewEmployees();
break;
case "Add Department":
addDepartment();
break;
case "Add Role":
addRole();
break;
case "Add Employee":
addEmployee();
break;
case "Update Employee Roles":
updateEmployeeRole();
break;
default:
connection.end();
}
});
}
function viewDepartments() {
connection.query("SELECT * FROM departments", (err, data) => {
if (err) throw err;
console.table(data);
start();
});
}
function viewRoles() {
connection.query("SELECT * FROM roles", (err, data) => {
if (err) throw err;
console.table(data);
start();
});
}
function viewEmployees() {
connection.query("SELECT * FROM employees", (err, data) => {
if (err) throw err;
console.table(data);
start();
});
}
function addDepartment(){
inquirer.prompt([
{
name: "department",
message: "What is the name of the department you would like to add?"
}
]).then((answer) => {
connection.query(`INSERT INTO departments (name) VALUES ('${answer.department}')`, (err) => {
if (err) throw err;
viewDepartments();
})
})
}
function addRole(){
inquirer.prompt([
{
name: "title",
message: "What is the title of the role you would like to add?"
},
{
name: "salary",
message: "What is the annual salary of this role?"
},
{
name: "department_id",
message: "What is the departmental ID of this role?"
}
]).then((answer) => {
connection.query(`INSERT INTO roles (title, salary, department_id) VALUES ('${answer.title}', ${answer.salary}, ${answer.department_id})`, (err) => {
if (err) throw err;
viewRoles();
})
})
}
function addEmployee(){
inquirer.prompt([
{
name: "first_name",
message: "What is the employee's first name?"
},
{
name: "last_name",
message: "What is the employee's last name?"
},
{
name: "role_id",
message: "What is the role ID for this employee"
},
{
name: "manager_id",
message: "What is the manager's ID for this employee?"
}
]).then((answer) => {
connection.query(`INSERT INTO employees (first_name, last_name, role_id, manager_id) VALUES ('${answer.first_name}', '${answer.last_name}', ${answer.role_id}, ${answer.manager_id})`, (err) => {
if (err) throw err;
viewEmployees();
})
})
}
function updateEmployeeRole(){
inquirer.prompt([
{
name: "first_name",
message: "What is the first name of the employee you would like to change?"
},
{
name: "last_name",
message: "What is the last name of the employee you would like to change?"
},
{
name: "role_id",
message: "What would you like to change their role ID to?"
}
]).then((answer) => {
connection.query(`UPDATE employees SET role_id = ${answer.role_id} WHERE first_name = '${answer.first_name}' && last_name = '${answer.last_name}'`, (err) => {
if (err) throw err;
viewEmployees();
})
})
}
connection.connect((err) => {
if (err) throw err;
console.log(`Connected as thread id: ${connection.threadId}`);
start();
});
<file_sep>/seeds.sql
INSERT INTO departments(name)
VALUES ("engineering"),("sales"),("finance"),("legal");
INSERT INTO roles(title, salary, department_id)
VALUES ("engineer", 70000, 10),("lead engineer", 90000, 11),("lawyer", 70000, 20),("lead lawyer", 90000, 21), ("salesperson", 60000, 30), ("lead salesperson", 70000, 31), ("financial advisor", 70000, 40) ("lead financial advisor", 90000, 41);
INSERT INTO employees(first_name, last_name, role_id, manager_id)
VALUES ("Allana", "Anderson", 10, 2), ("Daniel", "Lee", 11, 1), ("Katlin", "Fletcher", 20, 3), ("KC", "Katalbas", 21, 4), ("Betsy", "Shuttleworth", 30, 5), ("Maia", "Holmes", 31, 6), ("Anthony", "Cortes", 40, 7), ("Willie", "Pointsalot", 41, 8);
SELECT * FROM company;<file_sep>/schema.sql
DROP DATABASE IF EXISTS company;
CREATE DATABASE company;
USE company;
CREATE TABLE departments(
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(45)
);
CREATE TABLE roles(
id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(30),
salary DECIMAL,
department_id INT
);
CREATE TABLE employees(
id INT AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(30),
last_name VARCHAR(30),
role_id INT,
manager_id INT
);
SELECT * FROM company; | a9254422fe154774ff516f00dbf2493f03ba6a4b | [
"JavaScript",
"SQL"
] | 3 | JavaScript | anderam17/employee-manager | 850608756f9150209df3ba2602a614b82b0b316c | 57d554ba2112b192d83542c38e8bdda0268ed645 |
refs/heads/master | <file_sep>#include <stdio.h>
#define MAXSTRLEN 200
#define FILENAME "test.txt"
void readlines() {
FILE *fp = fopen(FILENAME, "r");
char line[MAXSTRLEN];
if (fp != 0) {
while (fgets(line, sizeof(line), fp) != 0) {
fputs(line, stdout);
}
printf("\n");
fclose(fp);
} else {
printf("File %s cannot be opened!", FILENAME);
}
}
void writelines() {
FILE *fp;
fp = fopen(FILENAME, "a");
fputs("Hello world!\n", fp);
fputs("Good<NAME>\n", fp);
fclose(fp);
}
void clearfile() {
FILE *fp;
fp = fopen(FILENAME, "w");
fclose(fp);
}
void deletefile() {
if (remove(FILENAME) == 0) {
printf("%s file deleted.\n", FILENAME);
}
else {
printf("Unable to delete the file: %s. \n", FILENAME);
}
}
void main() {
readlines();
writelines();
}<file_sep>#include <stdio.h>
int intarray[5];
int intarray2[] = { 1,2,3,4,5 };
double doublearray2[] = { 2.1, 2.3, 2.4, 2.5 };
char chararray[] = { 'h', 'e', 'l', 'l', 'o', '0' };
char chararray2[] = "world";
void main(int argc, char **argv) {
int i;
intarray[0] = 1;
intarray[1] = 11;
intarray[2] = 21;
intarray[3] = 31;
intarray[4] = 41;
for (i = 0; i < 5; i++) {
printf("%d\n", intarray[i]);
}
printf("The integer at intarray[3] is: %d\n", intarray[3]);
for (i = 0; i < 5; i++) {
printf("%f\n", doublearray2[i]);
}
} | 479d18e153f29e59d9ae21a94f240d34e66ae9c9 | [
"C"
] | 2 | C | WenjinTao/C-Language-Recap | dbc911c7c95944b7dbffe654bed82e1dabda9b25 | 66205795a867765c2db1f48a550bc68add0fb3e1 |
refs/heads/master | <file_sep>package UpGrad;
import java.util.Scanner;
public class EventClient {
public static void main(String[] args) {
StudentPriorityQueue studentQueue = new StudentPriorityQueue();
Scanner scn = new Scanner(System.in);
int total_events = scn.nextInt();
for (int i = 0; i < total_events; i++) {
String event = scn.next();
if (event.equals("ENTER")) {
String name = scn.next();
float CGPA = scn.nextFloat();
int token = scn.nextInt();
studentQueue.enterStudent(name, CGPA, token);
} else if (event.equals("SERVED")) {
studentQueue.serveStudent();
}
}
studentQueue.displayQueue();
}
}
<file_sep>package UpGrad;
public class Student {
String name;
float CGPA;
int token;
public Student(String name, float CGPA, int token) {
this.name = name;
this.CGPA = CGPA;
this.token = token;
}
}
| 31ab1e1885c39d602ea4d61401e5870a5bc6997e | [
"Java"
] | 2 | Java | tanmayarya/UpGrad-Problem-Statement | 674e8d51738102eae99ecb401e3f476e88bc4131 | f4d323f04608e19579de87d7e7f2dfe8d2f4c50a |
refs/heads/master | <file_sep>
var white_balls = [];
function white_ball_randomizer()
{
var random_white = Math.ceil( Math.random() * 69 );
checker(random_white);
}
function checker(random_white)
{
if ( white_balls.length < 1 )
{
white_balls.push(random_white);
console.log(white_balls);
}
else
{
while ( white_balls.length < 5 )
{
white_balls.forEach(function(element, index)
{
if ( random_white != white_balls[element] )
{
white_balls.push(random_white);
white_ball_randomizer();
}
else
{
white_ball_randomizer();
}
});
}
}
} | d3a9c5948b09833583abd6e5508afb4571ebfaac | [
"JavaScript"
] | 1 | JavaScript | Matthew-Tilley/POWERBALL | 6561b25d62f227c019b03d127b277cfd26744530 | a5fe11d073715c92f16f21549ad506a362e556dd |
refs/heads/master | <repo_name>sam33r0/oddeven<file_sep>/README.md
# oddeven
this is a self made game on java.. It is based on math random method.
please report any bugs related to this program.
For any assistance mail me at <EMAIL>
Thank you.
<file_sep>/oddeveng.java
import java.util.*;
class oddeveng
{
public static void main(String arg[])
{
Scanner ob1=new Scanner(System.in);
Scanner ob=new Scanner(System.in);
System.out.println("choose odd or even");
String ch=ob1.nextLine();
int rc=0,rh=0,pl=0;
int c=(int)(Math.random()*10);
String b="";
if(c%2==0)
{
if(ch.equals("even"))
{
System.out.println("you won");
System.out.println("choose batting or balling\nto bat first type bat\nto ball first type ball");
b=ob1.nextLine();
if(b.equals("ball"))
{
System.out.println("you are balling game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
}
System.out.println("its your batting");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
System.out.println("\n*****you lost*****");
break;
}
rh=rh+pl;
if(rh>rc)
{
System.out.println("you won\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
if(b.equals("bat"))
{
System.out.println("you are batting game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
break;
}
rh=rh+pl;
}
System.out.println("its your balling");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you won");
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
if(rh<rc)
{
System.out.println("you lost\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
}
else
{
if(ch.equals("odd"))
System.out.println("you lost");
c=(int)Math.random()*10;
if(c%2==0)
b="ball";
else
b="bat";
if(b.equals("ball"))
{
System.out.println("you are balling game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
}
System.out.println("its your batting");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
System.out.println("\n*****you lost*****");
break;
}
rh=rh+pl;
if(rh>rc)
{
System.out.println("you won\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
if(b.equals("bat"))
{
System.out.println("you are batting game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
break;
}
rh=rh+pl;
}
System.out.println("its your balling");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you won");
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
if(rh<rc)
{
System.out.println("you lost\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
}
}
else if(c%2!=0)
{
if(ch.equals("odd"))
{
System.out.println("you won");
System.out.println("choose batting or balling\nto bat first type bat\nto ball first type ball");
b=ob1.nextLine();
if(b.equals("ball"))
{
System.out.println("you are balling game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
}
System.out.println("its your batting");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
System.out.println("\n*****you lost*****");
break;
}
rh=rh+pl;
if(rh>rc)
{
System.out.println("you won\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
if(b.equals("bat"))
{
System.out.println("you are batting game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
break;
}
rh=rh+pl;
}
System.out.println("its your balling");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you won");
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
if(rh<rc)
{
System.out.println("you lost\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
}
else
{
if(ch.equals("even"))
System.out.println("you lost");
c=(int)Math.random()*10;
if(c%2==0)
b="ball";
else
b="bat";
if(b.equals("ball"))
{
System.out.println("you are balling game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
}
System.out.println("its your batting");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
System.out.println("\n*****you lost*****");
break;
}
rh=rh+pl;
if(rh>rc)
{
System.out.println("you won\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
if(b.equals("bat"))
{
System.out.println("you are batting game starts now");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you are out \n\nruns= "+rh);
break;
}
rh=rh+pl;
}
System.out.println("its your balling");
for(;;)
{
pl=ob.nextInt();
c=(int)(Math.random()*10);
while(c>6 || c<=0)
c=(int)(Math.random()*10);
if(pl>6 || pl<=0)
{
System.out.println("out of range\n");
continue;
}
System.out.println(c+"\n");
if(pl==c)
{
System.out.println("you won");
System.out.println("computer is out \n\nruns= "+rc);
break;
}
rc=rc+c;
if(rh<rc)
{
System.out.println("you lost\n\nyour runs="+rh+"\ncomputer made "+rc+" runs");
break;
}
}
if(rh==rc)
System.out.println("*****its a tie*****");
}
}
}
}
}
/*
choose odd or even
odd
you lost
you are balling game starts now
4
6
5
4
3
4
5
6
6
4
9
out of range
82
out of range
1
1
computer is out
runs= 24
its your batting
5
1
6
1
4
4
you are out
runs= 11
*****you lost*****
Press any key to continue . . .
*/ | e387293c404737ef671d83d985facbd3b4adf99f | [
"Markdown",
"Java"
] | 2 | Markdown | sam33r0/oddeven | eb48f934740f5ef9f382152482b55f3632b1117c | 80481f6b84af13af80653bbe1fb605cae8cd4235 |
refs/heads/master | <repo_name>chengfenghj/app<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/activity/GameoverActivity.java
package com.example.asus.freerun.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
import com.example.asus.freerun.R;
import com.example.asus.freerun.data.GradeBean;
import com.example.asus.freerun.data.MaterialsBean;
/**
* Created by ASUS on 2017/2/6.
*/
public class GameoverActivity extends Activity {
private TextView gradeView;
private TextView maxGradeView;
private TextView coinView;
private Button restart;
private Button exit;
private GradeBean gradeBean;
private MaterialsBean materialsBean;
private int grade;
private int maxGrade;
private int golds;
private int coins;
public void onCreate(Bundle bundle){
super.onCreate(bundle);
setContentView(R.layout.activity_gameover);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
Intent intent =getIntent();
grade =intent.getIntExtra("grade",1);
golds =intent.getIntExtra("golds",1);
coins =grade/151+golds;
gradeBean =new GradeBean(this);
materialsBean =new MaterialsBean(this);
gradeView =(TextView)findViewById(R.id.grade);
maxGradeView =(TextView)findViewById(R.id.max_grade);
coinView =(TextView)findViewById(R.id.coin);
exit =(Button)findViewById(R.id.exit);
restart =(Button)findViewById(R.id.again);
changeGrade();
gradeView.setText("分数:" + grade);
maxGradeView.setText("最高分数:" + maxGrade);
coinView.setText("金 币: +"+ coins);
exit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onBackPressed();
}
});
restart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent();
setResult(RESULT_OK,intent);
finish();
}
});
}
public void onBackPressed(){
Intent intent =new Intent();
setResult(RESULT_CANCELED, intent);
finish();
}
/**
* 取出最高分
*/
private void changeGrade(){
gradeBean.query();
maxGrade =gradeBean.getMaxGrade();
if(maxGrade < grade) {
gradeBean.setMaxGrade(grade);
gradeBean.insert();
maxGrade = grade;
}
materialsBean.query();
materialsBean.setGolds(coins + materialsBean.getGolds());
materialsBean.insert();
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/activity/MainActivity.java
package com.example.asus.cleardots.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.example.asus.cleardots.R;
public class MainActivity extends Activity {
private Button start;
private Button list;
private Button exit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
start =(Button)findViewById(R.id.start);
list =(Button)findViewById(R.id.list);
exit =(Button)findViewById(R.id.exit);
start.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent(MainActivity.this,GameActivity.class);
startActivity(intent);
}
});
list.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent(MainActivity.this,ListActivity.class);
startActivity(intent);
}
});
exit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
}
<file_sep>/Reversi_2.0/app/src/main/java/com/hjchengfeng/reversi_20/Model/ReversiBoard.java
package com.hjchengfeng.reversi_20.Model;
import java.util.ArrayList;
import java.util.List;
/**
* Created by ASUS on 2016/9/8.
*/
public class ReversiBoard {
private final int LENGHT =8; //棋盘长度常量
private final int BLACK =0; //黑棋常量
private final int WHITE =10; //白棋常量
private final int EMPTY =20; //空常量
private int blackAmount; //记录黑棋的数量
private int mblackAmount; //记录上一步黑棋的数量
private int whiteAmount; //记录白棋的数量
private int mwhiteAmount; //记录上一步白棋的数量
private boolean regretable; //记录是否可以悔棋
private boolean gameover; // 记录游戏是否结束
private int winner; //记录赢家
private int[][] board; //二维数组存放棋盘信息
private int[][] mboard; //用来记忆棋盘的二维数组
private List<Coord> coords; //用来暂存被吃掉棋子的坐标
public ReversiBoard(){
board =new int[LENGHT][LENGHT];
mboard =new int[LENGHT][LENGHT];
coords =new ArrayList<Coord>();
}
//棋盘初始化
public void init(){
blackAmount =2;
whiteAmount =2;
mblackAmount =2;
mwhiteAmount =2;
gameover =false;
regretable =false; //游戏刚开始的时候不能悔棋
winner =EMPTY; //胜利者为空常量,标记没有人赢
for(int i=0;i<LENGHT;i++){
for(int j=0;j<LENGHT;j++){
board[i][j]= EMPTY;
mboard[i][j]= EMPTY;
}
}
board[3][3] =BLACK;
board[4][4] =BLACK;
board[3][4] =WHITE;
board[4][3] =WHITE;
mboard[3][3] =BLACK;
mboard[4][4] =BLACK;
mboard[3][4] =WHITE;
mboard[4][3] =WHITE;
}
//获取棋盘上指定位置棋子的状态——无棋子、黑棋、白棋或者变化中
public int getValue(int x,int y){
return board[x][y];
}
//设置棋盘上指定位置棋子的状态
public void setValue(int x,int y,int value){
board[x][y] = value;
}
//获取黑子的数量
public int getBlackAmount(){
return blackAmount;
}
//获取白子的数量
public int getWhiteAmount(){
return whiteAmount;
}
public int getWinner(){
return winner;
}
public boolean getGameover(){
return gameover;
}
//指定位置放入棋子
public boolean putIn(int x,int y,int value,boolean player){
int eat;
//如果指定位置有棋子
if(!isEmpty(x,y))
return false;
//如果一个子都没吃掉
eat =search(x,y,value);
if(eat == 0)
return false;
if(player) {
copyBoard(0); //先记录棋盘
mblackAmount = blackAmount;
mwhiteAmount = whiteAmount;
}
setValue(x, y, value); //放子
eat(); //吃子
numberChange(eat, value); //改变棋子数量
regretable=true; //有下子就可以悔棋
check(); //检查游戏是否结束
return true;
}
//搜索棋盘,看看有多少个棋子被吃掉
private int search(int x,int y,int value){
int ax =x;
int ay =y;
int eat =0; //吃掉的棋子数
int k =0; //
List<Coord> c =new ArrayList<Coord>();
coords.clear(); //清空
//八个方向搜索
for(int i= -1;i<=1;i++){
for(int j= -1;j<=1;j++){
if(i==0&&j==0)
continue;
//重置ax、ay
ax =x;
ay =y;
//搜索
while (true){ //下一个搜索的位置在棋盘上并且有棋子
ax +=i;
ay +=j;
//如果搜索到棋盘之外,说明这个方向没有吃子
if(isOutBoard(ax, ay)){
k=0;
c.clear();
break;
}
//如果搜索到空格,说明这个方向没有吃子
if(isEmpty(ax,ay)){
k=0;
c.clear();
break;
}
//如果搜索到相同颜色的棋子,说明有吃子
if(isSameChess(ax,ay,value)){
break;
}
//继续搜索
k++;
Coord coord =new Coord(ax,ay);
c.add(coord);
}
//如果没有吃子,进行下一个方向的搜索
if(k == 0)
continue;
coords.addAll(c); //将吃掉的子记录下来
eat +=k; //记录吃掉的子数
k =0; //重置k
c.clear(); //清空c
}
}
return eat;
}
//吃子动作
private void eat(){
int x;
int y;
int n =coords.size();
for(int i=0;i<n;i++){
x =coords.get(i).x;
y=coords.get(i).y;
board[x][y]++;
}
}
//及时改变棋盘上统计棋子数目的值
private void numberChange(int amount,int value){
if(value == BLACK){
blackAmount +=amount+1;
whiteAmount -=amount;
return;
}
blackAmount -=amount;
whiteAmount +=amount+1;
}
//用来检查指定棋手是否有行动力
public boolean actable(int value){
int eat;
for(int i =0;i < LENGHT;i++){
for( int j =0;j < LENGHT;j++){
if(board[i][j] == EMPTY) { //判断搜索到的位置是否没有棋子,没有棋子才尝试放入
eat =search(i, j, value); //看看这个位置是否有吃子
if(eat > 0) {
return true;
}
}
}
}
return false;
}
//游戏结束的时候判断是谁赢了
public void gameover(){
gameover =true;
if(blackAmount > whiteAmount)
winner =BLACK;
else
winner =WHITE;
}
//用来检查游戏是否结束
private void check(){
//第一种情况,棋盘被下满
if(blackAmount+whiteAmount == 64)
gameover();
//第二种情况,有一方棋子被吃完
if(blackAmount == 0||whiteAmount == 0)
gameover();
//第三种情况,双方都无子可下
//单独判断
}
public boolean regret(){
if(regretable) {
copyBoard(1);
blackAmount = mblackAmount;
whiteAmount = mwhiteAmount;
regretable =false;
return true;
}
return false;
}
//复制棋盘,用来记忆棋盘,或者是悔棋
private void copyBoard(int dire){
if(dire == 0) {
for (int i = 0; i < LENGHT; i++) {
for (int j = 0; j < LENGHT; j++) {
mboard[i][j] = board[i][j];
}
}
}
else {
for (int i = 0; i < LENGHT; i++) {
for (int j = 0; j < LENGHT; j++) {
board[i][j] = mboard[i][j];
}
}
}
}
//判断指定位置是否在棋盘之外
private boolean isOutBoard(int x,int y){
if(x < 0 || y < 0)
return true;
if(x >= LENGHT || y >= LENGHT)
return true;
return false;
}
//判断是否是相同颜色的棋子
private boolean isSameChess(int x,int y,int value){
if(getValue(x,y) == value)
return true;
return false;
}
//指定位置是否没有棋子
public boolean isEmpty(int x,int y){
if(board[x][y]==EMPTY)
return true;
return false;
}
}
<file_sep>/Reversi_2.0/app/src/main/java/com/hjchengfeng/reversi_20/Model/ABValue.java
package com.hjchengfeng.reversi_20.Model;
/**
* Created by ASUS on 2017/1/31.
*/
public class ABValue {
public int alpha;
public int beta;
public Coord coord;
public int score;
public ABValue(){
coord =new Coord(0,0);
}
public ABValue(int alpha,int beta,Coord coord){
this.alpha =alpha;
this.beta =beta;
this.coord = coord;
score =-500;
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/view/GradeView.java
package com.example.asus.freerun.view;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
import android.view.WindowManager;
import com.example.asus.freerun.R;
/**
* Created by ASUS on 2017/2/7.
*/
public class GradeView extends View {
private final int max_grade =10; //定义最高等级
private int screenWidth;
private int rectWidth;
private int rectHeight;
private int grade; //要显示的等级
public GradeView(Context context) {
this(context, null, 0);
}
public GradeView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public GradeView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
float scale =context.getResources().getDisplayMetrics().density;
WindowManager wm =(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
screenWidth =wm.getDefaultDisplay().getWidth()-(int)(40*scale+0.5f);
rectWidth =screenWidth/max_grade;
rectHeight =rectWidth/5;
grade =1;
}
public void onDraw(Canvas canvas){
Paint paint =new Paint();
RectF rect;
for(int i =0;i<max_grade;i++){
if(i < grade)
paint.setColor(getColor(i));
else
paint.setColor(Color.GRAY);
rect =new RectF(i * rectWidth, 0, (i + 1) * rectWidth, rectHeight);
canvas.drawRoundRect(rect,rectHeight/3,rectHeight/3, paint);
}
Paint paint1 =new Paint();
paint1.setColor(Color.WHITE);
for(int i =0;i<max_grade-1;i++){
canvas.drawLine((i+1)*rectWidth,0,(i+1)*rectWidth,rectHeight,paint1);
}
}
public void setGrade(int grade){
this.grade =grade;
}
private int getColor(int index){
if(index < 3)
return getContext().getResources().getColor(R.color.grade1);
if(index < 6)
return getContext().getResources().getColor(R.color.grade2);
if(index < 8)
return getContext().getResources().getColor(R.color.grade3);
return getContext().getResources().getColor(R.color.grade4);
}
public void onMeasure(int widthMeasureSpec,int heightMeasureSpec){
super.onMeasure(widthMeasureSpec,heightMeasureSpec);
int mWidth =MeasureSpec.getSize(widthMeasureSpec);
int mHeight =MeasureSpec.getSize(heightMeasureSpec);
int widthMode =MeasureSpec.getMode(widthMeasureSpec);
int heightMode =MeasureSpec.getMode(heightMeasureSpec);
if(widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,rectHeight);
else if(widthMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,mHeight);
else if(heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(mWidth,rectHeight);
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/enemies/TreasureBox.java
package com.example.asus.freerun.enemies;
import android.util.Log;
/**
* Created by ASUS on 2017/7/16.
*/
public class TreasureBox extends Enemy {
private String boxString;
private int boxColor;
public TreasureBox(){
type =treasure_box;
}
/**
* 只负责告诉你打开的是什么箱子
*
* @return
*/
public int openBox(){
Log.d("TreasureBox","随机开宝箱");
int boxType =0;
int open =(int)(Math.random()*23);
switch (open){
//开的是一个空宝箱,分数加50
case 0:
case 1:
case 2:
boxType =1;
break;
//开的是金币宝箱,金币加3
case 3:
case 4:
case 5:
boxType =2;
break;
//开的是金币宝箱,金币加6
case 6:
case 7:
boxType =3;
break;
//开的是金币宝箱,金币加9
case 8:
case 9:
boxType =4;
break;
//开的是金币宝箱,金币加12
case 10:
boxType =5;
break;
//开的是金币宝箱,金币加15
case 11:
boxType =6;
break;
//开的是能量宝箱,能量加50
case 12:
case 13:
case 14:
boxType =7;
break;
//开的是能量宝箱,能量加100
case 15:
case 16:
boxType =8;
break;
//开的是能量宝箱,能量加150
case 17:
boxType =9;
break;
//开的是能量宝箱,能量加200
case 18:
boxType =10;
break;
//开的是道具宝箱,得到无敌
case 19:
boxType =11;
break;
//开的是道具宝箱,得到双倍得分
case 20:
boxType =12;
break;
//开的是道具宝箱,得到助跑
case 21:
boxType =13;
break;
//开的是道具宝箱,得到双倍能量收集
case 22:
boxType =14;
break;
default:
}
Log.d("TreasureBox","boxType ="+boxType);
return boxType;
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/enemies/WeakEnemy.java
package com.example.asus.freerun.enemies;
/**
* Created by ASUS on 2017/7/16.
*/
public class WeakEnemy extends Enemy {
public WeakEnemy(){
type =weak_enemy;
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/view/GameView.java
package com.example.asus.freerun.view;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
import android.util.AttributeSet;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.WindowManager;
import com.example.asus.freerun.data.InitiateBean;
import com.example.asus.freerun.enemies.CrazyEnemy;
import com.example.asus.freerun.enemies.Enemy;
import com.example.asus.freerun.enemies.TreasureBox;
import com.example.asus.freerun.model.Bullet;
import com.example.asus.freerun.model.EnemyFactory;
import com.example.asus.freerun.model.ImageLibrary;
import java.util.ArrayList;
import java.util.List;
/**
* Created by ASUS on 2017/2/2.
*/
public class GameView extends SurfaceView implements SurfaceHolder.Callback,SensorEventListener{
private WindowManager wm; //窗口管理器
private SensorManager sm; //传感器管理器
private ImageLibrary il;
private EnemyFactory enemyFactory;
private SurfaceHolder surfaceHolder;
private boolean running; //标记线程是否继续
private int sleepTime =40; //线程休眠时间
private Bitmap drawBitmap; //用于取消闪烁的双缓冲位图
private Canvas drawCanvas; //用于取消闪烁的双缓冲画布
private OnGameoverListener gameoverListener;
private boolean first =true;
private float screenWidth; //屏幕的宽度
private float screenHeight; //屏幕的高度
private float road1; //第一条道上面的点(y == 0)的横坐标
private float road2; //第一条道下面的点(y == screenHeight)的横坐标
private float dist1; //屏幕上方(y == 0)道与道之间的距离
private float dist2; //屏幕下方(y == screenHeight)道与道之间的距离
private float dotWidth; //己方圆点的直径
private int speed =0; //在X方向上的速度,随手机的摇晃而改变
private float dotX; //己方圆点的横坐标
private float dotY; //己方圆点的纵坐标
private float pad; //左边的屏幕距离,己方圆点不能移动超过的地方
private int shieldCount;
private boolean shield =false; //标记是否带有护盾
private boolean bullet =false; //标记场上是否存在子弹
private InitiateBean initBean; //初始状态数据
private int initiateEnerge; //初始能量
private int shieldTime; //护盾时间
private int bulletConsume; //子弹消耗
private int invincibleTime =30; //无敌时间
private int doubleGradeTime =80; //双倍得分时间
private int speedUpTime =100; //助跑时间
private int doubleEnergyTime =80; //加倍能量收集时间
private boolean pause =false; //标记游戏是否暂停
private boolean gameover =false; //标记游戏是否结束
private float enemySpeed =10; //敌人的速度,随难度的增加而增加
private int maxScore =500; //最大分数,分数超过这个值则难度增加
private int grade =0; //分数
private int extraGrade =0; //额外的分数,不会改变游戏难度
private int energy; //能量,初始两百
private int scale =1; //分数增长的速度
private int energyScale =12; //能量增长的速度
private int energiesCount =11; //能量增长计数
private int interval =40; //出现一个新敌人的时间间隔
private int specialIntv =120; //出现一个特殊敌人的时间间隔
private int treasure =286; //出现一个宝箱的时间间隔
private int fall =40; //下落帧数计数
private int specialFall =60; //下落帧数计数
private int treasureFall =80; //下落帧数计数
private boolean openBox =false; //标记宝箱是否被打开
private boolean invincible =false; //标记是否处于无敌状态
private boolean doubleGrade =false; //标记是否处于加倍得分状态
private boolean speedUp =false; //标记是否处于助跑状态
private boolean doubleEnergy =false; //标记是否处于加倍能量收集状态
private String boxString =""; //提示宝箱里的文字
private int boxCount =40; //宝箱提示时间计数
private int boxColor; //宝箱提示文字的颜色
private int golds =0; //通过开宝箱攒的金币
private int invincibleCount; //无敌时间计数
private int doubleGradeCount; //加倍得分时间计数
private int speedUpCount; //助跑时间计数
private int doubleEnergyCount; //加倍能量收集时间计数
private boolean superShield =false; //标记是否处在超级护盾状态
private boolean superUpspeed =false; //标记是否处在超级加速状态
private boolean superLaser =false; //标记是否处在超级激光状态
private boolean superBomb =false; //标记是否处在超级炸弹状态
private int superShieldTime =160; //超级护盾持续时间
private int superUpspeedTime =600; //超级加速持续时间
private int superLaserTime =160; //超级激光持续时间
private int superBombTime =25; //超级炸弹提示时间
private int superShieldCount; //超级护盾持续时间计数
private int superUpspeedCount; //超级加速持续时间计数
private int superLaserCount; //超级激光持续时间计数
private int superBombCount; //超级炸弹提示时间计数
private List<Enemy> enemies; //敌人的集合
private List<Bullet> bullets; //子弹的集合
public GameView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
//获取屏幕的宽高并初始化一些值
wm =(WindowManager)context.getSystemService(Context.WINDOW_SERVICE);
screenWidth =wm.getDefaultDisplay().getWidth();
screenHeight =wm.getDefaultDisplay().getHeight();
drawBitmap =Bitmap.createBitmap((int) screenWidth, (int) screenHeight, Bitmap.Config.RGB_565);
drawCanvas =new Canvas(drawBitmap);
road1 =screenWidth*3/10;
road2 =screenWidth/10;
dotWidth =screenWidth/12;
dotX =screenWidth/2;
dotY =screenHeight - dotWidth -10;
pad =road2+ dotWidth /4;
dist1 =4*screenWidth/50;
dist2 =8*screenWidth/50;
//注册重力感应监听器
sm =(SensorManager)context.getSystemService(Context.SENSOR_SERVICE);
sm.registerListener(this, sm.getDefaultSensor(Sensor.TYPE_ACCELEROMETER), SensorManager.SENSOR_DELAY_GAME);
il =new ImageLibrary(context);
il.init();
enemyFactory =new EnemyFactory();
enemies =new ArrayList<Enemy>();
bullets =new ArrayList<Bullet>();
initBean =new InitiateBean(context);
initBean.query();
initiateEnerge =initBean.getInitiateEnerge();
shieldTime =initBean.getShieldTime();
bulletConsume =initBean.getBulletEnerge();
surfaceHolder =getHolder();
surfaceCreated(surfaceHolder);
init();
}
public GameView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public GameView(Context context) {
this(context, null, 0);
}
public void init(){
first =true;
pause =false;
gameover =false;
shield =false;
openBox =false;
invincible =false;
doubleEnergy =false;
doubleGrade =false;
speedUp =false;
dotX =screenWidth/2;
golds =0;
maxScore =500; //最大分数,分数超过这个值则难度增加
grade =0; //分数
extraGrade =0;
energy =initiateEnerge; //能量
energyScale =12; //能量增长速度
scale =1; //分数增长的速度
enemySpeed =10; //敌人的速度,随难度的增加而增加
interval =40; //出现一个新敌人的时间间隔
treasure =286; //出现宝箱的时间间隔
fall =20; //下落帧数计数
//屏幕清空
enemies.clear();
bullets.clear();
}
public int getGrade(){
return grade+extraGrade;
}
public float getScreenWidth(){
return screenWidth;
}
public int getGolds(){
return golds;
}
/**
* 实际绘图的地方
* @param canvas
*/
public void render(Canvas canvas){
canvas.drawBitmap(drawBitmap, 0, 0, null);
for(int i =0;i<bullets.size();i++) {
//如果有颗子弹超出了屏幕外,就删掉
if (bullets.get(i).getY() < -dotWidth)
bullets.remove(i);
}
for(int i =0;i<enemies.size();i++) {
//如果有个敌人超出了屏幕外,就把他删掉
if (enemies.get(i).getY() > screenHeight) {
enemies.remove(i);
continue;
}
}
float ex,ey,ed;
if(superShield){
for(int i =0;i<enemies.size();i++){
ex =enemies.get(i).getX();
ey =enemies.get(i).getY();
ed =enemies.get(i).getDiameter();
if(superShieldKill(ex,ey,ed)){
enemies.remove(i);
extraGrade +=50;
golds +=3;
}
}
}
changeHard();
}
/**
* 双缓冲的实现
* 先在drawBitmap上绘图,再将所绘好的位图一次性画在屏幕画布上
*/
private void draw(){
//如果游戏暂停,什么都不画
if(pause)
return;
//如果游戏结束,发送监听事件
if(gameover) {
gameover();
return;
}
//如果处于助跑状态,计数
if(speedUp)
speedUpCount();
//如果处于超级助跑状态,计数
if(superUpspeed)
superUpspeedCount();
//画背景
Paint paint1 =new Paint();
paint1.setColor(Color.WHITE);
drawCanvas.drawRect(0, 0, screenWidth, screenHeight, paint1);
//画出两条线
Paint paint2 =new Paint();
paint2.setColor(Color.BLACK);
drawCanvas.drawLine(road1,0,road2,screenHeight,paint2);
drawCanvas.drawLine(road1+5*dist1,0,road2+5*dist2,screenHeight,paint2);
//更新分数和能量并画出来
grade +=scale;
//如果处于双倍得分状态,再加一遍分数,并计数
if(doubleGrade) {
extraGrade += scale;
doubleGradeCount --;
if(doubleGradeCount < 0)
doubleGrade =false;
}
changeEnergy();
//如果处于双倍能量收集状态,再加一遍能量,并计数
if(doubleEnergy) {
changeEnergy();
doubleEnergyCount --;
if(doubleEnergyCount < 0)
doubleEnergy =false;
}
Paint paint4 =new Paint();
paint4.setTextSize(50);
paint4.setColor(Color.BLACK);
drawCanvas.drawText("分数:" + (grade+extraGrade), 0, 50, paint4);
paint4.setColor(Color.BLUE);
drawCanvas.drawText("能量:" + energy, 0, 100, paint4);
paint4.setColor(Color.RED);
if(doubleGrade)
drawCanvas.drawText("×2",300,50,paint4 );
if(doubleEnergy)
drawCanvas.drawText("×2",300,100,paint4 );
//当有子弹存在时画子弹
if(bullet){
Paint paint5 =new Paint();
paint5.setColor(Color.BLACK);
for(int i =0;i<bullets.size();i++){
drawCanvas.drawCircle(bullets.get(i).getX(),bullets.get(i).getY(),bullets.get(i).getRadius(),paint5);
bullets.get(i).shoot();
}
if(bullets.size() == 0)
bullet =false;
}
changeLocation();
Paint paint =new Paint();
//如果有护盾
if(shield){
shieldCount();
paint.setColor(Color.MAGENTA);
drawCanvas.drawCircle(dotX + dotWidth /2, dotY + dotWidth /2, dotWidth/2 +10,paint);
}
//如果有超级护盾
if(superShield){
superShieldCount();
paint.setColor(Color.MAGENTA);
drawCanvas.drawCircle(dotX + dotWidth /2, dotY + dotWidth /2,dist2,paint);
}
//更新己方小圆的位置并画出来
paint.setColor(Color.RED);
//如果处于无敌状态
if(invincible) {
paint.setColor(Color.MAGENTA);
invincibleCount();
}
RectF rect = new RectF(dotX, dotY, dotX + dotWidth, dotY + dotWidth);
drawCanvas.drawOval(rect, paint);
//如果有宝箱被打开,显示提示文字
if(openBox) {
boxCount();
paint.setColor(boxColor);
paint.setTextSize(30);
drawCanvas.drawText(boxString, dotX, dotY - 50, paint);
}
if(superBomb){
superBombCount();
Paint paint7 =new Paint();
paint7.setColor(Color.RED);
paint7.setTextSize(400);
drawCanvas.drawText("BOMB!!",0,screenHeight/2+200,paint7);
}
//更新计数值,如果计数到0则产生一个敌方小圆
fall();
//产生普通的敌人
if(fall == 0){
int location =generateEnemy();
Enemy enemy =enemyFactory.getEnemy(Enemy.common_enemy);
enemy.setState(road1+location*dist1+dist1/6,-dist1,dist1*2/3,location,enemySpeed);
enemy.changePad(dist1, dist2, road1 + dist1 / 6, road2 + dist2/6,screenHeight);
enemies.add(enemy);
}
//产生特殊的敌人
if(specialFall == 0) {
int type = generateSpecialEnemy(); //产生敌人的类型
int location = generateEnemy(); //产生敌人的位置
Enemy enemy =enemyFactory.getEnemy(type);
enemy.setState(road1+location*dist1+dist1/6,-dist1,dist1*2/3,location,enemySpeed);
enemy.changePad(dist1, dist2, road1 + dist1 / 6, road2 + dist2/6,screenHeight);
enemies.add(enemy);
}
if(treasureFall == 0){
int location = generateEnemy();
Enemy treasure =enemyFactory.getEnemy(Enemy.treasure_box);
treasure.setState(road1+location*dist1+dist1/6,-dist1,dist1*2/3,location,enemySpeed);
treasure.changePad(dist1, dist2, road1 + dist1 / 6, road2 + dist2 / 6, screenHeight);
enemies.add(treasure);
}
//画出所有敌人
float ex,ey; //一个圆左上横纵坐标
float etx,ety; //一个圆右下横纵坐标
int type;
Paint paint3 =new Paint();
for(int i =0;i<enemies.size();i++){
//让敌人靠近
enemies.get(i).fall();
ex =enemies.get(i).getX();
ey =enemies.get(i).getY();
etx =enemies.get(i).getTailX();
ety =enemies.get(i).getTailY();
type =enemies.get(i).getType();
RectF rect1 =new RectF(ex,ey,etx,ety);
switch (type){
//如果是宝箱,画出黄色的
case Enemy.treasure_box:
paint3.setColor(Color.YELLOW);
drawCanvas.drawRoundRect(rect1,10,10, paint3);
break;
//如果是普通敌人,画出蓝色的
case Enemy.common_enemy:
paint3.setColor(Color.BLUE);
drawCanvas.drawOval(rect1,paint3);
break;
//如果是Strong敌人,画出黑色的
case Enemy.strong_enemy:
paint3.setColor(Color.BLACK);
drawCanvas.drawOval(rect1,paint3);
break;
//如果是Weak敌人,画出灰色的
case Enemy.weak_enemy:
paint3.setColor(Color.GRAY);
drawCanvas.drawOval(rect1,paint3);
break;
//如果是Crazy敌人,画出浅蓝色的
case Enemy.crazy_enemy:
paint3.setColor(Color.CYAN);
drawCanvas.drawOval(rect1, paint3);
if(((CrazyEnemy)enemies.get(i)).crazy(dotX,dotY,dotWidth,dist2)){
((CrazyEnemy)enemies.get(i)).goCrazy(dotX,dotY,dotWidth,enemySpeed);
}
break;
default:
}
if(bullet){
float bx,by,br;
for(int j =0;j<bullets.size();j++){
br =bullets.get(j).getRadius();
bx =bullets.get(j).getX()-br;
by =bullets.get(j).getY()-br;
//如果有子弹撞到了敌人
if(enemies.get(i).crash(bx,by,br*2)){
bullets.remove(j);
if(type == Enemy.weak_enemy || type == Enemy.crazy_enemy) {
enemies.remove(i);
extraGrade += 100;
golds +=3;
}
}
}
}
//碰撞无效
boolean invalid =speedUp || superShield || superLaser || superUpspeed;
//如果有碰撞,但是不处在碰撞无效状态
if(enemies.get(i).crash(dotX, dotY, dotWidth) && !invalid) {
//如果是被crazy敌人撞到,损失200能量
if(type == Enemy.crazy_enemy){
if(!invincible) {
energy -= 200;
enemies.remove(i);
extraGrade += 50;
if (energy < 0)
energy = 0;
}
}
else if(type == Enemy.treasure_box){
Log.d("GameView","开宝箱");
int boxType =((TreasureBox)enemies.get(i)).openBox();
Log.d("GameView","宝箱被打开");
openBox(boxType);
Log.d("GameView","反应结束");
enemies.remove(i);
}
else {
//如果是被黑球砸中,或者没带护盾,游戏结束
if ((type == 1 || !shield) && !invincible)
gameover = true;
}
}
}
}
/**
* 用于判断crazy敌人有没有发疯
* @param ex 传入敌人的位置的横坐标
* @param ey 传入敌人的位置的纵坐标
* @param ed 传入敌人的直径
* @param eType 传入敌人的类型
* @return 返回敌人与己方的距离,如果距离小于dist2,则发疯
*/
private double crazing(float ex,float ey,float ed,float eType){
if(eType != Enemy.crazy_enemy)
return 0;
double d =Math.hypot((double) ((ex+ed/2)-(dotX + dotWidth /2)), (double) ((ey+ed/2) - (dotY + dotWidth /2)));
if(d < dotWidth /2+ed/2+dist2)
return d;
return 0;
}
/**
* 根据打开箱子类型做出相应的动作
*/
private void openBox(int boxtype){
Log.d("GameView","宝箱动作");
openBox =true;
boxCount =20;
switch (boxtype){
//开的是一个空宝箱,分数加50
case 1:
extraGrade +=50;
boxString ="空箱子";
boxColor =Color.BLACK;
break;
//开的是金币宝箱,金币加3
case 2:
golds +=3;
boxString ="金币 +3";
boxColor =Color.YELLOW;
break;
//开的是金币宝箱,金币加6
case 3:
golds +=6;
boxString ="金币 +6";
boxColor =Color.YELLOW;;
break;
//开的是金币宝箱,金币加9
case 4:
golds +=9;
boxString ="金币 +9";
boxColor =Color.YELLOW;
break;
//开的是金币宝箱,金币加12
case 5:
golds +=12;
boxString ="金币 +12";
boxColor =Color.YELLOW;
break;
//开的是金币宝箱,金币加15
case 6:
golds +=15;
boxString ="金币 +15";
boxColor =Color.YELLOW;
break;
//开的是能量宝箱,能量加50
case 7:
energy +=50;
boxString ="能量 +50";
boxColor =Color.BLUE;
break;
//开的是能量宝箱,能量加100
case 8:
energy +=100;
boxString ="能量 +100";
boxColor =Color.BLUE;
break;
//开的是能量宝箱,能量加150
case 9:
energy +=150;
boxString ="能量 +150";
boxColor =Color.BLUE;
break;
//开的是能量宝箱,能量加200
case 10:
energy +=200;
boxString ="能量 +200";
boxColor =Color.BLUE;
break;
//开的是道具宝箱,得到无敌
case 11:
invincible =true;
invincibleCount =invincibleTime;
boxString =" 无 敌";
boxColor =Color.GREEN;
break;
//开的是道具宝箱,得到双倍得分
case 12:
doubleGrade =true;
doubleGradeCount =doubleGradeTime;
boxString ="双倍得分";
boxColor =Color.GREEN;
break;
//开的是道具宝箱,得到助跑
case 13:
speedUp =true;
speedUpCount =speedUpTime;
sleepTime =sleepTime/2;
boxString =" 助 跑";
boxColor =Color.GREEN;
break;
//开的是道具宝箱,得到双倍能量收集
case 14:
doubleEnergy =true;
doubleEnergyCount =doubleEnergyTime;
boxString ="双倍能量";
boxColor =Color.GREEN;
break;
default:
}
}
/**
* 宝箱提示文字计数
*/
private void boxCount(){
boxCount--;
if(boxCount == 0)
openBox =false;
}
/**
* 无敌时间计数
*/
private void invincibleCount(){
invincibleCount --;
if(invincibleCount == 0)
invincible =false;
}
/**
* 助跑时间计数
*/
private void speedUpCount(){
speedUpCount --;
if(speedUpCount == 0) {
speedUp = false;
sleepTime =40;
shield =true;
shieldCount =40;
}
}
/**
* 护盾产生响应,能量足够则产生护盾,不够则不产生
* @return 能量够的话返回true,否则返回false
*/
public boolean generateShield(){
if(energy < 100)
return false;
if(shield || superShield || superUpspeed)
return false;
shield =true;
shieldCount =shieldTime;
energy -=100;
return true;
}
/**
* 护盾存在时间计数
*/
private void shieldCount(){
shieldCount --;
if(shieldCount == 0)
shield =false;
}
/**
* 子弹产生响应
* @return
*/
public boolean generateBullet(){
if(energy < bulletConsume)
return false;
if(superLaser)
return false;
energy -=bulletConsume;
Bullet bullet =new Bullet(dotX + dotWidth /2, dotY, dotWidth /8);
bullet.changePad(road1,road2,dist1,dist2,screenHeight);
bullets.add(bullet);
this.bullet =true;
return true;
}
/**
* 超级护盾产生响应
*/
public boolean generateSuperShield(){
if(energy < 300)
return false;
if(superShield)
return false;
superShield =true;
superShieldCount =superShieldTime;
energy -=300;
return true;
}
/**
* 超级护盾持续时间计数
*/
private void superShieldCount(){
superShieldCount --;
if(superShieldCount == 0)
superShield =false;
}
/**
* 判断指定敌人是否被超级护盾杀死
* @param ex
* @param ey
* @param ed
* @return 被杀死则返回true,否则返回false
*/
private boolean superShieldKill(float ex,float ey,float ed){
double d =Math.hypot((double) ((ex+ed/2)-(dotX + dotWidth /2)), (double) ((ey+ed/2) - (dotY + dotWidth /2)));
if(d < dotWidth /2+ed/2+dist2)
return true;
return false;
}
/**
* 超级激光产生响应
*/
public boolean generateSuperLaser(){
if(energy < 300)
return false;
if(superLaser)
return false;
superLaser =true;
superLaserCount =superLaserTime;
energy -=300;
return true;
}
/**
* 超级激光持续时间计数
*/
private void superLaserCount(){
superLaserCount --;
if(superLaserCount == 0)
superLaser =false;
}
/**
* 超级炸弹产生响应
*/
public boolean generateSuperBomb(){
if(energy < 300)
return false;
superBomb =true;
superBombCount =superBombTime;
energy -=300;
extraGrade +=enemies.size()*100;
golds +=enemies.size()*3;
enemies.clear();
//一段时间内不产生敌人
fall =50;
specialFall +=50;
treasureFall +=20;
return true;
}
/**
* 超级炸弹提示时间计时
*/
private void superBombCount(){
superBombCount --;
if(superBombCount == 0)
superBomb =false;
}
/**
* 超级加速产生响应
*/
public boolean generateSuperUpspeed(){
if(energy < 300)
return false;
if(superUpspeed)
return false;
superUpspeed =true;
superUpspeedCount =superUpspeedTime;
energy -=300;
sleepTime =10;
return true;
}
/**
* 超级加速持续时间计数
*/
private void superUpspeedCount(){
superUpspeedCount --;
if(superUpspeedCount == 0){
superUpspeed =false;
sleepTime =40;
shield =true;
shieldCount =40;
}
}
/**
* 能量增加
*/
private void changeEnergy(){
energiesCount --;
if(energiesCount < 0){
energy ++;
energiesCount =energyScale;
}
}
/**
* 下落计数,计数到0则产生一个新的敌人
*/
private void fall(){
fall --;
if(fall < 0)
fall =interval; //重新计数
//分数少于500之前不产生特殊敌人
if(grade < 500)
return;
specialFall --;
if(specialFall < 0)
specialFall =specialIntv;
//分数少于1500之前不产生宝箱
if(grade < 1500)
return;
treasureFall --;
if(treasureFall < 0)
treasureFall =treasure;
}
/**
* 改变己方小球的位置,并对左右最大位移距离加以限制
*/
private void changeLocation(){
dotX +=speed;
//不得超出最大右方限制距离
if(dotX > screenWidth- dotWidth -pad)
dotX =screenWidth- dotWidth -pad;
//不得超出最大左方限制距离
if(dotX < pad)
dotX =pad;
}
/**
* 当难度发生改变时调用
*/
private void changeHard(){
//若分数没有高于最大分数,难度不变
if(grade < maxScore)
return;
scale ++; //得分倍数增加
if(energyScale > 1)
energyScale =12/(scale-1); //能量收集速度加快
maxScore +=scale*500; //最大分数增加
if(interval > 20)
interval -= 5;
else if(interval > 10)
interval -= 3;
else if(interval > 5)
interval --; //产生一个新的敌人的时间间隔减少
treasure -=(scale-3)*2;
enemySpeed +=2; //敌人速度增加
}
/**
* 随机在一条道上产生新的敌人
* @return 返回敌人产生在哪一条道上
*/
private int generateEnemy(){
return (int)(Math.random()*5);
}
private int generateSpecialEnemy(){
return (int)(Math.random()*Enemy.specialAmount) +1;
}
/**
* 游戏结束时调用
*/
private void gameover(){
if(!first)
return;
first =false;
if(gameoverListener != null)
gameoverListener.onGameover(this);
}
/**
* 游戏暂停时调用
*/
public void gamePause(){
pause =true;
}
/**
* 游戏继续时调用
*/
public void gameContinue(){
pause =false;
}
/**
* 游戏退出时调用
*/
public void gameExit(){
running =false;
}
public void setOnGameoverListener(OnGameoverListener gl){
gameoverListener =gl;
}
@Override
public void surfaceCreated(SurfaceHolder holder) {
running =true;
new RenderThread().start();
}
@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
}
@Override
public void surfaceDestroyed(SurfaceHolder holder) {
running =false;
}
@Override
public void onAccuracyChanged(Sensor sensor, int accuracy) {
}
/**
* 重力感应发生改变时调用
* @param event
*/
@Override
public void onSensorChanged(SensorEvent event) {
speed =(int)(event.values[SensorManager.DATA_Y]*6);
}
/**
* 对view进行测量
* @param widthMeasureSpec
* @param heightMeasureSpec
*/
public void onMeasure(int widthMeasureSpec,int heightMeasureSpec){
super.onMeasure(widthMeasureSpec,heightMeasureSpec);
int mWidth =MeasureSpec.getSize(widthMeasureSpec);
int mHeight =MeasureSpec.getSize(heightMeasureSpec);
int widthMode =MeasureSpec.getMode(widthMeasureSpec);
int heightMode =MeasureSpec.getMode(heightMeasureSpec);
if(widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension((int)screenWidth,(int)screenHeight);
else if(widthMode == MeasureSpec.AT_MOST)
setMeasuredDimension((int)screenWidth,mHeight);
else if(heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(mWidth,(int)screenHeight);
}
/**
* 绘图线程
*/
private class RenderThread extends Thread implements Runnable{
public void run(){
Canvas canvas =null;
while (running){
try{
sleep(sleepTime);
canvas =surfaceHolder.lockCanvas();
synchronized (surfaceHolder){
draw(); //双缓冲消除闪烁
render(canvas);
}
}catch (Exception e){}
finally {
if(canvas != null)
surfaceHolder.unlockCanvasAndPost(canvas);
}
}
drawBitmap.recycle();
}
}
//定义自定义监听器接口
public interface OnGameoverListener{
void onGameover(GameView gv);
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/view/ListView.java
package com.example.asus.cleardots.view;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.View;
import android.view.WindowManager;
import com.example.asus.cleardots.data.GradeBean;
import com.example.asus.cleardots.model.ColorLibrary;
/**
* Created by ASUS on 2017/2/1.
*/
public class ListView extends View {
private final int LENGHT =10;
private ColorLibrary colors;
private GradeBean gradeBean;
private float scale; //屏幕像素密度
private int screenWidth;
private int screenHeight;
private int rankingWidth; //要显示的数字大小
private int itemWidth; //分数项显示宽度
private int itemHeight; //分数项显示高度
private int dotWidth; //要显示一个小球的宽度
private int[] grades;
public ListView(Context context){
this(context,null,0);
}
public ListView(Context context,AttributeSet attrs){
this(context,attrs,0);
}
public ListView(Context context,AttributeSet attrs,int defstyle){
super(context, attrs, defstyle);
scale =context.getResources().getDisplayMetrics().density;
WindowManager wm =(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
screenWidth =wm.getDefaultDisplay().getWidth()-(int)(40*scale+0.5f);
screenHeight =wm.getDefaultDisplay().getHeight()-(int)(40*scale+0.5f);
rankingWidth =screenWidth/9;
itemWidth =screenWidth-rankingWidth;
itemHeight =screenHeight/11;
dotWidth =itemWidth/10;
gradeBean =new GradeBean(context);
colors =new ColorLibrary(context);
grades =new int[LENGHT];
gradeBean.query();
}
public void onDraw(Canvas canvas){
Paint paint =new Paint();
for(int i =0;i<LENGHT;i++){
paint.setColor(colors.getColor(i + 12));
paint.setTextSize(80);
if(i == 9)
canvas.drawText(String.valueOf(i+1), -40, i *itemHeight+rankingWidth, paint); //画数字
else
canvas.drawText(String.valueOf(i+1), 0, i *itemHeight+rankingWidth, paint); //画数字
grades =gradeBean.getAgrade(i);
for(int j =0;j<LENGHT;j++){
RectF rect =new RectF(rankingWidth+j* dotWidth,i*itemHeight,
rankingWidth+(j+1)* dotWidth,i*itemHeight+ dotWidth);
paint.setColor(colors.getColor(grades[j]));
canvas.drawOval(rect,paint);
}
}
}
public void onMeasure(int widthMeasureSpec,int heightMeasureSpec){
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int mWidth =MeasureSpec.getSize(widthMeasureSpec);
int mHeight =MeasureSpec.getSize(heightMeasureSpec);
int widthMode =MeasureSpec.getMode(widthMeasureSpec);
int heightMode =MeasureSpec.getMode(heightMeasureSpec);
if(widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,screenHeight);
else if(widthMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,mHeight);
else if(heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(mWidth,screenHeight);
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/activity/GameActivity.java
package com.example.asus.freerun.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.MotionEvent;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
import com.example.asus.freerun.R;
import com.example.asus.freerun.data.EquipmentBean;
import com.example.asus.freerun.view.GameView;
/**
* Created by ASUS on 2017/2/3.
*/
public class GameActivity extends Activity {
private GameView gameView;
private Button superShield;
private Button superUpspeed;
private Button superLaser;
private Button superBomb;
private TextView superShieldAmount;
private TextView superUpspeedAmount;
private TextView superLaserAmount;
private TextView superBombAmount;
private EquipmentBean equipmentBean;
private int shieldAmount;
private int upspeedAmount;
private int laserAmount;
private int bombAmount;
private boolean isChange =false;
public void onCreate(Bundle bundle){
super.onCreate(bundle);
setContentView(R.layout.activity_game);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
gameView =(GameView)findViewById(R.id.gameView);
superShield =(Button)findViewById(R.id.shield);
superUpspeed =(Button)findViewById(R.id.upspeed);
superLaser =(Button)findViewById(R.id.laser);
superBomb =(Button)findViewById(R.id.bomb);
superShieldAmount =(TextView)findViewById(R.id.shieldAmount);
superUpspeedAmount =(TextView)findViewById(R.id.upspeedAmount);
superLaserAmount =(TextView)findViewById(R.id.laserAmount);
superBombAmount =(TextView)findViewById(R.id.bombAmount);
equipmentBean =new EquipmentBean(this);
equipmentBean.query();
shieldAmount =equipmentBean.getSuperShieldAmount();
upspeedAmount =equipmentBean.getSuperUpspeedAmount();
laserAmount =equipmentBean.getSuperLaserAmount();
bombAmount =equipmentBean.getSuperBombAmount();
superShieldAmount.setText(String.valueOf(shieldAmount));
superUpspeedAmount.setText(String.valueOf(upspeedAmount));
superLaserAmount.setText(String.valueOf(laserAmount));
superBombAmount.setText(String.valueOf(bombAmount));
superShield.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(shieldAmount < 1)
return;
if(!gameView.generateSuperShield())
return;
shieldAmount --;
superShieldAmount.setText(String.valueOf(shieldAmount));
isChange =true;
}
});
superUpspeed.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(upspeedAmount < 1)
return;
if(!gameView.generateSuperUpspeed())
return;
upspeedAmount --;
superUpspeedAmount.setText(String.valueOf(upspeedAmount));
isChange =true;
}
});
superLaser.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// gameView.generateSuperLaser();
}
});
superBomb.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(bombAmount < 1)
return;
if(!gameView.generateSuperBomb())
return;
bombAmount --;
superBombAmount.setText(String.valueOf(bombAmount));
isChange =true;
}
});
gameView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
float x =event.getX();
if(event.getAction() == MotionEvent.ACTION_DOWN) {
if (x < gameView.getScreenWidth() / 2 - 50)
return gameView.generateShield();
if (x > gameView.getScreenWidth() / 2 + 50)
return gameView.generateBullet();
}
return false;
}
});
gameView.setOnGameoverListener(new GameView.OnGameoverListener() {
@Override
public void onGameover(GameView gv) {
Intent intent =new Intent(GameActivity.this,GameoverActivity.class);
intent.putExtra("grade",gameView.getGrade());
intent.putExtra("golds",gameView.getGolds());
startActivityForResult(intent,1);
updateDataBase();
}
});
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case 1:
if (resultCode == RESULT_OK) {
gameView.init();
isChange =false;
}
else if(resultCode == RESULT_CANCELED) {
gameView.gameExit();
finish();
}
break;
default:
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.game_menu,menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()){
case R.id.gameContinue:
gameView.gameContinue();
break;
case R.id.gameReastart:
gameView.init();
break;
case R.id.gameExit:
gameView.gameExit();
finish();
break;
}
return true;
}
@Override
public void onBackPressed() {
gameView.gamePause();
openOptionsMenu();
}
private void updateDataBase(){
if(!isChange)
return;
isChange =false;
equipmentBean.setSuperShieldAmount(shieldAmount);
equipmentBean.setSuperUpspeedAmount(upspeedAmount);
equipmentBean.setSuperLaserAmount(laserAmount);
equipmentBean.setSuperBombAmount(bombAmount);
equipmentBean.insert();
}
@Override
protected void onDestroy() {
super.onDestroy();
updateDataBase();
}
}
<file_sep>/Reversi_2.0/app/src/main/java/com/hjchengfeng/reversi_20/activity/PvEActivity.java
package com.hjchengfeng.reversi_20.activity;
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.hjchengfeng.reversi_20.Model.Coord;
import com.hjchengfeng.reversi_20.Model.Robot2;
import com.hjchengfeng.reversi_20.R;
import com.hjchengfeng.reversi_20.view.ReversiView;
/**
* Created by ASUS on 2017/1/11.
*/
public class PvEActivity extends Activity{
private Robot2 robot;
private ReversiView reversiView;
private ImageView actor;
private ImageView arrow;
private TextView black;
private TextView blackText;
private TextView white;
private TextView whiteText;
private Button newgame;
private Button regret;
private Button comeback;
private int action =0; //记录玩家的棋子颜色,初始黑棋
private int acting =0; //记录正在下的棋子的颜色,初始黑棋
public void onCreate(Bundle bundle){
super.onCreate(bundle);
setContentView(R.layout.activity_game1);
robot =new Robot2();
reversiView =(ReversiView)findViewById(R.id.reversiView);
actor =(ImageView)findViewById(R.id.actor);
arrow =(ImageView)findViewById(R.id.arrow);
black =(TextView)findViewById(R.id.black_amount);
blackText =(TextView)findViewById(R.id.black_text);
white =(TextView)findViewById(R.id.white_amount);
whiteText =(TextView)findViewById(R.id.white_text);
newgame =(Button)findViewById(R.id.newgame);
regret =(Button)findViewById(R.id.regret);
comeback =(Button)findViewById(R.id.comeback);
blackText.setText("玩家");
whiteText.setText("电脑");
//新局按钮被按下
newgame.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
reversiView.init(); //棋盘重新初始化
robot.init();
acting =0; //行动者换为黑棋
}
});
//返回按钮被按下
comeback.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
PvEActivity.this.finish();
}
});
regret.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
reversiView.regret();
robot.regret();
setText();
}
});
reversiView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
//得到点击坐标
int x =(int)event.getX()/reversiView.getcLenght();
int y =(int)event.getY()/reversiView.getcLenght();
boolean eff =reversiView.action(x,y, action); //判断点击是否有效
//有效
if(eff){
setText();
if(reversiView.getGameover()) {
gameover();
return true;
}
actChange();
robot.putIn(x, y, action);
if(reversiView.actable(robot.getAction()) == false) { //如果电脑无子可下
disactable();
actChange();
if(reversiView.actable(action) == false) { //如果玩家也无子可下
reversiView.gameover(); //游戏结束
gameover();
}
return true;
}
robotAct();
//因为电脑下子之后不能直接改变最终棋局的棋子数,
// 所以如果最后一步是电脑下,棋子总数为63则说明棋盘被下满
if(reversiView.getBlackAmount()+reversiView.getWhiteAmount() == 63) {
gameover();
return true;
}
return true;
}
//无效
else
return false;
}
});
}
private void robotAct(){
Coord coord;
while(true) {
coord= robot.getResult();
if(coord != null)
break;
}
reversiView.robotAct(coord.x, coord.y);
robot.putIn(coord.x, coord.y, robot.getAction());
actChange();
// System.out.println("电脑下子:"+coord.x+" "+coord.y);
}
//改变act的值,轮到另一个人行动
private void actChange(){
if(acting ==0)
acting =10;
else
acting =0;
imageChange();
}
//当存在有一方无子可下的时候
private void disactable(){
if(acting == 0)
Toast.makeText(PvEActivity.this, "黑棋无子可下!", Toast.LENGTH_SHORT).show();
else
Toast.makeText(PvEActivity.this,"白棋无子可下!",Toast.LENGTH_SHORT).show();
}
//换一张图片,应该与行动对应
private void imageChange(){
//轮到黑棋行动
if(acting == 0){
arrow.setImageResource(R.drawable.zuojiantou);
actor.setImageResource(R.drawable.black);
}
//轮到白棋行动
else{
arrow.setImageResource(R.drawable.youjiantou);
actor.setImageResource(R.drawable.white);
}
}
//设置棋子数目
private void setText(){
black.setText(getAmountText(reversiView.getBlackAmount()));
white.setText(getAmountText(reversiView.getWhiteAmount()));
}
//用来将数字换成字符
private String getAmountText(int amount){
String text ="";
text ="×"+String.valueOf(amount);
return text;
}
private void gameover(){
if(reversiView.getWinner() == action)
Toast.makeText(PvEActivity.this,"你赢了!",Toast.LENGTH_SHORT).show();
else
Toast.makeText(PvEActivity.this,"电脑赢了!",Toast.LENGTH_SHORT).show();
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/activity/GameActivity.java
package com.example.asus.cleardots.activity;
import android.app.Activity;
import android.graphics.Canvas;
import android.os.Bundle;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
import com.example.asus.cleardots.R;
import com.example.asus.cleardots.data.GradeBean;
import com.example.asus.cleardots.view.GameView;
import com.example.asus.cleardots.view.GradeView;
/**
* Created by ASUS on 2017/1/24.
*/
public class GameActivity extends Activity{
private GradeBean gradeBean;
private GameView gameView;
private GradeView gradeView;
private Button newgame;
private Button remind;
private Button back;
public void onCreate(Bundle bundle){
super.onCreate(bundle);
setContentView(R.layout.activity_game);
gradeBean =new GradeBean(this);
gameView =(GameView)findViewById(R.id.gameView);
gradeView =(GradeView)findViewById(R.id.gradeView);
newgame =(Button)findViewById(R.id.newgame);
remind =(Button)findViewById(R.id.remind);
back =(Button)findViewById(R.id.back);
newgame.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
updateGrade(gameView.getScore());
gameView.init();
gradeView.init();
gradeView.invalidate();
gradeView.draw(new Canvas());
}
});
remind.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
boolean remind =gameView.remind();
if(!remind) {
gameovers();
}
}
});
back.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
updateGrade(gameView.getScore());
finish();
}
});
gameView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
int x =(int)event.getX();
int y =(int)event.getY();
if(event.getAction() == MotionEvent.ACTION_DOWN){
boolean b =gameView.down(x,y);
return b;
}
else if(event.getAction() == MotionEvent.ACTION_MOVE){
boolean b =gameView.move(x,y);
return b;
}
else if(event.getAction() == MotionEvent.ACTION_UP){
gameView.up();
gradeView.changeGrade(gameView.getScore());
gradeView.invalidate();
gradeView.draw(new Canvas());
return true;
}
else
return false;
}
});
gameView.setOnGameoverListener(new GameView.OnGameoverListener() {
@Override
public void gameover() {
Log.i("GameActivity","gameover");
gameovers();
}
});
}
private void gameovers(){
Toast.makeText(this,"游戏结束!",Toast.LENGTH_SHORT).show();
}
/**
* 游戏结束时更新排行榜
* @param grade
*/
private void updateGrade(int grade){
if(grade == 0)
return;
gradeBean.setGrade(grade); //先更改grade的值
gradeBean.insert(); //再判断插入
}
}
<file_sep>/Reversi_2.0/app/src/main/java/com/hjchengfeng/reversi_20/activity/PvPActivity.java
package com.hjchengfeng.reversi_20.activity;
import android.app.Activity;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
import com.hjchengfeng.reversi_20.R;
import com.hjchengfeng.reversi_20.view.ReversiView;
/**
* Created by ASUS on 2016/9/5.
*/
public class PvPActivity extends Activity{
private ReversiView reversiView;
private ImageView actor;
private ImageView arrow;
private TextView black;
private TextView white;
private Button newgame;
private Button regret;
private Button comeback;
private int act =0; //记录当前行动的是黑棋还是白棋,初始黑棋
public void onCreate(Bundle bundle){
super.onCreate(bundle);
setContentView(R.layout.activity_game1);
reversiView =(ReversiView)findViewById(R.id.reversiView);
actor =(ImageView)findViewById(R.id.actor);
arrow =(ImageView)findViewById(R.id.arrow);
black =(TextView)findViewById(R.id.black_amount);
white =(TextView)findViewById(R.id.white_amount);
newgame =(Button)findViewById(R.id.newgame);
regret =(Button)findViewById(R.id.regret);
comeback =(Button)findViewById(R.id.comeback);
//新局按钮被按下
newgame.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
reversiView.init(); //棋盘重新初始化
act =0; //行动者换为黑棋
}
});
//返回按钮被按下
comeback.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Intent intent =new Intent(PvPActivity.this,MainActivity.class);
// startActivity(intent);
PvPActivity.this.finish();
}
});
regret.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(reversiView.regret()) {
actChange();
setText();
}
}
});
reversiView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
//得到点击坐标
int x =(int)event.getX()/reversiView.getcLenght();
int y =(int)event.getY()/reversiView.getcLenght();
boolean eff =reversiView.action(x,y,act); //判断点击是否有效
//有效
if(eff){
setText();
if(reversiView.getGameover()) {
gameover();
return true;
}
actChange(); //轮到另一个人行动了
if(reversiView.actable(act) == false) { //如果下一个棋手无子可下
disactable();
actChange();
if(reversiView.actable(act) == false) { //如果两个人都无子可下
reversiView.gameover(); //游戏结束
gameover();
return true;
}
}
return true;
}
//无效
else
return false;
}
});
}
//改变act的值,轮到另一个人行动
private void actChange(){
if(act==0)
act =10;
else
act =0;
imageChange();
}
//当存在有一方无子可下的时候
private void disactable(){
if(act == 0)
Toast.makeText(PvPActivity.this,"黑棋无子可下!",Toast.LENGTH_SHORT).show();
else
Toast.makeText(PvPActivity.this,"白棋无子可下!",Toast.LENGTH_SHORT).show();
}
//换一张图片,应该与行动对应
private void imageChange(){
//轮到黑棋行动
if(act == 0){
arrow.setImageResource(R.drawable.zuojiantou);
actor.setImageResource(R.drawable.black);
}
//轮到白棋行动
else{
arrow.setImageResource(R.drawable.youjiantou);
actor.setImageResource(R.drawable.white);
}
}
//设置棋子数目
private void setText(){
black.setText(getAmountText(reversiView.getBlackAmount()));
white.setText(getAmountText(reversiView.getWhiteAmount()));
}
//用来将数字换成字符
private String getAmountText(int amount){
String text ="";
text ="×"+String.valueOf(amount);
return text;
}
private void gameover(){
if(reversiView.getWinner() == 0)
Toast.makeText(PvPActivity.this,"黑棋赢了!",Toast.LENGTH_SHORT).show();
else
Toast.makeText(PvPActivity.this,"白棋赢了!",Toast.LENGTH_SHORT).show();
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/view/GameView.java
package com.example.asus.cleardots.view;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Rect;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.WindowManager;
import com.example.asus.cleardots.model.ColorLibrary;
import com.example.asus.cleardots.model.Dot;
import com.example.asus.cleardots.model.DotsBoard;
import java.util.ArrayList;
import java.util.List;
/**
* Created by ASUS on 2017/1/24.
*/
public class GameView extends SurfaceView implements SurfaceHolder.Callback{
private OnGameoverListener gameoverListener;
private boolean first =true; //标记游戏是否第一次结束
private ColorLibrary colors;
private DotsBoard board; //点点盘的实例化
private SurfaceHolder holder;
private boolean running; //监视线程的运行
private int screenWidth; //屏幕的宽度
private int dotsLenght; //一个点在屏幕上显示的宽度
private float scale; //屏幕像素密度
private int pad =5; //点与点之间的间距
private List<Dot> dots; //用来存放被吃掉的点的集合
private int dotColor =0; //用来记录选中的点的颜色
private boolean remind;
private boolean isFall; //标记是否有下落的点
private int fall; //用来记录下落的距离
private int fallY; //实际用来下落的距离
private int dist; //每次下落的距离
private Path path; //手指划过的路径
private Path lastRect; //记录最后划过的路
private int startX; //开始按下的点的横坐标
private int startY; //开始按下的点的纵坐标
private int endX; //当前触点位置的横坐标
private int endY; //当前触点位置的纵坐标
private boolean drawPath =false; //标记是否要把路径画出来
private int pad1 =5; //显示路径的矩形半径
private int pad2; //用于计算点的圆心
public GameView(Context context){
this(context,null,0);
}
public GameView(Context context,AttributeSet attrs){
this(context, attrs, 0);
}
public GameView(Context context,AttributeSet attrs,int defstyle){
super(context, attrs, defstyle);
holder =getHolder();
surfaceCreated(holder);
colors =new ColorLibrary(context);
board =new DotsBoard();
dots =new ArrayList<Dot>();
path =new Path();
lastRect =new Path();
scale =context.getResources().getDisplayMetrics().density;
WindowManager wm =(WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
screenWidth =wm.getDefaultDisplay().getWidth();
dotsLenght =screenWidth/board.getLENGHT();
dist = dotsLenght /3;
pad2 = dotsLenght /2;
}
/**
* 画图函数
* @param canvas
*/
public void render(Canvas canvas){
Paint paint1 =new Paint();
paint1.setColor(colors.getColor(11));
canvas.drawRect(0, 0, screenWidth, screenWidth, paint1);
//提示可消除的点的位置
if(remind) {
Dot rDot = board.getRemindDot();
Paint paint2 =new Paint();
paint2.setColor(Color.WHITE);
Rect rect =new Rect(rDot.x* dotsLenght,rDot.y* dotsLenght,(rDot.x+1)* dotsLenght,(rDot.y+1)* dotsLenght);
canvas.drawRect(rect,paint2);
}
//把画过的路径画出来
if(drawPath){
Paint paint3 =new Paint();
paint3.setColor(Color.RED);
canvas.drawPath(path, paint3); //先画被选中的点
canvas.drawPath(lastRect,paint3); //再画未选中点的路径
}
//判断是否有空位置,有则下落
isFall =false;
List<Dot> emptyDots =new ArrayList<Dot>(); //用来暂存所有空点
for(int i =0;i<board.getLENGHT();i++){
for(int j =0;j<board.getLENGHT();j++){
//如果盘上有一个空位置,说明有下落
if(board.getValue(i,j) == 0) {
Dot dot =new Dot(i,j);
emptyDots.add(dot);
isFall =true;
}
}
}
//画出所有的点
Paint paint =new Paint();
RectF oval;
for(int i =0;i<board.getLENGHT();i++){
for(int j =0;j<board.getLENGHT();j++){
if(board.getValue(i,j) == 0)
continue;
fallY =0;
//判断这一点是否是下落的点,如果是,增加下落偏移值
for(int k = 0; k< emptyDots.size(); k++){
if(emptyDots.get(k).x == i && emptyDots.get(k).y > j) {
fallY =fall;
break;
}
}
paint.setColor(colors.getColor(board.getValue(i, j)));
oval =new RectF(i* dotsLenght +pad,j* dotsLenght +pad+fallY,(i+1)* dotsLenght -pad,(j+1)* dotsLenght -pad+fallY);
canvas.drawOval(oval,paint);
}
}
//判断
if(isFall)
fall();
board.gameover();
if(board.getGameover())
gameover();
}
/**
* 初始化
*/
public void init(){
first =true;
fall =0;
board.init();
}
/**
* 判断是否下落了一个位置
*/
private void fall(){
//设置3像素的计算误差,
//如果下落的距离与小球的大小差别小于这个值,
//说明下落了一个格子
//通知棋盘进行下落更新
if(Math.abs(fall- dotsLenght) < 3){
fall =0;
board.fall();
}
fall +=dist;
}
/**
* 提示游戏结束或者指出可以消掉的点
* @return 游戏结束返回false,否则返回true
*/
public boolean remind(){
if(isFall)
return true;
if(board.getGameover())
return false;
remind =true;
return true;
}
public int getScore(){
return board.getScore();
}
public boolean getGameover(){
return board.getGameover();
}
public boolean down(int x,int y){
if(!isClickOnDot(x,y))
return false;
int px =x/ dotsLenght;
int py =y/ dotsLenght;
startX =px* dotsLenght +pad2;
startY =py* dotsLenght +pad2;
endX =startX;
endY =startY;
Dot dot =new Dot(px,py);
dots.add(dot);
dotColor =board.getValue(px,py);
drawPath =true;
return true;
}
public boolean move(int x,int y){
if(x >= screenWidth || y >= screenWidth)
return false;
lastRect.reset();
if(isClickOnDot(x,y)){
int px =x/ dotsLenght;
int py =y/ dotsLenght;
if(board.getValue(px,py) != dotColor) {
dots.clear();
drawPath =false;
path.reset();
lastRect.reset();
return false;
}
endX =px* dotsLenght +pad2;
endY =py* dotsLenght +pad2;
if(effective(px,py)){
Dot dot =new Dot(px,py);
dots.add(dot);
changPath();
startX =endX;
startY =endY;
}
}
else {
endX =x;
endY =y;
changeLastRect();
}
return true;
}
public void up(){
if(dots.size() >= 3) {
board.eat(dots);
remind =false;
}
dots.clear();
drawPath =false;
path.reset();
lastRect.reset();
}
/**
* 查看是否点击在点上
* @param x 点击位置的横坐标
* @param y 点击位置的纵坐标
* @return 如果点击到点上,返回true,否则返回false
*/
private boolean isClickOnDot(int x, int y){
int px =x% dotsLenght;
int py =y% dotsLenght;
if(px>pad && px< dotsLenght -pad && py>pad && py< dotsLenght -pad)
return true;
return false;
}
/**
* 判断选中的点是否是一个有效点
* 它是否与最后一个点相邻,它是否未被选中过,它是否和选中的点颜色相同
* @param x 点击处的横坐标
* @param y 点击处的纵坐标
* @return 如果有效,返回true,否则返回false
*/
private boolean effective(int x,int y){
if(dots.size() == 0)
return false;
for(int i = 0; i< dots.size(); i++){
if(dots.get(i).x == x && dots.get(i).y == y)
return false;
}
Dot dot = dots.get(dots.size()-1);
if((dot.x == x && Math.abs(dot.y-y) ==1)||(Math.abs(dot.x-x) == 1 && dot.y == y))
return true;
return false;
}
/**
* 用来改变划过的路径
*/
private void changPath(){
RectF rect;
// System.out.println("startX,Y=("+startX+","+startY+");endX,Y=("+endX+","+endY+")");
//往下滑
if((startX == endX) && (startY < endY))
rect = new RectF(startX - pad1, startY - pad1, endX + pad1, endY + pad1);
//往上滑
else if((startX == endX) && (startY > endY))
rect = new RectF(endX - pad1, endY - pad1,startX + pad1 ,startY + pad1 );
//往左滑
else if((startX > endX) && (startY == endY))
rect = new RectF(endX - pad1,endY - pad1 ,startX + pad1 , startY + pad1);
//往右滑
else if((startX < endX) && (startY == endY))
rect = new RectF(startX - pad1, startY - pad1, endX + pad1, endY + pad1);
else {
return;
}
path.addRect(rect, Path.Direction.CW);
}
/**
* 记录最后划过的一段
*/
private void changeLastRect(){
if(startX > endX){
if(startY > endY){
lastRect.moveTo(startX,startY+pad1);
lastRect.lineTo(startX+pad1,startY);
lastRect.lineTo(endX,endY-pad1);
lastRect.lineTo(endX-pad1,endY);
}
else{
lastRect.moveTo(startX,startY-pad1);
lastRect.lineTo(startX+pad1,startY);
lastRect.lineTo(endX,endY+pad1);
lastRect.lineTo(endX-pad1,endY);
}
}
else{
if(startY > endY){
lastRect.moveTo(startX-pad1,startY);
lastRect.lineTo(startX,startY+pad1);
lastRect.lineTo(endX+pad1,endY);
lastRect.lineTo(endX,endY-pad1);
}
else{
lastRect.moveTo(startX-pad1,startY);
lastRect.lineTo(startX,startY-pad1);
lastRect.lineTo(endX+pad1,endY);
lastRect.lineTo(endX,endY+pad1);
}
}
lastRect.setFillType(Path.FillType.EVEN_ODD);
}
/**
* 游戏结束时触发监听器
*/
private void gameover(){
if(!first)
return;
first =false;
gameoverListener.gameover();
}
/**
*设置游戏结束监听器
* @param onGameoverListener
*/
public void setOnGameoverListener(OnGameoverListener onGameoverListener){
gameoverListener =onGameoverListener;
}
public void onMeasure(int widthMeasureSpec,int heightMeasureSpec){
super.onMeasure(widthMeasureSpec,heightMeasureSpec);
int mWidth =MeasureSpec.getSize(widthMeasureSpec);
int mHeight =MeasureSpec.getSize(heightMeasureSpec);
int widthMode =MeasureSpec.getMode(widthMeasureSpec);
int heightMode =MeasureSpec.getMode(heightMeasureSpec);
if(widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,screenWidth);
else if(widthMode == MeasureSpec.AT_MOST)
setMeasuredDimension(screenWidth,mHeight);
else if(heightMode == MeasureSpec.AT_MOST)
setMeasuredDimension(mWidth,screenWidth);
}
@Override
public void surfaceCreated(SurfaceHolder holder) {
running =true;
new GameThread().start();
}
@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
}
@Override
public void surfaceDestroyed(SurfaceHolder holder) {
running =false;
}
class GameThread extends Thread implements Runnable{
public void run(){
Canvas canvas =null;
while(running){
try{
sleep(60);
canvas =holder.lockCanvas();
synchronized (holder){
render(canvas);
}
}catch (Exception e){}
finally {
if(canvas != null)
holder.unlockCanvasAndPost(canvas);
}
}
}
}
public interface OnGameoverListener{
void gameover();
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/activity/MainActivity.java
package com.example.asus.freerun.activity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import com.example.asus.freerun.R;
public class MainActivity extends Activity {
private Button start;
private Button upgrade;
private Button shop;
private Button exit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
start =(Button)findViewById(R.id.start);
upgrade =(Button)findViewById(R.id.upgrade);
shop =(Button)findViewById(R.id.shop);
exit =(Button)findViewById(R.id.exit);
start.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent(MainActivity.this,GameActivity.class);
startActivity(intent);
}
});
upgrade.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent(MainActivity.this,UpgradeActivity.class);
startActivity(intent);
}
});
shop.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent =new Intent(MainActivity.this,ShopActivity.class);
startActivity(intent);
}
});
exit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/data/InitiateBean.java
package com.example.asus.freerun.data;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
/**
* Created by ASUS on 2017/2/6.
*/
public class InitiateBean {
private DbHelper dbHelper;
private SQLiteDatabase db;
private int initiateEnerge =0;
private int shieldTime =0;
private int bulletEnerge =0;
public InitiateBean(Context context){
dbHelper =new DbHelper(context,"RunData.db",null,dbHelper.version);
}
public int getInitiateEnerge(){
return initiateEnerge;
}
public void setInitiateEnerge(int initiateEnerge){
this.initiateEnerge =initiateEnerge;
}
public int getShieldTime(){
return shieldTime;
}
public void setShieldTime(int shieldTime){
this.shieldTime =shieldTime;
}
public int getBulletEnerge(){
return bulletEnerge;
}
public void setBulletEnerge(int bulletEnerge){
this.bulletEnerge =bulletEnerge;
}
private void init(){
initiateEnerge =200;
shieldTime =20;
bulletEnerge =100;
}
public void query(){
db =dbHelper.getReadableDatabase();
Cursor cursor =query(db);
if(cursor.getCount() != 0) {
cursor.moveToFirst();
initiateEnerge = cursor.getInt(1);
shieldTime = cursor.getInt(2);
bulletEnerge = cursor.getInt(3);
}
else
init();
db.close();
}
private Cursor query(SQLiteDatabase db){
Cursor cursor =db.query("Initiate", null, null, null, null, null, null);
return cursor;
}
public void insert(){
db =dbHelper.getWritableDatabase();
insert(db);
db.close();
}
private void insert(SQLiteDatabase db){
db.delete("Initiate", null, null);
ContentValues value =new ContentValues();
value.put("initiateEnerge", initiateEnerge);
value.put("shieldTime", shieldTime);
value.put("bulletEnerge", bulletEnerge);
db.insert("Initiate",null,value);
}
}
<file_sep>/Reversi_2.0/app/src/main/java/com/hjchengfeng/reversi_20/Model/Robot2.java
package com.hjchengfeng.reversi_20.Model;
import java.util.ArrayList;
import java.util.List;
/**
* Created by ASUS on 2017/1/31.
*/
public class Robot2 {
private final int LENGHT =8;
private final int BLACK =0;
private final int WHITE =10;
private final int EMPTY =20;
private final int infinity =500; //定义极大极小值搜索的无穷大
private int action; //用来记录电脑的棋子颜色
private int[][] board;
private int[][] mboard;
private boolean ready =false; //标记结果是否已经准备好
private Coord result;
private int searchDepth =4; //极大极小值搜索深度
int time =0;
int cut =0;
public Robot2(){
action =WHITE;
board =new int[LENGHT][LENGHT];
mboard =new int[LENGHT][LENGHT];
result =new Coord(4,4);
init();
}
//初始化棋盘
public void init(){
for(int i=0;i<LENGHT;i++){
for(int j=0;j<LENGHT;j++){
board[i][j]= EMPTY;
mboard[i][j]= EMPTY;
}
}
board[3][3] =BLACK;
board[4][4] =BLACK;
board[3][4] =WHITE;
board[4][3] =WHITE;
mboard[3][3] =BLACK;
mboard[4][4] =BLACK;
mboard[3][4] =WHITE;
mboard[4][3] =WHITE;
}
public int getAction(){
return action;
}
public void setAction(int action){
this.action =action;
}
public Coord getResult(){
if(ready) {
ready =false;
return result;
}
return null;
}
//传入玩家下子的位置
public void putIn(int x,int y,int value){
int ax,ay;
List<Coord> coords =new ArrayList<Coord>();
Coord coord =new Coord(0,0);
ready =false;
int[][] sboard =new int[LENGHT][LENGHT];
//1、记录棋盘
if(value == otherColor(action))
copyBoard(mboard, board);
//2、更新棋盘
coords =search(x,y,value,board);
board[x][y] = value; //放子
board =eat(coords, board); //吃子
if(value == action)
return;
//3、极大极小值搜索
copyBoard(sboard,board);
// result =getBestMove(sboard);
result =maxSearch(searchDepth,-infinity,infinity,coord,sboard).coord;
ready =true;
}
//玩家悔棋
public void regret(){
copyBoard(board, mboard);
}
//极大值搜索
private ABValue maxSearch(int depth,int alpha,int beta,Coord coord,int[][] sboard){
List<Coord> actions; //用来保存接下来要搜索的行动力序列
int[][] xboard =new int[LENGHT][LENGHT];
ABValue maxValue =new ABValue(alpha,beta,coord); //记录新的alpha和beta
ABValue minValue;
//如果是叶子节点
if(depth == 0){
maxValue.alpha =evaluate(sboard)+actionScore(coord.x, coord.y)*2;
maxValue.score =maxValue.alpha;
// System.out.println("max="+maxValue.alpha);
return maxValue;
}
actions =findActionable(action, sboard);
//如果是未搜索到尽头的叶子节点
if(actions.size() == 0){
// System.out.println("max="+maxValue.alpha);
maxValue.alpha =evaluate(sboard)+actionScore(coord.x,coord.y)*2;
maxValue.score =maxValue.alpha;
return maxValue;
}
for(int i =0;i<actions.size();i++){
copyBoard(xboard, sboard);
xboard =virtualChess(actions.get(i).x,actions.get(i).y,action,xboard);
if(depth == searchDepth)
minValue =minSearch(depth - 1,- maxValue.beta,- maxValue.alpha, actions.get(i), xboard);
else
minValue =minSearch(depth - 1,-maxValue.beta, -maxValue.alpha, coord, xboard);
//如果返回的值(beta)小于现在的值(alpha),则进行剪枝
if(minValue.beta <= maxValue.alpha)
return maxValue;
System.out.println("min="+minValue.beta);
maxValue.alpha =minValue.beta;
maxValue.coord = actions.get(i);
}
// System.out.println(maxValue.alpha + " " + maxValue.beta);
return maxValue;
}
//极小值搜索
private ABValue minSearch(int depth,int alpha,int beta,Coord coord,int[][] sboard){
List<Coord> actions; //用来保存接下来要搜索的行动力序列
int[][] xboard =new int[LENGHT][LENGHT];
ABValue minValue =new ABValue(alpha,beta,coord);//如果是叶子节点
ABValue maxValue;
if(depth == 0){
minValue.beta =evaluate(sboard)-actionScore(coord.x,coord.y)*2;
minValue.score =minValue.beta;
// System.out.println("min="+minValue.beta);
return minValue;
}
actions =findActionable(otherColor(action), sboard);
//如果是未搜索到尽头的叶子节点
if(actions.size() == 0){
minValue.beta =evaluate(sboard)-actionScore(coord.x,coord.y)*2;
minValue.score =minValue.beta;
// System.out.println("min="+minValue.beta);
return minValue;
}
minValue.score =infinity;
for(int i =0;i<actions.size();i++){
copyBoard(xboard, sboard);
xboard = virtualChess(actions.get(i).x, actions.get(i).y, otherColor(action), xboard);
maxValue = maxSearch(depth - 1, -minValue.beta, -minValue.alpha, coord, xboard);
//如果返回的值(alpha)大于现在的值(beta),则进行剪枝
if(maxValue.alpha >= minValue.beta)
return minValue;
System.out.println("max="+maxValue.alpha);
minValue.beta =maxValue.alpha;
minValue.coord = actions.get(i);
}
// System.out.println(minValue.alpha+" "+minValue.beta);
return minValue;
}
//计算任意局面的棋盘的评分,
// 返回棋子数+行动力*3
private int evaluate(int[][] sboard){
int robotScore =0;
int playerScore =0;
for(int i =0;i<LENGHT;i++){
for(int j =0;j<LENGHT;j++){
if(sboard[i][j] == EMPTY)
continue;
if(sboard[i][j] == action)
robotScore +=chessScore(i, j);
if(sboard[i][j] == otherColor(action))
playerScore +=chessScore(i, j);
}
}
robotScore +=findActionable(action,sboard).size();
playerScore +=findActionable(otherColor(action),sboard).size();
return robotScore -playerScore;
}
//搜索棋盘,看看有多少个棋子被吃掉,并记录被吃掉的棋子
private List<Coord> search(int x,int y,int value,int[][] sboard){
int ax =x;
int ay =y;
List<Coord> scoords =new ArrayList<Coord>();
List<Coord> c =new ArrayList<Coord>();
scoords.clear(); //清空
//八个方向搜索
for(int i= -1;i<=1;i++){
for(int j= -1;j<=1;j++){
if(i==0&&j==0)
continue;
//重置ax、ay
ax =x;
ay =y;
//搜索
while (true){ //下一个搜索的位置在棋盘上并且有棋子
ax +=i;
ay +=j;
//如果搜索到棋盘之外,说明这个方向没有吃子
if(isOutBoard(ax, ay)){
c.clear();
break;
}
//如果搜索到空格,说明这个方向没有吃子
if(sboard[ax][ay] == EMPTY){
c.clear();
break;
}
//如果搜索到相同颜色的棋子,说明有吃子
if(sboard[ax][ay] == value){
break;
}
//继续搜索
Coord coord =new Coord(ax,ay);
c.add(coord);
}
scoords.addAll(c); //将吃掉的子记录下来
c.clear(); //清空c
}
}
return scoords;
}
//虚拟落子
private int[][] virtualChess(int x,int y,int value,int[][] sboard){
List<Coord> etas; //暂存被吃的棋子序列
etas =search(x,y,value,sboard); //获取吃子序列
sboard =eat(etas,sboard); //吃子
return sboard;
}
//吃子动作
private int[][] eat(List<Coord> coords,int[][] sboard){
int x;
int y;
int n =coords.size();
for(int i=0;i<n;i++){
x =coords.get(i).x;
y=coords.get(i).y;
sboard[x][y] =otherColor(sboard[x][y]);
}
return sboard;
}
//计算指定颜色棋子的行动力序列
private List<Coord> findActionable(int value,int[][] sboard){
List<Coord> scoords =new ArrayList<Coord>();
for(int i =0;i < LENGHT;i++){
for(int j =0;j < LENGHT;j++){
if(sboard[i][j] != EMPTY)
continue; //如果已有棋子,跳过
if(search(i, j, value, sboard).size() > 0){
Coord c =new Coord(i,j);
scoords.add(c);
}
}
}
return scoords;
}
//棋子位置分值表
private int chessScore(int x, int y){
//如果位置在角上
if((x == 0 || x == 7)&&(y == 0 || y == 7))
return 10;
//如果位置在边上
if(x == 0 || x == 7 || y == 0 || y == 7)
return 5;
//如果在里面
return 1;
}
//行动力位置分值表
private int actionScore(int x,int y){
//如果位置在角上
if((x == 0 || x == 7)&&(y == 0 || y == 7))
return 100;
//如果位置在角旁边的边上
if(((x == 1 || x == 6)&&(y == 0 || y == 7))||((x == 0 || x == 7)&&(y == 1 || y == 6)))
return -15;
//如果位置在边上
if(x == 0 || x == 7 || y == 0 || y == 7)
return 8;
//如果位置在星位上
if((x == 1 || x == 6)&&(y == 1 || y == 6))
return -40;
//如果位置在第二层
if(x == 1 || x == 6 || y == 1 || y == 6)
return -4;
//如果位置在里面的角上
if((x == 2 || x == 5)&&(y == 2 || y == 5))
return 3;
return 1;
}
private int otherColor(int value){
if(value == BLACK)
return WHITE;
return BLACK;
}
//复制棋盘
private void copyBoard(int[][] board1,int[][] board2){
for(int i =0;i < LENGHT;i++){
for(int j =0;j < LENGHT;j++){
board1[i][j] =board2[i][j];
}
}
}
//判断指定位置是否在棋盘之外
private boolean isOutBoard(int x,int y){
if(x < 0 || y < 0)
return true;
if(x >= LENGHT || y >= LENGHT)
return true;
return false;
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/model/ColorLibrary.java
package com.example.asus.cleardots.model;
import android.content.Context;
import com.example.asus.cleardots.R;
/**
* Created by ASUS on 2017/1/24.
*/
public class ColorLibrary {
private int[] colors =new int[22];
public ColorLibrary(Context context){
loadColor(context);
}
private void loadColor(Context context){
colors[0] =context.getResources().getColor(R.color.color0);
colors[1] =context.getResources().getColor(R.color.color1);
colors[2] =context.getResources().getColor(R.color.color2);
colors[3] =context.getResources().getColor(R.color.color3);
colors[4] =context.getResources().getColor(R.color.color4);
colors[5] =context.getResources().getColor(R.color.color5);
colors[6] =context.getResources().getColor(R.color.color6);
colors[7] =context.getResources().getColor(R.color.color7);
colors[8] =context.getResources().getColor(R.color.color8);
colors[9] =context.getResources().getColor(R.color.color9);
colors[10] =context.getResources().getColor(R.color.color10);
colors[11] =context.getResources().getColor(R.color.background);
colors[12] =context.getResources().getColor(R.color.rank1);
colors[13] =context.getResources().getColor(R.color.rank2);
colors[14] =context.getResources().getColor(R.color.rank3);
colors[15] =context.getResources().getColor(R.color.rank4);
colors[16] =context.getResources().getColor(R.color.rank4);
colors[17] =context.getResources().getColor(R.color.rank4);
colors[18] =context.getResources().getColor(R.color.rank4);
colors[19] =context.getResources().getColor(R.color.rank4);
colors[20] =context.getResources().getColor(R.color.rank4);
colors[21] =context.getResources().getColor(R.color.rank4);
}
public int getColor(int index){
return colors[index];
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/data/DbHelper.java
package com.example.asus.freerun.data;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Created by ASUS on 2017/2/5.
*/
public class DbHelper extends SQLiteOpenHelper{
public static final int version =6;
private static final String grade_table ="create table Grade ("+ //创建数据库表Grade
"id integer primary key autoincrement,"+ //id
"grade integer)"; //成绩
private static final String materials_table ="create table Materials ("+ //创建数据库表Materials
"id integer primary key autoincrement,"+ //id
"golds integer)"; //金币数量
private static final String initiate_table ="create table Initiate ("+ //创建数据库表Initiate
"id integer primary key autoincrement,"+ //id
"initiateEnerge integer,"+ //初始能量
"shieldTime interge," + //护盾时间
"bulletEnerge interge)"; //子弹消耗能量
private static final String equipment_table ="create table Equipment ("+ //创建数据库表Initiate
"id integer primary key autoincrement,"+ //id
"shieldAmount integer,"+ //超级护盾的数量
"upspeedAmount interge," + //超级加速的数量
"laserAmount interge," + //超级激光的数量
"bombAmount intergr)"; //超级炸弹的数量
public DbHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) {
super(context, name, factory, version);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(grade_table);
db.execSQL(materials_table);
db.execSQL(initiate_table);
db.execSQL(equipment_table);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
switch (oldVersion){
case 1:
case 2:
case 3:
case 4:
case 5:
db.execSQL(equipment_table);
case 6:
}
// db.execSQL("drop table if exists Grade");
// db.execSQL("drop table if exists Materials");
// db.execSQL("drop table if exists Initiate");
// db.execSQL("drop table if exists Equipment");
// db.execSQL(equipment_table);
}
}
<file_sep>/ClearDots/app/src/main/java/com/example/asus/cleardots/data/DbHelper.java
package com.example.asus.cleardots.data;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Created by ASUS on 2017/2/1.
*/
public class DbHelper extends SQLiteOpenHelper{
private Context context;
private static final String sql ="create table Grade ("+ //创建数据库表Grade
"id integer primary key autoincrement,"+ //id
"grade integer)"; //成绩
public DbHelper(Context context,int version){
super(context,"GradeList.db",null,version);
this.context=context;
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(sql);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("drop table if exists Grade");
onCreate(db);
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/model/ImageLibrary.java
package com.example.asus.freerun.model;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.Rect;
import android.graphics.RectF;
import com.example.asus.freerun.R;
import com.example.asus.freerun.enemies.Enemy;
/**
* Created by ASUS on 2017/2/19.
*/
public class ImageLibrary {
private Context context;
private Bitmap field;
private Bitmap road;
private Bitmap shield;
private Bitmap enemy1;
private int shieldLocation;
private int shieldHeight;
private int maxShieldLocation =10;
private int enemyHeight;
public ImageLibrary(Context context){
this.context =context;
loadImage();
shieldHeight =shield.getHeight();
enemyHeight =enemy1.getHeight();
}
/**
* 初始化绘图信息的值
*/
public void init(){
shieldLocation =0;
}
/**
* 加载图片
*/
private void loadImage(){
field = BitmapFactory.decodeResource(context.getResources(),R.drawable.field);
road = BitmapFactory.decodeResource(context.getResources(),R.drawable.road);
shield = BitmapFactory.decodeResource(context.getResources(),R.drawable.shield);
enemy1 = BitmapFactory.decodeResource(context.getResources(),R.drawable.enemy1);
}
/**
* 暴露出用于画护盾的函数
* @param canvas 画在哪个canvas上
* @param dst 画在canvas的目标矩形上,在canvas上的位置
* @param paint 画笔
*/
public void drawShield(Canvas canvas,RectF dst,Paint paint){
Rect src =new Rect(shieldLocation*shieldHeight,0,(shieldLocation+1)*shieldHeight,shieldHeight);
canvas.drawBitmap(shield,src,dst,paint);
shieldLocation ++;
if(shieldLocation == maxShieldLocation)
shieldLocation =0;
}
/**
* 暴露出用于画背景的函数
* @param canvas
* @param dst
* @param path
* @param paint
*/
public void drawBackground(Canvas canvas, RectF dst, Path path,Paint paint){
Rect src =new Rect(0,0,field.getWidth(),field.getHeight());
canvas.drawBitmap(field,src,dst,paint);
BitmapShader fieldShader =new BitmapShader(road,BitmapShader.TileMode.REPEAT,BitmapShader.TileMode.REPEAT);
paint.setShader(fieldShader);
canvas.drawPath(path,paint);
}
public void drawEnemys(Canvas canvas,RectF dst,int location,Paint paint,int type){
switch (type) {
case Enemy.common_enemy:
Rect src = new Rect(location * enemyHeight, 0, (location + 1) * enemyHeight, enemyHeight);
canvas.drawBitmap(enemy1, src, dst, paint);
break;
}
}
}
<file_sep>/FreeRun/app/src/main/java/com/example/asus/freerun/activity/UpgradeActivity.java
package com.example.asus.freerun.activity;
import android.app.Activity;
import android.graphics.Canvas;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.example.asus.freerun.R;
import com.example.asus.freerun.data.InitiateBean;
import com.example.asus.freerun.data.MaterialsBean;
import com.example.asus.freerun.view.GradeView;
/**
* Created by ASUS on 2017/2/7.
*/
public class UpgradeActivity extends Activity {
private TextView coinView;
private GradeView energyGrade;
private GradeView shieldGrade;
private GradeView bulletGrade;
private TextView energySpend;
private TextView shieldSpend;
private TextView bulletSpend;
private Button energyUpgrade;
private Button shieldUpgrade;
private Button bulletUpgrade;
private Button back;
private InitiateBean initiateBean;
private MaterialsBean materialsBean;
private int initEnergy; //初始能量
private int initShield; //护盾时间
private int initBullet; //子弹消耗
private int coins; //金币数量
@Override
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.activity_upgrade);
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
coinView =(TextView)findViewById(R.id.coins);
energyGrade =(GradeView)findViewById(R.id.energyGrade);
shieldGrade =(GradeView)findViewById(R.id.shieldGrade);
bulletGrade =(GradeView)findViewById(R.id.bulletGrade);
energySpend =(TextView)findViewById(R.id.energySpend);
shieldSpend =(TextView)findViewById(R.id.shieldSpend);
bulletSpend =(TextView)findViewById(R.id.bulletSpend);
energyUpgrade =(Button)findViewById(R.id.energyButton);
shieldUpgrade =(Button)findViewById(R.id.shieldButton);
bulletUpgrade =(Button)findViewById(R.id.bulletButton);
back =(Button)findViewById(R.id.back1);
initiateBean =new InitiateBean(this);
materialsBean =new MaterialsBean(this);
initiateBean.query();
initEnergy =initiateBean.getInitiateEnerge();
initShield =initiateBean.getShieldTime();
initBullet =initiateBean.getBulletEnerge();
materialsBean.query();
coins =materialsBean.getGolds();
Log.d("UpgradeActivity","initEnergy="+initEnergy);
Log.d("UpgradeActivity","initShield="+initShield);
Log.d("UpgradeActivity","initBullet="+initBullet);
changeText();
changeGrade();
//监听能量升级按钮
energyUpgrade.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//如果钱不够,不发生动作
if (coins < getEnergySpend()) {
Toast.makeText(UpgradeActivity.this, "金币不足!", Toast.LENGTH_SHORT).show();
return;
}
//如果等级满了,不发生动作
if (getEnergyGrade() == 8) {
Toast.makeText(UpgradeActivity.this, "等级已满!", Toast.LENGTH_SHORT).show();
return;
}
//如果等级没满
//改变coinView的值
coins -= getEnergySpend();
coinView.setText("金币: " + coins);
//改变initEnerg的值
energyUpgrade();
//改变energySpend的值
energySpend.setText("花费金币:" + getEnergySpend());
//改变enerGrade的值
energyGrade.setGrade(getEnergyGrade());
energyGrade.invalidate();
energyGrade.draw(new Canvas());
//更新数据库
updateDataBase();
}
});
//监听护盾升级按钮
shieldUpgrade.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//如果钱不够,不发生动作
if(coins < getShieldSpend()) {
Toast.makeText(UpgradeActivity.this,"金币不足!",Toast.LENGTH_SHORT).show();
return;
}
//如果等级满了,不发生动作
if(getShieldGrade() == 8) {
Toast.makeText(UpgradeActivity.this,"等级已满!",Toast.LENGTH_SHORT).show();
return;
}
//如果等级没满
//改变coinView的值
coins -=getShieldSpend();
coinView.setText("金币: "+coins);
//改变initShield的值
shieldUpgrade();
//改变shieldSpend的值
shieldSpend.setText("花费金币:"+getShieldSpend());
//改变shieldGrade的值
shieldGrade.setGrade(getShieldGrade());
shieldGrade.invalidate();
shieldGrade.draw(new Canvas());
//更新数据库
updateDataBase();
}
});
//监听子弹升级按钮
bulletUpgrade.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//如果钱不够,不发生动作
if(coins < getBulletSpend()) {
Toast.makeText(UpgradeActivity.this,"金币不足!",Toast.LENGTH_SHORT).show();
return;
}
//如果等级满了,不发生动作
if(getBulletGrade() == 8) {
Toast.makeText(UpgradeActivity.this,"等级已满!",Toast.LENGTH_SHORT).show();
return;
}
//如果等级没满
//改变coinView的值
coins -=getBulletSpend();
coinView.setText("金币: "+coins);
//改变initShield的值
bulletUpgrade();
//改变shieldSpend的值
bulletSpend.setText("花费金币:"+getBulletSpend());
//改变shieldGrade的值
bulletGrade.setGrade(getBulletGrade());
bulletGrade.invalidate();
bulletGrade.draw(new Canvas());
//更新数据库
updateDataBase();
}
});
back.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
onBackPressed();
}
});
}
@Override
public void onBackPressed() {
Log.d("UpgradeActivity","back...");
finish();
}
/**
* 改变textView显示的值
*/
private void changeText(){
coinView.setText("金币: "+coins);
energySpend.setText("花费金币:"+getEnergySpend());
shieldSpend.setText("花费金币:"+getShieldSpend());
bulletSpend.setText("花费金币:"+getBulletSpend());
}
/**
* 改变GradeView显示的值
*/
private void changeGrade(){
energyGrade.setGrade(getEnergyGrade());
energyGrade.invalidate();
energyGrade.draw(new Canvas());
shieldGrade.setGrade(getShieldGrade());
shieldGrade.invalidate();
shieldGrade.draw(new Canvas());
bulletGrade.setGrade(getBulletGrade());
bulletGrade.invalidate();
bulletGrade.draw(new Canvas());
}
/**
* 当有升级动作时及时更改数据库
*/
private void updateDataBase(){
initiateBean.setInitiateEnerge(initEnergy);
initiateBean.setShieldTime(initShield);
initiateBean.setBulletEnerge(initBullet);
initiateBean.insert();
materialsBean.setGolds(coins);
materialsBean.insert();
}
/**
* 计算能量升级所花费的金币数
* @return 返回金币数
*/
private int getEnergySpend(){
switch (initEnergy){
case 200:
return 100;
case 250:
return 200;
case 300:
return 400;
case 350:
return 800;
case 400:
return 1600;
case 450:
return 3200;
case 500:
return 6400;
case 600:
return 12800;
case 800:
return 25000;
default:
}
return 0;
}
/**
* 计算护盾升级所需要的金币数
* @return 返回金币数
*/
private int getShieldSpend(){
switch (initShield){
case 20:
return 100;
case 25:
return 200;
case 30:
return 400;
case 35:
return 800;
case 40:
return 1600;
case 45:
return 3200;
case 50:
return 6400;
case 55:
return 12800;
case 60:
return 25000;
default:
}
return 0;
}
/**
* 计算子弹升级所需的金币数
* @return 返回金币数
*/
private int getBulletSpend(){
switch (initBullet){
case 100:
return 100;
case 95:
return 200;
case 90:
return 400;
case 85:
return 800;
case 80:
return 1600;
case 75:
return 3200;
case 70:
return 6400;
case 65:
return 12800;
case 60:
return 25000;
default:
}
return 0;
}
/**
* 计算当前能量的等级
* @return 返回等级数
*/
private int getEnergyGrade(){
switch (initEnergy){
case 200:
return 1;
case 250:
return 2;
case 300:
return 3;
case 350:
return 4;
case 400:
return 5;
case 450:
return 6;
case 500:
return 7;
case 600:
return 8;
case 800:
return 9;
case 1000:
return 10;
default:
}
return 0;
}
/**
* 计算当前护盾的等级
* @return 返回等级数
*/
private int getShieldGrade(){
switch (initShield){
case 20:
return 1;
case 25:
return 2;
case 30:
return 3;
case 35:
return 4;
case 40:
return 5;
case 45:
return 6;
case 50:
return 7;
case 55:
return 8;
case 60:
return 9;
case 70:
return 10;
default:
}
return 0;
}
/**
* 计算当前子弹的等级数
* @return 返回等级数
*/
private int getBulletGrade(){
switch (initBullet){
case 100:
return 1;
case 95:
return 2;
case 90:
return 3;
case 85:
return 4;
case 80:
return 5;
case 75:
return 6;
case 70:
return 7;
case 65:
return 8;
case 60:
return 9;
case 50:
return 10;
default:
}
return 0;
}
/**
* 能量升级
*/
private void energyUpgrade(){
switch (initEnergy){
case 200:
initEnergy = 250;
break;
case 250:
initEnergy = 300;
break;
case 300:
initEnergy = 350;
break;
case 350:
initEnergy = 400;
break;
case 400:
initEnergy = 450;
break;
case 450:
initEnergy = 500;
break;
case 500:
initEnergy = 600;
break;
case 600:
initEnergy = 800;
break;
case 800:
initEnergy = 1000;
break;
default:
}
}
/**
* 护盾升级
*/
private void shieldUpgrade(){
switch (initShield){
case 20:
initShield = 25;
break;
case 25:
initShield = 30;
break;
case 30:
initShield = 35;
break;
case 35:
initShield = 40;
break;
case 40:
initShield = 45;
break;
case 45:
initShield = 50;
break;
case 50:
initShield = 55;
break;
case 55:
initShield = 60;
break;
case 60:
initShield = 70;
default:
}
}
/**
* 子弹升级
*/
private void bulletUpgrade(){
switch (initBullet){
case 100:
initBullet = 95;
break;
case 95:
initBullet = 90;
break;
case 90:
initBullet = 85;
break;
case 85:
initBullet = 80;
break;
case 80:
initBullet = 75;
break;
case 75:
initBullet = 70;
break;
case 70:
initBullet = 65;
break;
case 65:
initBullet = 60;
break;
case 60:
initBullet = 50;
break;
default:
}
}
}
| c485a6f5c90635051dd9437856ed397edb38f353 | [
"Java"
] | 22 | Java | chengfenghj/app | 8c73e5861af69969098e056e18290819a46cf7dd | da4d10440fbc27bcd559bf92eb51601abd094108 |
refs/heads/master | <file_sep>package com.myroili.test;
import android.app.Application;
import android.arch.lifecycle.LiveData;
import android.arch.persistence.room.Dao;
import android.os.AsyncTask;
import java.util.List;
/**
* Created by abouelmahassineabdelghani on 5/19/18.
*/
public class Repository {
private DaoWord mWordDao;
private LiveData<List<Word>> mAllWords;
Repository(Application application) {
WordDataBase db= WordDataBase.getInstance(application);
mWordDao = db.daoWord();
mAllWords = mWordDao.getAllWords();
}
public LiveData<List<Word>> getmAllWords() {
return mAllWords;
}
public void insert (Word word) {
new InsertAsyncTask(mWordDao).execute(word);
}
public void delete(Word word){
new DeleteAsyncTask(mWordDao).execute(word);
}
private static class InsertAsyncTask extends AsyncTask<Word, Void, Void> {
private DaoWord mAsyncTaskDao;
InsertAsyncTask(DaoWord dao) {
mAsyncTaskDao = dao;
}
@Override
protected Void doInBackground(Word... params) {
mAsyncTaskDao.insert(params[0]);
return null;
}
}
private static class DeleteAsyncTask extends AsyncTask<Word, Void, Void> {
private DaoWord mAsyncTaskDao;
DeleteAsyncTask(DaoWord dao) {
mAsyncTaskDao = dao;
}
@Override
protected Void doInBackground(Word... params) {
mAsyncTaskDao.delete(params[0]);
return null;
}
}
}
<file_sep># EditWordTest
simple edit word with Room + LiveData + ViewModel App architecture android
| b69139cea4f2fdf5f2640cd4217ec9914fa86c38 | [
"Markdown",
"Java"
] | 2 | Java | Myroili/EditWord | 950e406e51667757474e6788b55e60fe87d91ba2 | 509dc506809e2e4c22ba4f7bed420ffd5697f5b1 |
refs/heads/master | <repo_name>anthonyrgreen/scales<file_sep>/findChords.py
notes = range(25)
notes_names = ["C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "A", "A#", "B"]
modes = range(7)
modes_names = ["Ionian", "Dorian", "Phrygian", "Lydian", "Mixolydian", "Aeolian", "Locrian"]
scales = [0, 2, 4, 5, 7, 9, 11, 12, 14, 16, 17, 19, 21, 23, 24]
chords = {
"maj" : [0, 4, 7],
"min" : [0, 3, 7],
"dim" : [0, 3, 6],
"maj7" : [0, 4, 7, 11],
"min7" : [0, 3, 7, 10],
"dom7" : [0, 4, 7, 10],
"dim7" : [0, 3, 6, 10]
}
current_scale = []
def give_scale(tonic, mode):
del current_scale[0:len(current_scale)]
for x in range(8):
current_scale.append(tonic + scales[x + mode] - scales[mode])
return
def find_chords(note):
print("Chords for " + notes_names[note % 12] + ":")
for chord_name in chords:
included = True
for x in chords[chord_name]:
if (note + x) not in current_scale and (note + x) % 12 not in current_scale:
included = False
if included:
print chord_name
def main():
give_scale(0, 0)
return
main()
<file_sep>/scripts/scripts.js
var root = "/home/anthony/iexplainthejoke/scales/images/";
var chords = {
"maj" : [0, 4, 7],
"min" : [0, 3, 7],
"dim" : [0, 3, 6],
"maj7" : [0, 4, 7, 11],
"min7" : [0, 3, 7, 10],
"dom7" : [0, 4, 7, 10],
"dim7" : [0, 3, 6, 10],
"maj6" : [0, 4, 7, 9],
"min6" : [0, 3, 7, 9]
};
var modes = [0, 1, 2, 3, 4, 5, 6];
var modes_names = ["Ionian", "Dorian", "Phrygian",
"Lydian", "Mixolydian", "Aeolian", "Locrian"];
var notes = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
var notes_names = ["C", "C#", "D", "D#", "E", "F",
"F#", "G", "G#", "A", "A#", "B"];
var scales = [0, 2, 4, 5, 7, 9, 11];
function prelim(){
current_scale = new Array();
current_highlights = new Array();
current_tonic = 0;
get_notes(0, 0);
};
function get_notes(tonic, mode){
tonic = parseInt(tonic);
current_tonic = tonic;
current_scale = [];
for(var i = 0; i < 7; i++){
var note_num = (tonic + scales[(i + mode) % 7] - scales[mode]) % 12;
console.log(note_num+" = ("+tonic+" + "+scales[(i+mode)%7]+" - "+scales[mode]+") % 12");
if(note_num >= 0)
current_scale[i] = note_num;
else
current_scale[i] = note_num + 12;
}
var list_items_html = '';
for(var i = 0; i < 7; i++){
var n = current_scale[i];
list_items_html += '<li><img src="./images/' + n + '.png" class="'
+ n + '" onclick="highlight_note(' + n + ')" num="'
+ n + '"></li>';
}
$("#scale_tonic").html(notes_names[current_tonic]);
$("#scale_mode").html(modes_names[mode]);
$("#notebar").html(list_items_html);
$("#slider ul#notebar li img").dblclick(function(){
console.log("Calling get_notes with tonic=" + $(this).attr("num") + ", mode=0");
get_notes($(this).attr("num"),0);
});
highlight_note(tonic);
};
function get_chords(){
var chords_html = "";
for(var chord_name in chords){
if(chords.hasOwnProperty(chord_name)){
var included = true;
for(var x in chords[chord_name])
if(current_scale.indexOf((current_tonic + chords[chord_name][x]) % 12) == -1)
included = false;
if(included)
chords_html += '<li class="' + chord_name + '" checked="false">' + chord_name + '</li>';
}
}
$("#chords_title").html("Chords on " + notes_names[current_tonic]);
$("ul#chords_list").html(chords_html);
$("ul#chords_list li").click(function(){
highlight_chord($(this).attr("class"));
});
};
function highlight_note(note){
// Remove extant highlighting
$(".tonic, .following").removeClass("tonic following");
// Rehighlight tonic
$("." + note).addClass("tonic");
current_tonic = note;
// Now populate the list of chords
get_chords();
};
function highlight_chord(chord_name){
$(".following").removeClass("following");
var this_chord = $("ul#chords_list li." + chord_name);
if(this_chord.attr("checked") == "false"){
$('ul#chords_list li[checked="true"]').attr("checked", "false");
this_chord.attr("checked", "true");
for(var x in chords[chord_name]){
var n = (chords[chord_name][x] + current_tonic) % 12;
$('.' + n).addClass("following");
}
}
else{
this_chord.attr("checked", "false");
}
};
<file_sep>/static/js/scales.js
scaleLength = 12
majorScale = [0,2,4,5,7,9,11]
minorScale = [0,2,3,5,7,8,10]
scaleNames =
[["B", "C", null], ["C", null, "D"], [null, "D", null], ["D", null, "E"], [null, "E", "F"]
,["E", "F", null], ["F", null, "G"], [null, "G", null], ["G", null, "A"], [null, "A", null]
,["A", null, "B"], [null, "B", "C"]].map(note)
chords = {
"maj" : [0, 4, 7],
"min" : [0, 3, 7],
"dim" : [0, 3, 6],
"maj7" : [0, 4, 7, 11],
"min7" : [0, 3, 7, 10],
"dom7" : [0, 4, 7, 10],
"dim7" : [0, 3, 6, 10],
"maj6" : [0, 4, 7, 9],
"min6" : [0, 3, 7, 9]
}
function note(list){
return {sharp : list[0],
pure : list[1],
flat : list[2]}
}
Array.prototype.rotate = function(n){
while (this.length && n < 0) n += this.length;
this.push.apply(this, this.splice(0, n));
return this;
}
Array.prototype.contains = function(obj){
for (var i = 0; i < this.length; i++)
if (this[i] === obj) return true;
return false;
}
function scale(){
this.notes = new Array()
return this
}
scale.prototype.fromScale = function(root, scale, mode){
scale.rotate(mode)
offset = root - scale[0]
for(var i = 0; i < scale.length; i++){
scale[i] = (scale[i] + offset)
this.notes.push(scale[i])
}
this.normalize()
return this
}
scale.prototype.normalize = function(){
for(var i = 0; i < this.notes.length; i++){
this.notes[i] = this.notes[i] % scaleLength
while(this.notes[i] < 0) this.notes[i] += scaleLength
}
return this
}
scale.prototype.print = function(){
var flatList = new Array(), sharpList = new Array()
for(var i = 0; i < this.notes.length; i++){
if(scaleNames[this.notes[i]].pure){
flatList.push(scaleNames[this.notes[i]].pure)
sharpList.push(scaleNames[this.notes[i]].pure)
}
else if(scaleNames[this.notes[i]].flat && scaleNames[this.notes[i]].sharp){
flatList.push(scaleNames[this.notes[i]].flat)
sharpList.push(scaleNames[this.notes[i]].sharp)
}
else{
if(scaleNames[this.notes[i]].flat){
flatList.push(scaleNames[this.notes[i]].flat)
sharpList.push(null)
}
else{
flatList.push(null)
sharpList.push(scaleNames[this.notes[i]].sharp)
}
}
}
var prettify = function(mode){
var prettified = Array()
if(mode === "flat"){
for(var i = 0; i < this.notes.length; i++){
if(scaleNames[this.notes[i]].pure)
prettified.push(this.notes[i].pure)
else
prettified.push(this.notes[i].flat + "b")
}
}
else if(mode === "sharp"){
for(var i = 0; i < this.notes.length; i++){
if(scaleNames[this.notes[i]].pure)
prettified.push(this.notes[i].pure)
else
prettified.push(this.notes[i].sharp + "#")
}
}
//console.log(prettified)
return prettified
}
if(flatList.contains(null)) return prettify("sharp")
else if(sharpList.contains(null)) return prettify("flat")
var collisions = function(noteList){
var checkList = new Array(), numCollisions = 0
for(var i = 0; i < noteList.length; i++){
if(checkList.contains(noteList[i]))
numCollisions++
else
checkList.push(noteList[i])
}
return numCollisions
}
if(collisions(sharpList) <= collisions(flatList))
return prettify("sharp")
else
return prettify("flat")
}
var Cmaj = new scale().fromScale(0, majorScale, 0)
var Dmaj = new scale().fromScale(2, majorScale, 0)
var Gmaj = new scale().fromScale(7, majorScale, 0)
var Cmin = new scale().fromScale(0, majorScale, 5)
Cmaj.print()
Dmaj.print()
Gmaj.print()
Cmin.print()
<file_sep>/scripts/scale.js
var root = "/home/anthony/iexplainthejoke/scales/images/";
scale = function(tonic, mode){
self.initialize(tonic, mode);
};
scale.prototype.initialize = function(tonic, mode){
this.chords = {
"maj" : [0, 4, 7],
"min" : [0, 3, 7],
"dim" : [0, 3, 6],
"maj7" : [0, 4, 7, 11],
"min7" : [0, 3, 7, 10],
"dom7" : [0, 4, 7, 10],
"dim7" : [0, 3, 6, 10],
"maj6" : [0, 4, 7, 9],
"min6" : [0, 3, 7, 9]
};
this.modes = [0, 1, 2, 3, 4, 5, 6];
this.modes_names = ["Ionian", "Dorian", "Phrygian",
"Lydian", "Mixolydian", "Aeolian", "Locrian"];
this.notes = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11];
this.notes_names = ["C", "C#", "D", "D#", "E", "F",
"F#", "G", "G#", "A", "A#", "B"];
this.scales = [0, 2, 4, 5, 7, 9, 11];
this.scale = new Array(); // Holds the notes of the scale, sequentially
this.scale_names = new Array(); // Same but with alphabetic notes
this.highlights = new Array(); // Which notes are highlighted in the scale
this.tonic = tonic;
this.mode = mode;
};
scale.prototype.get_notes = function(tonic, mode){
// Populates the "scale" and "scale_names" arrays with the correct tonic & mode
// Clears the "highlights" array
this.clear_highlights(); //NOT YET IMPLEMENTED
this.tonic = tonic;
this.mode = mode;
for(var i = 0; i < 7; i++){
var offset = this.scales[mode % 7];
var next_interval = this.scales[(mode + i) % 7];
this.scale[i] = (next_interval - offset + tonic) % 12;
if(this.scale[i] < 0)
this.scale[i] += 12;
this.scale_names[i] = this.notes_names[this.scale[i]];
}
this.display_scale();
};
scale.prototype.display_scale = function(){
// inject the new scale into the html
var scale_html = '';
for(var i = 0; i < 7; i++){
var n = scale[i];
scale_html += '<li><img src="./images/' + n + '.png" class="note"'
+ 'data-note_num="'+ n + ' data-highlighted=false data-"></li>';
}
$('#notebar').html(scale_html);
$('#scale_tonic').html(notes_names[this.tonic]);
$('#scale_mode').html(modes_names[this.mode]);
$('#notebar li img').dblclick(function(){
this.get_notes($(this).data("note_num"), 0);
}
$('#notebar li img').click(function(){
this.highlight_note($(this).data("note_num"); // WE NEED TO ATTACH THE DATA TO EACH NOTE
});
highlight_tonic(this.tonic); // NOT YET IMPLEMENTED - need argument?
};
scale.prototype.highlight_note = function(note){
// First change the highlights array and accompanying HTML
var index = $.inArray(note, this.highlights);
if(index == -1)
this.highlights.push(note);
else
this.highlights.splice(index, 1);
// Now populate the list of chords
this.get_chords();
};
function get_chords(){
var chords_html = "";
for(var chord_name in chords){
if(chords.hasOwnProperty(chord_name)){
var included = true;
for(var x in chords[chord_name])
if(current_scale.indexOf((current_tonic + chords[chord_name][x]) % 12) == -1)
included = false;
if(included)
chords_html += '<li class="' + chord_name + '" checked="false">' + chord_name + '</li>';
}
}
$("#chords_title").html("Chords on " + notes_names[current_tonic]);
$("ul#chords_list").html(chords_html);
$("ul#chords_list li").click(function(){
highlight_chord($(this).attr("class"));
});
};
function highlight_chord(chord_name){
$(".following").removeClass("following");
var this_chord = $("ul#chords_list li." + chord_name);
if(this_chord.attr("checked") == "false"){
$('ul#chords_list li[checked="true"]').attr("checked", "false");
this_chord.attr("checked", "true");
for(var x in chords[chord_name]){
var n = (chords[chord_name][x] + current_tonic) % 12;
$('.' + n).addClass("following");
}
}
else{
this_chord.attr("checked", "false");
}
};
| 74b0bf0020ad1c422b968e2a5a5b4b481a53e2be | [
"JavaScript",
"Python"
] | 4 | Python | anthonyrgreen/scales | 3aca101ad552fcefa8cb75b899ca2506196418c9 | 7b86d7267e7acf2074414811711a3efc0bd8110f |
refs/heads/master | <file_sep># TouchTestByESP32
This is a Touch Sensor test for NodeMCU-32S
- T0 > GPIO 4
- T3 > GPIO 15
<file_sep>#include <Arduino.h>
// ref from :
// https://github.com/Serpent999/ESP32_Touch_LED/blob/master/Touch_LED/Touch_LED.ino
/*
Nikhil.P.Lokhande
Project: ESP32 Touch Controled LED, using PWM
Board: ESP32 Dev Module
Touch Sensor Pin Layout
T0 = GPIO4
T1 = GPIO0
T2 = GPIO2
T3 = GPIO15
T4 = GPIO13
T5 = GPIO12
T6 = GPIO14
T7 = GPIO27
T8 = GPIO33
T9 = GPIO32 */
uint8_t led_0 = 32;
uint8_t led_1 = 33;
bool flash_mode = false;
void setup()
{
Serial.begin(9600);
delay(1000);
// ledcAttachPin(led_0, 1); //Configure variable led, pin 18 to channel 1
ledcSetup(2, 12000, 8); // 12 kHz PWM and 8 bit resolution
ledcWrite(2, 100); // Write a test value of 100 to channel 1
// ledcSetup(0, 12000, 8); // 12 kHz PWM and 8 bit resolution
// ledcWrite(0, 100); // Write a test value of 100 to channel 1
// Serial.println("Testing ledc 12 channel 1");
pinMode(led_0, OUTPUT);
pinMode(led_1, OUTPUT);
// touchAttachInterrupt(T0, gotTouch, threshold);
// touchAttachInterrupt(T1, gotTouch1, threshold);
}
void loop()
{
Serial.println("Touch sensor value:");
Serial.println(touchRead(T0));
Serial.println(touchRead(T3));
// {
// ledcWrite(1, (buff(T0))); // Using T0 for touch data
// }
digitalWrite(led_0, flash_mode ? HIGH : LOW);
digitalWrite(led_1, flash_mode ? LOW : HIGH);
flash_mode = !flash_mode;
delay(1000);
} | 1ac93bdf1d12662ffc160d6b11d1781ecce68086 | [
"Markdown",
"C++"
] | 2 | Markdown | neo725/TouchTestByESP32 | 03eed71a4a96317b91089d4a496c3bcd05e4b992 | 4bbba3968656c060450466a63c8defd1fdd23c00 |
refs/heads/master | <repo_name>sebco/epitheme<file_sep>/epitech_PFA/app/controllers/guilds_controller.rb
# -*- coding: utf-8 -*-
class GuildsController < ApplicationController
# GET /guilds
# GET /guilds.json
def index
@guilds = Guild.all
@worlds = World.all
@subjects = Subject.all
@document_universals = DocumentUniversal.all
# @gods = User.where(isgod: true)
@user_guild = GuildMember.find_by_user_id(current_user.id)
@user_no_guild = (current_user.isgod == true or @user_guild != nil) ? false : true
respond_to do |format|
format.html # index.html.erb
format.json { render json: @guilds }
end
end
# GET /guilds/1
# GET /guilds/1.json
def show
@guild = Guild.find(params[:id])
@description = GuildDescription.find_by_guild_id(@guild.id)
@is_member = @guild.guild_members.find_by_user_id(current_user.id)
# GET LEADER OF GROUP
@leader = @guild.guild_members.where(:is_admin => true)
# GET MEMBERS OF THE GROUP
@members = @guild.guild_members.all
# GET STATUS OF THE GROUP
@step = GuildStep.find_by_guild_id(@guild.id)
@document_universals = DocumentUniversal.all
@historic_tab = 0
respond_to do |format|
format.html # show.html.erb
format.json { render json: @guild }
end
end
# GET /guilds/new
# GET /guilds/new.json
def new
@user_guild = GuildMember.find_by_user_id(current_user.id)
if @user_guild != nil
redirect_to guilds_path, notice: 'Traître ! Honte à toi d\'avoir essayé de créer une guilde dans le dos de tes confrères !'
elsif current_user.isgod == true
redirect_to guilds_path, notice: 'Dieu ?! Tu n\'as pas besoin de t\'abaisser au niveau de ces misérables paysans :/'
else
@guild = Guild.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @guild }
end
end
end
# GET /guilds/1/edit
def edit
@guild = Guild.find(params[:id])
if current_user.isgod == false and @guild.is_leader?(current_user.id) == false
redirect_to @guild, alert: "Paysan, apprenez que seuls les Dieux et les leader peuvent modifier les informations relatives à une guilde !"
end
end
# POST /guilds
# POST /guilds.json
def create
@user_guild = GuildMember.find_by_user_id(current_user.id)
if @user_guild != nil
redirect_to guilds_path, notice: 'Traître ! Honte à toi d\'avoir essayé de créer une guilde dans le dos de tes confrères !'
else
@guild = Guild.new(params[:guild])
# SET ASSOCIATION ONE STEP FOR A GUILD
respond_to do |format|
if @guild.save
# LOG EVENT
@guild.log_event(current_user, "Creation")
# SET GUILD_DESCRIPTION
@guild_description = GuildDescription.new
@guild_description.guild_id = @guild.id
@guild_description.description = "A venir ! :o"
@guild_description.save
@step = @guild.guild_steps.new
@step.guild_id = @guild.id
@step.step = 0
@step.save!
# SET LEADER TO PAYSANS THAT STARTED CREATE ACTION
@add_lead = @guild.guild_members.new
@add_lead.is_admin = true
@add_lead.user_id = current_user.id
@add_lead.guild_id = @guild.id
@add_lead.save!
# SET DEFAULT WORLD (NEUTRAL) FOR NEW GUILD
@free_land = @guild.guild_worlds.new
@free_land.guild_id = @guild.id
@free_land.world_id = 1
@free_land.accepted = true
@free_land.save!
# DELETE USER'S GUILD MEMBER REQUESTS
GuildMemberRequest.delete_all(["user_id = ?", current_user.id])
format.html { redirect_to @guild, notice: 'La Guilde a été créée avec succès.' }
format.json { render json: @guild, status: :created, location: @guild }
else
format.html { render action: "new" }
format.json { render json: @guild.errors, status: :unprocessable_entity }
end
end
end
end
# PUT /guilds/1
# PUT /guilds/1.json
def update
@guild = Guild.find(params[:id])
if current_user.isgod == false and @guild.is_leader?(current_user.id) == false
redirect_to @guild, alert: "Des paysans sont morts pour moins que cela..."
else
respond_to do |format|
if @guild.update_attributes(params[:guild])
@guild.log_event(current_user, "Modification des informations")
format.html { redirect_to @guild, notice: 'La Guilde a été mises à jour avec succès.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @guild.errors, status: :unprocessable_entity }
end
end
end
end
# DELETE /guilds/1
# DELETE /guilds/1.json
def destroy
@guild = Guild.find(params[:id])
if current_user.isgod == false and @guild.is_leader?(current_user.id) == false
redirect_to @guild, alert: "Des paysans sont morts pour moins que cela..."
else
@guild.log_event(current_user, "Destruction")
@guild.guild_members.destroy_all
@guild.guild_steps.destroy_all
@guild.guild_worlds.destroy_all
Subject.update_all(["guild_id = ?", nil], ["guild_id = ?", @guild.id])
@guild.destroy
respond_to do |format|
format.html { redirect_to guilds_url }
format.json { head :no_content }
end
end
end
def abandon_subject
@guild = Guild.find(params[:guild_id])
if @guild.has_subject? == false
redirect_to @guild, alert: "Votre guilde n'a pas de sujet, paysan."
elsif current_user.isgod == true or @guild.is_leader?(current_user.id)
Subject.update_all(["guild_id = ?", nil], ["guild_id = ?", @guild.id])
redirect_to @guild, notice: "Votre guilde est maintenant détâchée du sujet."
else
redirect_to @guild, alert: "Seuls les Dieux et les leaders de la guilde peuvent abandonner le sujet."
end
end
def ask_validation
@guild = Guild.find(params[:guild_id])
@guild_step = GuildStep.find_by_guild_id(@guild.id)
if @guild_step.ready == true
redirect_to prefecture_index_path, alert: "Votre guilde a déjà sollicité la clémence des Dieux pour changer de status. Soyez patient, paysan, ou vous subirez le châtiment ultime !"
else
@guild_step.ready = true
if @guild_step.save!
@guild.log_event(current_user, "Demande de changement de status (" + Step.find_by_step(@guild_step.step).name + " -> " + Step.find_by_step(@guild_step.step + 1).name + ")")
redirect_to prefecture_index_path, notice: "Vous avez sollicité les Dieux pour changer le status de votre guilde. Priez, paysans, pour espérer qu'ils soient de bonne humeur..."
else
redirect_to prefecture_index_path, alert: "Votre demande de changement de status de guilde n'a pas été enregistrée. Si cela persiste, allez prier les Dieux."
end
end
end
end
<file_sep>/epitech_PFA/app/models/bank.rb
class Bank < ActiveRecord::Base
belongs_to :world
attr_accessible :detail, :object
end
<file_sep>/epitech_PFA/app/controllers/senat_controller.rb
class SenatController < ApplicationController
before_filter :gods_only!
def index
@guilds = Guild.all
end
end
<file_sep>/epitech_PFA/app/controllers/stock_house_controller.rb
class StockHouseController < ApplicationController
before_filter :gods_only!
def index
if current_user.isgod == true
@worlds = WorldGod.where(:user_id => current_user.id)
end
end
end
<file_sep>/epitech_PFA/test/unit/helpers/godschats_helper_test.rb
require 'test_helper'
class GodschatsHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/db/migrate/20120825150203_add_details_to_step.rb
class AddDetailsToStep < ActiveRecord::Migration
def change
add_column :steps, :details, :text
end
end
<file_sep>/epitech_PFA/db/migrate/20120819153712_create_banks.rb
class CreateBanks < ActiveRecord::Migration
def change
create_table :banks do |t|
t.references :world
t.string :object
t.text :detail
t.timestamps
end
add_index :banks, :world_id
end
end
<file_sep>/epitech_PFA/test/unit/helpers/world_gods_helper_test.rb
require 'test_helper'
class WorldGodsHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/config/routes.rb
EpitechPfa::Application.routes.draw do
match "arena" => "arena#index"
match 'arena/show/:subject_id' => 'arena#show_fight', as: 'arena_show_fight'
match 'arena/my_fight/' => 'arena#user_fight', as: 'arena_user_fight'
match 'arena/fight-for/:subject_id' => 'arena#start_fight', as: 'arena_fight_for', via: :post
match 'arena/abandon-fight/:fight_id' => 'arena#abandon_fight', as: 'arena_abandon_fight', via: :delete
resources :fight_comments
resources :document_universals
resources :documents
# USERS / ADMIN ROUTES
get "home/index"
devise_for :users
resources :subjects do
match 'add_world' => 'subjects#link_to_world', as: 'add_world'
end
resources :god_subject, :only => [:new, :create, :update]
resources :sanctuaries
resources :guilds do
resources :guild_members, :only => [:create, :destroy]
resources :guild_description, :only => [:new, :create]
match 'set_leader/:relation_id' => 'guild_members#set_leader', as: 'set_leader'
match 'join' => 'guild_member_requests#join', as: 'join'
match 'invite' => 'guild_member_requests#invite', as: 'invite'
match 'accept/:request_id' => 'guild_member_requests#accept', as: 'accept'
match 'refuse/:request_id' => 'guild_member_requests#destroy', as: 'refuse', via: 'delete'
match 'abandon_subject' => 'guilds#abandon_subject', as: 'abandon_subject'
scope :validation do
match 'validation/ask' => 'guilds#ask_validation', as: 'ask_validation'
end
resources :parliaments, only: [:index, :create, :destroy]
end
# USERS ROUTES
resources :workshops, :only => [:index]
resources :prefecture, :only => [:index]
match 'prefecture/join-world/:guild_id/request' => 'prefecture#join_world', as: 'join_world'
#ADMIN ROUTES
resources :workshops, :only => [:index]
resources :stock_house, :only =>[:index]
resources :worlds do
resources :banks
resources :workshops, :only => [:index]
end
resources :world_gods, only: [:create, :destroy]
match "senat" => "senat#index"
resources :godschats, only: [:index, :create, :destroy]
resources :ministry, only: [:index]
match 'ministry/guild-status/:request_id/validation' => 'ministry#guild_status_validation', via: :put, as: 'guild_status_validation'
match 'ministry/guild-world/:id/accept' => 'ministry#accept_guild_world', as: 'ministry_world_accept'
match 'ministry/guild-world/:id/refuse' => 'ministry#refuse_guild_world', as: 'ministry_world_refuse', via: 'delete'
match 'ministry/subject-world/:id/accept' => 'ministry#accept_subject_world', as: 'ministry_subject_accept'
match 'ministry/subject-world/:id/refuse' => 'ministry#refuse_subject_world', as: 'ministry_subject_refuse', via: 'delete'
resources :world_factory, :only => [:index]
match 'world_factory/set_god' => 'world_factory#set_god', as: 'world_factory_set_god', via: :post
resources :steps do
member do
get :up
get :down
end
end
resources :subjects do
resources :documents
end
match "ping/user/" => "ping#user", via: :post, as: "ping_user"
match "ping/guild/:id" => "ping#guild", via: :post, as: "ping_guild"
# The priority is based upon order of creation:
# first created -> highest priority.
# Sample of regular route:
# match 'products/:id' => 'catalog#view'
# Keep in mind you can assign values other than :controller and :action
# Sample of named route:
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
# This route can be invoked with purchase_url(:id => product.id)
# Sample resource route (maps HTTP verbs to controller actions automatically):
# resources :products
# Sample resource route with options:
# resources :products do
# member do
# get 'short'
# post 'toggle'
# end
#
# collection do
# get 'sold'
# end
# end
# Sample resource route with sub-resources:
# resources :products do
# resources :comments, :sales
# resource :seller
# end
# Sample resource route with more complex sub-resources
# resources :products do
# resources :comments
# resources :sales do
# get 'recent', :on => :collection
# end
# end
# Sample resource route within a namespace:
# namespace :admin do
# # Directs /admin/products/* to Admin::ProductsController
# # (app/controllers/admin/products_controller.rb)
# resources :products
# end
# You can have the root of your site routed with "root"
# just remember to delete public/index.html.
root :to => 'home#index'
# See how all your routes lay out with "rake routes"
# This is a legacy wild controller route that's not recommended for RESTful applications.
# Note: This route will make all actions in every controller accessible via GET requests.
# match ':controller(/:action(/:id))(.:format)'
end
<file_sep>/epitech_PFA/test/unit/helpers/sanctuaries_helper_test.rb
require 'test_helper'
class SanctuariesHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/parliaments_controller.rb
# -*- coding: utf-8 -*-
class ParliamentsController < ApplicationController
before_filter :gods_only!, only: [:destroy]
before_filter :members_only!
# GET /parliaments
# GET /parliaments.json
def index
@parliament = Parliament.new
@parliament.guild_id = params[:guild_id]
@messages = Parliament.where(guild_id: params[:guild_id]).order('id desc').limit(30)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @parliaments }
end
end
# POST /parliaments
# POST /parliaments.json
def create
@parliament = Parliament.new(params[:parliament])
@parliament.user_id = current_user.id
@parliament.guild_id = params[:guild_id]
if GuildMember.where(:guild_id => @parliament.guild_id, :user_id => current_user.id) == nil
redirect_to root_path, alert: "Vous avez tenté de tricher, paysan. Que la colère des Dieux se déchaine sur vous !"
else
respond_to do |format|
if @parliament.save
guild = Guild.find(@parliament.guild_id)
guild.log_event(current_user, "Message au Parlement : " + @parliament.message)
format.html { redirect_to guild_parliaments_path(guild_id: @parliament.guild_id), notice: 'Le message a été envoyé avec succès.' }
format.json { render json: guild_parliaments_path(guild_id: @parliament.guild_id), status: :created, location: guild_parliaments_path(guild_id: @parliament.guild_id) }
else
@parliament = Parliament.new
@parliament.guild_id = params[:guild_id]
@messages = Parliament.where(guild_id: params[:guild_id]).order('id desc').limit(30)
format.html { render action: "index" }
format.json { render json: @parliament.errors, status: :unprocessable_entity }
end
end
end
end
# DELETE /parliaments/1
# DELETE /parliaments/1.json
def destroy
@parliament = Parliament.find(params[:id])
guild.log_event(current_user, "Suppression du message #" + @parliament.id.to_s + " du Parlement")
@parliament.destroy
respond_to do |format|
format.html { redirect_to parliaments_url }
format.json { head :no_content }
end
end
protected
def members_only!
unless current_user.guild_members.where(guild_id: params[:guild_id]).count != 0 or current_user.isgod == true
redirect_to root_path, alert: "Vous n'avez pas le droit d'être là, paysan."
end
end
end
<file_sep>/epitech_PFA/app/models/step.rb
# -*- coding: utf-8 -*-
class Step < ActiveRecord::Base
attr_accessible :name, :step, :details
validates :name, presence: true, uniqueness: true
validates_length_of :name, :minimum => 3, :message => "Le nom de l'étape est trop court."
end
<file_sep>/epitech_PFA/app/models/guild_world.rb
class GuildWorld < ActiveRecord::Base
belongs_to :guild
belongs_to :world
attr_accessible :guild_id, :world_id
validates_presence_of :world_id, :guild_id
end
<file_sep>/epitech_PFA/app/controllers/worlds_controller.rb
# -*- coding: utf-8 -*-
class WorldsController < ApplicationController
before_filter :gods_only!, only: [:index, :new, :create, :edit, :update, :destroy]
# GET /worlds
# GET /worlds.json
def index
@worlds = World.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @worlds }
end
end
# GET /worlds/1
# GET /worlds/1.json
def show
@world = World.find(params[:id])
@Gworlds = GuildWorld.where(:world_id => params[:id])
@world_gods = WorldGod.where(world_id: @world.id)
respond_to do |format|
format.html # show.html.erb
format.json { render json: @world }
end
end
# GET /worlds/new
# GET /worlds/new.json
def new
@world = World.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @world }
end
end
# GET /worlds/1/edit
def edit
@world = World.find(params[:id])
end
# POST /worlds
# POST /worlds.json
def create
@world = World.new(params[:world])
respond_to do |format|
if @world.save
wg = WorldGod.new
wg.world_id = @world.id
wg.user_id = current_user.id
if wg.save
format.html { redirect_to @world, notice: 'Le nouveau monde a bien été créé.' }
format.json { render json: @world, status: :created, location: @world }
else
format.html { render action: "new" }
format.json { render json: wg.errors, status: :unprocessable_entity }
end
else
format.html { render action: "new" }
format.json { render json: @world.errors, status: :unprocessable_entity }
end
end
end
# PUT /worlds/1
# PUT /worlds/1.json
def update
@world = World.find(params[:id])
respond_to do |format|
if @world.update_attributes(params[:world])
format.html { redirect_to @world, notice: 'World was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @world.errors, status: :unprocessable_entity }
end
end
end
# DELETE /worlds/1
# DELETE /worlds/1.json
def destroy
if params[:id] != 1
@world = World.find(params[:id])
@world.world_gods.destroy_all
@world.destroy
end
respond_to do |format|
format.html { redirect_to worlds_url }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/controllers/ministry_controller.rb
# -*- coding: utf-8 -*-
class MinistryController < ApplicationController
before_filter :god_only!
def index
@requests_status = Array.new
@requests_world = Array.new
@requests_subject = Array.new
WorldGod.where(user_id: current_user.id).each do |w|
world = World.find(w.world_id)
world.guild_worlds.each do |g|
guild = Guild.find(g.guild_id)
rst = guild.guild_steps.where(ready: true)
rw = guild.guild_worlds.where(["world_id = ? AND accepted = ?", world.id, false])
@requests_status.push(rst) if rst.count > 0
@requests_world.push(rw) if rw.count > 0
end
rsb = WorldSubject.where(["world_id = ? AND accepted = ?", world.id, false])
@requests_subject.push(rsb) if rsb.count > 0
end
end
def accept_guild_world
gw = GuildWorld.find(params[:id])
gw.accepted = true
if gw.save
guild = Guild.find(gw.guild_id)
world = World.find(gw.world_id)
if !guild.has_subject?
ws = WorldSubject.new
ws.world_id = world.id
ws.subject_id = guild.subject.id
ws.accepted = true
ws.save
end
guild.log_event(current_user, "Demande de rattachement au monde " + world.name + "#" + world.id.to_s + " acceptée.")
redirect_to ministry_index_path, notice: "Changement de monde accepté"
else
redirect_to ministry_index_path, notice: "Le changement de monde a échoué"
end
end
def refuse_guild_world
gw = GuildWorld.find(params[:id])
world = World.find(gw.world_id)
Guild.find(gw.guild_id).log_event(current_user, "Demande de rattachement au monde " + world.name + "#" + world.id.to_s + " refusée.")
gw.destroy
redirect_to ministry_index_path, notice: "La requête du paysan a bien été supprimée."
end
def accept_subject_world
ws = WorldSubject.find(params[:id])
ws.accepted = true
if ws.save
redirect_to ministry_index_path, notice: "Association du sujet #" + ws.subject_id.to_s + " au monde acceptée."
else
redirect_to ministry_index_path, notice: "L'association à un monde a échouée."
end
end
def refuse_subject_world
ws = WorldSubject.find(params[:id])
ws.destroy
redirect_to ministry_index_path, notice: "La requête du paysan a bien été supprimée."
end
def guild_status_validation
@request = GuildStep.find(params[:request_id])
@request.ready = false
@request.comment = params[:comment]
log_steps_move = Step.find_by_step(@request.step).name + " -> " + Step.find_by_step(@request.step + 1).name
if params[:decision] == "ok"
@request.lastanswer = true
@request.step += 1
else
@request.lastanswer = false
end
@request.save!
guild = Guild.find(@request.guild_id)
guild.log_event(current_user, "Demande de changement de status (#{log_steps_move}) " + (@request.lastanswer ? "acceptée" : "refusée") + ". Commentaire: " + @request.comment)
redirect_to ministry_index_path, notice: "Vous avez " + (@request.lastanswer ? "accepté" : "refusé") + " la demande des paysans."
end
private
def god_only!
if current_user.isgod == false
redirect_to root_path, alert: "Autrefois, on envoyait les paysans en enfer pour moins que ça..."
end
end
end
<file_sep>/epitech_PFA/test/unit/helpers/document_universals_helper_test.rb
require 'test_helper'
class DocumentUniversalsHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/models/godschat.rb
class Godschat < ActiveRecord::Base
attr_accessible :message, :user_id
validates :message, presence: true, uniqueness: true
validates_length_of :message, :minimum => 1, :message => "Les messages vides sont interdits."
end
<file_sep>/epitech_PFA/app/models/user.rb
class User < ActiveRecord::Base
has_many :fight_comments
has_many :guild_members
has_many :guilds, :through => :guild_members
has_many :world_gods
has_many :users, :through => :world_gods
has_many :guild_member_requests
has_many :guilds, through: :guild_member_requests, as: :join_requests
# Include default devise modules. Others available are:
# :token_authenticatable, :confirmable,
# :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable
# Setup accessible (or protected) attributes for your model
attr_accessible :username, :email, :password, :password_confirmation, :remember_me
# attr_accessible :title, :body
validates_uniqueness_of :username
before_save :make_first_user_god!
def status
if self.isgod == true
"dieu"
else
"paysan"
end
end
def related_worlds
worlds = Array.new
self.guild_members.each do |gm|
worlds.push(gm.guild_id)
end
worlds.uniq
end
def all_guilds
result = Array.new
self.guilds.each do |g|
result.push(g)
end
Guild.where(:leader => self.id).each do |g|
result.push(g)
end
result
end
def guild
if self.guild_members.count == 0
nil
else
Guild.find(self.guild_members.first.guild_id)
end
end
def related_to_guild?(guild)
guild.leader == self.id or guild.guild_members.where(user_id: self.id).count != 0
end
def self.find_for_database_authentication(conditions={})
self.where("username = ?", conditions[:username]).limit(1).first
end
private
def make_first_user_god!
self.isgod = true if User.count == 0
end
end
<file_sep>/epitech_PFA/app/mailers/ping_user.rb
class PingUser < ActionMailer::Base
default from: "<EMAIL>"
def ping(from, to, message)
@from = from
@to = to
@message = message
mail(:to => to.email, :subject => "PFA: PING !!")
end
end
<file_sep>/epitech_PFA/app/controllers/guild_member_requests_controller.rb
# -*- coding: utf-8 -*-
class GuildMemberRequestsController < ApplicationController
def join
guild = Guild.find(params[:guild_id])
request = self.build_request(guild)
request.user_id = current_user.id
self.query_out_request!(guild, current_user, request)
end
def invite
guild = Guild.find(params[:guild_id])
user = User.find_by_username(params[:guild_member_request][:user_id])
request = self.build_request(guild)
if user.nil?
redirect_to guild, alert: "Ce paysan n'existe pas. Les Dieux ne lui ont pas encore donné la vie !"
else
request.user_id = user.id
if current_user.isgod == false and guild.is_leader?(current_user.id) == false
redirect_to guild, alert: "Seuls les Dieux et le leader peuvent inviter un paysan à rejoindre cette guilde."
else
self.query_out_request!(guild, user, request)
end
end
end
def accept
request = GuildMemberRequest.find(params[:request_id])
guild = Guild.find(request.guild_id)
if (current_user.isgod == true) or (request.requested_by == request.user_id and guild.is_leader?(current_user.id) or (guild.is_leader?(request.requested_by) and request.user_id == current_user.id))
gmember = GuildMember.new
gmember.guild_id = guild.id
gmember.user_id = request.user_id
respond_to do |format|
if gmember.save
guild.log_event(current_user, "Demande d'ajout du membre " + User.find(gmember.user_id).username + "#" + gmember.user_id.to_s + " acceptée.")
GuildMemberRequest.delete_all(["user_id = ?", request.user_id])
format.html { redirect_to guild, notice: "Le paysan est maintenant membre de la guilde." }
format.json { head :ok }
else
format.html { redirect_to guild, alert: "L'ajout du paysan à la guilde a échoué." }
format.json { head :no }
end
end
else
redirect_to guild, alert: "Vous n'avez pas la permission d'accepter cette requête, paysan."
end
end
def destroy
request = GuildMemberRequest.find(params[:request_id])
guild = Guild.find(request.guild_id)
if current_user.isgod == false and guild.is_leader?(current_user.id) == false and request.user_id != current_user.id
redirect_to guild, alert: "Seuls les Dieux, le leader de la guilde et le paysan concerné peuvent annuler cette requête."
else
guild.log_event(current_user, "Demande d'ajout du membre " + User.find(request.user_id).username + "#" + request.user_id.to_s + " annulée.")
request.destroy
redirect_to guild, notice: "Vos prières ont été entendues des Dieux et la requête a bien été annulée."
end
end
protected
def can_user_join_guild?(guild, user)
if guild.is_leader?(user.id) or guild.guild_members.where(user_id: user.id).count != 0
redirect_to guild, alert: "Le " + user.status + " " + user.username + " fait déjà partie de cette guilde."
false
elsif guild.guild_member_requests.where(user_id: user.id).count != 0
redirect_to guild, alert: "Le " + user.status + " " + user.username + " a déjà une demande en attente pour rejoindre cette guilde."
false
elsif GuildMember.where(user_id: user.id).limit(1).count != 0
redirect_to guild, alert: "Le " + user.status + " " + user.username + " fait déjà partie d'une guilde."
false
elsif user.isgod == true
redirect_to guild, alert: "Allons, paysan, soyez raisonnable. Vous ne pensez tout de même pas qu'un Dieu s'abaissera à rejoindre votre guilde ?!"
false
else
true
end
end
def query_out_request!(guild, user, request)
unless self.can_user_join_guild?(guild, user) == false
if request.save
guild.log_event(current_user, "Demande d'ajout de nouveau membre : " + user.username + "#" + user.id.to_s)
redirect_to guild, notice: "Votre demande a bien été transmise via Edith the travelling goose (you know? like Edith Piaf...)"
end
end
end
def build_request(guild)
request = GuildMemberRequest.new
request.guild_id = guild.id
request.requested_by = current_user.id
request
end
end
<file_sep>/epitech_PFA/db/seeds.rb
# -*- coding: utf-8 -*-
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
puts "Adding several users..."
def add_many_users(basename, god, how_many)
(1..how_many).each do |num|
puts "- Adding #{basename}#{num}"
user = User.new
user.isgod = god
user.username = "#{basename.downcase}#{num}"
user.email = "#{basename.<EMAIL>"
user.password = "<PASSWORD>"
user.password = "<PASSWORD>"
user.save!
end
end
add_many_users("Root", true, 5)
add_many_users("User", false, 10)
puts "Users are set !"
["La terre libre", "LabFree", "ACSEL", "GDL", "Txt", "ESL"].each do |lab|
puts "Adding a new lab : #{lab}."
world = World.new
world.name = lab
world.save!
end
puts "Mise en place des 6 premieres etapes"
steps = [["Valider le groupe", "Votre groupe ne doit pas depasser les 15 membres et vous devez tous etre beaux ... :/"],
["Valider le sujet", "Le sujet doit etre bien prepare structure, bien pense cool et swag en meme temps"],
["Ajouter des sujets", "Il faut pour cela ajouter vos fichiers avec de beaux fichiers et tout le monde sera bien content ! MWaHWA"],
["Lancement du projet", "Les regles sont posees. A vous de jouer maintenant !"],
["Soutenance intermediaire 1", "Venez presentez aux Dieux l'avancement de votre projet lors de cette premiere soutenance intermediaire !"],
["Soutenance intermediaire 2", "Venez presentez aux Dieux l'avancement de votre projet lors de cette deuxieme soutenance intermediaire !"],
["Soutenance finale !", "Va falloir vendre du reve, envoyer du steak et etre tres tres gentil !"]]
steps.each_index do |idx|
puts " - Ajout de l'etape '#{steps[idx][0]}'."
step = Step.new
step.name = steps[idx][0]
step.details = steps[idx][1]
step.step = idx
step.save!
end
puts "Les 6 etapes ont ete ajoutees !"
<file_sep>/epitech_PFA/app/models/fight.rb
class Fight < ActiveRecord::Base
attr_accessible :guild_id, :over, :subject_id
belongs_to :guild
belongs_to :subject
has_many :fight_comments
end
<file_sep>/README.rdoc
== Presentation site PFA EPITECH
== Script reset_database
* Il permet de virer toute la DB et de la remettre en place.
On peut par la suite aussi lui faire lancer le :
rake db:seeds
Pour avoir une <tt>db test</tt> de base.
== Utilisation de la gem : 'nested_scaffold'.
Permet de scaffold en nested sur un autre model.
* Usage
cmd :
% rails generate nested_scaffold PARENT_NAME/NAME [field:type field:type] [options]
(Expects PARENT model to exist in advance)
* Example
While “Post” model exists,
% rails g nested_scaffold post/comment name:string content:text
This will create:
comment {model, controller, helper, views, tests}
nested resource route
Post.has_many :comments association
<tt>Yoones</tt> and <tt>C404</tt> working on epitech web theme PFA :)<file_sep>/epitech_PFA/app/models/guild_step.rb
class GuildStep < ActiveRecord::Base
belongs_to :guild
# attr_accessible :title, :body
end
<file_sep>/epitech_PFA/app/controllers/world_factory_controller.rb
# -*- coding: utf-8 -*-
class WorldFactoryController < ApplicationController
before_filter :gods_only!
def index
@gods_list = User.where(isgod: true)
end
def set_god
u = User.find_by_username(params[:user][:username])
if u.nil?
redirect_to world_factory_index_path, alert: "Mauvais nom d'utilisateur"
else
u.isgod = true
u.save
redirect_to world_factory_index_path, notice: u.username + " est maintenant élevé au rang de Dieu."
end
end
end
<file_sep>/epitech_PFA/app/controllers/application_controller.rb
# -*- coding: utf-8 -*-
class ApplicationController < ActionController::Base
before_filter :authenticate_user!, :load_current_user_info
protect_from_forgery
private
def gods_only!
unless user_signed_in? and current_user.isgod == true
redirect_to root_path, alert: "Dieux, accordez votre pardon à ce misérable paysan, car il ne sait pas ce qu'il fait."
end
end
def load_current_user_info
@user = current_user if user_signed_in?
end
end
<file_sep>/epitech_PFA/db/migrate/20120822153458_create_guild_member_requests.rb
class CreateGuildMemberRequests < ActiveRecord::Migration
def change
create_table :guild_member_requests do |t|
t.integer :guild_id
t.integer :user_id
t.integer :requested_by
t.timestamps
end
end
end
<file_sep>/epitech_PFA/test/unit/helpers/stock_house_helper_test.rb
require 'test_helper'
class StockHouseHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/guild_members_controller.rb
# -*- coding: utf-8 -*-
class GuildMembersController < ApplicationController
def set_leader
@guild = Guild.find(params[:guild_id])
@membership = GuildMember.find(params[:relation_id])
if @guild.id != @membership.guild_id
redirect_to @guild, alert: "Trîcher vous attirera les foudres des Dieux. Prenez garde, paysan !"
elsif current_user.isgod == true or @guild.is_leader?(current_user.id)
@membership.is_admin = true
if @membership.save
@guild.log_event(current_user, "Ajout de leader : " + User.find(@membership.user_id).username + "#" + @membership.user_id.to_s)
redirect_to @guild, notice: "Vous venez d'ajouter un leader à votre guilde."
else
redirect_to @guild, alert: "L'ajout d'un leader à votre guilde a échoué."
end
else
redirect_to @guild, alert: "Seuls les Dieux et les leaders de cette guilde peuvent déclarer un nouveau leader."
end
end
def destroy
@gMember = GuildMember.find(params[:id])
@guild = Guild.find(params[:guild_id])
if current_user.isgod == false and @guild.is_leader?(current_user.id) == false and @gMember.user_id != current_user.id
redirect_to @guild, alert: "Paysan, vous n'avez pas la permission de supprimer un membre de cette guilde. Continuez à faire le malin, et vous serez châtié par les Dieux."
else
@guild.log_event(current_user, "Suppression de membre : " + User.find(@gMember.user_id).username + "#" + @gMember.user_id.to_s)
@gMember.destroy
@guild_leader = @guild.guild_members.where(:is_admin => true, :user_id => params[:id])
@total_gl = @guild_leader.count
if @guild.guild_members.count == 0
@guild.guild_members.destroy_all
@guild.guild_worlds.destroy_all
@guild.guild_steps.destroy_all
# DELETE USER'S GUILD MEMBER REQUESTS
Subject.update_all(["guild_id = ?", nil], ["guild_id = ?", @guild.id])
@guild.log_event(current_user, "Suppression")
@guild.destroy
end
end
respond_to do |format|
format.html { redirect_to @guild }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/models/sanctuary.rb
class Sanctuary < ActiveRecord::Base
attr_accessible :message, :user_id, :world_id
validates :message, presence: true
validates_length_of :message, :minimum => 2, :message => "Merci de laisser un message pour les pauvres paysans qui vous lisent."
end
<file_sep>/epitech_PFA/test/unit/helpers/world_factory_helper_test.rb
require 'test_helper'
class WorldFactoryHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/script/import_students.rb
##
## import_students.rb
## Login : <<EMAIL>>
## Started on Tue Sep 18 17:24:29 2012 Lta Akr
## $Id$
##
## Author(s):
## - <NAME> <>
##
## Copyright (C) 2012 L<NAME>
##
## rails runner ./script ./path/to/passwd ./path/to/ppp.blowfish 2009
promo = `cat #{ARGV[0]} | grep epitech_#{ARGV[2]} | cut -d ':' -f 1`.split "\n"
`cat #{ARGV[1]}`.split("\n").each do |line|
tmp = line.split " "
if promo.include? tmp[0]
puts "Adding user \t#{tmp[0]}\t with hash #{tmp[1]}"
u = User.create!(username: tmp[0], email: "#{<EMAIL>", password: "<PASSWORD>", password_confirmation: "<PASSWORD>")
u.encrypted_password = tmp[1]
u.save!
end
end
<file_sep>/epitech_PFA/app/models/guild_member.rb
class GuildMember < ActiveRecord::Base
belongs_to :user
belongs_to :guild
attr_accessible :is_admin, :user_id, :guild_id
end
<file_sep>/epitech_PFA/test/unit/helpers/prefecture_helper_test.rb
require 'test_helper'
class PrefectureHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/home_controller.rb
class HomeController < ApplicationController
def index
if current_user.isgod == true
@worlds = WorldGod.where(:user_id => current_user.id)
@requests_status = Array.new
@requests_world = Array.new
@requests_subject = Array.new
WorldGod.where(user_id: current_user.id).each do |w|
world = World.find(w.world_id)
world.guild_worlds.each do |g|
guild = Guild.find(g.guild_id)
rst = guild.guild_steps.where(ready: true)
rw = guild.guild_worlds.where(["world_id = ? AND accepted = ?", world.id, false])
@requests_status.push(rst) if rst.count > 0
@requests_world.push(rw) if rw.count > 0
end
rsb = WorldSubject.where(["world_id = ? AND accepted = ?", world.id, false])
@requests_subject.push(rsb) if rsb.count > 0
end
end
@guild_id = GuildMember.find_by_user_id(current_user.id)
if @guild_id != nil
@guild = Guild.find(@guild_id.guild_id)
@subject = Subject.find_by_guild_id(@guild.id)
@Gstep = @guild.guild_steps.first
@step = Step.find_by_step(@Gstep.step)
if @guild != nil
@worlds = World.where(:id => @guild.id)
@myWorlds = @guild.guild_worlds.all
end
end
# Retreive guild member requests
@requests = GuildMemberRequest.where(requested_by: current_user.id)
@invitations = GuildMemberRequest.where(["requested_by != ? AND user_id = ?", current_user.id, current_user.id])
@has_requests = (@requests.count != 0 or @invitations.count != 0) ? true : false
end
end
<file_sep>/epitech_PFA/app/models/subject.rb
# -*- coding: utf-8 -*-
class Subject < ActiveRecord::Base
attr_accessible :guild_id, :name, :description, :documents_attributes
has_many :fights
has_many :world_subjects
has_many :worlds, through: :world_subjects
has_many :documents, :dependent => :destroy
accepts_nested_attributes_for :documents, :allow_destroy => true
validates_uniqueness_of :name
validates_length_of :name, :minimum => 5, :message => "Un peu plus d\'imagination s\'il te plait ?"
validates_length_of :description, :minimum => 20, :message => "Soyez créatif, paysan !"
end
<file_sep>/epitech_PFA/db/migrate/20120824215154_add_ready_to_guild_step.rb
class AddReadyToGuildStep < ActiveRecord::Migration
def change
add_column :guild_steps, :ready, :boolean, default: false
end
end
<file_sep>/epitech_PFA/test/unit/helpers/senat_helper_test.rb
require 'test_helper'
class SenatHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/steps_controller.rb
# -*- coding: utf-8 -*-
class StepsController < ApplicationController
before_filter :gods_only!
# GET /steps
# GET /steps.json
def index
@steps = Step.all(:order => :step)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @steps }
end
end
# GET /steps/1
# GET /steps/1.json
def show
@step = Step.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @step }
end
end
# GET /steps/new
# GET /steps/new.json
def new
@step = Step.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @step }
end
end
# GET /steps/1/edit
def edit
@step = Step.find(params[:id])
end
# POST /steps
# POST /steps.json
def create
@step = Step.new(params[:step])
get_high = Step.last(:order => :step)
if get_high == nil
@step.step = 0
else
@step.step = get_high.step
@step.step += 1
end
respond_to do |format|
if @step.save
format.html { redirect_to steps_url }
format.json { head :no_content }
else
format.html { render action: "new" }
format.json { render json: @step.errors, status: :unprocessable_entity }
end
end
end
# PUT /steps/1
# PUT /steps/1.json
def update
@step = Step.find(params[:id])
respond_to do |format|
if @step.update_attributes(params[:step])
format.html { redirect_to @step, notice: 'Step was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @step.errors, status: :unprocessable_entity }
end
end
end
# DELETE /steps/1
# DELETE /steps/1.json
def destroy
@step = Step.find(params[:id])
if Step.count > 1
@check_guilds = Guild.all
@check_guilds.each do |guild|
guild.guild_steps.each do |check|
if (check != nil) and (check.step == @step.step)
check.step = 0
check.save!
end
end
end
@step.destroy
@step = Step.all
var = 0
@step.each do |cur_step|
cur_step.step = var
var += 1
cur_step.save!
end
end
respond_to do |format|
format.html { redirect_to steps_url }
format.json { head :no_content }
end
end
def down
@step = Step.find(params[:id])
if @step.step > 0
stepdown = @step.step
stepdown -= 1
@sup = Step.find_by_step(stepdown)
@sup.step += 1
@step.step -= 1
end
if @sup != nil
@sup.save!
end
@step.save!
respond_to do |format|
format.html { redirect_to steps_url }
format.json { head :no_content }
end
end
def up
@step = Step.find(params[:id])
if @step.step < Step.last(:order => :step).step
stepdown = @step.step
stepdown += 1
@sup = Step.find_by_step(stepdown)
@sup.step -= 1
@step.step += 1
end
if @sup != nil
@sup.save!
end
@step.save!
respond_to do |format|
format.html { redirect_to steps_url }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/models/guild_log.rb
class GuildLog < ActiveRecord::Base
belongs_to :guild
attr_accessible :event, :guild_id
end
<file_sep>/epitech_PFA/test/functional/godschats_controller_test.rb
require 'test_helper'
class GodschatsControllerTest < ActionController::TestCase
setup do
@godschat = godschats(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:godschats)
end
test "should get new" do
get :new
assert_response :success
end
test "should create godschat" do
assert_difference('Godschat.count') do
post :create, godschat: { message: @godschat.message, user_id: @godschat.user_id }
end
assert_redirected_to godschat_path(assigns(:godschat))
end
test "should show godschat" do
get :show, id: @godschat
assert_response :success
end
test "should get edit" do
get :edit, id: @godschat
assert_response :success
end
test "should update godschat" do
put :update, id: @godschat, godschat: { message: @godschat.message, user_id: @godschat.user_id }
assert_redirected_to godschat_path(assigns(:godschat))
end
test "should destroy godschat" do
assert_difference('Godschat.count', -1) do
delete :destroy, id: @godschat
end
assert_redirected_to godschats_path
end
end
<file_sep>/epitech_PFA/reset_database
#!/bin/sh
rm -rf public/system && rm db/development.sqlite3
if [ $# -ne 1 ]
then
env="RAILS_ENV=development"
else
env="RAILS_ENV=$1"
fi
rake db:migrate $env VERSION=0 --trace && rake db:migrate $env --trace && rake db:seed $env --trace<file_sep>/epitech_PFA/app/controllers/fight_comments_controller.rb
# -*- coding: utf-8 -*-
class FightCommentsController < ApplicationController
before_filter :gods_only!, only: [:destroy]
before_filter :can_post?, only: [:create]
# GET /fight_comments/1
# GET /fight_comments/1.json
def show
@fight_comment = FightComment.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @fight_comment }
end
end
# POST /fight_comments
# POST /fight_comments.json
def create
@fight_comment = FightComment.new(params[:fight_comment])
@fight_comment.fight_id = current_user.guild.fight.id
@fight_comment.guild_id = current_user.guild.id
@fight_comment.user_id = current_user.id
fight = Fight.find(@fight_comment.fight_id)
@fight_comment.subject_id = fight.subject_id
respond_to do |format|
if @fight_comment.save
format.html { redirect_to arena_user_fight_path, notice: "Votre message a bien été envoyé !" }
format.json { render json: @fight_comment, status: :created, location: @fight_comment }
else
format.html { render action: "new" }
format.json { render json: @fight_comment.errors, status: :unprocessable_entity }
end
end
end
# DELETE /fight_comments/1
# DELETE /fight_comments/1.json
def destroy
@fight_comment = FightComment.find(params[:id])
@fight_comment.destroy
respond_to do |format|
format.html { redirect_to fight_comments_url }
format.json { head :no_content }
end
end
private
def can_post?
if current_user.guild == nil or current_user.guild.fight == nil
redirect_to "Paysan, comprendrez-vous un jour que vous n'avez PAS le droit de faire cela ? Evitez de contrarier les Dieux avec ces gamineries, elles ne vous attireront que des ennuis."
end
end
end
<file_sep>/epitech_PFA/app/controllers/god_subject_controller.rb
class GodSubjectController < ApplicationController
before_filter :gods_only!, only: [:new, :create]
def new
if current_user.isgod == true
respond_to do |format|
format.html # new.html.erb
format.json { render json: @subject }
end
else
redirect_to arena_path, notice: "Mauvais chemin paysan !"
end
end
def create
if current_user.isgod == true
@subject = Subject.new
@subject.name = params[:god_subject][:name]
@subject.description = params[:god_subject][:description]
if @subject.save
@world_subject = WorldSubject.new
@world = World.find_by_name(params[:world_id])
if @world != nil
@world_subject.world_id = @world.id
@world_subject.subject_id = @subject.id
@world_subject.save
redirect_to arena_path, notice: "Dieu, ton oeuvre est parvenue aux paysans"
else
redirect_to arena_path, notice: "Dieu, votre sujet n'est pas lie a votre monde ..."
end
else
redirect_to arena_path, notice: "Dieu, votre sujet n'est pas arrive a bonne destination ..."
end
else
redirect_to arena_path, notice: "Mauvais chemin paysan !"
end
end
end
<file_sep>/epitech_PFA/app/controllers/workshops_controller.rb
class WorkshopsController < ApplicationController
def index
@guild_member = GuildMember.find_by_user_id(current_user.id)
if @guild_member != nil
@guild = Guild.find(@guild_member.guild_id)
@subjects = Subject.where(guild_id: @guild.id)
@step = GuildStep.find_by_guild_id(@guild.id)
@step_name = Step.find_by_step(@step.step)
@GW = GuildWorld.find_by_guild_id(@guild_member.id)
if @GW != nil
@world = World.find(@GW.world_id)
@resource = @world.banks
end
@GR = GuildWorld.where(:guild_id => @guild.id)
end
end
end
<file_sep>/epitech_PFA/app/controllers/world_gods_controller.rb
# -*- coding: utf-8 -*-
class WorldGodsController < ApplicationController
before_filter :gods_only!
# POST /world_gods
# POST /world_gods.json
def create
@world_god = WorldGod.new(params[:world_god])
@world_god.world_id = params[:world_id]
u = User.find_by_username(params[:world_god][:user_id])
if u == nil
redirect_to world_path(@world_god.world_id), alert: "Ce nom d'utilisateur n'existe pas."
elsif u.isgod == false
redirect_to world_path(@world_god.world_id), alert: "Cet utilisateur n'a pas le status de Dieu, et ne peut donc pas gérer un monde."
elsif WorldGod.where(["world_id = ? AND user_id = ?", @world_god.world_id, u.id]).count != 0
redirect_to world_path(@world_god.world_id), alert: "Cet utilisateur est déjà Dieu sur ce monde"
else
@world_god.user_id = u.id
respond_to do |format|
if @world_god.save
format.html { redirect_to world_path(@world_god.world_id), notice: 'Un Dieu a été ajouté à ce monde avec succès.' }
format.json { render json: @world_god, status: :created, location: @world_god }
else
format.html { render action: "new" }
format.json { render json: @world_god.errors, status: :unprocessable_entity }
end
end
end
end
# DELETE /world_gods/1
# DELETE /world_gods/1.json
def destroy
@world_god = WorldGod.find(params[:id])
@world_god.destroy
respond_to do |format|
format.html { redirect_to world_gods_url }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/models/document_universal.rb
require 'paperclip'
class DocumentUniversal < ActiveRecord::Base
attr_accessible :name, :attach
validates :name, presence: true
belongs_to :subject
has_attached_file :attach,
:url => "/:class/:id/:basename.:extension",
:path => ":rails_root/public/:class/:id/:basename.:extension"
validates_attachment :attach,
:presence => true,
:size => { :in => 0..10.megabytes },
:content_type => { :content_type => ["image/jpeg",
"image/jpg",
"image/png",
"image/gif",
"image/prs.btif",
"image/bmp",
"text/plain",
"application/msword",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document",
"application/vnd.ms-powerpoint",
"application/vnd.openxmlformats-officedocument.presentationml.presentation",
"application/vnd.ms-excel",
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"application/rtf",
"application/pdf",
"application/zip",
"application/x-gzip",
"video/quicktime",
"video/x-msvideo",
"video/mp4",
"video/x-flv",
"audio/mpeg",
"audio/x-wav"] }
end
<file_sep>/epitech_PFA/app/controllers/arena_controller.rb
# -*- coding: utf-8 -*-
class ArenaController < ApplicationController
def index
@fights = Fight.all
@guilds = Guild.all
@subjects = Subject.where(guild_id: nil)
end
def user_fight
if can_access?(true)
redirect_to arena_show_fight_path(subject_id: current_user.guild.fight.subject_id)
end
end
def show_fight
@subject = Subject.find(params[:subject_id])
@fight = Fight.where(["subject_id = ? AND over = ?", @subject.id, false])
@fight_comments = FightComment.where(subject_id: @subject.id)
end
def start_fight
if can_access?(false)
if current_user.guild.is_leader?(current_user.id) == false
redirect_to arena_path, alert: "La décision d'entrer en combat est trop importante pour être prise par un simple paysan. Adressez vous au leader de votre guilde."
else
subject = Subject.find(params[:subject_id])
fight = Fight.new
fight.subject_id = subject.id
fight.guild_id = current_user.guild.id
fight.save!
redirect_to arena_user_fight_path, notice: "Vous combattez maintenant pour la quête #" + subject.id.to_s
end
end
end
def abandon_fight
if can_access?(true)
if current_user.guild.is_leader?(current_user.id) == false
redirect_to arena_path, alert: "Vous décidez de fuire ? Sans l'accord du leader de votre guilde ? Quelle jeunesse..."
else
fight = Fight.find(params[:fight_id])
id = fight.subject_id
fight.destroy
redirect_to arena_user_fight_path, notice: "Vous ne combattez plus pour la quête #" + id.to_s
end
end
end
private
def can_access?(should_have_guild)
if current_user.guild.nil?
redirect_to arena_path, alert: "Paysan, seriez vous assez fou pour tenter d\'entrer dans l\'arène sans une guilde ?"
false
elsif current_user.guild.fight.nil? == should_have_guild
redirect_to arena_path, alert: "Allons, paysan, vous savez bien que vous " + (should_have_guild ? "n'avez pas de" : "avez déjà un") + " combat en cours."
false
else
true
end
end
end
<file_sep>/epitech_PFA/test/unit/helpers/guild_description_helper_test.rb
require 'test_helper'
class GuildDescriptionHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/test/unit/helpers/fight_comments_helper_test.rb
require 'test_helper'
class FightCommentsHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/ping_controller.rb
# -*- coding: utf-8 -*-
class PingController < ApplicationController
before_filter :gods_only!
def index
end
def user
dest = User.find_by_username(params[:username])
if dest == nil
redirect_to sanctuaries_path, alert: "Aucun paysan ne porte ce nom !"
else
PingUser.ping(current_user, dest, params[:message]).deliver
redirect_to root_path, notice: "Ping envoyé au paysan !"
end
end
def guild
guild = Guild.find(params[:id])
guild.log_event(current_user, "Ping: " + params[:message].to_s)
guild.guild_members.each do |member|
PingUser.ping(current_user, User.find(member.user_id), params[:message]).deliver
end
redirect_to root_path, notice: "Ping envoyé à la guilde !"
end
end
<file_sep>/epitech_PFA/app/models/fight_comment.rb
class FightComment < ActiveRecord::Base
attr_accessible :fight_id, :guild_id, :message, :user_id
belongs_to :fight
belongs_to :guild
belongs_to :user
end
<file_sep>/epitech_PFA/app/controllers/prefecture_controller.rb
# -*- coding: utf-8 -*-
class PrefectureController < ApplicationController
before_filter :must_have_guild!
def index
@guild_member = GuildMember.find_by_user_id(current_user.id)
if @guild_member != nil
@guild = Guild.find(@guild_member.guild_id)
@members = @guild.guild_members.all
@subject = Subject.find_by_guild_id(@guild.id)
@step = GuildStep.find_by_guild_id(@guild.id)
@step_name = Step.find_by_step(@step.step)
@step_max = Step.last(:order => :step).step
# USED TO DISPLAY GUILD PROGRESSION
@steps_count = Step.count
if @step_max != nil and @step != nil and @step.step < @step_max
@Nstep = @step.step
@Nstep += 1
@step_next = Step.find_by_step(@Nstep)
end
@worlds = @guild.guild_worlds.all
@last_status_change = GuildStep.where(guild_id: @guild.id).first
end
end
def join_world
gw = GuildWorld.new()
gw.guild_id = params[:guild_id];
world = World.find(params[:world_id])
if world == nil
redirect_to prefecture_index_path, alert: "Paysan, ce monde n'existe pas et nous n'avons pas l'intention de le créer juste pour vous."
else
gw.world_id = world.id
request = GuildWorld.where("guild_id = ? AND world_id = ?", gw.guild_id, gw.world_id)
if request.count > 0
if request.first.accepted == true
redirect_to prefecture_index_path, alert: "Paysan, vous faites déjà partie de ce monde."
else
redirect_to prefecture_index_path, alert: "Paysan, vous avez déjà sollicité les Dieux pour rejoindre ce monde. Soyez patient ou vous subirez le châtiment ultime !"
end
else
gw.save
guild = Guild.find(gw.guild_id)
guild.log_event(current_user, "Demande de rattachement au monde " + world.name + "#" + world.id.to_s)
redirect_to prefecture_index_path, notice: "Paysan, votre demande a été transmise. Patience, les Dieux consulteront votre requête quand l'envie leurs viendra, priez..."
end
end
end
private
def must_have_guild!
if current_user.guild_members.count == 0
redirect_to root_path, alert: "La préfecture vous sera ouverte le jour ou vous aurez une guilde, paysan."
end
end
end
<file_sep>/epitech_PFA/app/models/world.rb
class World < ActiveRecord::Base
has_many :banks
has_many :guild_worlds
has_many :guilds, :through => :guild_worlds
has_many :world_subjects
has_many :subjects, :through => :world_subjects
validates :name, presence: true, uniqueness: true
validates_length_of :name, :minimum => 3, :message => "Le nom du monde est trop court."
has_many :world_gods
has_many :users, through: :world_gods
attr_accessible :name
def population
result = 0
self.guild_worlds.where(accepted: true).each do |g|
result += Guild.find(g.guild_id).guild_members.count
end
result
end
end
<file_sep>/epitech_PFA/test/functional/sanctuaries_controller_test.rb
require 'test_helper'
class SanctuariesControllerTest < ActionController::TestCase
setup do
@sanctuary = sanctuaries(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:sanctuaries)
end
test "should get new" do
get :new
assert_response :success
end
test "should create sanctuary" do
assert_difference('Sanctuary.count') do
post :create, sanctuary: { message: @sanctuary.message, user_id: @sanctuary.user_id, world_id: @sanctuary.world_id }
end
assert_redirected_to sanctuary_path(assigns(:sanctuary))
end
test "should show sanctuary" do
get :show, id: @sanctuary
assert_response :success
end
test "should get edit" do
get :edit, id: @sanctuary
assert_response :success
end
test "should update sanctuary" do
put :update, id: @sanctuary, sanctuary: { message: @sanctuary.message, user_id: @sanctuary.user_id, world_id: @sanctuary.world_id }
assert_redirected_to sanctuary_path(assigns(:sanctuary))
end
test "should destroy sanctuary" do
assert_difference('Sanctuary.count', -1) do
delete :destroy, id: @sanctuary
end
assert_redirected_to sanctuaries_path
end
end
<file_sep>/epitech_PFA/app/controllers/guild_description_controller.rb
# -*- coding: utf-8 -*-
class GuildDescriptionController < ApplicationController
def create
@guild = Guild.find(params[:guild_id])
@is_member = GuildMember.find_by_user_id(current_user.id)
if current_user.isgod == true or @is_member and @is_member.guild_id == @guild.id
@description = GuildDescription.find_by_guild_id(@guild.id)
@description.description = params[:guild_description][:description]
if @description.save
redirect_to @guild, notice: "Paysan, la description de votre guilde est a jour !"
else
redirect_to @guild, alert: "Paysan, la description n'a pas ete mise a jour ..."
end
else
redirect_to @guild, alert: "Paysan, n'essayez pas d'aller à l'encontre de la volonté des Dieux. Ceci n'est pas votre guilde ..."
end
end
def new
@guild = Guild.find(params[:guild_id])
@is_member = @guild.guild_members.find_by_user_id(current_user.id)
if current_user.isgod == true or @is_member and @is_member.guild_id == @guild.id
@description = GuildDescription.find_by_guild_id(@guild.id)
else
redirect_to @guild, alert: "Paysan, n'essayez pas d'aller à l'encontre de la volonté des Dieux. Ceci n'est pas votre guilde ..."
end
end
end
<file_sep>/epitech_PFA/app/models/world_god.rb
class WorldGod < ActiveRecord::Base
attr_accessible :user_id, :world_id
belongs_to :world
belongs_to :user
end
<file_sep>/epitech_PFA/db/migrate/20120910221704_create_fights.rb
class CreateFights < ActiveRecord::Migration
def change
create_table :fights do |t|
t.integer :subject_id
t.integer :guild_id
t.boolean :over, default: false
t.timestamps
end
end
end
<file_sep>/epitech_PFA/app/models/parliament.rb
class Parliament < ActiveRecord::Base
attr_accessible :guild_id, :message, :user_id
validates_presence_of :message
validates_length_of :message, :minimum => 5, :message => "Votre message est trop court."
validates_length_of :message, :maximum => 500, :message => "Votre message est trop long (>500)."
end
<file_sep>/epitech_PFA/app/controllers/document_universals_controller.rb
# -*- coding: utf-8 -*-
class DocumentUniversalsController < ApplicationController
before_filter :gods_only!, only: [:destroy, :index, :new, :edit, :show]
# GET /document_universals
# GET /document_universals.json
def index
@document_universals = DocumentUniversal.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @document_universals }
end
end
# GET /document_universals/1
# GET /document_universals/1.json
def show
@document_universal = DocumentUniversal.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @document_universal }
end
end
# GET /document_universals/new
# GET /document_universals/new.json
def new
@document_universal = DocumentUniversal.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @document_universal }
end
end
# GET /document_universals/1/edit
def edit
@document_universal = DocumentUniversal.find(params[:id])
end
# POST /document_universals
# POST /document_universals.json
def create
@document_universal = DocumentUniversal.new(params[:document_universal])
respond_to do |format|
if @document_universal.save
format.html { redirect_to document_universals_url, notice: 'Le Document Universel ' + @document_universal.name + ' a été créé avec succès.' }
format.json { render json: @document_universal, status: :created, location: @document_universal }
else
format.html { render action: "new" }
format.json { render json: @document_universal.errors, status: :unprocessable_entity }
end
end
end
# PUT /document_universals/1
# PUT /document_universals/1.json
def update
@document_universal = DocumentUniversal.find(params[:id])
respond_to do |format|
if @document_universal.update_attributes(params[:document_universal])
format.html { redirect_to @document_universal, notice: 'Le Document Universel ' + @document_universal.name + ' a été édité avec succès.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @document_universal.errors, status: :unprocessable_entity }
end
end
end
# DELETE /document_universals/1
# DELETE /document_universals/1.json
def destroy
@document_universal = DocumentUniversal.find(params[:id])
# @document_universal.log_event(current_user, "Destruction")
@document_universal.destroy
respond_to do |format|
format.html { redirect_to document_universals_url, notice: 'Le Document Universel ' + @document_universal.name + ' a été supprimé avec succès.' }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/controllers/godschats_controller.rb
# -*- coding: utf-8 -*-
class GodschatsController < ApplicationController
before_filter :gods_only!
# GET /godschats
# GET /godschats.json
def index
@godschat = Godschat.new
@godschats = Godschat.order('id desc').limit(30)
respond_to do |format|
format.html # index.html.erb
format.json { render json: @godschats }
end
end
# GET /godschats/1
# GET /godschats/1.json
def show
@godschat = Godschat.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @godschat }
end
end
# GET /godschats/new
# GET /godschats/new.json
def new
@godschat = Godschat.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @godschat }
end
end
# GET /godschats/1/edit
def edit
@godschat = Godschat.find(params[:id])
end
# POST /godschats
# POST /godschats.json
def create
@godschat = Godschat.new(params[:godschat])
@godschat.user_id = current_user.id
respond_to do |format|
if @godschat.save
format.html { redirect_to godschats_path, notice: 'Votre message a bien été envoyé aux Dieux.' }
format.json { render json: godchats_path, status: :created, location: godchats_path }
else
format.html { render action: "new" }
format.json { render json: @godschat.errors, status: :unprocessable_entity }
end
end
end
# PUT /godschats/1
# PUT /godschats/1.json
def update
@godschat = Godschat.find(params[:id])
respond_to do |format|
if @godschat.update_attributes(params[:godschat])
format.html { redirect_to @godschat, notice: 'Le chat des Dieux a été mis à jour avec succès.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @godschat.errors, status: :unprocessable_entity }
end
end
end
# DELETE /godschats/1
# DELETE /godschats/1.json
def destroy
@godschat = Godschat.find(params[:id])
@godschat.destroy
respond_to do |format|
format.html { redirect_to godschats_url }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/app/controllers/subjects_controller.rb
# -*- coding: utf-8 -*-
class SubjectsController < ApplicationController
before_filter :gods_only!, only: [:destroy, :index]
# GET /subjects
# GET /subjects.json
def index
@subjects = Subject.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @subjects }
end
end
# GET /subjects/1
# GET /subjects/1.json
def show
@subject = Subject.find(params[:id])
@subject_worlds_list = WorldSubject.where(subject_id: @subject.id)
respond_to do |format|
format.html # show.html.erb
format.json { render json: @subject }
end
end
# GET /subjects/new
# GET /subjects/new.json
def new
@subject = Subject.new
if current_user.isgod == false and current_user.guild_members.count == 0
redirect_to workshops_path, alert: "Paysan, n'essayez pas d'aller à l'encontre de la volonté des Dieux. Commencez par faire vos preuves dans une guilde avant de pouvoir espérer être en charge d'un sujet."
elsif current_user.isgod == false and Subject.where(guild_id: current_user.guild_members.first.id).count != 0
redirect_to workshops_path, alert: "Paysan, ne vous enflammez pas, un sujet a déjà été attribué à votre guilde."
else
respond_to do |format|
format.html # new.html.erb
format.json { render json: @subject }
end
end
end
# GET /subjects/1/edit
def edit
@is_here = 2
@subject = Subject.find(params[:id])
if @subject.guild_id != nil
@guild = Guild.find(@subject.guild_id)
if @guild != nil and @guild.is_leader?(current_user.id) == false and current_user.isgod == false
redirect_to root_path, alert: "Vous n'avez pas la permission de modifier ce sujet, paysan."
end
end
end
# POST /subjects
# POST /subjects.json
def create
@subject = Subject.new(params[:subject])
if current_user.isgod == false and current_user.guild_members.count == 0
redirect_to workshops_path, alert: "Paysan, n'essayez pas d'aller à l'encontre de la volonté des Dieux. Commencez par faire vos preuves dans une guilde avant de pouvoir espérer être en charge d'une quête."
elsif current_user.isgod == false and Subject.where(guild_id: current_user.guild_members.first.id).count != 0
redirect_to workshops_path, alert: "Paysan, un sujet vous a déjà été attribué et vous le savez ! Continuez à tricher, et la colère des Dieux vous enverra en enfer !"
else
if current_user.isgod == false
guild_id = current_user.guild_members.first.guild_id
else
guild = Guild.where(name: params[:subject][:guild_id])
guild_id = guild.first.id if guild.count > 0
end
if guild_id.nil?
redirect_to workshops_path, alert: "La guilde " + params[:subject][:guild_id] + " n'existe pas."
else
@is_first = Subject.find_by_guild_id(guild_id)
if @is_first != nil
redirect_to workshops_path, alert: "Paysan ! Deux quêtes pour un seul homme ?! Tu te surestimes un petit peu là..."
else
@subject.guild_id = guild_id
respond_to do |format|
if @subject.save
guild = Guild.find(@subject.guild_id)
guild.log_event(current_user, "Création du sujet #" + @subject.id.to_s + " : " + @subject.name)
format.html { redirect_to @subject, notice: "Votre sujet a bien été créé." }
format.json { render json: @subject, status: :created, location: @subject }
else
format.html { render action: "new" }
format.json { render json: @subject.errors, status: :unprocessable_entity }
end
end
end
end
end
end
# PUT /subjects/1
# PUT /subjects/1.json
def update
@subject = Subject.find(params[:id])
if @subject.guild_id != nil
@guild = Guild.find(@subject.guild_id)
end
if @guild and @guild.is_leader?(current_user.id) == false and current_user.isgod == false
redirect_to root_path, alert: "Vous n'avez pas la permission de modifier ce sujet, paysan."
else
respond_to do |format|
if @subject.update_attributes(params[:subject])
if @subject.guild_id != nil
guild = Guild.find(@subject.guild_id)
guild.log_event(current_user, "Mise à jour du sujet #" + @subject.id.to_s + " : " + @subject.name)
end
if params[:guild_id] != nil and !params[:guild_id].empty?
@subject.guild_id = Guild.find_by_name(params[:guild_id]).id
@subject.save
end
format.html { redirect_to @subject, notice: 'Le sujet a été mis à jour avec succès.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @subject.errors, status: :unprocessable_entity }
end
end
end
end
# DELETE /subjects/1
# DELETE /subjects/1.json
def destroy
@subject = Subject.find(params[:id])
if @subject.guild_id != nil
guild.log_event(current_user, "Suppression du sujet #" + @subject.id.to_s + " : " + @subject.name)
end
@world = WorldSubject.find_by_subject_id(@subject.id)
@world.destroy if @world
@subject.destroy
respond_to do |format|
format.html { redirect_to arena_url, notice: 'Le sujet a bien ete destroy' }
format.json { head :no_content }
end
end
def link_to_world
world = World.find_by_name(params[:name])
subject = Subject.find(params[:subject_id])
if world.nil?
redirect_to subject, alert: "Ce monde n'existe pas, paysan."
elsif current_user.isgod == false
redirect_to subject, alert: "YOU ARE NO GOD AT ALL ... Paysan !"
else
ws = WorldSubject.where(["world_id = ? AND subject_id = ?", world.id, subject.id]).limit(1)
if ws.count != 0
redirect_to subject, alert: (ws.first.accepted == true ? "Ce sujet est déjà associé à ce monde." : "Vous avez déjà envoyé une demande pour ce monde. Patience, paysan.")
else
ws = WorldSubject.new
ws.world_id = world.id
ws.subject_id = subject.id
if ws.save
if subject.guild_id != nil
guild = Guild.find(subject.guild_id)
guild.log_event(current_user, "Demande d'association du sujet #" + subject.id.to_s + " au monde " + world.name)
end
redirect_to subject, notice: "Demande d'association du sujet #" + subject.id.to_s + " au monde " + world.name + " envoyée."
else
redirect_to subject, notice: "Echec d'envoi de la demande."
end
end
end
end
end
<file_sep>/epitech_PFA/test/functional/world_gods_controller_test.rb
require 'test_helper'
class WorldGodsControllerTest < ActionController::TestCase
setup do
@world_god = world_gods(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:world_gods)
end
test "should get new" do
get :new
assert_response :success
end
test "should create world_god" do
assert_difference('WorldGod.count') do
post :create, world_god: { user_id: @world_god.user_id, world_id: @world_god.world_id }
end
assert_redirected_to world_god_path(assigns(:world_god))
end
test "should show world_god" do
get :show, id: @world_god
assert_response :success
end
test "should get edit" do
get :edit, id: @world_god
assert_response :success
end
test "should update world_god" do
put :update, id: @world_god, world_god: { user_id: @world_god.user_id, world_id: @world_god.world_id }
assert_redirected_to world_god_path(assigns(:world_god))
end
test "should destroy world_god" do
assert_difference('WorldGod.count', -1) do
delete :destroy, id: @world_god
end
assert_redirected_to world_gods_path
end
end
<file_sep>/epitech_PFA/app/models/guild.rb
class Guild < ActiveRecord::Base
has_many :fights
has_many :fight_comments
has_many :guild_steps
has_many :steps, :through => :guild_steps
has_many :guild_members
has_many :users, :through => :guild_members
has_many :guild_member_requests
has_many :users, through: :guild_member_requests, as: :join_requests
has_many :guild_worlds
has_many :worlds, :through => :guild_worlds
has_many :guild_logs
attr_accessible :name
validates :name, presence: true, uniqueness: true
validates_length_of :name, :minimum => 5, :message => "Un peu plus d\'imagination s\'il te plait ?"
validates_length_of :name, :maximum => 40, :message => "Un peu trop d\'imagination nan ?"
def is_leader?(user_id)
u = self.guild_members.where({user_id: user_id, is_admin: true}).limit(1)
(u.count != 0)
end
def is_member?(user_id)
u = self.guild_members.where(user_id: user_id).limit(1)
(u.count != 0)
end
def has_subject?
if Subject.find_by_guild_id(self.id) != nil
true
else
false
end
end
def subject
Subject.find_by_guild_id(self.id)
end
def fight
fights = self.fights.where(over: false)
fights.count == 0 ? nil : fights.first
end
def log_event(user, message)
log = GuildLog.new
log.guild_id = self.id
log.user_id = user.id
log.event = message
log.save
end
end
<file_sep>/epitech_PFA/app/models/world_subject.rb
class WorldSubject < ActiveRecord::Base
attr_accessible :subject_id, :world_id
belongs_to :world
belongs_to :subject
end
<file_sep>/epitech_PFA/test/functional/document_universals_controller_test.rb
require 'test_helper'
class DocumentUniversalsControllerTest < ActionController::TestCase
setup do
@document_universal = document_universals(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:document_universals)
end
test "should get new" do
get :new
assert_response :success
end
test "should create document_universal" do
assert_difference('DocumentUniversal.count') do
post :create, document_universal: { name: @document_universal.name }
end
assert_redirected_to document_universal_path(assigns(:document_universal))
end
test "should show document_universal" do
get :show, id: @document_universal
assert_response :success
end
test "should get edit" do
get :edit, id: @document_universal
assert_response :success
end
test "should update document_universal" do
put :update, id: @document_universal, document_universal: { name: @document_universal.name }
assert_redirected_to document_universal_path(assigns(:document_universal))
end
test "should destroy document_universal" do
assert_difference('DocumentUniversal.count', -1) do
delete :destroy, id: @document_universal
end
assert_redirected_to document_universals_path
end
end
<file_sep>/epitech_PFA/tmpfiles
#!/bin/bash
find . | /bin/grep "~$" | tr -d ' #\t'
<file_sep>/epitech_PFA/test/unit/helpers/god_subject_helper_test.rb
require 'test_helper'
class GodSubjectHelperTest < ActionView::TestCase
end
<file_sep>/epitech_PFA/app/controllers/banks_controller.rb
# -*- coding: utf-8 -*-
class BanksController < ApplicationController
# GET worlds/1/banks
# GET worlds/1/banks.json
def index
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@banks = @world.banks
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @banks }
end
end
end
# GET worlds/1/banks/1
# GET worlds/1/banks/1.json
def show
@world = World.find(params[:world_id])
@bank = @world.banks.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @bank }
end
end
# GET worlds/1/banks/new
# GET worlds/1/banks/new.json
def new
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@bank = @world.banks.build
respond_to do |format|
format.html # new.html.erb
format.json { render :json => @bank }
end
end
end
# GET worlds/1/banks/1/edit
def edit
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@bank = @world.banks.find(params[:id])
end
end
# POST worlds/1/banks
# POST worlds/1/banks.json
def create
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@bank = @world.banks.build(params[:bank])
respond_to do |format|
if @bank.save
format.html { redirect_to([@bank.world, @bank], :notice => 'La banque a été créée avec succès.') }
format.json { render :json => @bank, :status => :created, :location => [@bank.world, @bank] }
else
format.html { render :action => "new" }
format.json { render :json => @bank.errors, :status => :unprocessable_entity }
end
end
end
end
# PUT worlds/1/banks/1
# PUT worlds/1/banks/1.json
def update
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@bank = @world.banks.find(params[:id])
respond_to do |format|
if @bank.update_attributes(params[:bank])
format.html { redirect_to([@bank.world, @bank], :notice => 'La banque a été modifiée avec succès.') }
format.json { head :ok }
else
format.html { render :action => "edit" }
format.json { render :json => @bank.errors, :status => :unprocessable_entity }
end
end
end
end
# DELETE worlds/1/banks/1
# DELETE worlds/1/banks/1.json
def destroy
if current_user.isgod == false
redirect_to root_path, notice: 'Pauvre fou ! Les voies des Dieux sont impénétrables pour une vermine de votre genre !!!'
else
@world = World.find(params[:world_id])
@bank = @world.banks.find(params[:id])
@bank.destroy
respond_to do |format|
format.html { redirect_to world_banks_url(@world) }
format.json { head :ok }
end
end
end
end
<file_sep>/epitech_PFA/app/controllers/sanctuaries_controller.rb
# -*- coding: utf-8 -*-
class SanctuariesController < ApplicationController
before_filter :gods_only!, only: [:new, :create, :update, :destroy]
# GET /sanctuaries
# GET /sanctuaries.json
def index
@messages = Array.new
worlds = Array.new
if current_user.isgod == false
current_user.guild_members.all.each do |g|
GuildWorld.where(guild_id: g.guild_id).each do |gw|
worlds.push(gw.world_id)
end
end
else
WorldGod.where(user_id: current_user.id).each do |wg|
worlds.push(wg.world_id)
end
end
worlds.uniq!
worlds.each do |w|
world_messages = Sanctuary.where(world_id: w).order('id desc')
@messages.push(world_messages) if world_messages.count > 0
end
end
# GET /sanctuaries/1
# GET /sanctuaries/1.json
def show
@sanctuary = Sanctuary.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @sanctuary }
end
end
# GET /sanctuaries/new
# GET /sanctuaries/new.json
def new
@sanctuary = Sanctuary.new
# Liste des mondes a mettre dans une select box
# pour ne pas avoir a ecrire le nom du monde
# a chaque message envoyé dans le sanctuaire
@worlds = WorldGod.where(user_id: current_user.id)
respond_to do |format|
format.html # new.html.erb
format.json { render json: @sanctuary }
end
end
# GET /sanctuaries/1/edit
def edit
@sanctuary = Sanctuary.find(params[:id])
end
# POST /sanctuaries
# POST /sanctuaries.json
def create
@sanctuary = Sanctuary.new(params[:sanctuary])
@sanctuary.world_id = World.find_by_name(params[:world_id]).id
@sanctuary.user_id = current_user.id
if @sanctuary.world_id != nil
@check = WorldGod.where(:user_id => current_user.id)
test = 0
@check.each do |check|
test = 1 if check.world_id == @sanctuary.world_id
end
end
if test == 1
if @sanctuary.world_id == nil
redirect_to sanctuaries_path, alert: "Ce monde n'existe pas. Attention."
else
respond_to do |format|
if @sanctuary.save
format.html { redirect_to sanctuaries_path, notice: 'Votre message a bien été envoyé aux paysans.' }
format.json { render json: sanctuaries_path, status: :created, location: @sanctuary }
else
format.html { render action: "new" }
format.json { render json: @sanctuary.errors, status: :unprocessable_entity }
end
end
end
else
redirect_to sanctuaries_path, alert: "Vous n'etes pas dieu sur ce monde ..."
end
end
# PUT /sanctuaries/1
# PUT /sanctuaries/1.json
def update
@sanctuary = Sanctuary.find(params[:id])
respond_to do |format|
if @sanctuary.update_attributes(params[:sanctuary])
format.html { redirect_to @sanctuary, notice: 'Le Sanctuaire à bien été mis à jour.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @sanctuary.errors, status: :unprocessable_entity }
end
end
end
# DELETE /sanctuaries/1
# DELETE /sanctuaries/1.json
def destroy
@sanctuary = Sanctuary.find(params[:id])
@sanctuary.destroy
respond_to do |format|
format.html { redirect_to sanctuaries_url }
format.json { head :no_content }
end
end
end
<file_sep>/epitech_PFA/test/functional/fight_comments_controller_test.rb
require 'test_helper'
class FightCommentsControllerTest < ActionController::TestCase
setup do
@fight_comment = fight_comments(:one)
end
test "should get index" do
get :index
assert_response :success
assert_not_nil assigns(:fight_comments)
end
test "should get new" do
get :new
assert_response :success
end
test "should create fight_comment" do
assert_difference('FightComment.count') do
post :create, fight_comment: { fight_id: @fight_comment.fight_id, guild_id: @fight_comment.guild_id, message: @fight_comment.message, user_id: @fight_comment.user_id }
end
assert_redirected_to fight_comment_path(assigns(:fight_comment))
end
test "should show fight_comment" do
get :show, id: @fight_comment
assert_response :success
end
test "should get edit" do
get :edit, id: @fight_comment
assert_response :success
end
test "should update fight_comment" do
put :update, id: @fight_comment, fight_comment: { fight_id: @fight_comment.fight_id, guild_id: @fight_comment.guild_id, message: @fight_comment.message, user_id: @fight_comment.user_id }
assert_redirected_to fight_comment_path(assigns(:fight_comment))
end
test "should destroy fight_comment" do
assert_difference('FightComment.count', -1) do
delete :destroy, id: @fight_comment
end
assert_redirected_to fight_comments_path
end
end
<file_sep>/epitech_PFA/app/models/guild_description.rb
class GuildDescription < ActiveRecord::Base
attr_accessible :description, :guild_id
end
<file_sep>/epitech_PFA/app/models/guild_member_request.rb
class GuildMemberRequest < ActiveRecord::Base
attr_accessible :guild_id, :requested_by, :user_id
belongs_to :user
belongs_to :guild
end
| 6b3a051d2ea55ed31320440aabf3ac5eb1dda466 | [
"RDoc",
"Ruby",
"Shell"
] | 73 | Ruby | sebco/epitheme | 8e72ba1643e35996515bf5a7fdec5ac7f5f8fca6 | c3101af66f701e1601af09faca53054d448ae6a0 |
refs/heads/master | <file_sep>'''
Essay Parser
Version 1.00
Authors: Antonio, Davila, Greene
Last updated: 09/17/16
Note: Code must be executed on python 3.5.xx only
'''
# for clear screen function
import os
# to determine the user's OS
from sys import platform
def main():
active = True
punctuations = [".", ",", ";", ":", "?", "!"]
# default wordlength for valid words is 3
wordLength = 3
f = None
while active:
choice = menu()
clearScreen()
# exit program
if choice == 8:
active = False
# specify inpuy file
elif choice == 1:
f = openFile()
# compute for average length
elif choice == 2:
if verifyInputFile(f):
computeAverage(f, punctuations, wordLength)
# change valid word length
elif choice == 3:
wordLength = modifyWordLength(wordLength)
# disable certain punctuations from being used as sentence delimiters
elif choice == 4:
punctuations = excludePunctuations(punctuations)
# export sentences of certain length into an external file
elif choice == 5:
if verifyInputFile(f):
exportLongSentences(f, punctuations, wordLength)
# save computed sentence length into an external file
elif choice == 6:
if verifyInputFile(f):
generateReport(f, punctuations, wordLength)
# easter egg
elif choice == 7:
batch()
pause()
def clearScreen():
# function to clear the contents of the screen
# need to identify OS first cause diff OS has diff commands
# if linux or osx
if platform == "linux" or platform == "linux2" or platform == "darwin":
os.system('clear')
# if windows
elif platform == "win32":
os.system('cls')
def pause():
# function to pause the screen so that user has time to see any error message
input("\nPress the [enter] key to continue . . .")
clearScreen()
def generateReport(f, punctuations, wordLength):
sentences = []
sentences = parseSentences(f, punctuations)
w = open("report-" + f.name, "w")
sentences = []
sentences = parseSentences(f, punctuations)
w.write ("Sentences parsed: \n")
w.write ("---------------------\n")
i = 1
totalWords = 0
for sentence in sentences:
words = parseWords(sentence, wordLength, punctuations)
totalWords += len(words)
w.write ("\n" + str(i) + ". " + str(sentence) + "\nValid word(s) in this sentence: " + str(words) + "\n")
i += 1
w.write ("\nSTATISTICS\n===========")
w.write ("\nNote: Non-alphabetical characters were dropped when counting words.")
w.write ("\nPunctuations used to delimit sentences: " + str(punctuations))
w.write ("\nValid word length: " + str(wordLength) + " letters")
w.write ("\nTotal number of sentences in this file: " + str(len(sentences)))
w.write ("\nTotal number of valid words in this file: " + str(totalWords))
if len(sentences) > 0:
w.write ("\nAverage sentence length: " + str(round(totalWords/len(sentences), 2)) + " words per sentence")
else:
w.write ("\nAverage sentence length: 0 words per sentence")
w.close()
print ("\nReport generated and stored in:", w.name)
# launch generated file on windows
if platform == "win32":
try:
os.system(w.name)
except:
pass
pause()
def exportLongSentences(f, punctuations, wordLength):
sentences = parseSentences(f, punctuations)
while True:
try:
sentenceLength = int(input("Enter length (based on number of words) of the sentences you want to export:\n> "))
if sentenceLength >= 1:
w = open("sentences-" + f.name, "w")
w.write("The following sentences are composed of " + str(sentenceLength) + " or more valid words.\nSentences are delimited with these punctuations: " + str(punctuations) + "\nA valid word is configured to have " + str(wordLength) + " letters.\n\n")
i = 1
for sentence in sentences:
words = parseWords(sentence, wordLength, punctuations)
if len(words) >= sentenceLength:
w.write(str(i) + ". " + sentence + " -> " + str(len(words)) + " valid word(s)\n\n")
i += 1
w.close()
print ("Sentences have been exported to: \"" + w.name + "\"")
# launch generated file on windows
if platform == "win32":
try:
os.system(w.name)
except:
pass
pause()
return
else:
print ("Invalid value.")
pause()
except:
print("Invalid input.")
pause()
def excludePunctuations(punctuations):
done = False
while not done:
print ("The following punctuations delimit a sentence: ")
i = 1
for symbol in punctuations:
print (str(i) + " =", symbol)
i += 1
try:
exclude = int(input("Enter the number that corresponds to the punctuation you want to exclude from this list.\nNote that \".\" cannot be excluded.\nTo reset the list to its default value, enter 0\n> "))
exclude -= 1
if exclude == 0:
print ("Periods cannot be excluded.")
pause()
elif exclude == -1:
print ("\nPunctuation list is now reset.")
pause()
return [".", ",", ";", ":", "?", "!"]
elif exclude in range(0, len(punctuations)):
punctuations.pop(exclude)
done = True
else:
print ("Invalid choice.")
pause()
except:
print ("Invalid input.")
pause()
print ("\nNew punctuation list:", punctuations)
pause()
return punctuations
def modifyWordLength(wordLength):
while True:
print ("Current length of valid words:", wordLength)
try:
length = int(input("New length: "))
if length < 1:
print ("Word length cannot be less than 1.")
pause()
else:
wordLength = length
print ("Current length of valid words:", wordLength)
pause()
return wordLength
except:
print ("Invalid input.")
pause()
def verifyInputFile(f):
if f == None:
print ("No input file specified.")
pause();
return False
return True
def computeAverage(f, punctuations, wordLength):
sentences = []
sentences = parseSentences(f, punctuations)
print ("Sentences parsed: ")
print ("----------------------")
i = 1
totalWords = 0
for sentence in sentences:
words = parseWords(sentence, wordLength, punctuations)
totalWords += len(words)
print ( str(i) + ".", sentence, "\nValid word(s):", words)
print ("\n")
i += 1
print ("STATISTICS\n===========")
print ("Note: Non-alphabetical characters were dropped when counting words.")
print ("Punctuations used to delimit sentences:", punctuations)
print ("Valid word length:", wordLength, "letters")
print ("Total number of sentences in this file:", len(sentences))
print ("Total number of valid words in this file:", totalWords)
#try catch if len of sentences == 0 or which means sentece list is empty. to prevent division by zero
if len(sentences) > 0:
print ("Average sentence length:", round(totalWords/len(sentences), 2), "words per sentence")
else:
print ("Average sentence length: 0 words per sentence")
pause()
def openFile():
validFile = False
while not validFile:
inputFile = input ("Ensure that the input file is stored in the same directory as Essay Parser.\nEnter file name or \"q\" to cancel: ")
if inputFile == "q":
return
# check if user entered nothing
elif inputFile == "":
print ("You did not specify a file name.")
pause()
# check for valid extension
elif inputFile.endswith(".txt"):
try:
f = open (inputFile, "r")
validFile = True
except FileNotFoundError:
print ("The file does not exist.")
pause()
except PermissionError:
print ("Permission denied. Check permission settings to access the file.")
pause()
else:
print ("Invalid file type.")
pause()
print("File loaded successfully.")
pause()
return f
def parseSentences(f, punctuations):
sentenceList = []
line = ""
endOfFile = False
f.seek(0)
while not endOfFile:
character = f.read(1)
if not character:
endOfFile = True
# split sentences into a list using a set of punctuations as delimeter
elif character == "\n":
line += " "
elif character in punctuations:
line += character
# strip leading and trailing extra spaces and line break before appending to list
sentenceList.append(line.strip())
line = ""
else:
line += character
# append the last read line in case it didnt have a punctuation
# also check if it's a letter not symbol
line = line.strip()
if line != "":
if (line[0].isalpha()):
sentenceList.append(line)
return sentenceList
def batch():
# batch processing to be implemented in the future
print(" .=""=.")
print(" / _ _ \\")
print(" | d b |")
print(" \ /\ /")
print(" ,/'-=\/=-'\,")
print(" / / \\ \\")
print("| / \\ |")
print("\/ \ / \\/")
print(" '. .'")
print(" _|`~~`|_")
print(" /|\\ /|\\")
print("This feature will be implemented in our future release.")
print("In the meantime, try to catch this pokemon.")
def parseWords(sentence, wordLength, punctuations):
# a word is any set of characters separated by space or punctuation
# any characters that is not A-z or a-z will be dropped
words = []
word = ""
# drop characters other than letters
for character in sentence:
if character.isalpha() or character == " ":
word += character
elif character in punctuations:
word += " "
sentence = word
# remove and leading/trailing spaces
sentence = " ".join(sentence.split())
#save it to a list
words = sentence.split()
# remove words that are less than the required number of characters
newList = []
for word in words:
if len(word) >= wordLength:
newList.append(word)
return newList
def menu():
while True:
clearScreen()
print("*************************************************")
print("* Essay Parser\t\t\t\t\t*")
print("* Version 1.00\t\t\t\t\t*")
print("* Authors: Antonio | Davila | Greene\t\t*")
print("* Disclaimer: Any bugs encountered while\t*")
print("* using this software is intentional\t\t*")
print("* since this software was developed for\t\t*")
print("* use in a software testing class. >:p\t\t*")
print("*************************************************\n")
print("[1] Specify input file")
print("[2] Compute average sentence length")
print("[3] Modify valid word length")
print("[4] Exclude punctuations")
print("[5] Export long sentences")
print("[6] Generate report")
print("[7] Batch processing (beta)")
print("[8] Exit")
try:
return int(input("> "))
except:
pass
main()
<file_sep># essayfinalcode
Essay Parser
| c0f7523a1ea094deb7cea2614874515b53d84f09 | [
"Markdown",
"Python"
] | 2 | Python | rcantonio/essayfinalcode | 71560bc04674374921ec9029595438f503e36b94 | 8675f161f67feeec443519e1b70b1dd967ec40e8 |
refs/heads/master | <file_sep># Spell Checker:
Java Program to recommend correct Words form Dictionary using Trie Data Structures
<file_sep>package edu.isu.cs2235;
import edu.isu.cs2235.structures.ISpellCorrector;
import edu.isu.cs2235.structures.impl.SpellCorrector;
import java.io.IOException;
import java.util.Scanner;
public class Driver {
public static void main(String[] args) throws ISpellCorrector.NoSimilarWordFoundException, IOException {
System.out.println("\nLoading Dictionary. . . .");
System.out.println("Dictionary Loaded. .\n");
String dictionaryFileName = "words.txt";
Scanner scanner=new Scanner(System.in);
System.out.println("Enter a string to spellcheck (−1 to quit ) :");
String inputWord = scanner.nextLine();
String[] arrOfStr=inputWord.split(" ");
System.out.println("Checking Spelling . . . \n");
/**
* Create an instance of your corrector here
*/
SpellCorrector corrector = new SpellCorrector();
System.out.println("Misspelling found : \n"+inputWord+"\n");
System.out.println("Replace With: ");
corrector.useDictionary(dictionaryFileName);
for (int i=0;i<arrOfStr.length;i++){
String suggestion = corrector.suggestSimilarWord(arrOfStr[i]);
System.out.print(suggestion+" ");
}
System.out.print("\n \n \n \n \n");
}
}
| fd762260207940f40bf1e7898a5a234df9f5b7dc | [
"Markdown",
"Java"
] | 2 | Markdown | khaddeep/SpellChecker | f6da9cb49d18182f88e9197ca0b2df45c0f60cff | 8badf04b659fbf2fd9b94c410d2d1d12d2e73711 |
refs/heads/master | <file_sep>#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <math.h>
using namespace std;
char v[21][5500];
int bin[21][20100];
char resto[2];
void input(){
FILE * fl = fopen("Chaves_de_Cripto.txt","r");
for(int i = 0 ; i<20; i++){
fgets(v[i],5003,fl);
fgets(resto,2,fl);
}
fclose(fl);
}
void imprimeHex(){
for(int i=1;i<=5000;i++){
printf("%c",v[0][i]);
}
}
void imprimeBin(){
for(int j=0; j<20;j++){
printf("\nChave %d = \n",j);
for(int i=0;i<20000;i++){
printf("%d",bin[j][i]);
}
}
}
void converter(){
for(int j = 0 ; j<20 ; j++){
int flag = 0;
for(int i = 1; i <= 5000 ; i++)
{
if(v[j][i] == '0')
{
bin[j][flag] = 0;
bin[j][flag+1] = 0;
bin[j][flag+2] = 0;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == '1')
{
bin[j][flag] = 0;
bin[j][flag+1] = 0;
bin[j][flag+2] = 0;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == '2')
{
bin[j][flag] = 0;
bin[j][flag+1] = 0;
bin[j][flag+2] = 1;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == '3')
{
bin[j][flag] = 0;
bin[j][flag+1] = 0;
bin[j][flag+2] = 1;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == '4')
{
bin[j][flag] = 0;
bin[j][flag+1] = 1;
bin[j][flag+2] = 0;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == '5')
{
bin[j][flag] = 0;
bin[j][flag+1] = 1;
bin[j][flag+2] = 0;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == '6')
{
bin[j][flag] = 0;
bin[j][flag+1] = 1;
bin[j][flag+2] = 1;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == '7')
{
bin[j][flag] = 0;
bin[j][flag+1] = 1;
bin[j][flag+2] = 1;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == '8')
{
bin[j][flag] = 1;
bin[j][flag+1] = 0;
bin[j][flag+2] = 0;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == '9')
{
bin[j][flag] = 1;
bin[j][flag+1] = 0;
bin[j][flag+2] = 0;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == 'A')
{
bin[j][flag] = 1;
bin[j][flag+1] = 0;
bin[j][flag+2] = 1;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == 'B')
{
bin[j][flag] = 1;
bin[j][flag+1] = 0;
bin[j][flag+2] = 1;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == 'C')
{
bin[j][flag] = 1;
bin[j][flag+1] = 1;
bin[j][flag+2] = 0;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == 'D')
{
bin[j][flag] = 1;
bin[j][flag+1] = 1;
bin[j][flag+2] = 0;
bin[j][flag+3] = 1;
flag = flag + 4;
}
else if(v[j][i] == 'E')
{
bin[j][flag] = 1;
bin[j][flag+1] = 1;
bin[j][flag+2] = 1;
bin[j][flag+3] = 0;
flag = flag + 4;
}
else if(v[j][i] == 'F')
{
bin[j][flag] = 1;
bin[j][flag+1] = 1;
bin[j][flag+2] = 1;
bin[j][flag+3] = 1;
flag = flag + 4;
}
}
}
}
int monoBit[21];
void monobit(){
printf("\n----- MONOBIT TEST -----");
for(int j=0; j<20;j++){
for(int i=0;i<20000;i++){
if(bin[j][i] == 1){
monoBit[j] = monoBit[j] + 1;
}
}
printf("\n Na chave %d existem %d numeros 1 \n",j+1,monoBit[j]);
}
}
int pokerTest[21][16];
void pokerTeste(){
for(int i=0;i<20;i++){
for(int j=1; j<=5000; j++){
if(v[i][j] == '0'){
pokerTest[i][0] = pokerTest[i][0]+1;
}
if(v[i][j] == '1'){
pokerTest[i][1] = pokerTest[i][1]+1;
}
if(v[i][j] == '2'){
pokerTest[i][2] = pokerTest[i][2]+1;
}
if(v[i][j] == '3'){
pokerTest[i][3] = pokerTest[i][3]+1;
}
if(v[i][j] == '4'){
pokerTest[i][4] = pokerTest[i][4]+1;
}
if(v[i][j] == '5'){
pokerTest[i][5] = pokerTest[i][5]+1;
}
if(v[i][j] == '6'){
pokerTest[i][6] = pokerTest[i][6]+1;
}
if(v[i][j] == '7'){
pokerTest[i][7] = pokerTest[i][7]+1;
}
if(v[i][j] == '8'){
pokerTest[i][8] = pokerTest[i][8]+1;
}
if(v[i][j] == '9'){
pokerTest[i][9] = pokerTest[i][9]+1;
}
if(v[i][j] == 'A'){
pokerTest[i][10] = pokerTest[i][10]+1;
}
if(v[i][j] == 'B'){
pokerTest[i][11] = pokerTest[i][11]+1;
}
if(v[i][j] == 'C'){
pokerTest[i][12] = pokerTest[i][12]+1;
}
if(v[i][j] == 'D'){
pokerTest[i][13] = pokerTest[i][13]+1;
}
if(v[i][j] == 'E'){
pokerTest[i][14] = pokerTest[i][14]+1;
}
if(v[i][j] == 'F'){
pokerTest[i][15] = pokerTest[i][15]+1;
}
}
}
float teste [21];
for(int i = 0; i < 20; i++){
float soma = 0;
for(int j = 0; j <= 15; j++){
soma = soma + pow(pokerTest[i][j],2);
}
teste[i] = 16.0/5000.0 * soma;
teste[i] = teste[i] - 5000;
}
printf("\n\n\n----- POKER TEST -----");
for(int i = 0 ; i<20; i++){
printf("\n Chave %d",i);
printf("\n Qtd de 0 = %d",pokerTest[i][0]);
printf("\n Qtd de 1 = %d",pokerTest[i][1]);
printf("\n Qtd de 2 = %d",pokerTest[i][2]);
printf("\n Qtd de 3 = %d",pokerTest[i][3]);
printf("\n Qtd de 4 = %d",pokerTest[i][4]);
printf("\n Qtd de 5 = %d",pokerTest[i][5]);
printf("\n Qtd de 6 = %d",pokerTest[i][6]);
printf("\n Qtd de 7 = %d",pokerTest[i][7]);
printf("\n Qtd de 8 = %d",pokerTest[i][8]);
printf("\n Qtd de 9 = %d",pokerTest[i][9]);
printf("\n Qtd de A = %d",pokerTest[i][10]);
printf("\n Qtd de B = %d",pokerTest[i][11]);
printf("\n Qtd de C = %d",pokerTest[i][12]);
printf("\n Qtd de D = %d",pokerTest[i][13]);
printf("\n Qtd de E = %d",pokerTest[i][14]);
printf("\n Qtd de F = %d",pokerTest[i][15]);
printf("\n A chave %d resultou em: %f",i,teste[i]);
printf("\n");
}
}
int runTest0[21][2];
int runTest1[21][2];
int runTest2[21][2];
int runTest3[21][2];
int runTest4[21][2];
int runTest5[21][2];
int runTest6[21][2];
void runTest()
{
for (int i = 0; i < 20; i++)
{
int flag = 0;
while(flag < 20000){
int flag1=0;
while(bin[i][flag] == 1){
flag1++;
flag++;
}
int flag0=0;
while(bin[i][flag] == 0){
flag0++;
flag++;
}
if (flag1 == 1 )
runTest1[i][1] = runTest1[i][1] + 1;
if(flag1 == 2){
runTest2[i][1] = runTest2[i][1] +1;
}
if(flag1 == 3){
runTest3[i][1] = runTest3[i][1] +1;
}
if(flag1 == 4){
runTest4[i][1] = runTest4[i][1] +1;
}
if(flag1 == 5){
runTest5[i][1] = runTest5[i][1] +1;
}
if(flag1 >= 6 ){
runTest6[i][1] = runTest6[i][1] +1;
}
if(flag0 == 1)
runTest1[i][0] = runTest1[i][0] + 1;
if(flag0 == 2){
runTest2[i][0] = runTest2[i][0] +1;
}
if(flag0 == 3){
runTest3[i][0] = runTest3[i][0] +1;
}
if(flag0 == 4){
runTest4[i][0] = runTest4[i][0] +1;
}
if(flag0 == 5){
runTest5[i][0] = runTest5[i][0] +1;
}
if(flag0 >= 6 ){
runTest6[i][0] = runTest6[i][0] +1;
}
}
}
printf("\n\n\n----- RUN TEST -----");
for (int i = 0; i < 20; i++)
{
printf("\n\n Chave %d",i+1);
printf("\n Numero de sequencias de tamanho 1:");
printf("\n 0 = %d",runTest1[i][0]);
printf("\n 1 = %d",runTest1[i][1]);
printf("\n Numero de sequencias de tamanho 2:");
printf("\n 0 = %d",runTest2[i][0]);
printf("\n 1 = %d",runTest2[i][1]);
printf("\n Numero de sequencias de tamanho 3:");
printf("\n 0 = %d",runTest3[i][0]);
printf("\n 1 = %d",runTest3[i][1]);
printf("\n Numero de sequencias de tamanho 4:");
printf("\n 0 = %d",runTest4[i][0]);
printf("\n 1 = %d",runTest4[i][1]);
printf("\n Numero de sequencias de tamanho 5:");
printf("\n 0 = %d",runTest5[i][0]);
printf("\n 1 = %d",runTest5[i][1]);
printf("\n Numero de sequencias de tamanho 6+:");
printf("\n 0 = %d",runTest6[i][0]);
printf("\n 1 = %d",runTest6[i][1]);
}
}
int longRunTest[21][2];
void LongRunTest(){
printf("\n\n\n----- LONG RUN TEST -----");
for (int i = 0; i < 20; i++)
{
int flag = 0;
while(flag < 20000){
int flag1=0;
while(bin[i][flag] == 1 && flag < 20000){
flag1++;
flag++;
}
int flag0=0;
while(bin[i][flag] == 0 && flag < 20000){
flag0++;
flag++;
}
if(flag0 >= 34){
printf(" \nValor de flag0 %d", flag0);
longRunTest[i][0] = longRunTest[i][0] + 1;
}
if(flag1 >= 34){
printf("\nValor de flag1 %d", flag1);
longRunTest[i][1] = longRunTest[i][1] + 1;
}
}
}
for (int i = 0; i < 20; i++)
{
printf("\n Chave %d",i+1);
printf("\n Numero de sequencias de tamanho 34+:");
printf("\n 0 = %d",longRunTest[i][0]);
printf("\n 1 = %d",longRunTest[i][1]);
}
}
int main(){
input();
converter();
//imprimeHex();
//imprimeBin();
monobit();
pokerTeste();
runTest();
LongRunTest();
}
| 3aa6ad7a5c6f2fcb819577d8e49a0a1c1382c563 | [
"C++"
] | 1 | C++ | kelvinmozart-zz/teste-de-chaves-de-criptografia | 827b39a80c125d9602d2979052a24753a32338b8 | e8db258d86cc102ad4c39d13abf858aeecb4a252 |
refs/heads/master | <repo_name>strangecamelcaselogin/tvp_course<file_sep>/petri_models/petri_net/parser.py
import re
from collections import namedtuple
from typing import List, Union, Any, Dict, Tuple
from petri_models.petri_net.entities import Position, Transition
from petri_models.petri_net.utils import find_entity_by_name
class Parser:
_Rule = namedtuple('Rule', ['l', 'r']) # l - откуда связь, r - куда
_PART_SPLITTER = re.compile(r'(\w+)\s*->\s*(.*)') # для разделения правил на части
_QUANTIFIER_SPLITTER = re.compile(r'(?:(\d+)\s*\*\s*)?(\w+\d+)') # для обработки правой части правил (2*P1 3*P2 P4)
@staticmethod
def _fetch_positions(t: Transition, rules: List[_Rule]) -> Tuple[List[Any], List[Any]]:
"""
Вычислить позиции входящих и выходящих точек из перехода
rules:
[Rule(l=Entity(name='T1'), r=[Entity(name='P1', points='0')]),
Rule(l=Entity(name='P1', points='0'), r=[Entity(name='T2'), Entity(name='T4')]),
Rule(l=Entity(name='T2'), r=[Entity(name='P1', points='0'), Entity(name='P1', points='0'), Entity(name='P2', points='0')]),
Rule(l=Entity(name='P2', points='0'), r=[Entity(name='T3'), Entity(name='T4')]),
Rule(l=Entity(name='T4'), r=[Entity(name='P3', points='0'), Entity(name='P4', points='0')])]
"""
t_name = t.name.lower() # имя перехода
input_positions = [] # позиции, куда ведет переход
output_positions = [] # позиции откуда исходит переход
for l, r in rules:
if l.name.lower() == t_name: # если слева искомое имя перехода
input_positions.extend(r)
else: # иначе посмотрим есть ли справа искомое имя перехода
for r_ in r:
if r_.name.lower() == t_name:
output_positions.append(l) # и если есть, то добавим
return output_positions, input_positions
def parse_rules(self, positions: List[Position], transitions: List[Transition], rules: List[Union[str, tuple]]) -> Dict[Transition, Tuple[List[Position], List[Position]]]:
"""
Обработать входные правила
transitions_to_positions:
{Entity(name='T1'): ([], [Entity(name='P1', points='0')]),
Entity(name='T2'): ([Entity(name='P1', points='0')],
[Entity(name='P1', points='0'),
Entity(name='P1', points='0'),
Entity(name='P2', points='0')]),
Entity(name='T3'): ([Entity(name='P2', points='0')], []),
Entity(name='T4'): ([Entity(name='P1', points='0'),
Entity(name='P2', points='0')],
[Entity(name='P3', points='0'),
Entity(name='P4', points='0')])}
"""
transitions_to_positions = {}
prepared_rules = []
all_entities = positions + transitions
for rule in rules:
from_part, to_part = re.match(self._PART_SPLITTER, rule).groups()
from_part = find_entity_by_name(all_entities, from_part)
to_part = re.findall(self._QUANTIFIER_SPLITTER, to_part)
processed_r = []
for quantifier, entity_name in to_part: # elem = ('2', 'P1) # 2 * P1
for _ in range(int(quantifier) if quantifier else 1):
processed_r.append(find_entity_by_name(all_entities, entity_name))
prepared_rules.append(self._Rule(from_part, processed_r)) # прим. Rule(l='T2', r=('P1',)
for t in transitions: # доделаем, получим словарь соответсвия позиций переходам
transitions_to_positions[t] = self._fetch_positions(t, prepared_rules)
return transitions_to_positions<file_sep>/petri_models/transitions-access.py
from petri_models.petri_net import Position, Transition
from petri_models.petri_net import PNet
class _Omega(float):
"""
Вся магия Омеги происходит от того, что это float NaN,
Т.к Омега по свойствам идентична NaN, остается только красиво вывести ее в консоль.
"""
def __new__(cls, *args, **kwargs):
return super().__new__(cls, 'NaN')
def __repr__(self):
return 'Ω'
__str__ = __repr__
Omega = _Omega() # создадим единственный объект Омеги
def isOmega(t):
return t != t
class SolveTree:
def __init__(self, state):
self.root = SolveNode(None, state, None)
def __str__(self):
return str(self.root)
class SolveNode:
def __init__(self, transition, state, parent):
self.transition = transition
self.state = state
self.parent = parent
self.children = []
def add(self, new_child: 'SolveNode'):
self.children.append(new_child)
def get_parents(self):
if self.parent:
parents = [self.parent]
parents.extend(self.parent.get_parents())
return parents
else:
return []
def __str__(self, level=0):
print_state = '({})'.format(' '.join(map(str, self.state)))
if self.parent is None:
res = '{} \n'.format(print_state)
else:
res = '{} --{}--> {} \n'.format(" " * 4 * level, self.transition, print_state)
for child in self.children:
res += child.__str__(level + 1)
return res
def process_state(old_state, new_state):
"""
Заменим в стейте элементы, которые отличаются от предыдущего стейта больше чем на 1, на Omega
иначе оставим как есть
:return Новый стейт
"""
success = True
l = len(new_state)
result = [0] * l
for i in range(l):
o, n = old_state[i], new_state[i]
if isOmega(n):
new_state[i] = result[i] = n = Omega
if not isOmega(o) and not isOmega(n):
d = n - o
if d > 0:
result[i] = Omega
elif d < 0:
success = False
break
if success:
return result
return new_state
def state_in(state, states):
for s in states:
if state == s.state:
return True
return False
def get_verbose(enable):
def f(*args, **kwargs):
if enable:
print(*args, **kwargs)
return f
def trace_path(petri_net, solve_tree: SolveTree, solve_node: SolveNode, transition, full_tree=False, level=0, verbose=get_verbose(False), verbose_model=False):
"""
Основной метод, рекурсивно перебираем все цепочки переходов и строим деерво допустимых.
:param petri_net: Экземпляр сети Петри, на котором проводится испытание
:param solve_tree: Дерево решений
:param solve_node: Текущий узел в дереве решений
:param transition: Переход, который мы попробуем выполнить
:param full_tree: Если указано, то будет вычеслено полное дерево покрытия
:param level: глубина рекурсивного вызова, для принтов
:param verbose: Функция полученная от get_verbose, будет выводится лог действий от нас
:param verbose_model: Если указано, будет выводится лог действий от модели
"""
if transition is not None:
petri_net.set_state(solve_node.state) # вернем состояние как у предка
success, state, path = petri_net.model([transition], verbose=False)
if success:
new_state = process_state(solve_node.state, state) # обработаем состояние
new_solve_node = SolveNode(transition, state=new_state, parent=solve_node)
br = state_in(new_state, new_solve_node.get_parents())
verbose('{}{} --{}--> {} {}'.format(' ' * level, solve_node.state, transition, new_state,
'!break: state already exist' if br else ''))
if br:
if full_tree:
solve_node.add(new_solve_node)
return
solve_node.add(new_solve_node)
for t in petri_net.transition_names:
trace_path(petri_net, solve_tree, new_solve_node, t, full_tree=full_tree, verbose=verbose, verbose_model=verbose_model, level=level+1)
else:
verbose('{}transition {} failed'.format(' ' * level, transition))
else:
for t in petri_net.transition_names:
trace_path(petri_net, solve_tree, solve_node, t, full_tree=full_tree, verbose=verbose, verbose_model=verbose_model, level=level + 1)
if __name__ == '__main__':
verbose_trace = False
verbose_model = False
full_tree = True
initial_state = [0, 0, 0, 0]
t_names = ['T1', 'T2', 'T3', 'T4']
pnet = PNet('Petri1',
positions=[Position('P' + str(idx + 1), p) for idx, p in enumerate(initial_state)],
transitions=[Transition(n) for n in t_names],
rules=[
'T1 -> P1',
'P1 -> T2 T4',
'T2 -> 2*P1 P2',
'P2 -> T3 T4',
'T4 -> P3 P4'
])
st = SolveTree(initial_state)
trace_path(pnet, st, st.root, None, full_tree=full_tree, verbose=get_verbose(verbose_trace), verbose_model=verbose_model)
print('\n\n\nДерево доступных переходов:\n', st)
initial_state = [0, 0, 0]
t_names = ['T1', 'T2', 'T3', 'T4']
pnet = PNet('Petri2',
positions=[Position('P' + str(idx + 1), p) for idx, p in enumerate(initial_state)],
transitions=[Transition(n) for n in t_names],
rules=[
'T1 -> P1',
'P1 -> T2',
'T2 -> P2',
'P2 -> T3',
'T3 -> P3',
'P3 -> T4'
])
st = SolveTree(initial_state)
trace_path(pnet, st, st.root, None, full_tree=full_tree, verbose=get_verbose(verbose_trace), verbose_model=verbose_model)
print('\n\n\n2 Дерево доступных переходов:\n', st)
initial_state = [1, 0, 0, 0, 0, 0]
t_names = ['T1', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7', 'T8']
pnet = PNet('Petri3',
positions=[Position('P' + str(idx), p) for idx, p in enumerate(initial_state)],
transitions=[Transition(n) for n in t_names],
rules=[
'P0 -> T1',
'T1 -> P1',
'P1 -> T2 T3',
'T2 -> P2',
'P2 -> T4 T5 T8',
'T4 -> P4',
'P4 -> T6 T7',
'T5 -> P5',
'T3 -> P3',
'T8 -> P0',
'T1 -> P0' # todo не забыть, что это лишнее
])
st = SolveTree(initial_state)
trace_path(pnet, st, st.root, None, full_tree=full_tree, verbose=get_verbose(verbose_trace), verbose_model=verbose_model)
print('\n\n\n3 Дерево доступных переходов:\n', st)
<file_sep>/petri_models/petri_net/petri_net.py
from pprint import pprint
from typing import List
from petri_models.petri_net.entities import Position, Transition, EntityError
from petri_models.petri_net.parser import Parser
from petri_models.petri_net.utils import find_entity_by_name
def test():
test_pass = '>>>>>> <PASSWORD> <<<<<<<<'
pnet = PNet('Petri1',
positions=[
Position('P1', 0),
Position('P2', 0),
Position('P3', 0),
Position('P4', 0)
],
transitions=[
Transition('T1'),
Transition('T2'),
Transition('T3'),
Transition('T4'),
],
rules=[
'T1 -> P1',
'P1 -> T2 T4',
'T2 -> 2*P1 P2',
'P2 -> T3 T4',
'T4 -> P3 P4'
])
path = []
success, state, result = pnet.model(path)
assert success == True
assert state == [0, 0, 0, 0]
assert result == []
print(test_pass)
pnet.set_state([0, 0, 0, 0])
path = ['T1', 'T2', 'T2', 'T2']
success, state, result = pnet.model(path)
assert success == True
assert state == [4, 3, 0, 0]
assert result == path
print(test_pass)
pnet.set_state([0, 0, 0, 0])
path = ['T2']
success, state, result = pnet.model(path)
assert success == False
assert state == [-1, 0, 0, 0]
assert result == []
print(test_pass)
pnet.set_state([0, 0, 0, 0])
path = ['T1', 'T2', 'T3', 'T4']
success, state, result = pnet.model(path)
assert success == False
assert state == [1, -1, 0, 0]
assert result == ['T1', 'T2', 'T3']
print(test_pass)
pnet.set_state([0, 0, 0, 0])
class PNet:
def __init__(self, name: str, positions: List[Position], transitions: List[Transition], rules):
self.name = name # имя сети
self.positions = positions
self.transitions = transitions
self.transition_names = [t.name for t in transitions]
self.rules = Parser().parse_rules(positions, transitions, rules)
def model(self, transition_chain: List[str], verbose=True):
"""
:param transition_chain: ['T1', 'T2]
:return: bool
:param verbose:
"""
def get_state():
return [p.points for p in self.positions]
def print_state(msg):
print(msg)
for p in self.positions:
print(p)
print()
success = True
path = []
try:
for idx, t_name in enumerate(transition_chain):
if verbose:
print("\nStep {} - '{}'".format(idx + 1, t_name))
transition = find_entity_by_name(self.transitions, t_name)
from_positions, to_positions = self.rules[transition]
for p in from_positions:
p.points -= 1 # Бросит исклбючение
for p in to_positions:
p.points += 1
path.append(t_name)
if verbose:
print_state('State after step:')
except EntityError as e:
success = False
if verbose:
print_state('>>> Break: ' + str(e))
return success, get_state(), path
def set_state(self, points_vector):
for pos, points in zip(self.positions, points_vector):
pos.points = points
def print(self):
pprint({
'name': self.name,
'positions': self.positions,
'transitions': self.transitions,
'rules': self.rules
})
print('\n' * 3)
def save(self):
pass
@classmethod
def from_file(cls):
pass
if __name__ == '__main__':
test()
<file_sep>/petri_models/petri_net/__init__.py
from .petri_net import PNet
from .entities import Transition, Position, Entity, EntityError<file_sep>/petri_models/petri_net/utils.py
from typing import TypeVar, List
from petri_models.petri_net.entities import Position, Transition
class EntitySearchError(Exception):
"""
Возникает, если сущность с указанным имененм не существует
"""
pass
T = TypeVar('T', Position, Transition)
def find_entity_by_name(entities: List[T], name: str) -> T:
for e in entities:
if e.name == name:
return e
raise EntitySearchError("Can not find Entity: '{}'".format(name))<file_sep>/petri_models/petri-model.py
from petri_models.petri_net import Position, Transition
from petri_models.petri_net import PNet
if __name__ == '__main__':
pnet = PNet('Petri1',
positions=[
Position('P1', 0),
Position('P2', 0),
Position('P3', 0),
Position('P4', 0)
],
transitions=[
Transition('T1'),
Transition('T2'),
Transition('T3'),
Transition('T4'),
],
rules=[
'T1 -> P1',
'P1 -> T2 T4',
'T2 -> 2*P1 P2',
'P2 -> T3 T4',
'T4 -> P3 P4'
])
pnet.print()
path = ['T1', 'T2', 'T2', 'T2']
print('Target path: ', path)
success, state, result = pnet.model(path)
print('Success' if success else 'Fail')
if result:
print('Executed transitions:', ' -> '.join(result))
else:
print('>>> None of transitions were executed')
print('State AFTER last transition:', state)
print('#' * 40)<file_sep>/petri_models/petri_net/entities.py
class EntityError(Exception):
"""
Возникает, когда количество фишек у позиции меньше 0.
Сигнализирует о невозможности перехода
"""
pass
class Entity:
_FIELDS = []
def __init__(self, name: str):
self.name = name
def __repr__(self):
return '{}({})'.format(__class__.__name__,
', '.join("{}='{}'".format(name, getattr(self, name)) for name in self._FIELDS))
__str__ = __repr__
class Position(Entity):
_FIELDS = ['name', 'points']
def __init__(self, name: str, points: int = 0):
"""
:param name: имя точки
:param points: количество фишек
"""
super().__init__(name)
self._points = points
@property
def points(self):
return self._points
@points.setter
def points(self, count):
self._points = count
if count < 0:
raise EntityError("Attempt to sub {} points from '{}' point violates zero points constraint".format(count, self.name))
def __str__(self):
return '{}: {}'.format(self.name, self.points)
class Transition(Entity):
"""
:param name: имя перехода
"""
_FIELDS = ['name']
def __init__(self, name: str):
super().__init__(name)
| 4ea4437883f15bb0d7075bf9003638a9728fb6f3 | [
"Python"
] | 7 | Python | strangecamelcaselogin/tvp_course | 2f4bb3de2d68dcb6061ef8114f539ad82802c462 | fdc1fd5e5da99cf34b4b1bd796de890ab3a85314 |
refs/heads/master | <file_sep>package srkr.csea;
import android.content.DialogInterface;
import java.text.SimpleDateFormat;
import android.content.Intent;
import android.graphics.Bitmap;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.MediaStore;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AlertDialog;
import android.util.Base64;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
import com.android.volley.AuthFailureError;
import com.android.volley.DefaultRetryPolicy;
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.RetryPolicy;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedWriter;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Calendar;
import java.util.HashMap;
import java.util.Map;
public class ClgActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
EditText descript,n1,date;
Button post,choose;
String Description,Name,d;
ImageView imageView;
ProgressBar progressBar;
Calendar calendar;
SimpleDateFormat simpleDateFormat;
private static int IMG_REQUEST=1;
private String Uploadurl="http://prasadguttula68.000webhostapp.com/appclginsert.php";
Bitmap bitmap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_clg);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
TextView textView=(TextView)findViewById(R.id.textView5);
descript=(EditText)findViewById(R.id.editText);
n1=(EditText)findViewById(R.id.name1);
imageView=(ImageView)findViewById(R.id.imageview);
post=(Button)findViewById(R.id.post);
choose=(Button)findViewById(R.id.button);
progressBar=(ProgressBar)findViewById(R.id.progressBar);
progressBar.setVisibility(View.INVISIBLE);
calendar=Calendar.getInstance();
simpleDateFormat=new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
d=simpleDateFormat.format(calendar.getTime());
textView.setText(d);
RetryPolicy mRetryPolicy = new DefaultRetryPolicy(
0,
DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
DefaultRetryPolicy.DEFAULT_BACKOFF_MULT);
choose.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
selectImage();
}
});
post.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Description=descript.getText().toString().trim();
Name=n1.getText().toString().trim();
if(Description.isEmpty()|| Name.isEmpty())
{
showAlert();
}
else
{
postData();
}
}
});
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.setDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if(id==R.id.Home)
{
Intent i3=new Intent(ClgActivity.this,MainActivity.class);
startActivity(i3);
}
if(id==R.id.newupdate)
{
Intent i4=new Intent(ClgActivity.this,NewUpdateActivity.class);
startActivity(i4);
}
if(id==R.id.quit)
{
moveTaskToBack(true);
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(1);
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode==IMG_REQUEST && resultCode==RESULT_OK && data!=null)
{
Uri path= data.getData();
try {
bitmap= MediaStore.Images.Media.getBitmap(getContentResolver(),path);
imageView.setImageBitmap(bitmap);
imageView.setVisibility(View.VISIBLE);
} catch (IOException e) {
e.printStackTrace();
}
}
}
private void showAlert()
{
AlertDialog.Builder builder=new AlertDialog.Builder(this);
builder.setTitle("Oops");
builder.setMessage("Please mention all the details");
builder.setNeutralButton("cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int i) {
dialog.dismiss();
}
});
builder.show();
}
private void selectImage()
{
Intent intent=new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent,IMG_REQUEST);
}
private void postData()
{
progressBar.setVisibility(View.VISIBLE);
StringRequest stringRequest=new StringRequest(Request.Method.POST, Uploadurl,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
JSONObject jsonObject=new JSONObject(response);
String Response= jsonObject.getString("response");
progressBar.setVisibility(View.GONE);
Toast.makeText(ClgActivity.this,Response,Toast.LENGTH_SHORT).show();
imageView.setImageResource(0);
imageView.setVisibility(View.GONE);
} catch (JSONException e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
}
})
{
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> params=new HashMap<>();
params.put("Descrpt",Description);
params.put("name",Name);
params.put("date",d);
params.put("Image",imageToString(bitmap));
return params;
}
};
stringRequest.setRetryPolicy(new DefaultRetryPolicy(DefaultRetryPolicy.DEFAULT_TIMEOUT_MS * 5, DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
MySingleton.getInstance(ClgActivity.this).addToRequestQue(stringRequest);
}
private String imageToString(Bitmap bitmap)
{
ByteArrayOutputStream byteArrayOutputStream=new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG,100,byteArrayOutputStream);
byte[] imgBytes=byteArrayOutputStream.toByteArray();
return Base64.encodeToString(imgBytes,Base64.DEFAULT);
}
}
<file_sep>package srkr.csea;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AlertDialog;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.HashMap;
import java.util.Map;
public class LoginActivity extends AppCompatActivity
implements NavigationView.OnNavigationItemSelectedListener {
EditText user,pwd;
String username,password;
Button login;
AlertDialog.Builder builder;
private String Loginurl="http://prasadguttula68.000webhostapp.com/login.php";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
user=(EditText)findViewById(R.id.user);
pwd=(EditText)findViewById(R.id.pwd);
login=(Button)findViewById(R.id.login);
login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
username=user.getText().toString().trim();
password=pwd.getText().toString().trim();
if(username.isEmpty()|| password.isEmpty())
{
builder.setTitle("Something went wrong");
showAlert("Please fill all the necessary credentials");
}
else
{
test();
}
}
});
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close);
drawer.addDrawerListener(toggle);
toggle.syncState();
NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
navigationView.setNavigationItemSelectedListener(this);
}
@Override
public void onBackPressed() {
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
if (drawer.isDrawerOpen(GravityCompat.START)) {
drawer.closeDrawer(GravityCompat.START);
} else {
super.onBackPressed();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
return super.onOptionsItemSelected(item);
}
@SuppressWarnings("StatementWithEmptyBody")
@Override
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if(id==R.id.Home)
{
Intent i1=new Intent(LoginActivity.this,MainActivity.class);
startActivity(i1);
}
if(id==R.id.newupdate)
{
Intent i2=new Intent(LoginActivity.this,NewUpdateActivity.class);
startActivity(i2);
}
if(id==R.id.quit)
{
moveTaskToBack(true);
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(1);
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
private void test()
{
Toast.makeText(LoginActivity.this,"hi",Toast.LENGTH_LONG).show();
StringRequest stringRequest=new StringRequest(Request.Method.POST, Loginurl,
new Response.Listener<String>() {
@Override
public void onResponse(String response) {
try {
JSONArray jsonArray=new JSONArray(response);
JSONObject jsonObject=jsonArray.getJSONObject(0);
String code= jsonObject.getString("code");
if (code.equals("login_failed"))
{
builder.setTitle("Login error");
showAlert(jsonObject.getString("message"));
}
else
{
Intent intent=new Intent(LoginActivity.this,ClgActivity.class);
Bundle bundle=new Bundle();
bundle.putString("name",jsonObject.getString("name"));
intent.putExtras(bundle);
startActivity(intent);
}
} catch (JSONException e) {
e.printStackTrace();
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(LoginActivity.this,"Error",Toast.LENGTH_LONG).show();
error.printStackTrace();
}
})
{
@Override
protected Map<String, String> getParams() throws AuthFailureError {
Map<String,String> params=new HashMap<>();
params.put("user",username);
params.put("pwd",<PASSWORD>);
return params;
}
};
MySingleton.getInstance(LoginActivity.this).addToRequestQue(stringRequest);
}
private void showAlert( String message)
{
builder.setMessage(message);
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
user.setText("");
pwd.setText("");
}
});
AlertDialog alertDialog=builder.create();
alertDialog.show();
}
}
<file_sep>package srkr.csea;
import android.content.Intent;
import android.os.Handler;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import static java.lang.Thread.sleep;
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash);
ActionBar actionBar=getSupportActionBar();
actionBar.hide();
Thread myThread = new Thread() {
@Override
public void run() {
try {
sleep(3000);
Intent mainIntent = new Intent(getApplicationContext(), MainActivity.class);
startActivity(mainIntent);
finish();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
};
myThread.start();
}
}
| 15237fe37f1af2a7fc3e371b4acb893584e5b7c2 | [
"Java"
] | 3 | Java | Prasadguttula/CseA | 2f9ee878df192160c99aa1986dfe9fecfd2040ec | e15ae5a3c2e96bb3d8c7539d18eba29dbe9fed7b |
refs/heads/master | <repo_name>Romel07/react-practice<file_sep>/src/App.js
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<Person name="Munna" age= "21"></Person>
<Person name="Masum" age= "21" District="Chittagong"></Person>
</header>
</div>
);
}
function Person(props) {
return(
<div>
<h2>Name: {props.name} and Age: {props.age}, Location: {props.District} </h2>
</div>
)
}
export default App;
| 65275cf4494e8a4f4d1eb5da49bb56eecc69115e | [
"JavaScript"
] | 1 | JavaScript | Romel07/react-practice | 76d3335918d692180289b054aa58452250b9e613 | 1f74289febfa5334de90a43ed36a5a6b12977a11 |
refs/heads/master | <repo_name>wghub/pyAutomated<file_sep>/Robot.py
# -*- coding: utf-8 -*-
#模板匹配
from re import split
import cv2
import numpy as np
import numpy
import win32gui
import win32api
import win32ui
import win32con
import win32con as wcon
import pynput
import time
import ctypes
from ctypes import *
from PIL import ImageGrab,Image
import pytesseract as pytes
from utils import *
import re
import random
import string
#jit是进行numpy运算
from numba import jit
import tesserocr
from tesserocr import PyTessBaseAPI, PSM, OEM,RIL,iterate_level
from PIL import Image
aperture = (180,180,150)
#大雁塔入口 在坐标442,242位置
pls = (( 1059, 268, 0x4e3011),(1059, 269, 0x4f310e),)
#jit模式下调试有限
numbers_images = {'0':"num_0",'1':"num_1",'2':"num_2",'3':"num_3",'4':"num_4",'5':"num_5",'6':"num_6",
'7':"num_7",'8':"num_8",'9':"num_9"}
def binstr_to_nparray(hex_2_str,abs_x,abs_y):
binary = np.zeros((abs_y,abs_x), dtype=np.uint8)
i = 0
for j in range(abs_x):
for k in range(abs_y):
if hex_2_str[i] == "0":
binary[k][j]=0
else:
binary[k][j]=255
i+=1
return binary
def get_window_rect(hwnd):
try:
f = ctypes.windll.dwmapi.DwmGetWindowAttribute
except WindowsError:
f = None
if f:
rect = ctypes.wintypes.RECT()
DWMWA_EXTENDED_FRAME_BOUNDS = 9
f(ctypes.wintypes.HWND(hwnd),
ctypes.wintypes.DWORD(DWMWA_EXTENDED_FRAME_BOUNDS),
ctypes.byref(rect),
ctypes.sizeof(rect)
)
return rect.left, rect.top, rect.right, rect.bottom
class Robot:
def __init__(self,class_name,title_name,zoom_count):
self.class_name = class_name
self.title_name = title_name
#窗口坐标
self.left = 0
self.top = 0
self.right = 0
self.bottom = 0
self.hwnd = None
self.ScreenBoardhwnd = None
self.game_width = 0
self.game_height = 0
self.zoom_count = zoom_count
self.rollback_list = list() #回滚机制,在于颜色匹配没找到或者卡屏的情况,根据此列表操作步骤重新回滚。
@staticmethod
@jit
def __findMultiColor(s_c,expectedRGBColor,tolerance,x1=None,y1=None,x2=None,y2=None):
pos_x_y = []
for y in range(y1,y2):
for x in range(x1,x2):
b,g,r = s_c[y,x]
exR, exG, exB = expectedRGBColor[:3]
if (abs(r - exR) <= tolerance) and (abs(g - exG) <= tolerance) and (abs(b - exB) <= tolerance):
pos_x_y.append((x,y))
return pos_x_y
#像素转换成二值化点阵,返回二进制字符串
@staticmethod
@jit
def rgb_to_hexstr_2(image_arrays,binary,MeanRgb,x1,y1,x2,y2):
for idx ,x in enumerate (range(x1,x2)):
for idy, y in enumerate (range(y1,y2)):
b,g,r = image_arrays[y,x]
# print("r:",r)
# print("g:",g)
# print("b:",b)
for m in MeanRgb:
__mean_s_r = m[0]
__mean_s_g = m[1]
__mean_s_b = m[2]
__mean_m_r = m[3]
__mean_m_g = m[4]
__mean_m_b = m[5]
if r <= (__mean_s_r+__mean_m_r) and r >= (__mean_s_r-__mean_m_r) and g <= (__mean_s_g+__mean_m_g) and g >= (__mean_s_g-__mean_m_g) and b <= (__mean_s_b+__mean_m_b) and b >= (__mean_s_b-__mean_m_b):
binary[idy,idx] = 255
break
else:
binary[idy,idx] = 0
return binary
def Get_GameHwnd(self):
self.hwnd= win32gui.FindWindow('Qt5QWindowIcon','夜神模拟器')
self.ScreenBoardhwnd = win32gui.FindWindowEx(self.hwnd, 0, 'Qt5QWindowIcon', 'ScreenBoardClassWindow')
self.hwnd = win32gui.FindWindowEx(self.ScreenBoardhwnd, 0, self.class_name, self.title_name)
print('hwnd=',self.hwnd)
text = win32gui.GetWindowText(self.hwnd)
if self.hwnd:
print("found game hwnd")
self.left,self.top,self.right,self.bottom = win32gui.GetWindowRect(self.hwnd)
#窗口坐标
self.left=int(self.left*self.zoom_count)
self.top=int(self.top*self.zoom_count )
self.right=int(self.right*self.zoom_count )
self.bottom=int(self.bottom*self.zoom_count )
print("The window coordinates: ({0},{1},{2},{3})".format(str(self.left),str(self.top),str(self.right),str(self.bottom)))
self.game_width = self.right - self.left
self.game_height = self.bottom - self.top
else:
print("Not found game hwnd")
"""
x,y = findMultiColorInRegionFuzzy( 0xef6fdc, "24|5|0xffeecb,-7|30|0x2fb7ff", 90, 0, 0, 1919, 1079)
"""
def findMultiColorInRegionFuzzy(self,color,posandcolor,degree,x1=None,y1=None,x2=None,y2=None,tab=None):
x = None
y = None
tolerance = 100 - degree
# width = abs(x2-x1)
# height = abs(y2-y1)
r,g,b = Hex_to_RGB(color)
tpl = self.Print_screen()
posandcolor_list = list()
posandcolors_param = posandcolor.split(",")
state = State.OK
pos_x_y_list = self.__findMultiColor(tpl,(r,g,b),tolerance,x1,y1,x2,y2)
if pos_x_y_list:
for p in posandcolors_param:
__c = p.split("|")
px = __c[0]
py = __c[1]
rgb_hex = __c[2]
_tmp = {"px":int(px),"py":int(py),"rgb_hex":rgb_hex}
posandcolor_list.append(_tmp)
for x,y in pos_x_y_list:
for p in posandcolor_list:
__px = p["px"]
__py = p["py"]
__rgb_hex = p["rgb_hex"]
b,g,r = tpl[y+__py,x+__px]
exR = int(__rgb_hex[2:4],16)
exG = int(__rgb_hex[4:6],16)
exB = int(__rgb_hex[6:8],16)
if (pixelMatchesColor((r, g, b),(exR,exG,exB),tolerance)):
state = State.OK
else:
state = State.NOTMATCH
break
if state == State.OK:
return State.OK,(x,y)
return State.NOTMATCH,(-1,-1)
def findMultiColorInRegionFuzzyByTable(self,t_Set,degree=90,x1=None,y1=None,x2=None,y2=None):
tolerance = 100 - degree
tpl = None
#目前用不上x1,y1,x2,y2
#tpl = self.Print_screen()[y1:y2,x1:x2]
# if x1 and y1 and x2 and y2:
# tpl = self.Print_screen()[y1:y2,x1:x2]
# else:
tpl = self.Print_screen()
state = State.NOTMATCH
for x,y,rgb_16_hex in t_Set:
#str_rgb = str(rgb_16_hex)
if isinstance(rgb_16_hex,int):
rgb_16_hex = '0x{:06X}'.format(rgb_16_hex)
exR = int(rgb_16_hex[2:4],16)
exG = int(rgb_16_hex[4:6],16)
exB = int(rgb_16_hex[6:8],16)
if y1 and x1:
if y > y2:
continue
if x > x2:
continue
b,g,r = tpl[y,x]
if (pixelMatchesColor((r, g, b),(exR,exG,exB),tolerance)):
state = State.OK
else:
state = State.NOTMATCH
break
if state == State.OK:
return State.OK,t_Set[0]
else:
return State.NOTMATCH,t_Set[0]
def FC_Clicke(t_Set,x1,y1,x2,y2,R,bool,sim):
pass
def Print_screen(self):
#返回句柄窗口的设备环境,覆盖整个窗口,包括非客户区,标题栏,菜单,边框
hWndDC = win32gui.GetWindowDC(self.hwnd)
#创建设备描述表
mfcDC = win32ui.CreateDCFromHandle(hWndDC)
#创建内存设备描述表
saveDC = mfcDC.CreateCompatibleDC()
#创建位图对象准备保存图片
saveBitMap = win32ui.CreateBitmap()
#为bitmap开辟存储空间
saveBitMap.CreateCompatibleBitmap(mfcDC,self.game_width,self.game_height)
#将截图保存到saveBitMap中
saveDC.SelectObject(saveBitMap)
#保存bitmap到内存设备描述表
saveDC.BitBlt((0,0), (self.game_width,self.game_height), mfcDC, (0, 0), win32con.SRCCOPY)
signedIntsArray = saveBitMap.GetBitmapBits(True)
win32gui.DeleteObject(saveBitMap.GetHandle())
saveDC.DeleteDC()
mfcDC.DeleteDC()
win32gui.ReleaseDC(self.hwnd, hWndDC)
salt = ''.join(random.sample(string.ascii_letters + string.digits, 8))
im_PIL = Image.frombuffer(
'RGB',
(self.game_width, self.game_height),
signedIntsArray, 'raw', 'BGRX', 0, 1)
# im_PIL.save("C:\\Users\\Wrench\\Desktop\\tmp\\im_opencv_" + salt + ".png")
# im = Image.open("C:\\Users\\Wrench\\Desktop\\tmp\\im_opencv_" + salt + ".png")
return cv2.cvtColor(np.array(im_PIL),cv2.COLOR_RGB2BGR)
def doClick(self,cx,cy):
ctr = pynput.mouse.Controller()
ctr.move(cx, cy) #鼠标移动到(x,y)位置
ctr.press(pynput.mouse.Button.left) #移动并且在(x,y)位置左击
ctr.release(pynput.mouse.Button.left)
def getCurPos(self):
return win32gui.GetCursorPos()
def getPos(self):
while True:
res = getCurPos()
print (res)
time.sleep(1)
def clickLeft(self):
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN | win32con.MOUSEEVENTF_LEFTUP, 0, 0)
def movePos(self,x, y):
windll.user32.SetCursorPos(x, y)
def animateMove(self,curPos, targetPos, durTime=1, fps=60):
x1 = curPos[0]
y1 = curPos[1]
x2 = targetPos[0]
y2 = targetPos[1]
dx = x2 - x1
dy = y2 - y1
times = int(fps * durTime)
dx_ = dx * 1.0 / times
dy_ = dy * 1.0 / times
sleep_time = durTime * 1.0 / times
for i in range(times):
int_temp_x = int(round(x1 + (i + 1) * dx_))
int_temp_y = int(round(y1 + (i + 1) * dy_))
windll.user32.SetCursorPos(int_temp_x, int_temp_y)
time.sleep(sleep_time)
windll.user32.SetCursorPos(x2, y2)
def show(self,tpl):
cv2.namedWindow("Image")
cv2.imshow("Image", tpl)
cv2.waitKey (0)
def animateMoveAndClick(self,curPos, targetPos, durTime=0.5, fps=30, waitTime=0.5):
x1 = curPos[0]
y1 = curPos[1]
x2 = targetPos[0]
y2 = targetPos[1]
dx = x2 - x1
dy = y2 - y1
times = int(fps * durTime)
dx_ = dx * 1.0 / times
dy_ = dy * 1.0 / times
sleep_time = durTime * 1.0 / times
for i in range(times):
int_temp_x = int(round(x1 + (i + 1) * dx_))
int_temp_y = int(round(y1 + (i + 1) * dy_))
windll.user32.SetCursorPos(int_temp_x, int_temp_y)
time.sleep(sleep_time)
windll.user32.SetCursorPos(x2, y2)
time.sleep(waitTime)
self.clickLeft()
def matchTemplate(self,tpl,target,tolerance=0.2):
methods = [cv2.TM_SQDIFF_NORMED] #3种模板匹配方法 cv2.TM_CCORR_NORMED, cv2.TM_CCOEFF_NORMED
th, tw = target.shape[:2]
for md in methods:
#result = cv2.matchTemplate(tpl,target, md)
try:
result =cv2.matchTemplate(tpl,target, md)
ok = True
except cv2.error as e:
ok = False
print("匹配错误")
return (-1,-1)
min_val, max_val, min_loc, max_loc = cv2.minMaxLoc(result)
if min_val > tolerance:
#print("not match")
return (-1,-1)
else:
pass
if md == cv2.TM_SQDIFF_NORMED:
tl = min_loc
else:
tl = max_loc
br = (tl[0]+tw, tl[1]+th) #br是矩形右下角的点的坐标
a=int((tl[0]+int(tw/2)))
b=int((tl[1]+int(th/2)))
#new_target = (a,b)
# cv2.rectangle(tpl,tl,br,(0, 0, 255),1)
# cv2.imshow('t',tpl)
# cv2.waitKey(0)
return a,b
return (-1,-1)
def clike_map(self):
tpl = self.Print_screen()
target = cv2.imread("./images/map.jpg")
new_target = self.matchTemplate(tpl,target)
self.click(new_target)
def tsOcrText(self,tpl,text_features,x1,y1,x2,y2,lang='chi_sim',psm=7, oem=1):
_data_list = list()
tpl = tpl[y1:y2,x1:x2]
tpl = cv2.cvtColor(tpl,cv2.COLOR_RGB2GRAY)
img = cv2.adaptiveThreshold(tpl,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C,cv2.THRESH_BINARY,11,2) #经过测试高斯识别效果好
#numpy转换成PIL格式
img = Image.fromarray(img)
#img.show()
with PyTessBaseAPI(lang='chi_sim',psm=7, oem=1) as api:
level = RIL.TEXTLINE #以标题为主
#img = Image.open("C:\\Users\\Wrench\\Nox_share\\ImageShare\\Screenshots\\12121.png")
api.SetImage(img)
api.Recognize()
ri = api.GetIterator()
for r in iterate_level(ri, level):
try:
symbol = r.GetUTF8Text(level) # r == ri
conf = r.Confidence(level) #相似度
if symbol:
pass
#print('symbol {0} conf: {1}'.format(symbol, conf))
boxes = r.BoundingBox(level) #xy等等坐标
dict_= {"text":symbol,"left":boxes[0],"top":boxes[1],"weight":boxes[2],"weight":boxes[3]}
_data_list.append(dict_)
except Exception as e:
print("没有字符")
xz = list()
for idx, data in enumerate(_data_list):
for text in text_features:
if text in data["text"]:
x = data["left"] + x1
y = data["top"] + y1
xz.append((data["text"],x,y))
#print("识别结果:{0}".format(xz))
return xz
# def OcrText(self,tpl,x1,y1,x2,y2,config=('--oem 1 -l chi_sim --psm 7')):
# econfig = ('--oem 1 -l eng --psm 6 digits')
# cconfig = ('--oem 1 -l chi_sim --psm 6')
# _data_list = list()
# tpl = tpl[y1:y2,x1:x2]
# tpl = cv2.cvtColor(tpl,cv2.COLOR_RGB2GRAY)
# img = cv2.adaptiveThreshold(tpl,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C,cv2.THRESH_BINARY,11,2) #经过测试高斯识别效果好
# #numpy转换成PIL格式
# img = Image.fromarray(img)
# #img.show()
# with PyTessBaseAPI(lang='chi_sim',psm=7, oem=1) as api:
# level = RIL.TEXTLINE #以标题为主
# #img = Image.open("C:\\Users\\Wrench\\Nox_share\\ImageShare\\Screenshots\\12121.png")
# api.SetImage(img)
# api.Recognize()
# ri = api.GetIterator()
# for r in iterate_level(ri, level):
# try:
# symbol = r.GetUTF8Text(level) # r == ri
# conf = r.Confidence(level) #相似度
# if symbol:
# pass
# #print('symbol {0} conf: {1}'.format(symbol, conf))
# boxes = r.BoundingBox(level) #xy等等坐标
# dict_= {"text":symbol,"left":boxes[0],"top":boxes[1],"weight":boxes[2],"weight":boxes[3]}
# _data_list.append(dict_)
# except Exception as e:
# print("没有字符")
# return _data_list
def clike_expr_tool(self):
tpl = self.Print_screen()
target = cv2.imread("./images/expr_tool.jpg")
x,y = self.matchTemplate(tpl,target)
self.click(x,y)
def clike_aperture(self):
# LUA 脚本插件 {1338,949,0x121721} 1338,949 是 x,y这样. 0x121721 是rbg的十六进制码
im2 = ImageGrab.grab(bbox =(0, 0, 300, 300))
pix = im2.load()
sc = pix[55,56]
tpl = self.Print_screen()
#x,y是这个3维图像的位置. 第一参数是y,第二个是x
r, g, b = tpl[1079,1919]
a = (r, g, b)
print (a)
def look_up_color_by_xy_c(self,x:int,y:int,rgb_hex):
ret = None
tpl = self.Print_screen()
rgb_tuple = Hex_to_RGB(str(rgb_hex))
b,g,r = tpl[y,x]
hex_str = '%02x%02x%02x' % (r, g, b)
print(hex_str)
hex_a = int(hex_str,16)
if pixelMatchesColor((r, g, b),(78,48,17),10):
print ("Matches Color")
ret = State.OK
else:
print ("Not Found! Rollback it")
ret = State.ROLLBACK
return ret
# def check_fire(self):
# tpl = self.Print_screen()
# target = cv2.imread("./images/check_fire.jpg")
# x,y = self.matchTemplate(tpl,target)
# if x == -1:
# return False
# else:
# return True
def click(self,x:int=None,y:int=None):
"""Click at pixel xy."""
x = int(x/self.zoom_count)#1.5是缩放比例
y = int(y/self.zoom_count)
lParam = win32api.MAKELONG(x, y)
win32gui.PostMessage(self.ScreenBoardhwnd, wcon.WM_MOUSEMOVE,wcon.MK_LBUTTON, lParam)
win32gui.SendMessage(self.ScreenBoardhwnd, wcon.WM_SETCURSOR, self.ScreenBoardhwnd, win32api.MAKELONG(wcon.HTCLIENT, wcon.WM_LBUTTONDOWN))
# win32gui.PostMessage(self.ScreenBoardhwnd, wcon.WM_SETCURSOR, 0, 0)
while (win32api.GetKeyState(wcon.VK_CONTROL) < 0 or
win32api.GetKeyState(wcon.VK_SHIFT) < 0 or
win32api.GetKeyState(wcon.VK_MENU) < 0):
time.sleep(0.005)
win32gui.PostMessage(self.ScreenBoardhwnd, wcon.WM_LBUTTONDOWN,
wcon.MK_LBUTTON, lParam)
win32gui.PostMessage(self.ScreenBoardhwnd, wcon.WM_LBUTTONUP, 0, lParam)
def fire(self):
#check autofire
tpl = self.Print_screen()
target = cv2.imread("./images/auto.jpg")
x,y = self.matchTemplate(tpl,target)
if x == -1:
print("正在自动战斗中")
else:
print("点击自动战斗 posx:{0} posy:{1}".format(x,y))
self.click(x,y)
def __Ocr(self,scx_rgb,x1,y1,x2,y2):
tpl = self.Print_screen()
#self.show(tpl[y1:y2,x1:x2])
MeanRgb = list()
if "#" in scx_rgb:
__scx_rgb = scx_rgb.split("#")
for i in __scx_rgb:
se_rgb_tupe = i.split(",")
__mean_s_r = int(se_rgb_tupe[0][0:2],16)
__mean_s_g = int(se_rgb_tupe[0][2:4],16)
__mean_s_b = int(se_rgb_tupe[0][4:6],16)
__mean_m_r = int(se_rgb_tupe[1][0:2],16)
__mean_m_g = int(se_rgb_tupe[1][2:4],16)
__mean_m_b = int(se_rgb_tupe[1][4:6],16)
MeanRgb.append([__mean_s_r,__mean_s_g,__mean_s_b,__mean_m_r,__mean_m_g,__mean_m_b])
else:
se_rgb_tupe = scx_rgb.split(",")
__mean_s_r = int(se_rgb_tupe[0][0:2],16)
__mean_s_g = int(se_rgb_tupe[0][2:4],16)
__mean_s_b = int(se_rgb_tupe[0][4:6],16)
__mean_m_r = int(se_rgb_tupe[1][0:2],16)
__mean_m_g = int(se_rgb_tupe[1][2:4],16)
__mean_m_b = int(se_rgb_tupe[1][4:6],16)
MeanRgb.append([__mean_s_r,__mean_s_g,__mean_s_b,__mean_m_r,__mean_m_g,__mean_m_b])
binary = np.zeros((abs(y2-y1),abs(x2-x1)), dtype=np.uint8)
bin_2_ = self.rgb_to_hexstr_2(tpl,binary,np.array(MeanRgb),x1,y1,x2,y2)
return bin_2_
def Ocrtext(self,scx_rgb,x1,y1,x2,y2,ril=RIL.TEXTLINE,lang='chi_sim',psm=7, oem=1,attribute=None,THRESH_GAUSSIAN =False):
if THRESH_GAUSSIAN:
tpl = self.Print_screen()
tpl = tpl[y1:y2,x1:x2]
tpl = cv2.cvtColor(tpl,cv2.COLOR_RGB2GRAY)
image_array1 = cv2.adaptiveThreshold(tpl,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C,cv2.THRESH_BINARY,11,2)
else:
image_array1 = self.__Ocr(scx_rgb,x1, y1, x2, y2)
#self.show(image_array1)
_data_list = list()
with PyTessBaseAPI(lang=lang,psm=psm, oem=oem) as api:
level = ril#以标题为主
#img = Image.open("C:\\Users\\Wrench\\Nox_share\\ImageShare\\Screenshots\\12121.png")
img = Image.fromarray(image_array1)
if attribute:
api.SetVariable(attribute[0], attribute[1])
#img.show()
api.SetImage(img)
api.Recognize()
ri = api.GetIterator()
for r in iterate_level(ri, level):
try:
symbol = r.GetUTF8Text(level) # r == ri
r.Confidence(level) #相似度
if symbol:
pass
#print('symbol {0} conf: {1}'.format(symbol, conf))
boxes = r.BoundingBox(level) #xy等等坐标
dict_= {"text":symbol,"left":boxes[0],"top":boxes[1],"weight":boxes[2],"weight":boxes[3]}
_data_list.append(dict_)
except Exception as e:
print("没有字符")
return _data_list
def x_Ocrtext(self,tabs,scx_rgb,x1,y1,x2,y2):
#ret = re.findall(r"@(.*?)\$",tab,re.I|re.M)
for tab in tabs:
if "@" in tab:
data_tuple = tab.split("@")[1]
hex_str_16 = tab.split("@")[0]
else:
data_tuple = tab
hex_str_16 = tab.split("$")[0]
data_tuple = data_tuple.split("$")
if len(data_tuple):
p_hexstr_2 = data_tuple[0]
hexstr_2 = hexstr_16_to_hexstr_2(hex_str_16)
hexstr_2 += p_hexstr_2
word = data_tuple[1]
x = int(data_tuple[4])
y = int(data_tuple[3])
image_array = binstr_to_nparray(hexstr_2,x,y)
#self.show(image_array)
image_array1 = self.__Ocr(scx_rgb,x1, y1, x2, y2)
#self.show(image_array1)
new_X_t = self.matchTemplate(image_array1,image_array,0.4)
#print(new_X_t)
if new_X_t !=(-1,-1):
print("当前识字为:{0}".format(word))
return word
def robot_fire(blRobot):
#tql = blRobot.Print_screen()
while True:
bfire = blRobot.check_fire()
print("check_fire:{0}".format(bfire))
if bfire:
blRobot.fire() <file_sep>/requirements.txt
numpy==1.18.5
numba==0.50.1
pywin32==227
Pillow==8.0.1
pynput==1.7.1
pytesseract==0.3.6
opencv-python==4.4.0.46
<file_sep>/README.md
# pyAutomated
项目设计目的是在windows系统上模拟键鼠点击安卓虚拟机(我使用夜神模拟器6.6.1.2)实现自动化.
此代码重新实现了触动精灵核心功能,分别是找色函数findMultiColorInRegionFuzzy与识字函数Ocrtext,可以和官网上的找色工具与识字工具配合开发
两个函数的关键使用与触动精灵差别不大,如果你有什么更好的想法或者问题,请联系我的邮箱<EMAIL>
## 运行环境:
windows10(150%放大倍数)
夜神模拟器6.6.1.2(分辨率1920x1080)
conda python3.7.9
## python运行环境:
numpy==1.18.5
numba==0.50.1
pywin32==227
Pillow==8.0.1
pynput==1.7.1
pytesseract==0.3.6
opencv-python==4.4.0.46
## conda安装tesserocr:
conda install -c conda-forge tesserocr
识字函数比较喜欢基于采用tesseract-ocr来进行识字需要安装conda以及其环境tesserocr,(采用conda安装的tesserocr自带tesseract-ocr环境)并把chi_sim.traineddata模型包放入tessdata文件夹中(此文件夹是程序tesseract字库的路径)
C:\\Users\(用户名)\\.conda\\envs\\(你的环境名)\\Library\\bin\\tessdata
### 复制成功后以管理员cmd启动验证方式
conda activate {your env}
tesseract --list-langs
看到有 chi_sim 就代表添加成功
(OCR) C:\WINDOWS\system32>tesseract --list-langs
List of available languages (3):
chi_sim
eng
osd
# 使用说明
首先初始化对象并获取窗口句柄
```python
blRobot=Robot(class_name="subWin",title_name="sub",zoom_count=1.5)
blRobot.Get_GameHwnd()
```
接下来可以使用部分功能了,还有很多其他方式的实现就不一一说明
### 识字函数(可以和触动精灵字库使用):
```python
xstr = blRobot.x_Ocrtext(ditu,"00E804,011805#03DC07,032006#08DD0B,072009",444,506,589,560)
```
tesseract版本识字效果识别图片只有一行字的效果比较理想
### 识字函数1(tesseract版):
```python
tpl = blRobot.Print_screen()
xstr = blRobot.Ocrtext("06BE0B,06420B#00E804,011805#03DC07,032006#08DD0B,072009",
591,511,732,547,ril=RIL.TEXTLINE,
lang='eng',oem=1,
attribute=["tessedit_char_whitelist",
"0123456789,")
```
### 识字函数2(tesseract版,查找关键字并返回坐标):
```python
tu_text_features = ['图','T']
tpl = blRobot.Print_screen()
xstr = blRobot.tsOcrtext(tpl,tu_text_features,173, 40, 285, 76,lang='chi_sim',psm=7, oem=1)
```
### 找色函数(可以和触动精灵官网的找色工具配合):
```python
x,y = blRobot.findMultiColorInRegionFuzzy( "0xef6fdc", "24|5|0xffeecb,-7|30|0x2fb7ff", 90, 0, 0, 1919, 1079)
```
### 模拟虚拟机鼠标点击:
```python
blRobot.click(125,33)
```
# 已知问题:
1.findMultiColorInRegionFuzzy 参数2不能为空字符串 "" ,也就是说找色必须要有两个点以上才行,待优化 | 3baa792a36868d506d739bcc912779ac039ef1f0 | [
"Markdown",
"Python",
"Text"
] | 3 | Python | wghub/pyAutomated | 3277d7e7f0993aa394ea095f1017f40ad46d67b5 | b78a93aca08c116adb33aeea5fcf0242420f4099 |
refs/heads/master | <repo_name>thatkidnamedrox/fitbox<file_sep>/fit-box-backend/app/models/follow.rb
class Follow < ApplicationRecord
belongs_to :follower, class_name: "User", foreign_key: "user_id"
belongs_to :following, class_name: "User", foreign_key: "following_id"
end
<file_sep>/fit-box-backend/db/seeds.rb
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
#
# Examples:
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)
muscle_groups = [
"quadriceps",
"hamstrings",
"calves",
"chest",
"back",
"shoulders",
"triceps",
"biceps",
"forearms",
"trapezius",
"abs"
]
User.destroy_all
Workout.destroy_all
Follow.destroy_all
users = [
{
username: "knownasrox",
bio: ":)",
password: "<PASSWORD>",
profile_img_url: "https://cdn130.picsart.com/266658400000212.png?r1024x1024"
},
{
username: "aliya-janell",
bio: ":)",
password: "<PASSWORD>",
profile_img_url: "https://i.pinimg.com/originals/d6/85/c0/d685c03633c4c2937b57a2622842901d.jpg"
},
{
username: "son-goku",
bio: ":)",
password: "<PASSWORD>",
profile_img_url: "https://cdn11.bigcommerce.com/s-c90z0hdhmk/images/stencil/1280x1280/products/62/70/Goku_Ultra_Instinct__74964.1556400877.jpg?c=2&imbypass=on"
},
{
username: "naruto-uzumaki",
bio: ":)",
password: "<PASSWORD>",
profile_img_url: "https://dw9to29mmj727.cloudfront.net/misc/newsletter-naruto3.png"
}
]
users.each do |user|
User.create(user);
end
<file_sep>/fit-box-frontend/src/profile.js
function displayProfile(user) {
let isCurrentUser = (user) => {
return getCurrentUserId() == user.id;
}
let createProfileInfo = (user) => {
return `
<div class="d-flex flex-column align-items-center">
<div class="profile d-flex flex-column bd-highlight align-items-center" style="width:700px; ">
<img class="profile-pic" src='${user.profile_img_url ? user.profile_img_url : "images/user-circle-solid.svg"}'/>
<br>
<h2>@${user.username}</h2>
<br>
<ul class="list-group d-flex flex-row container">
<li class="list-group-item d-flex flex-column col-4 p-3" style="text-align:center;"><h3>${user.workouts.length}</h3><h6 style="margin:auto;">posts</h6></li>
<li class="list-group-item d-flex flex-column col-4 p-3" style="text-align:center;"><h3 class="followers">${user.followers.length}</h3><h6 style="margin:auto;">followers</h6></li>
<li class="list-group-item d-flex flex-column col-4 p-3" style="text-align:center;"><h3 class="following">${user.following.length}</h3><h6 style="margin:auto;">following</h6></li>
</ul>
<br>
<div class="bio">
<h5>${user.bio ? user.bio : "nothing... yet ;)"}</h5>
</div>
<br>
</div>
<br>
<div style="text-align:center;">
<h4 style="">Your Workouts</h4>
</div>
<br>
<div class="d-flex flex-column justify-content-center align-items-center" id="user-workouts" style=""></div>
<br>
<br>
</div>`;
}
fetch(`${BASE_URL}/following/${getCurrentUserId()}/${user.id}`)
.then(resp => resp.json())
.then(data => {
if (data) return true;
return false;
}).then(isFollowing => {
let mainContainer = document.querySelector("main");
mainContainer.innerHTML = createProfileInfo(user);
let profile = mainContainer.querySelector(".profile");
if (isCurrentUser(user)) {
profile.innerHTML += `
<button type="button" class="btn btn-primary btn-block" data-toggle="modal" data-target="#exampleModal" id="edit-profile">Edit Profile</button>
<button type="button" class="btn btn-primary btn-block" data-toggle="modal" data-target=".display-workout-form" id="post-workout">Post Workout</button>`;
let postWorkoutButton = $(mainContainer).find("#post-workout");
$(postWorkoutButton).click(() => {
displayWorkoutForm(user);
})
let editProfileButton = $(mainContainer).find("#edit-profile");
$(editProfileButton).click(() => {
displayEditProfileForm(user);
})
} else {
profile.innerHTML += `
<button type="button" class="btn btn-primary btn-block follow-button ${ isFollowing ? 'unfollow">Unfollow</button>' : 'follow">Follow</button>'}`
let followButton = $(mainContainer).find(".follow-button");
let followersCount = $(mainContainer).find(".followers");
let count = parseInt($(followersCount).text());
$(followButton).click(() => {
if (followButton.hasClass("unfollow")) {
let configObj = {
method: "DELETE",
headers: {
"Content-Type": 'application/json'
},
body: JSON.stringify({
user_id: localStorage.getItem("user_id"),
following_id: user.id
})
}
fetch(`${BASE_URL}/unfollow`, configObj)
.then(res => res.json())
.then(user => {
$(followButton).removeClass("unfollow");
$(followButton).addClass("follow");
$(followButton).text("Follow");
count--;
$(followersCount).text(count);
})
} else {
let configObj = {
method: "POST",
headers: {
"Content-Type": 'application/json'
},
body: JSON.stringify({
user_id: localStorage.getItem("user_id"),
following_id: user.id
})
}
fetch(`${BASE_URL}/follow`, configObj)
.then(res => res.json())
.then(user => {
$(followButton).removeClass("follow");
$(followButton).addClass("unfollow");
$(followButton).text("Unfollow");
count++;
$(followersCount).text(count);
})
}
})
}
let workoutsContainer = $(mainContainer).find("#user-workouts");
fetch(`${BASE_URL}/users/${user.id}/workouts`)
.then(resp => resp.json())
.then(workouts => {
console.log(workouts);
workouts.forEach(workout => {
let workoutCard = createWorkoutCard(workout);
$(workoutsContainer).prepend(workoutCard);
})
})
.catch(error => {
alert("error");
console.log(error.message)
})
})
}<file_sep>/fit-box-backend/app/models/exercise_muscle.rb
class ExerciseMuscle < ApplicationRecord
belongs_to :exercise
belongs_to :muscle_group
end
<file_sep>/fit-box-backend/app/controllers/bundle_exercises_controller.rb
class BundleExercisesController < ApplicationController
end
<file_sep>/fit-box-backend/db/migrate/20190723153206_create_exercise_sets.rb
class CreateExerciseSets < ActiveRecord::Migration[5.2]
def change
create_table :exercise_sets do |t|
t.integer :sets
t.integer :reps
t.integer :rest
t.time :time
t.string :execution
t.integer :distance
t.string :tempo
t.integer :bundle_exercise_id
t.integer :exercise_id
t.timestamps
end
end
end
<file_sep>/fit-box-backend/app/models/exercise_set.rb
class ExerciseSet < ApplicationRecord
belongs_to :exercise
belongs_to :bundle
accepts_nested_attributes_for :exercise
end
<file_sep>/fit-box-frontend/src/index.js
const BASE_URL = "http:localhost:3000"
if (localStorage.getItem('user_id')) {
const userId = localStorage.getItem('user_id');
fetch(`${BASE_URL}/users/${userId}`)
.then(res => res.json())
.then(user => {
displayPage(user)
})
} else {
displayLogin()
}
<file_sep>/fit-box-frontend/src/workout.js
function createWorkoutCard(workout) {
let card = document.createElement("div");
$(card).attr("class", "card");
$(card).attr("data-id", workout.id);
$(card).attr("style", "width:600px; margin-bottom: 30px;")
let cardHeader = document.createElement("div");
$(cardHeader).attr("class", "card-header");
$(card).append(cardHeader);
let cardHeader2 = $(cardHeader).clone();
let cardBody = document.createElement("div");
$(cardBody).attr("class", "card-body");
$(card).append(cardBody);
let cardTitle = document.createElement("h5");
$(cardTitle).attr("class", "card-title");
$(cardTitle).text(workout.name);
$(cardBody).append(cardTitle);
console.log(workout.description)
let cardText = document.createElement("p");
$(cardText).attr("class", "card-text d-flex flex-column");
if (workout.description) {
$(cardText).text(workout.description);
} else {
$(cardText).text(";)");
}
$(cardBody).append(cardText);
if (workout.video_link) {
let videoLink = document.createElement("a");
videoLink.href = "#";
videoLink.className = "card-link";
videoLink.innerText = "watch video";
videoLink.style = "margin-top: 10px; margin-left: 15px;"
$(videoLink).attr("data-toggle", "modal");
$(videoLink).attr("data-target", ".display-workout-form");
$(cardText).append(videoLink);
$(videoLink).click(() => {
displayVideo(workout.video_link);
})
}
if (workout.bundles !== []) {
let cardLink = document.createElement("button");
cardLink.href = "#";
cardLink.className = "btn btn-link collapsed";
cardLink.innerText = "view details";
$(cardLink).attr("data-toggle", "collapse");
$(cardLink).attr("data-target", "#details-" + workout.id);
$(cardLink).attr("aria-expanded", "false");
$(cardLink).attr("aria-controls", "details-" + workout.id)
let details = document.createElement("div");
details.id = "details-" + workout.id;
details.className = "collapse";
$(details).attr("data-parent", ".card");
details.innerHTML = `<div class="card-body"></div>`
$(cardHeader2).append(cardLink);
$(cardHeader2).append(details);
$(card).append(cardHeader2);
let muscles = [];
let detailsBody = details.querySelector(".card-body");
workout.bundles.forEach(bundle => {
let exercisesUl = document.createElement("ul");
exercisesUl.className = "list-group";
bundle.exercises.forEach(exercise => {
exercise.muscle_groups.forEach(muscle => {
muscles.push(muscle);
})
let exerciseLi = `
<li class="list-group-item">
${exercise.name}
</li>
`
$(exercisesUl).append(exerciseLi);
})
let title = "<h6>" + bundle.name + "</h6>";
$(detailsBody).append(title);
$(detailsBody).append(exercisesUl);
$(detailsBody).append("<br>")
})
let cardFooter = document.createElement("div");
cardFooter.className = "card-footer";
// console.log(muscles);
let buttonContainer = document.createElement("div");
buttonContainer.className = "container";
buttonContainer.style = "display: flex; flex-flow: row wrap;"
muscles.forEach(muscle => {
let button = `<button type="button" class="btn btn-outline-secondary" style="margin:10px;">${muscle.name}</button>`;
$(buttonContainer).append(button);
})
$(cardHeader).append(buttonContainer);
}
let removeButton = createRemoveButton();
$(card).append(removeButton);
$(removeButton).click(() => {
let configObj = {
method: "DELETE",
headers: {
"Content-Type": 'application/json'
}
}
fetch(`${BASE_URL}/workouts/${workout.id}`, configObj)
.then(resp => resp.json())
.then(data => {
console.log(data);
$(removeButton).parent().remove();
})
})
return card;
}
function displayVideo(videoLink) {
let modal = document.querySelector(".display-workout-form");
let modalHeader = modal.querySelector(".modal-header");
let modalBody = modal.querySelector(".modal-body");
// let modalFooter = modal.querySelector(".modal-footer");
let videoId = videoLink.slice(17);
let embed = document.createElement("div");
embed.className = "embed-responsive embed-responsive-16by9";
embed.innerHTML = `<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/${videoId}" allowfullscreen></iframe>`
$(modalHeader).empty();
$(modalBody).empty();
$(modalBody).append(embed);
}<file_sep>/fit-box-backend/app/controllers/follows_controller.rb
class FollowsController < ApplicationController
# def show
# user = User.find(params[:id])
# render json: user.following.map {|u| u.workouts.map{|w| w.full_hash} }
# end
def new
end
def create
follow = Follow.create(user_id: params[:user_id], following_id: params[:following_id])
render json: follow
end
end
<file_sep>/fit-box-backend/db/migrate/20190723144349_create_bundle_exercises.rb
class CreateBundleExercises < ActiveRecord::Migration[5.2]
def change
create_table :bundle_exercises do |t|
t.integer :bundle_id
t.integer :exercise_set_id
t.timestamps
end
end
end
<file_sep>/fit-box-backend/app/controllers/exercise_sets_controller.rb
class ExerciseSetsController < ApplicationController
end
<file_sep>/fit-box-backend/app/models/bundle.rb
class Bundle < ApplicationRecord
belongs_to :workout
has_many :exercise_sets
has_many :exercises, through: :exercise_sets
accepts_nested_attributes_for :exercise_sets
accepts_nested_attributes_for :exercises
# def self.names
# bundles = [
# "Circuit Training",
# "Pyramid",
# "HIIT - High Intensity Interval Training",
# "AMRAP - As Many Reps As Possible",
# "Tabata",
# "Supersets",
# "EMOM - Every Minute On the Minute",
# "Add-On",
# "Challenge",
# "5x5 Strength Training"
# ]
# end
end<file_sep>/fit-box-backend/db/migrate/20190726032647_add_bundle_to_exercise_set.rb
class AddBundleToExerciseSet < ActiveRecord::Migration[5.2]
def change
add_column :exercise_sets, :bundle_id, :integer
remove_column :exercise_sets, :bundle_exercise_id
#Ex:- add_column("admin_users", "username", :string, :limit =>25, :after => "email")
end
end
<file_sep>/fit-box-backend/app/models/user.rb
class User < ApplicationRecord
has_secure_password
has_many :workouts
has_many :follows
has_many :follower_relationships, foreign_key: :following_id, class_name: "Follow"
has_many :followers, through: :follower_relationships, source: :follower
has_many :following_relationships, foreign_key: :user_id, class_name: "Follow"
has_many :following, through: :following_relationships, source: :following
def full_hash
attributes = self.attributes
attributes["followers"] = self.followers.map { |follower| follower.attributes }
attributes["following"] = self.following.map { |following| following.attributes }
attributes["workouts"] = self.workouts.map { |workout| workout.attributes }
attributes
end
end
<file_sep>/fit-box-backend/app/models/exercise.rb
class Exercise < ApplicationRecord
has_many :exercise_sets
has_many :exercise_muscles
has_many :muscle_groups, through: :exercise_muscles
# has_many :bundles, through: :bundle_exercises
accepts_nested_attributes_for :exercise_sets
accepts_nested_attributes_for :muscle_groups
end
<file_sep>/fit-box-frontend/src/postWorkout.js
function displayWorkoutForm(user) {
let numCount = {
workout: 0,
bundle: 0,
exercise: 0,
set: 0
}
let getModelInfo = (modelName) => {
// could use fetch instead?
let models = {
workout: {
subGroup: "bundle",
attributes: ["name", "description", "video_link"]
},
bundle: {
subGroup: "exercise",
attributes: ["name"]
},
exercise: {
subGroup: "set",
attributes: ["name"]
},
set: {
attributes: getFormatOptions()
}
}
return models[modelName];
}
let getFormatOptions = (keysOnly = false) => {
let options = {
rb: ["reps", "rest", "execution", "tempo"],
tb: ["time", "rest", "execution", "tempo"],
db: ["distance", "rest", "execution", "tempo"]
}
if (keysOnly)
return Object.keys(options);
return options;
}
let createModel = (modelName, format = null) => {
let createModelAttributes = (modelName) => {
let atttributesContainer = document.createElement("div");
atttributesContainer.className = modelName + "-attributes";
let attributes = getModelInfo(modelName).attributes;
if (modelName === "set") {
let setAttributes = attributes[format];
console.log(attributes);
let inputGroup = document.createElement("div");
inputGroup.className = "input-group";
setAttributes.slice(0, 2).forEach(attr => {
inputGroup.innerHTML += `
<input name="${attr}" placeholder="${attr.substring(0, 4)}" class="form-control"/>`
})
$(atttributesContainer).append(inputGroup);
setAttributes.slice(2).forEach(attr => {
atttributesContainer.innerHTML += `
<input name="${attr}" placeholder="${attr.substring(0, 4)}" class="form-control"/>`
})
} else {
$(atttributesContainer).addClass("form-row");
attributes.forEach(attr => {
atttributesContainer.innerHTML += `
<div class="form-group col-sm-12">
<label class="sr-only" for=${attr}>${modelName}: ${attr}</label>
${(attr !== "description") ? `<input name="${attr}" class="form-control" placeholder="${modelName}:${attr}"/>` :
`<textarea name="${attr}" class="form-control" placeholder="${modelName}:${attr}"></textarea>`
}
</div>`
})
}
return atttributesContainer;
}
let id = modelName[0] + numCount[modelName];
let model = document.createElement("div");
model.className = modelName + " rounded";
model.id = id;
$(model).append(createModelAttributes(modelName));
let subGroupName = getModelInfo(modelName).subGroup;
if (subGroupName) {
if (modelName === "exercise") {
let options = [
'quadriceps',
'hamstrings',
'calves',
'chest',
'back',
'shoulders',
'triceps',
'biceps',
'forearms',
'trapezius',
'abdominals'
]
let dropdown = createDropdown(options);
console.log(model, dropdown);
$(model).append(dropdown);
}
let subGroup = document.createElement("div");
subGroup.className = subGroupName + "s container"
$(model).append(subGroup);
let radioButtons;
if (modelName === "bundle") {
let options = getFormatOptions(true);
radioButtons = createRadioButtons(id, options);
$(model).append(radioButtons);
}
let addButton = createAddButton(subGroupName);
$(model).append(addButton);
$(addButton).click((e) => {
let subModel;
if (subGroupName === "exercise") {
subModel = createModel(subGroupName);
let selectedFormat = $(radioButtons).find("input:checked").attr("id");
$(subModel).addClass(selectedFormat);
} else if (subGroupName === "set") {
let exerciseFormat = $(e.target).parent().attr("class").split(" ")[2];
subModel = createModel(subGroupName, exerciseFormat);
} else {
subModel = createModel(subGroupName);
}
$(subGroup).append(subModel);
})
}
if (modelName !== "workout") {
let removeButton = createRemoveButton();
$(model).append(removeButton);
$(removeButton).click(() => {
console.log("removed");
$(removeButton).parent().remove()
})
}
return model;
}
let createFormData = () => {
let createModelAttributesHash = (model, object) => {
let name = $(model).attr("class").split(" ")[0];
let hash = {}
let container = $(model).children("." + name + "-attributes");
let inputs = $(container).find("input");
let textareas = $(container).find("textarea");
for (let input of inputs) {
let key = $(input).attr("name");
let val = $(input).val();
hash[key] = val;
}
for (let textarea of textareas) {
let key = $(textarea).attr("name");
let val = $(textarea).val();
hash[key] = val;
}
return hash;
}
let formData = {};
formData["workout"] = {
user_id: user.id
}
let workout = $(form).find(".workout");
Object.assign(formData["workout"], createModelAttributesHash(workout, formData["workout"]));
formData["workout"]["bundles_attributes"] = [];
let bundles = $(workout).find(".bundles");
for (let bundle of $(bundles).children()) {
let bundleAttributes = createModelAttributesHash(bundle);
bundleAttributes["exercises_attributes"] = [];
let exercises = $(bundle).children(".exercises")
for (let exercise of $(exercises).children()) {
let exerciseAttributes = createModelAttributesHash(exercise);
exerciseAttributes["exercise_sets_attributes"] = []
exerciseAttributes["muscle_groups_attributes"] = [];
let tags = $(exercise).find(".tag p");
for (let tag of tags) {
exerciseAttributes["muscle_groups_attributes"].push({name: tag.innerText})
console.log(tag)
}
let sets = $(exercise).children(".sets");
for (let set of $(sets).children()) {
let setAttributes = createModelAttributesHash(set);
exerciseAttributes["exercise_sets_attributes"].push(setAttributes);
}
bundleAttributes["exercises_attributes"].push(exerciseAttributes);
}
formData["workout"]["bundles_attributes"].push(bundleAttributes);
}
return formData;
}
let modal = document.querySelector(".display-workout-form");
let modalHeader = modal.querySelector(".modal-header");
let modalBody = modal.querySelector(".modal-body");
let modalFooter = modal.querySelector(".modal-footer");
modalHeader.innerHTML = "Add Workout";
let form = createForm("/workouts", "POST");
$(modalBody).empty();
$(modalBody).append(form);
let workoutGroup = createModel("workout");
$(form).prepend(workoutGroup);
$(form).submit((e) => {
e.preventDefault();
let formData = createFormData();
configObj = {
method: "POST",
headers: {
"Content-Type": "application/json",
"Accept": "application/json"
},
body: JSON.stringify(formData)
}
let workoutsContainer = $("main").find("#user-workouts");
fetch(`${BASE_URL}/workouts`, configObj)
.then(resp => resp.json())
.then(workout => {
let workoutCard = createWorkoutCard(workout);
$(workoutsContainer).prepend(workoutCard);
})
.catch(error => {
alert("error");
console.log(error.message);
})
})
}<file_sep>/fit-box-backend/app/models/muscle.rb
class Muscle < ApplicationRecord
belongs_to :muscle_group
end
<file_sep>/fit-box-frontend/src/forms.js
// function createForm(user) {
// let form = document.createElement("form");
// $(form).attr("action", "/workouts");
// $(form).attr("method", "POST");
// $(form).append(createWorkout());
// let submitButton = document.createElement("button");
// $(submitButton).attr("type", "submit");
// $(submitButton).text("SUBMIT");
// $(form).append(submitButton);
// $(".modal-body").empty();
// $(".modal-body").append(form);
// // console.log($(".form-container"))
// $(form).on("click", "#add-bundle", () => {
// let bundleAttributes = ["name"];
// let bundle = createBundle(bundleAttributes, nBs);
// nBs++;
// $("#bundles").append(bundle);
// })
// $(form).on("click", ".add-exercise", (e) => {
// let exerciseAttributes = ["name"];
// let bundle = $(e.target).parent()
// let name = $(bundle).attr("id")
// let format = $(bundle).find("input[name=" + $(bundle).attr("id") + "]:checked").attr("class");
// let exercise = createExercise(exerciseAttributes, nEs, format);
// nEs++;
// $(bundle).children(".exercises").append(exercise);
// })
// $(form).on("click", ".add-set", (e) => {
// // identify exercise
// let exercise = $(e.target).parent();
// let className = $(exercise).attr("id");
// // identify format
// let format = $(exercise).attr("class").split(" ")[1];
// let formatOptions = {
// rb: ["sets", "reps", "rest", "execution", "tempo"],
// tb: ["sets", "time", "rest", "execution", "tempo"],
// db: ["sets", "distance", "rest", "execution", "tempo"]
// }
// let setsAttributes = formatOptions[format];
// let set = createSet(setsAttributes, nSs);
// nSs++;
// // get setsUl from exercise
// let setsUl = $(exercise).children(".sets")
// $(setsUl).append(set);
// })
// $(form).on("click", ".remove", (e) => {
// $(e.target).parent().remove()
// console.log("hey");
// })
// $(form).submit((e) => {
// e.preventDefault();
// let formData = {}
// formData["workout"] = {
// user_id: user.id
// }
// let workout = $("form").children("#workout");
// let workoutAttributesUl = $(workout).children("#workout-attributes");
// for (let attributeLi of workoutAttributesUl.children()) {
// let inputs = $(attributeLi).children("input");
// for (let input of inputs) {
// let val = $(input).val();
// let key = $(input).attr("name");
// formData["workout"][key] = val;
// }
// }
// formData["workout"]["bundles_attributes"] = []
// let bundlesUl = $(workout).children("#bundles");
// for (let bundle of bundlesUl.children()) {
// let bundleAttributes = createAttributesHash(bundle, "bundle");
// bundleAttributes["exercise_sets_attributes"] = []
// let exercisesUl = $(bundle).children(".exercises");
// for (let exercise of exercisesUl.children()) {
// let exerciseAttributes = createAttributesHash(exercise, "exercise");
// let setsUl = $(exercise).children(".sets");
// for (let set of setsUl.children()) {
// let setAttributes = createAttributesHash(set, "set");
// setAttributes["exercise_attributes"] = exerciseAttributes;
// bundleAttributes["exercise_sets_attributes"].push(setAttributes);
// }
// }
// formData["workout"]["bundles_attributes"].push(bundleAttributes);
// }
// configObj = {
// method: "POST",
// headers: {
// "Content-Type": "application/json",
// "Accept": "application/json"
// },
// body: JSON.stringify(formData)
// }
// fetch(`$(BASE_URL)/workouts`, configObj)
// .then(resp => resp.json())
// .then(data => {
// console.log(data);
// //$(form).remove();
// })
// .catch(error => {
// alert("Error.");
// console.log(error.message);
// })
// })
// }
// // helper functions
// function createAttributesHash(element, name) {
// let attributesHash = {}
// let attributesUl = $(element).children("." + name + "-attributes");
// for (let attributeLi of attributesUl.children()) {
// let inputs = $(attributeLi).children("input");
// for (let input of inputs) {
// let val = $(input).val();
// let key = $(input).attr("name");
// attributesHash[key] = val;
// //console.log(key);
// }
// }
// return attributesHash;
// }
// let nBs = 0;
// let nEs = 0;
// let nSs = 0;
// function createWorkout() {
// let workout = document.createElement("ul");
// $(workout).attr("id", "workout");
// let attributes = ["name"]
// let attributesUl = createAttributesUl(attributes, "workout");
// let bundlesUl = document.createElement("ul");
// $(bundlesUl).attr("id", "bundles");
// let addButton = createAddButton("bundle");
// $(workout).append(attributesUl);
// $(workout).append(bundlesUl);
// $(workout).append(addButton);
// return workout;
// }
// function createExercise(attributes, n, format) {
// // create unique identity
// let identifier = "e" + n;
// // create exercise container
// let exercise = document.createElement("li");
// $(exercise).attr("class", "exercise " + format);
// $(exercise).attr("id", identifier);
// // create list of bundle attributes
// let attributesUl = createAttributesUl(attributes, "exercise");
// // create list of sets
// let setsUl = document.createElement("ul");
// $(setsUl).attr("class", "sets");
// $(exercise).append(attributesUl);
// $(exercise).append(setsUl);
// let addButton = createAddButton("set");
// // append addButton
// $(exercise).append(addButton);
// let removeButton = createRemoveButton();
// $(exercise).append(removeButton);
// return exercise;
// }
// function createSet(attributes, n) {
// // create unique identity
// let identifier = "s" + n;
// // create set container
// let set = document.createElement("li");
// $(set).attr("class", "set");
// $(set).attr("id", identifier);
// // create list of set attributes
// let attributesUl = createAttributesUl(attributes, "set");
// $(set).append(attributesUl);
// let removeButton = createRemoveButton();
// $(set).append(removeButton);
// return set;
// }
// function createBundle(attributes, n) {
// // create unique identity
// let identifier = "b" + n;
// // create bundle container
// let bundle = document.createElement("li");
// $(bundle).attr("class", "bundle");
// $(bundle).attr("id", identifier);
// // create list of bundle attributes
// let attributesUl = createAttributesUl(attributes, "bundle");
// // create list of exercises
// let exercisesUl = document.createElement("ul");
// $(exercisesUl).attr("class", "exercises");
// // create list of exercise formats
// let formatsUl = document.createElement("ul");
// $(formatsUl).attr("class", "format-options");
// // avaliable exercise formats
// let formatOptions = {
// rb: ["sets", "reps", "rest", "execution", "tempo"],
// tb: ["sets", "time", "rest", "execution", "tempo"],
// db: ["sets", "distance", "rest", "execution", "tempo"]
// }
// // declare re-used variables here
// let label;
// let input;
// // create radio button for each format
// Object.keys(formatOptions).forEach(format => {
// // create formatLi
// let formatLi = document.createElement("li");
// // create label
// label = document.createElement("label");
// //label.attr("for", format)
// // create input
// input = document.createElement("input");
// $(input).attr("type", "radio");
// $(input).attr("name", identifier);
// $(input).attr("class", format);
// // check "rb" as default
// if (format == "rb") {
// $(input).prop("checked", true);
// }
// // append label and input to formatLi
// $(formatLi).append(label);
// $(formatLi).append(input);
// // append formatLi to list of formats
// $(formatsUl).append(formatLi);
// })
// // append lists to bundle
// $(bundle).append(attributesUl);
// $(bundle).append(exercisesUl);
// $(bundle).append(formatsUl);
// let addButton = createAddButton("exercise");
// // append addExerciseButton
// $(bundle).append(addButton);
// let removeButton = createRemoveButton();
// $(bundle).append(removeButton);
// return bundle;
// }
// function createAddButton(type) {
// let button = document.createElement("button");
// if (type !== "bundle") {
// $(button).attr("class", "add-" + type);
// } else {
// $(button).attr("id", "add-" + type);
// }
// $(button).attr("type", "button");
// $(button).text("ADD " + type.toUpperCase());
// return button;
// }
// function createRemoveButton() {
// let button = document.createElement("button");
// $(button).attr("class", "remove");
// $(button).attr("type", "button");
// $(button).text("REMOVE");
// return button;
// }
// function createAttributesUl(attributes, type) {
// let attributesUl = document.createElement("ul");
// if (type !== "workout") {
// $(attributesUl).attr("class", type + "-attributes");
// } else {
// $(attributesUl).attr("id", type + "-attributes");
// }
// attributes.forEach(attr => {
// // create attributeLi
// let attributeLi = document.createElement("li");
// label = document.createElement("label");
// $(label).attr("for", attr);
// $(label).text(attr);
// input = document.createElement("input");
// $(input).attr("name", attr);
// $(attributeLi).append(label);
// $(attributeLi).append(input);
// // append attributeLi to list of attributes
// $(attributesUl).append(attributeLi);
// })
// return attributesUl;
// }<file_sep>/fit-box-frontend/src/modal.js
// function displayForm(user) {
// let modalHeader = document.querySelector(".modal-title");
// modalHeader.innerHTML = "Add Workout"
// let modalBody = document.querySelector(".modal-body");
// modalBody.innerHTML = `
// <form action="${BASE_URL}/workouts" method="POST">
// </form>
// `
// let form = modalBody.querySelector("form");
// $(form).append(createGroup("workout", getSubGroupName("workout")));
// let submitButton = document.createElement("button");
// $(submitButton).attr("class", "btn btn-primary");
// $(submitButton).attr("type", "submit");
// $(submitButton).text("submit");
// $(form).append(submitButton);
// let count = {
// bundle: 0,
// exercise: 0,
// set: 0,
// }
// $(form).on("click", ".add", (e) => {
// let groupName = $(e.target).attr("class").split(" ")[1].split("-")[1];
// count[groupName]++;
// let group;
// if (groupName === "exercise") {
// group = createGroup(groupName, getSubGroupName(groupName), count[groupName]);
// let bundle = $(e.target).parent()
// let format = $(bundle).children("div.btn-group").find("input:checked").attr("id");
// $(group).addClass(format);
// } else if (groupName === "set") {
// let exercise = $(e.target).parent();
// let format = $(exercise).attr("class").split(" ")[2];
// group = createGroup(groupName, null, count[groupName], format);
// } else {
// group = createGroup(groupName, getSubGroupName(groupName), count[groupName]);
// }
// let container = $(e.target).parent().children("." + groupName + "s");
// $(container).append(group);
// })
// $(form).on("click", ".remove", (e) => {
// $(e.target).parent().remove()
// })
// $(form).submit((e) => {
// e.preventDefault();
// let formData = {};
// formData["workout"] = {
// user_id: user.id
// }
// createFormData(formData);
// configObj = {
// method: "POST",
// headers: {
// "Content-Type": "application/json",
// "Accept": "application/json"
// },
// body: JSON.stringify(formData)
// }
// console.log(formData);
// fetch(`${BASE_URL}/workouts`, configObj)
// .then(resp => resp.json())
// .then(data => {
// console.log(data);
// })
// .catch(error => {
// alert("error");
// console.log(error.message);
// })
// })
// }
// function createFormData(formData) {
// let workout = $("form").find(".workout");
// let workoutAttributes = createAttributesHash(workout);
// Object.keys(workoutAttributes).forEach((key) => {
// formData["workout"][key] = workoutAttributes[key];
// })
// formData["workout"]["bundles_attributes"] = []
// let bundles = $(workout).children(".bundles");
// for (let bundle of $(bundles).children()) {
// let bundleAttributes = createAttributesHash(bundle);
// bundleAttributes["exercises_attributes"] = [];
// let exercises = $(bundle).children(".exercises")
// for (let exercise of $(exercises).children()) {
// let exerciseAttributes = createAttributesHash(exercise);
// exerciseAttributes["exercise_sets_attributes"] =[]
// let sets = $(exercise).children(".sets");
// for (let set of $(sets).children()) {
// let setAttributes = createAttributesHash(set);
// exerciseAttributes["exercise_sets_attributes"].push(setAttributes);
// }
// bundleAttributes["exercises_attributes"].push(exerciseAttributes);
// }
// formData["workout"]["bundles_attributes"].push(bundleAttributes);
// }
// return formData;
// }
// function createAttributesHash(group) {
// let groupName = $(group).attr("class").split(" ")[0]
// let attributesHash = {}
// let attributesContainer = $(group).children("." + groupName + "-attributes");
// let inputs = $(attributesContainer).find("input");
// for (let input of inputs) {
// let key = $(input).attr("name");
// let val = $(input).val();
// attributesHash[key] = val;
// }
// return attributesHash;
// }
// function getSubGroupName(groupName) {
// let s = {
// workout: "bundle",
// bundle: "exercise",
// exercise: "set"
// }
// return s[groupName];
// }
// function createGroup(groupName, subGroupName, n = 0, format = null) {
// let identifier = groupName[0] + n
// let group = document.createElement("div");
// $(group).attr("class", groupName + " rounded");
// $(group).attr("id", identifier);
// let attributes;
// if (groupName === "set") {
// attributes = getFormatOptions(format);
// console.log(attributes);
// } else {
// attributes = getGroupAttributes(groupName, format);
// }
// let attrFormGroups = createGroupAttributes(attributes, groupName);
// $(group).append(attrFormGroups);
// if (groupName === "exercise") {
// let muscleGroups = createMuscleGroupSelect();
// $(group).append(muscleGroups);
// }
// if (groupName !== "set") {
// let subGroup = `
// <div class="${subGroupName}s container"></div>`;
// $(group).append(subGroup);
// if (groupName === "bundle") {
// let radioButtons = createRadioButtons(identifier);
// $(group).append(radioButtons);
// }
// let addButton = createAddButton(subGroupName);
// $(group).append(addButton);
// }
// if (groupName !== "workout") {
// let removeButton = createRemoveButton();
// $(group).append(removeButton);
// }
// return group;
// }
// function getFormatOptions(format = null) {
// let formatOptions = {
// rb: ["reps", "rest", "execution", "tempo"],
// tb: ["time", "rest", "execution", "tempo"],
// db: ["distance", "rest", "execution", "tempo"]
// }
// if (format) {
// return formatOptions[format];
// }
// return formatOptions;
// }
// function getGroupAttributes(group, format) {
// let groupAttributes = {
// workout: ["name"],
// bundle: ["name"],
// exercise: ["name"]
// }
// if (format) {
// return getFormatOptions[format];
// }
// return groupAttributes[group];
// }
// function createGroupAttributes(attributes, group) {
// let attrFormGroups = document.createElement("div");
// $(attrFormGroups).attr("class", group + "-attributes");
// // <label for=${attr}>${group}: ${attr}</label>
// if (group === "set") {
// console.log(attributes);
// let inputGroup = document.createElement("div");
// $(inputGroup).attr("class", "input-group");
// attributes.slice(0, 2).forEach(attr => {
// inputGroup.innerHTML += `
// <input name="${attr}" placeholder="${attr.substring(0, 4)}" class="form-control"/>
// `
// })
// $(attrFormGroups).append(inputGroup);
// attributes.slice(2).forEach(attr => {
// attrFormGroups.innerHTML += `
// <input name="${attr}" placeholder="${attr.substring(0, 4)}" class="form-control"/>
// `
// })
// } else {
// $(attrFormGroups).attr("class", group + "-attributes form-row");
// // "${(group !== 'workout') ? 'sr-only' : ''}"
// attributes.forEach(attr => {
// attrFormGroups.innerHTML += `
// <div class="form-group col-sm-12">
// <label class="sr-only" for=${attr}>${group}: ${attr}</label>
// <input name="${attr}" class="form-control" placeholder="${group}:${attr}"/>
// </div>
// `
// })
// }
// return attrFormGroups
// }
// function createRadioButtons(identifier) {
// let fieldset = document.createElement("div");
// $(fieldset).attr("class", "btn-group btn-group-toggle");
// $(fieldset).attr("data-toggle", "buttons");
// // let row = document.createElement("div");
// // $(row).attr("class", "row");
// // let column = document.createElement("div");
// // $(column).attr("class", "col-sm-10");
// // $(row).append(column);
// // $(fieldset).append(row);
// Object.keys(getFormatOptions()).forEach(format => {
// // let radioButton = `
// // <div class="form-check form-check-inline">
// // <input class="form-check-input" type="radio" name=${identifier} id="${format}"/>
// // <label class="form-check-label">${format}</label>
// // </div>
// // `
// let radioButton = `
// <label class="btn btn-secondary ${(format === "rb")?'active':''}">
// <input type="radio" name="${identifier}" id="${format} autocomplete="off" ${(format === "rb")?'checked':''}/>${format}
// </label>
// `;
// $(fieldset).append(radioButton);
// })
// // let checked = $(field).find(`input[id="rb"]`).prop("checked", true);
// // console.log(checked);
// return fieldset;
// }
// function createRemoveButton() {
// let button = `<button class="remove btn btn-primary" type="button">remove</button>`;
// return button;
// }
// function createAddButton(subGroup) {
// let button = `<button class="add add-${subGroup} btn btn-primary" type="button">add ${subGroup}</button>`;
// return button;
// }
// function createMuscleGroupSelect() {
// let muscleGroups = [
// 'quadriceps',
// 'hamstrings',
// 'calves',
// 'chest',
// 'back',
// 'shoulders',
// 'triceps',
// 'biceps',
// 'forearms',
// 'trapezius',
// 'abdominals'
// ]
// let dropdown = document.createElement('div');
// $(dropdown).attr("class", "dropdown");
// dropdown.innerHTML += `
// <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
// Dropdown button
// </button>
// <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
// </div>
// `
// let dropdownMenu = $(dropdown).find(".dropdown-menu")
// muscleGroups.forEach(m => {
// let item = document.createElement("a");
// $(item).attr("class", "dropdown-item");
// $(item).attr("href", "#");
// $(item).text(m)
// $(dropdownMenu).append(item);
// $(item).click((e) => {
// let text = $(item).text()
// console.log($(item).text())
// let tag = document.createElement("p");
// $(tag).attr("class","border rounded");
// $(tag).text(text);
// let close = document.createElement("button");
// $(close).attr("type", "button");
// $(close).attr("class", "close");
// close.innerHTML = `<span aria-hidden="true">×</span>`
// $(tag).append(close);
// $(dropdown).append(tag);
// $(close).click(() => {
// $(close).parent().remove()
// })
// })
// })
// // console.log(dropdownMenu)
// return dropdown;
// }
<file_sep>/fit-box-backend/config/routes.rb
Rails.application.routes.draw do
resources :follows
resources :exercise_muscles
resources :exercise_sets
resources :users
resources :bundle_exercises
resources :workout_bundles
resources :muscles
resources :muscle_groups
resources :exercises
resources :bundles
resources :workouts
# get '/login', to: 'sessions#new'
post '/login', to: 'sessions#create'
delete '/logout', to: 'sessions#destroy'
get '/workout/bundles/:id', to: 'workouts#bundles'
get '/following/:user_id/:following_id', to: 'users#following'
post '/follow', to: 'users#follow'
delete '/unfollow', to: 'users#unfollow'
get 'users/:id/workouts', to: 'users#workouts'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
<file_sep>/fit-box-frontend/src/user.js
function displayLogin() {
let head = document.querySelector("head");
head.innerHTML += `
<link rel="stylesheet" href="css/landing.css">
`
let header = document.querySelector("header");
header.innerHTML = "";
let mainContainer = document.querySelector('main');
mainContainer.innerHTML = `
<div class="text-center">
<form class="form-signin" method="POST" action="${BASE_URL}/login">
<h1>:)</h1>
<label for="username" class="sr-only">username</label>
<input type="text" name="username" class="form-control" placeholder="username" required autofocus/>
<label for="password" class="sr-only">password</label>
<input type="<PASSWORD>" name="password" class="form-control" placeholder="<PASSWORD>" required/>
<button class="btn btn-lg btn-primary btn-block" type="submit">login</button>
</form>
<a href="#" class="sign-in">Don't have an account?</a>
</div>
`
$("a.sign-in").click(() => {
displaySignUp();
})
const loginForm = mainContainer.querySelector('form');
$(loginForm).on('submit', (e) => {
e.preventDefault();
let configObj = {
method: "POST",
headers: {
"Content-Type": 'application/json'
},
body: JSON.stringify({
username: $(loginForm).children("input[name='username']").val(),
password: $(loginForm).children("input[name='password']").val()
})
}
function handleErrors(response) {
if (!response.ok) {
throw Error(response.statusText);
}
return response;
}
fetch(`${BASE_URL}/login`, configObj)
.then(handleErrors)
.then(res => res.json())
.then(user => {
localStorage.setItem("user_id", user.id);
displayPage(user);
})
.catch(err => {
console.log(err);
})
})
}
function displayNavBar() {
let header = document.querySelector('header');
header.innerHTML = `
<nav class="navbar navbar-expand-md navbar-dark bg-dark fixed-top container">
<a class="navbar-brand" href="#">fitbox</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExampleDefault">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="#" id="home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="community">Community</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="#" id="profile">Profile</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#" id="logout">Logout</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
` + header.innerHTML
}
function displayPage(user) {
let mainContainer = document.querySelector("main");
mainContainer.innerHTML = ""
displayNavBar();
const logoutButton = document.getElementById('logout');
$(logoutButton).on('click', (e) => {
localStorage.removeItem('user_id')
let configObject = {
method: "DELETE",
headers: {
"Content-Type": "application/json",
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "DELETE"
},
body: JSON.stringify({
id: user.id
})
}
function handleErrors(response) {
if (!response.ok) {
throw Error(response.statusText);
}
return response;
}
fetch(`${BASE_URL}/logout`, configObject)
.then(handleErrors)
.then(resp => resp.text())
.then(res => {
console.log(res);
})
displayLogin();
})
const navBar = document.querySelector(".navbar-nav");
// const profileButton = document.getElementById('profile');
console.log(user);
displayProfile(user);
$(navBar).on('click', (e) => {
fetch(`${BASE_URL}/users/${user.id}`)
.then(res => res.json())
.then(data => user = data)
.then(u => {
const nav = $(e.target).parent();
let navLis = $(navBar).children("li");
for (let navLi of navLis) {
$(navLi).removeClass("active");
}
$(nav).addClass("active");
if ($(e.target).attr("id") === "profile") {
displayProfile(u);
}
if ($(e.target).attr("id") === "home") {
displayFeed(u);
}
if ($(e.target).attr("id") === "community") {
displayCommunity(u);
}
})
})
}
function displayFeed(user) {
let mainContainer = document.querySelector("main");
$(mainContainer).empty();
fetch(`${BASE_URL}/workouts`)
.then(resp => resp.json())
.then(workouts => {
// console.log(userWorkouts);
workouts.forEach(workout => {
let workoutCard = createWorkoutCard(workout);
$(mainContainer).append(workoutCard);
})
})
.catch(error => {
alert("error");
console.log(error.message)
})
// fetch(`${BASE_URL}/follows/${user.id}`)
// .then(res => res.json())
// .then(data => {
// console.log(data)
// })
}
function displaySignUp() {
let mainContainer = document.querySelector('main');
mainContainer.innerHTML = `
<div class="text-center">
<form class="form-signup" action="${BASE_URL}/users" method="POST">
<h1>;)</h1>
<label for="username" class="sr-only">username</label>
<input type="text" name="username" class="form-control" placeholder="username" required autofocus/>
<label for="email" class="sr-only">email</label>
<input type="email" name="email" class="form-control" placeholder="email"/>
<label for="password" class="sr-only">password</label>
<input type="<PASSWORD>" name="password" class="form-control" placeholder="<PASSWORD>" required/>
<label for="password_confirmation" class="sr-only">password_confirmation</label>
<input type="<PASSWORD>" name="password_confirmation" class="form-control" placeholder="confirm password"/>
<button class="btn btn-lg btn-primary btn-block" type="submit">register</button>
</form>
<a href="#" class="login">Already have an account?</a>
</div>
`
$("a.login").click(() => {
displayLogin();
})
const signUpForm = mainContainer.querySelector('form');
$(signUpForm).on('submit', (e) => {
e.preventDefault();
let form = e.target;
let user = {
username: "alsoknownasrox",
email: "<EMAIL>",
password: "<PASSWORD>",
password_confirmation: "<PASSWORD>"
}
let inputs = $(form).children("input");
for (let input of inputs) {
user[input.name] = $(input).val();
}
let configObj = {
method: "POST",
headers: {
"Content-Type": 'application/json'
},
body: JSON.stringify({
user
})
}
function handleErrors(response) {
if (!response.ok) {
throw Error(response.statusText);
}
return response;
}
fetch(`${BASE_URL}/users`, configObj)
.then(handleErrors)
.then(res => res.json())
.then(user => {
console.log(user);
localStorage.setItem("user_id", user.id)
displayHomePage(user);
})
.catch(err => {
console.log(err);
})
})
}
function getCurrentUserId() {
return localStorage.getItem("user_id");
}<file_sep>/fit-box-backend/app/controllers/workouts_controller.rb
class WorkoutsController < ApplicationController
before_action :authorized
skip_before_action :authorized, only: [:new, :create] # or whatever onlys you need
def index
if logged_in?
workouts = current_user.all
workoutsHashed = workouts.map do |workout|
workout.full_hash
end
render json: workoutsHashed
else
workouts = Workout.all
workoutsHashed = workouts.map do |workout|
workout.full_hash
end
render json: workoutsHashed
end
end
def new
end
def create
workout = Workout.create(workout_params);
workout.bundles.each do |bundle|
bundle.exercises.each do |exercise|
puts exercise
exercise.exercise_sets.each do |es|
es.update(bundle: bundle, exercise: exercise);
end
end
end
render json: workout.full_hash
end
def show
end
def destroy
workout = Workout.find(params[:id]);
puts workout
workout.destroy
render json: workout
end
private
def workout_params
params.require(:workout).permit(
:name,
:user_id,
:description,
:video_link,
:bundles_attributes => [
:name,
:exercises_attributes => [
:name,
:muscle_groups_attributes => [
:name
],
:exercise_sets_attributes => [
:sets,
:reps,
:rest,
:time,
:execution,
:distance,
:tempo
]
]
])
end
end
<file_sep>/fit-box-backend/app/controllers/users_controller.rb
class UsersController < ApplicationController
def index
users = User.all
render json: users.map { |user| user.full_hash }
end
def new
end
def create
user = User.new(user_params)
if user.valid?
user.save
session[:user_id] = user.id
render json: user
else
render json: { :errors => user.errors.full_messages }, status: 422
end
end
def login
user = User.find_by(username: params[:username])
if user
session[:user_id] = user.id
render json: user.full_hash
else
# flash[:error] = user.errors.full_messages
render json: { error: "YOU CAN'T LOG IN" }, status: 401
end
end
def show
user = User.find(params[:id])
render json: user.full_hash
end
def update
user = User.find(params[:id])
user.update(
username: params[:username],
bio: params[:bio],
profile_img_url: params[:profile_img_url]
)
render json: user.full_hash
end
def destroy
user = User.find(params[:id])
session.delete :user_id
user.destroy
render json: user
end
def following
follow_params = {
user_id: params[:user_id],
following_id: params[:following_id]
}
follow = Follow.find_by(follow_params);
render json: follow
end
def follow
follow_params = {
user_id: params[:user_id],
following_id: params[:following_id]
}
follow = Follow.create(follow_params);
render json: follow
end
def unfollow
follow_params = {
user_id: params[:user_id],
following_id: params[:following_id]
}
follow = Follow.find_by(follow_params);
follow.destroy
render json: follow
end
def workouts
workouts = Workout.where(user_id: params[:id]);
workoutsHashed = workouts.map do |workout|
workout.full_hash
end
render json: workoutsHashed
end
private
def user_params
params.require(:user).permit(:username, :email, :<PASSWORD>, :bio, :profile_img_url)
end
end
<file_sep>/fit-box-backend/app/controllers/exercise_muscles_controller.rb
class ExerciseMusclesController < ApplicationController
end
<file_sep>/fit-box-backend/app/models/workout.rb
class Workout < ApplicationRecord
belongs_to :user
has_many :bundles
has_many :exercises, through: :bundles
has_many :muscle_groups, through: :exercises
accepts_nested_attributes_for :bundles
def full_hash
attributes = self.attributes
attributes["bundles"] = []
self.bundles.each do |bundle|
bundle_attributes = bundle.attributes
bundle_attributes["exercises"] = []
bundle.exercises.each do |exercise|
exercise_attributes = exercise.attributes
exercise_attributes["muscle_groups"] = [];
exercise.muscle_groups.each do |muscle_group|
exercise_attributes["muscle_groups"].push(muscle_group.attributes);
end
exercise_attributes["sets"] = []
exercise.exercise_sets.each do |exercise_set|
exercise_attributes["sets"].push(exercise_set.attributes);
end
bundle_attributes["exercises"].push(exercise_attributes);
end
attributes["bundles"].push(bundle_attributes)
end
attributes
end
end
<file_sep>/fit-box-frontend/src/editProfile.js
function displayEditProfileForm(user) {
let modalHeader = document.querySelector(".modal-title");
modalHeader.innerHTML = "Edit Profile"
let modalBody = document.querySelector(".modal-body");
modalBody.innerHTML = `
<form action="${BASE_URL}/users/${user.id}" method="PATCH">
<div class="form-group row">
<label class="col-sm-2 profile-img col-form-label" for="profile-img">img-url</label>
<div class="col-sm-10">
<input type="text" class="profile-img-input form-control-plaintext" id="profile-img" value="${user.profile_img_url}">
</div>
</div>
<div class="form-group row">
<label for="username" class="col-sm-2 col-form-label">username</label>
<div class="col-sm-10">
<input type="text" class="form-control-plaintext" id="username" value="${user.username}"/>
</div>
</div>
<div class="form-group row">
<label for="bio" class="col-sm-2 col-form-label">bio</label>
<div class="col-sm-10">
<input type="textarea" class="form-control-plaintext" id="bio" value="${user.bio ? user.bio : ""}"/>
</div>
</div>
<button class="btn btn-primary" type="submit">submit</button>
</form>
<button class="btn btn-primary btn-block delete-button" type="button" data-dismiss="modal">delete account</button>
`
let form = modalBody.querySelector("form");
let customFileLabel = form.querySelector(".custom-file-label");
$(modalBody).on("change", function (e) {
console.log(e.target)
if ($(e.target).attr("class") === "custom-file-input") {
var fileName = $(e.target).val().split("\\").pop();
$(e.target).siblings(".custom-file-label").addClass("selected").html(fileName);
}
});
$(form).submit((e) => {
e.preventDefault();
let inputs = $(form).find("input")
let formData = {
profile_img_url: $(inputs[0]).val(),
username: $(inputs[1]).val(),
bio: $(inputs[2]).val()
}
let configObj = {
method: 'PATCH',
headers: {
"Content-Type": 'application/json'
},
body: JSON.stringify(formData)
}
fetch(`${BASE_URL}/users/${user.id}`, configObj)
.then(res => res.json())
.then(data => displayProfile(data))
})
let deleteButton = modalBody.querySelector(".delete-button");
$(deleteButton).click(() => {
let configObj = {
method: 'DELETE',
headers: {
"Content-Type": 'application/json'
}
}
fetch(`${BASE_URL}/users/${user.id}`, configObj)
.then(resp => resp.json())
.then(data => {
console.log(data);
localStorage.removeItem('user_id');
displayLogin();
})
})
}<file_sep>/fit-box-backend/app/models/bundle_exercise.rb
class BundleExercise < ApplicationRecord
belongs_to :bundle
belongs_to :exercise
has_many :exercise_sets
has_many :exercises, through: :exercise_sets
# accepts_nested_attributes_for :exercise
accepts_nested_attributes_for :exercise_sets
accepts_nested_attributes_for :exercises
end
| ebc18faa05f08989cf7eabe2bc78ef5afeb0109b | [
"JavaScript",
"Ruby"
] | 28 | Ruby | thatkidnamedrox/fitbox | 8543abb0d241bd52d145d0a7c1325ef84c12df37 | 684d00d6da6e10343acde79b73a71361f575546e |
refs/heads/master | <file_sep>import uuid from "uuid";
import { LIST_ALL, UPDATE_TASK, UPDATE_STATUS_TASK, DELETE_TASK, ADD_TASK } from "../constants/ActionTypes";
var data = JSON.parse(localStorage.getItem('tasks'));
var initialState = data ? data : [];
var myReducer = (state = initialState, action) => {
var index = -1;
switch (action.type) {
case LIST_ALL:
return state;
case ADD_TASK:
console.log('action', action)
var newTask = {
id: uuid.v4(),
name: action.task.name,
status: (action.task.status === 'true' || action.task.status === true) ? true : false,
}
state = [...state, newTask];
localStorage.setItem('tasks', JSON.stringify(state))
return [...state];
case UPDATE_TASK:
var task = {
id: action.task.id,
name: action.task.name,
status: (action.task.status === 'true' || action.task.status === true) ? true : false,
}
index = state.findIndex(task => task.id === action.task.id);
state[index] = task;
localStorage.setItem('tasks', JSON.stringify(state))
return [...state];
case UPDATE_STATUS_TASK:
index = state.findIndex(task => task.id === action.id);
state[index] = {
...state[index],
status: !state[index].status
};
localStorage.setItem('tasks', JSON.stringify(state))
return [...state];
case DELETE_TASK:
localStorage.setItem('tasks', JSON.stringify([...state.filter(task => task.id !== action.id)]))
return [...state.filter(task => task.id !== action.id)];
default:
return state;
}
};
export default myReducer;
| 6afc46b854fb97b65fb28ec806b645d97b0774f7 | [
"JavaScript"
] | 1 | JavaScript | kingsquallo/todo-react | d278edd0ea853cdcaeaf88f3c0cdb9d51465abde | 2f643e8d64a1d4ddfe3065a7fedaa6a7b36aa3b9 |
refs/heads/master | <file_sep>/*==============================================================*/
/* DBMS name: ORACLE Version 11g */
/* Created on: 16/06/2021 05:50:03 PM */
/*==============================================================*/
alter table AULAS_GRUPOS
drop constraint FK_AULAS_GR_AULAS_GRU_AULAS;
alter table AULAS_GRUPOS
drop constraint FK_AULAS_GR_AULAS_GRU_GRUPOS;
alter table CARRERA
drop constraint FK_CARRERA_DEPTO_CAR_DEPARTAM;
alter table COORDINADOR
drop constraint FK_COORDINA_CARRERA_C_CARRERA;
alter table COPIAGRUPO
drop constraint FK_COPIAGRU_GRUPOS_CO_GRUPOS;
alter table DEPARTAMENTO
drop constraint FK_DEPARTAM_JEFE_DEPT_JEFE;
alter table DOCENTE_DEPTO
drop constraint FK_DOCENTE__DOCENTE_D_DOCENTE;
alter table DOCENTE_DEPTO
drop constraint FK_DOCENTE__DOCENTE_D_DEPARTAM;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_CARRERA_E_CARRERA;
alter table GRUPOS
drop constraint FK_GRUPOS_GRUPOS_CO_COORDINA;
alter table GRUPOS
drop constraint FK_GRUPOS_MATERIAS__MATERIAS;
alter table HISTORIAL_PLANIFICACION
drop constraint FK_HISTORIA_HISTO_PLA_PLAN_EST;
alter table HORARIOS_GRUPOS
drop constraint FK_HORARIOS_GRUPOS_HO_GRUPOS;
alter table HORAS_SOCIALES
drop constraint FK_HORAS_SO_DOCENTE_H_DOCENTE;
alter table HORAS_SOCIALES
drop constraint FK_HORAS_SO_HORASSOCI_ESTUDIAN;
alter table INSCRIPCION
drop constraint FK_INSCRIPC_GRUPOS_IN_GRUPOS;
alter table INSCRIPCION
drop constraint FK_INSCRIPC_INSCRIPCI_ESTUDIAN;
alter table MATERIAS
drop constraint FK_MATERIAS_CARRERA_M_CARRERA;
alter table PLAN_ESTUDIO
drop constraint FK_PLAN_EST_PLAN_ESTU_CARRERA;
alter table PREINSCRIPCION
drop constraint FK_PREINSCR_ESTUDIANT_ESTUDIAN;
alter table PREINSCRIPCION
drop constraint FK_PREINSCR_MATERIAS__MATERIAS;
alter table REGISTRO_ESTUDIANTE
drop constraint FK_REGISTRO_INSCRIPCI_INSCRIPC;
alter table REPORTECHOQUE
drop constraint FK_REPORTEC_DOCENTE_R_DOCENTE;
alter table REPORTECHOQUE
drop constraint FK_REPORTEC_ESTUDIANT_ESTUDIAN;
drop table AULAS cascade constraints;
drop index AULAS_GRUPOS2_FK;
drop index AULAS_GRUPOS_FK;
drop table AULAS_GRUPOS cascade constraints;
drop index DEPTO_CARRERA_FK;
drop table CARRERA cascade constraints;
drop index CARRERA_COORDINADOR_FK;
drop table COORDINADOR cascade constraints;
drop index GRUPOS_COPIAGRUPO_FK;
drop table COPIAGRUPO cascade constraints;
drop index JEFE_DEPTO_FK;
drop table DEPARTAMENTO cascade constraints;
drop table DOCENTE cascade constraints;
drop index DOCENTE_DEPTO2_FK;
drop index DOCENTE_DEPTO_FK;
drop table DOCENTE_DEPTO cascade constraints;
drop index CARRERA_ESTUDIANTE_FK;
drop table ESTUDIANTES cascade constraints;
drop index GRUPOS_COORDINADOR_FK;
drop index MATERIAS_GRUPOS_FK;
drop table GRUPOS cascade constraints;
drop index HISTO_PLAN_ESTUDIO_FK;
drop table HISTORIAL_PLANIFICACION cascade constraints;
drop index GRUPOS_HORARIOS_FK;
drop table HORARIOS_GRUPOS cascade constraints;
drop index HORASSOCIALES_ESTUDIANTE_FK;
drop table HORAS_SOCIALES cascade constraints;
drop index GRUPOS_INSCRIPCION_FK;
drop index INSCRIPCION_ESTUDIANTE_FK;
drop table INSCRIPCION cascade constraints;
drop table JEFE cascade constraints;
drop table MATERIAS cascade constraints;
drop index PLAN_ESTUDIO_FK;
drop table PLAN_ESTUDIO cascade constraints;
drop index MATERIAS_PREINSCRIP_FK;
drop index ESTUDIANTE_PREINSCRIP_FK;
drop table PREINSCRIPCION cascade constraints;
drop index INSCRIPCION_RESGISTRO_FK;
drop table REGISTRO_ESTUDIANTE cascade constraints;
drop index ESTUDIANTE_REPORTE_FK;
drop index DOCENTE_REPORTE_FK;
drop table REPORTECHOQUE cascade constraints;
drop table USUARIO cascade constraints;
/*==============================================================*/
/* Table: AULAS */
/*==============================================================*/
create table AULAS
(
IDAULA INTEGER not null,
NUMAULA VARCHAR2(15) not null,
FOTOAULA VARCHAR2(50),
constraint PK_AULAS primary key (IDAULA)
);
/*==============================================================*/
/* Table: AULAS_GRUPOS */
/*==============================================================*/
create table AULAS_GRUPOS
(
IDAULA INTEGER not null,
IDGRUPOS INTEGER not null,
constraint PK_AULAS_GRUPOS primary key (IDAULA, IDGRUPOS)
);
/*==============================================================*/
/* Index: AULAS_GRUPOS_FK */
/*==============================================================*/
create index AULAS_GRUPOS_FK on AULAS_GRUPOS (
IDAULA ASC
);
/*==============================================================*/
/* Index: AULAS_GRUPOS2_FK */
/*==============================================================*/
create index AULAS_GRUPOS2_FK on AULAS_GRUPOS (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: CARRERA */
/*==============================================================*/
create table CARRERA
(
IDCARRERA INTEGER not null,
IDDEPTO INTEGER not null,
CODCARRERA VARCHAR2(20) not null,
MATERIAS INTEGER not null,
constraint PK_CARRERA primary key (IDCARRERA)
);
/*==============================================================*/
/* Index: DEPTO_CARRERA_FK */
/*==============================================================*/
create index DEPTO_CARRERA_FK on CARRERA (
IDDEPTO ASC
);
/*==============================================================*/
/* Table: COORDINADOR */
/*==============================================================*/
create table COORDINADOR
(
IDCOORDINADOR INTEGER not null,
IDCARRERA INTEGER not null,
CORREOCOOR VARCHAR2(25) not null,
NOMCOOR VARCHAR2(25) not null,
APECOOR VARCHAR2(25) not null,
constraint PK_COORDINADOR primary key (IDCOORDINADOR)
);
/*==============================================================*/
/* Index: CARRERA_COORDINADOR_FK */
/*==============================================================*/
create index CARRERA_COORDINADOR_FK on COORDINADOR (
IDCARRERA ASC
);
/*==============================================================*/
/* Table: COPIAGRUPO */
/*==============================================================*/
create table COPIAGRUPO
(
IDCOPIAGRUPO INTEGER not null,
IDGRUPOS INTEGER not null,
COP_CANTICUPOS INTEGER not null,
FECHAMODIGRUPO DATE not null,
COP_NUMGRUPO INTEGER not null,
constraint PK_COPIAGRUPO primary key (IDCOPIAGRUPO)
);
/*==============================================================*/
/* Index: GRUPOS_COPIAGRUPO_FK */
/*==============================================================*/
create index GRUPOS_COPIAGRUPO_FK on COPIAGRUPO (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: DEPARTAMENTO */
/*==============================================================*/
create table DEPARTAMENTO
(
IDDEPTO INTEGER not null,
IDJEFE INTEGER not null,
NOMBREDEPTO VARCHAR2(50) not null,
constraint PK_DEPARTAMENTO primary key (IDDEPTO)
);
/*==============================================================*/
/* Index: JEFE_DEPTO_FK */
/*==============================================================*/
create index JEFE_DEPTO_FK on DEPARTAMENTO (
IDJEFE ASC
);
/*==============================================================*/
/* Table: DOCENTE */
/*==============================================================*/
create table DOCENTE
(
IDDOCENTE INTEGER not null,
NOMDOCENTE VARCHAR2(25) not null,
APEDOCENTE VARCHAR2(25) not null,
PROFDOCENTE VARCHAR2(25) not null,
ESTDOCENTE INTEGER not null,
TIPOCONTRATO VARCHAR2(25) not null,
INGREDOCENTE DATE not null,
CORREODOCENTE VARCHAR2(25),
constraint PK_DOCENTE primary key (IDDOCENTE)
);
/*==============================================================*/
/* Table: DOCENTE_DEPTO */
/*==============================================================*/
create table DOCENTE_DEPTO
(
IDDOCENTE INTEGER not null,
IDDEPTO INTEGER not null,
constraint PK_DOCENTE_DEPTO primary key (IDDOCENTE, IDDEPTO)
);
/*==============================================================*/
/* Index: DOCENTE_DEPTO_FK */
/*==============================================================*/
create index DOCENTE_DEPTO_FK on DOCENTE_DEPTO (
IDDOCENTE ASC
);
/*==============================================================*/
/* Index: DOCENTE_DEPTO2_FK */
/*==============================================================*/
create index DOCENTE_DEPTO2_FK on DOCENTE_DEPTO (
IDDEPTO ASC
);
/*==============================================================*/
/* Table: ESTUDIANTES */
/*==============================================================*/
create table ESTUDIANTES
(
IDESTUDIANTE INTEGER not null,
IDCARRERA INTEGER not null,
NOMESTUDIANTE VARCHAR2(25) not null,
APELESTUDIANTE VARCHAR2(25) not null,
CARNETESTU VARCHAR2(15) not null,
CORREOESTU VARCHAR2(40) not null,
TELESTUDIANTE INTEGER not null,
constraint PK_ESTUDIANTES primary key (IDESTUDIANTE)
);
/*==============================================================*/
/* Index: CARRERA_ESTUDIANTE_FK */
/*==============================================================*/
create index CARRERA_ESTUDIANTE_FK on ESTUDIANTES (
IDCARRERA ASC
);
/*==============================================================*/
/* Table: GRUPOS */
/*==============================================================*/
create table GRUPOS
(
IDGRUPOS INTEGER not null,
IDCOORDINADOR INTEGER not null,
IDMATERIA INTEGER not null,
CANTCUPOS INTEGER not null,
FECHACREACION DATE not null,
NUMGRUPO INTEGER not null,
constraint PK_GRUPOS primary key (IDGRUPOS)
);
/*==============================================================*/
/* Index: MATERIAS_GRUPOS_FK */
/*==============================================================*/
create index MATERIAS_GRUPOS_FK on GRUPOS (
IDMATERIA ASC
);
/*==============================================================*/
/* Index: GRUPOS_COORDINADOR_FK */
/*==============================================================*/
create index GRUPOS_COORDINADOR_FK on GRUPOS (
IDCOORDINADOR ASC
);
/*==============================================================*/
/* Table: HISTORIAL_PLANIFICACION */
/*==============================================================*/
create table HISTORIAL_PLANIFICACION
(
IDHISOTIAL_PLAN INTEGER not null,
IDPLAN INTEGER not null,
CICLO INTEGER not null,
ANIO DATE not null,
constraint PK_HISTORIAL_PLANIFICACION primary key (IDHISOTIAL_PLAN)
);
/*==============================================================*/
/* Index: HISTO_PLAN_ESTUDIO_FK */
/*==============================================================*/
create index HISTO_PLAN_ESTUDIO_FK on HISTORIAL_PLANIFICACION (
IDPLAN ASC
);
/*==============================================================*/
/* Table: HORARIOS_GRUPOS */
/*==============================================================*/
create table HORARIOS_GRUPOS
(
IDHORARIO_GRU CHAR(10) not null,
IDGRUPOS INTEGER not null,
DIAHORARIO CHAR(10) not null,
HORASHORARIO CHAR(10) not null,
constraint PK_HORARIOS_GRUPOS primary key (IDHORARIO_GRU)
);
/*==============================================================*/
/* Index: GRUPOS_HORARIOS_FK */
/*==============================================================*/
create index GRUPOS_HORARIOS_FK on HORARIOS_GRUPOS (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: HORAS_SOCIALES */
/*==============================================================*/
create table HORAS_SOCIALES
(
IDHORASSOCIALES INTEGER not null,
IDESTUDIANTE INTEGER not null,
IDDOCENTE INTEGER not null,
NOMPROYECTO VARCHAR2(100) not null,
DURACIONPROYEC VARCHAR2(30) not null,
ESTADOPROYECTO VARCHAR2(1) not null,
ANTEPROYECTO VARCHAR2(50) not null,
ESTADOANTEPROYECTO VARCHAR2(1) not null,
FECHASOCIALES DATE not null,
COMENTARIOPRO VARCHAR2(200),
constraint PK_HORAS_SOCIALES primary key (IDHORASSOCIALES)
);
/*==============================================================*/
/* Index: HORASSOCIALES_ESTUDIANTE_FK */
/*==============================================================*/
create index HORASSOCIALES_ESTUDIANTE_FK on HORAS_SOCIALES (
IDESTUDIANTE ASC
);
/*==============================================================*/
/* Table: INSCRIPCION */
/*==============================================================*/
create table INSCRIPCION
(
IDINCRIPCION INTEGER not null,
IDESTUDIANTE INTEGER not null,
IDGRUPOS INTEGER not null,
FECHAINSCRIP DATE not null,
constraint PK_INSCRIPCION primary key (IDINCRIPCION)
);
/*==============================================================*/
/* Index: INSCRIPCION_ESTUDIANTE_FK */
/*==============================================================*/
create index INSCRIPCION_ESTUDIANTE_FK on INSCRIPCION (
IDESTUDIANTE ASC
);
/*==============================================================*/
/* Index: GRUPOS_INSCRIPCION_FK */
/*==============================================================*/
create index GRUPOS_INSCRIPCION_FK on INSCRIPCION (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: JEFE */
/*==============================================================*/
create table JEFE
(
IDJEFE INTEGER not null,
NOMJEFE VARCHAR2(25) not null,
CORREOJEFE VARCHAR2(25) not null,
APEJEFE VARCHAR2(25) not null,
constraint PK_JEFE primary key (IDJEFE)
);
/*==============================================================*/
/* Table: MATERIAS */
/*==============================================================*/
create table MATERIAS
(
IDMATERIA INTEGER not null,
IDCARRERA INTEGER not null,
CODMATERIA VARCHAR2(20) not null,
NIVELMATERIA VARCHAR2(30) not null,
NOMMATERIA VARCHAR2(50) not null,
REQUISITO VARCHAR2(50) not null,
constraint PK_MATERIAS primary key (IDMATERIA)
);
/*==============================================================*/
/* Table: PLAN_ESTUDIO */
/*==============================================================*/
create table PLAN_ESTUDIO
(
IDPLAN INTEGER not null,
IDCARRERA INTEGER not null,
DURACIONPLAN VARCHAR2(20) not null,
DESCRIPCIONPLAN VARCHAR2(200) not null,
constraint PK_PLAN_ESTUDIO primary key (IDPLAN)
);
/*==============================================================*/
/* Index: PLAN_ESTUDIO_FK */
/*==============================================================*/
create index PLAN_ESTUDIO_FK on PLAN_ESTUDIO (
IDCARRERA ASC
);
/*==============================================================*/
/* Table: PREINSCRIPCION */
/*==============================================================*/
create table PREINSCRIPCION
(
IDPREINSCRIPCION INTEGER not null,
IDESTUDIANTE INTEGER not null,
IDMATERIA INTEGER not null,
FECHAPREINCRIPCION DATE not null,
constraint PK_PREINSCRIPCION primary key (IDPREINSCRIPCION)
);
/*==============================================================*/
/* Index: ESTUDIANTE_PREINSCRIP_FK */
/*==============================================================*/
create index ESTUDIANTE_PREINSCRIP_FK on PREINSCRIPCION (
IDESTUDIANTE ASC
);
/*==============================================================*/
/* Index: MATERIAS_PREINSCRIP_FK */
/*==============================================================*/
create index MATERIAS_PREINSCRIP_FK on PREINSCRIPCION (
IDMATERIA ASC
);
/*==============================================================*/
/* Table: REGISTRO_ESTUDIANTE */
/*==============================================================*/
create table REGISTRO_ESTUDIANTE
(
IDREGISTROESTU INTEGER not null,
IDINCRIPCION INTEGER not null,
FECHAREGIESTU DATE not null,
ESTADOMATERIA VARCHAR2(1) not null,
NOTAMATERIA FLOAT(2) not null,
constraint PK_REGISTRO_ESTUDIANTE primary key (IDREGISTROESTU)
);
/*==============================================================*/
/* Index: INSCRIPCION_RESGISTRO_FK */
/*==============================================================*/
create index INSCRIPCION_RESGISTRO_FK on REGISTRO_ESTUDIANTE (
IDINCRIPCION ASC
);
/*==============================================================*/
/* Table: REPORTECHOQUE */
/*==============================================================*/
create table REPORTECHOQUE
(
IDCHOQUE INTEGER not null,
IDESTUDIANTE INTEGER not null,
IDDOCENTE INTEGER not null,
FECHACHOQUE DATE not null,
COMENTARIOCHOQUE VARCHAR2(100) not null,
constraint PK_REPORTECHOQUE primary key (IDCHOQUE)
);
/*==============================================================*/
/* Index: DOCENTE_REPORTE_FK */
/*==============================================================*/
create index DOCENTE_REPORTE_FK on REPORTECHOQUE (
IDDOCENTE ASC
);
/*==============================================================*/
/* Index: ESTUDIANTE_REPORTE_FK */
/*==============================================================*/
create index ESTUDIANTE_REPORTE_FK on REPORTECHOQUE (
IDESTUDIANTE ASC
);
/*==============================================================*/
/* Table: USUARIO */
/*==============================================================*/
create table USUARIO
(
IDUSUARIO INTEGER not null,
USUARIO VARCHAR2(25) not null,
PASSWORD VARCHAR2(25) not null,
TIPOUSUAIRO VARCHAR2(15) not null,
ESTADOUSUARIO VARCHAR2(1) not null,
constraint PK_USUARIO primary key (IDUSUARIO)
);
alter table AULAS_GRUPOS
add constraint FK_AULAS_GR_AULAS_GRU_AULAS foreign key (IDAULA)
references AULAS (IDAULA);
alter table AULAS_GRUPOS
add constraint FK_AULAS_GR_AULAS_GRU_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table CARRERA
add constraint FK_CARRERA_DEPTO_CAR_DEPARTAM foreign key (IDDEPTO)
references DEPARTAMENTO (IDDEPTO);
alter table COORDINADOR
add constraint FK_COORDINA_CARRERA_C_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table COPIAGRUPO
add constraint FK_COPIAGRU_GRUPOS_CO_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table DEPARTAMENTO
add constraint FK_DEPARTAM_JEFE_DEPT_JEFE foreign key (IDJEFE)
references JEFE (IDJEFE);
alter table DOCENTE_DEPTO
add constraint FK_DOCENTE__DOCENTE_D_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table DOCENTE_DEPTO
add constraint FK_DOCENTE__DOCENTE_D_DEPARTAM foreign key (IDDEPTO)
references DEPARTAMENTO (IDDEPTO);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_CARRERA_E_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table GRUPOS
add constraint FK_GRUPOS_GRUPOS_CO_COORDINA foreign key (IDCOORDINADOR)
references COORDINADOR (IDCOORDINADOR);
alter table GRUPOS
add constraint FK_GRUPOS_MATERIAS__MATERIAS foreign key (IDMATERIA)
references MATERIAS (IDMATERIA);
alter table HISTORIAL_PLANIFICACION
add constraint FK_HISTORIA_HISTO_PLA_PLAN_EST foreign key (IDPLAN)
references PLAN_ESTUDIO (IDPLAN);
alter table HORARIOS_GRUPOS
add constraint FK_HORARIOS_GRUPOS_HO_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table HORAS_SOCIALES
add constraint FK_HORAS_SO_DOCENTE_H_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table HORAS_SOCIALES
add constraint FK_HORAS_SO_HORASSOCI_ESTUDIAN foreign key (IDESTUDIANTE)
references ESTUDIANTES (IDESTUDIANTE);
alter table INSCRIPCION
add constraint FK_INSCRIPC_GRUPOS_IN_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table INSCRIPCION
add constraint FK_INSCRIPC_INSCRIPCI_ESTUDIAN foreign key (IDESTUDIANTE)
references ESTUDIANTES (IDESTUDIANTE);
alter table MATERIAS
add constraint FK_MATERIAS_CARRERA_M_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table PLAN_ESTUDIO
add constraint FK_PLAN_EST_PLAN_ESTU_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table PREINSCRIPCION
add constraint FK_PREINSCR_ESTUDIANT_ESTUDIAN foreign key (IDESTUDIANTE)
references ESTUDIANTES (IDESTUDIANTE);
alter table PREINSCRIPCION
add constraint FK_PREINSCR_MATERIAS__MATERIAS foreign key (IDMATERIA)
references MATERIAS (IDMATERIA);
alter table REGISTRO_ESTUDIANTE
add constraint FK_REGISTRO_INSCRIPCI_INSCRIPC foreign key (IDINCRIPCION)
references INSCRIPCION (IDINCRIPCION);
alter table REPORTECHOQUE
add constraint FK_REPORTEC_DOCENTE_R_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table REPORTECHOQUE
add constraint FK_REPORTEC_ESTUDIANT_ESTUDIAN foreign key (IDESTUDIANTE)
references ESTUDIANTES (IDESTUDIANTE);
<file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Pre-inscripcion de materias</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Materias a Preinscribir </h4>
</form>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="yecto">
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th class="text-right">ACCION</th>
</thead>
<tbody>
<?php
$number=1;
$fechaactual = date('m');
if(intval($fechaactual)<7){
}
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
if(intval($fechaactual)<7){
$queryidconsulta= $this->db->query("select nommateria,idmateria from materias natural join carrera natural join estudiantes where estudiantes.idestudiante=".$estudiante->IDESTUDIANTE." and materias.idmateria not in (select idmateria from preinscripcion where estudiantes.idestudiante=".$estudiante->IDESTUDIANTE." and mod(materias.nivelmateria,2) = 0)
union
select nommateria,idmateria from materias natural join grupos natural join inscripcion where inscripcion.idincripcion in (select idincripcion from registro_estudiante where registro_estudiante.estadomateria='R' ) and inscripcion.idestudiante=".$estudiante->IDESTUDIANTE."");
}else{
$queryidconsulta= $this->db->query("select nommateria,idmateria from materias natural join carrera natural join estudiantes where estudiantes.idestudiante=".$estudiante->IDESTUDIANTE." and materias.idmateria not in (select idmateria from preinscripcion where estudiantes.idestudiante=".$estudiante->IDESTUDIANTE."and mod(materias.nivelmateria,2) <> 0)
union
select nommateria,idmateria from materias natural join grupos natural join inscripcion where inscripcion.idincripcion in (select idincripcion from registro_estudiante where registro_estudiante.estadomateria='R' ) and inscripcion.idestudiante=".$estudiante->IDESTUDIANTE."");
}
foreach ($queryidconsulta->result() as $consulta){
// $queryidcarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$estudiante->IDCARRERA."'");
// foreach ($queryidcarrera->result() as $carrera){
// $queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDCARRERA='".$carrera->IDCARRERA."'");
// foreach ($queryidmateria->result() as $materia){
// $queryidpre= $this->db->query("SELECT * FROM PREINSCRIPCION WHERE IDMATERIA='".$materia->IDMATERIA."'");
// foreach ($queryidpre->result() as $pre){
// $queryidinscripcion= $this->db->query("SELECT * FROM INSCRIPCION WHERE IDESTUDIANTE='".$estudiante->IDCARRERA."'");
// foreach ($queryidinscripcion->result() as $inscripcion){
// $queryidregistro= $this->db->query("SELECT * FROM REGISTRO_ESTUDIANTE WHERE IDINCRIPCION='".$inscripcion->IDINCRIPCION."'");
//foreach ($queryidregistro->result() as $registro){
//if($queryidregistro->num_rows=0){
// if($queryidpre->num_rows=0){
// if($materia->NIVELMATERIA=1){
?>
<?php
//if($queryidregistro->num_rows=0){
// $queryidpre= $this->db->query("SELECT * FROM PREINSCRIPCION WHERE IDESTUDIANTE='".$estudiante->IDESTUDIANTE."' AND IDMATERIA=".$materia->IDMATERIA);
//if($queryidpre->num_rows=0){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $consulta->NOMMATERIA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/preinscripcion_agregar/<?php echo $consulta->IDMATERIA; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-check"></i></a>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Materias preinscritas</h4>
</form>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="yecto">
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th>FECHA DE PREINSCRIPCION</th>
</thead>
<tbody>
<?php
$queryidpre= $this->db->query("SELECT * FROM PREINSCRIPCION WHERE IDESTUDIANTE='".$estudiante->IDESTUDIANTE."'");
foreach ($queryidpre->result() as $pre){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$pre->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
?>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->NOMMATERIA; ?></td>
<td><?php echo $pre->FECHAPREINCRIPCION; ?></td>
<?php
}
}
}
?>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Mi cuenta</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
.center-block {
text-align: center;
}
</style>
<script language="javascript" type="text/javascript">
function validar_form()
{
const button = document.getElementById('buttonn');
var contrasenna = document.getElementById('password').value;
if(validar_clave(contrasenna) == true)
{
button.disabled = false;
}
else
{
button.disabled = true;
}
}
function validar_clave(contrasenna)
{
if(contrasenna.length >= 8)
{
var mayuscula = false;
var minuscula = false;
var numero = false;
var caracter_raro = false;
for(var i = 0;i<contrasenna.length;i++)
{
if(contrasenna.charCodeAt(i) >= 65 && contrasenna.charCodeAt(i) <= 90)
{
mayuscula = true;
}
else if(contrasenna.charCodeAt(i) >= 97 && contrasenna.charCodeAt(i) <= 122)
{
minuscula = true;
}
else if(contrasenna.charCodeAt(i) >= 48 && contrasenna.charCodeAt(i) <= 57)
{
numero = true;
}
else
{
caracter_raro = true;
}
}
if(mayuscula == true && minuscula == true && caracter_raro == true && numero == true)
{
return true;
}
}
return false;
}
</script>
<!-- End Navbar -->
<?php
$number=1;
$usuario=$_SESSION['Nombre'];
$tipo=$_SESSION['TipoUsuario'];
$estado=$_SESSION['EstadooUsuario'];
$idusuario=$_SESSION['IdUsuario'];
$queryidusuario= $this->db->query("SELECT * FROM USUARIO WHERE USUARIO='".$usuario."'");
foreach ($queryidusuario->result() as $usu){
}
?>
<div class="content">
<div class="container">
<div class="ccol-lg-4 col-md-6 ml-auto mr-auto">
<div class="card ">
<div class="card-header ">
<h4 class="card-title center-block"><?php echo $usuario; ?></h4>
</div>
<form action="<?php echo base_url(); ?>usuarios/usuario_actualizar/<?php echo $idusuario; ?>" method="post" role="form" >
<div class="card-body ">
<label>Contraseña anterior</label>
<div class="form-group">
<input type="password" class="form-control" placeholder="" id="oldpassword" name="oldpassword">
</div>
<label>Nueva contraseña</label>
<div class="form-group">
<input type="password" class="form-control" placeholder="" id="password" name="password" onkeyup="javascript:validar_form();">
<input type="hidden" class="form-control" placeholder="" id="usuario" name="usuario" value="<?php echo $usuario; ?>">
<input type="hidden" class="form-control" placeholder="" id="tipousuairo" name="tipousuairo" value="<?php echo $tipo; ?>">
<input type="hidden" class="form-control" placeholder="" id="estadousuario" name="estadousuario" value="<?php echo $estado; ?>">
</div>
</div>
<div class="card-footer center-block">
<button type="submit" class="btn btn-info btn-round" id="buttonn" disabled="True">Cambiar contraseña</button>
</div>
</form>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Felicidades',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script>
<file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Planeacion de horarios</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
#scroll {
overflow:auto;
max-height:27em;
width:100%;
}
</style>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}</style>
<script language="javascript">
function doSearch(nombre,apellido)
{
const tableReg = document.getElementById(nombre);
const searchText = document.getElementById(apellido).value.toLowerCase();
let total = 0;
// Recorremos todas las filas con contenido de la tabla
for (let i = 1; i < tableReg.rows.length; i++) {
// Si el td tiene la clase "noSearch" no se busca en su cntenido
if (tableReg.rows[i].classList.contains("noSearch")) {
continue;
}
let found = false;
const cellsOfRow = tableReg.rows[i].getElementsByTagName('td');
// Recorremos todas las celdas
for (let j = 0; j < cellsOfRow.length && !found; j++) {
const compareWith = cellsOfRow[j].innerHTML.toLowerCase();
// Buscamos el texto en el contenido de la celda
if (searchText.length == 0 || compareWith.indexOf(searchText) > -1) {
found = true;
total++;
}
}
if (found) {
tableReg.rows[i].style.display = '';
} else {
// si no ha encontrado ninguna coincidencia, esconde la
// fila de la tabla
tableReg.rows[i].style.display = 'none';
}
}
// mostramos las coincidencias
const lastTR=tableReg.rows[tableReg.rows.length-1];
const td=lastTR.querySelector("td");
lastTR.classList.remove("hide", "red");
if (searchText == "") {
lastTR.classList.add("hide");
} else if (total) {
td.innerHTML="Se ha encontrado "+total+" coincidencia"+((total>1)?"s":"");
} else {
lastTR.classList.add("red");
td.innerHTML="No se han encontrado coincidencias";
}
}
</script>
<style>
#datos {border:1px solid #ccc;padding:10px;font-size:1em;}
#datos tr:nth-child(even) {background:#ccc;}
#datos td {padding:5px;}
#datos tr.noSearch {background:White;font-size:0.8em;}
#datos tr.noSearch td {padding-top:10px;text-align:right;}
.hide {display:none;}
.red {color:Red;}
</style>
<!-- End Navbar -->
<div class="content">
<?php
$var1=1;
$var2=100;
?>
<section class="row" id="grupo">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">GRUPOS </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_grupo">Agregar grupos</button>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="<?php echo $var2?>" type="text" onkeyup="doSearch(''+ <?php echo $var1 ?>+'',''+<?php echo $var2 ?> +'')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="<?php echo $var1?>">
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th># GRUPO</th>
<th>CUPOS</th>
<th>DOCENTE</th>
<th>CICLO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php
$number=1;
$iddocente=$_SESSION['Nombre'];
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coordinador){
$queryidgrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDCOORDINADOR='".$coordinador->IDCOORDINADOR."'");
foreach ($queryidgrupo->result() as $grupo){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
$queryidocente= $this->db->query("SELECT * FROM DOCENTE WHERE IDDOCENTE='".$grupo->IDDOCENTE."'");
foreach ($queryidocente->result() as $docente){
if($grupo->ESTADOGRUPO!='I' && $grupo->ESTGRUPO!='DESHABILITADO'){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->NOMMATERIA;?></td>
<td><?php echo $grupo->NUMGRUPO; ?></td>
<td><?php echo $grupo->CANTCUPOS; ?></td>
<td><?php echo $docente->NOMDOCENTE." ".$docente->APEDOCENTE; ?></td>
<td><?php echo $grupo->CICLOGRUPO." - ".$grupo->ANIOGRUPO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/grupos_seleccion/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/grupos_eliminar/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php
$var1++;
$var2++;
}
}
}
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_grupo" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Grupos </h5>
</div>
<?php echo form_open("tablas/grupos_agregar")?>
<div class="modal-body">
<div class="row">
<div class="col-md-3 pr-1">
<div class="form-group">
<label># de grupo</label>
<input type="text" class="form-control" placeholder="# de grupo" id="numgrupo" name="numgrupo">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Cantidad de cupos</label>
<input type="text" class="form-control" placeholder="Cantidad de cupos" id="cantcupos" name="cantcupos">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Ciclo</label>
<input type="text" class="form-control" placeholder="Ciclo" id="ciclogrupo" name="ciclogrupo">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Año</label>
<input type="text" class="form-control" placeholder="Año" id="aniogrupo" name="aniogrupo">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Materia</label>
<select id="idmateria" name="idmateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Materia --</option>
<?php
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$coor->IDCARRERA."'");
foreach ($querycarrera->result() as $carre){
$querymate= $this->db->query("SELECT * FROM MATERIAS WHERE IDCARRERA='".$carre->IDCARRERA."'");
foreach ($querymate->result() as $mate){
echo "<option class='' value='".$mate->IDMATERIA."'>" .$mate->NOMMATERIA."</option>"; // displaying data in option menu
}
}
}
?>
</select>
</div>
</div>
<div class="col-md-6 px-1">
<div class="form-group">
<label>Docente</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
// echo"<input type='hidden' class='form-control' id='idcoordinador' name='dcoordinador' value='".$coor->IDCOORDINADOR."'>";
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$coor->IDCARRERA."'");
foreach ($querycarrera->result() as $carre){
$querydep= $this->db->query("SELECT * FROM DEPARTAMENTO WHERE IDDEPTO='".$carre->IDDEPTO."'");
foreach ($querydep->result() as $dep){
$querydoc= $this->db->query("SELECT * FROM DOCENTE WHERE IDDEPTO='".$dep->IDDEPTO."'");
foreach ($querydoc->result() as $doc){
echo "<option class='' value='".$doc->IDDOCENTE."'>" .$doc->NOMDOCENTE." ".$doc->APEDOCENTE."</option>"; // displaying data in option menu
}
}
}
}
?>
</select>
<?php
$queryidcoord= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoord->result() as $coord){
echo"<input type='hidden' class='form-control' id='idcoordinador' name='idcoordinador' value='".$coord->IDCOORDINADOR."'>";
}
?>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
<section class="row" id="grupo">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">HORARIOS </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_hora">Agregar horario</button>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="<?php echo $var2?>" type="text" onkeyup="doSearch(''+ <?php echo $var1 ?>+'',''+<?php echo $var2 ?> +'')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="<?php echo $var1?>">
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th># GRUPO</th>
<th>AULA</th>
<th>HORARIO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php
$var3=1;
$var4=100;
$number=1;
$iddocente=$_SESSION['Nombre'];
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coordinador){
$queryidgrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDCOORDINADOR='".$coordinador->IDCOORDINADOR."'");
foreach ($queryidgrupo->result() as $grupo){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
$queryidocente= $this->db->query("SELECT * FROM DOCENTE WHERE IDDOCENTE='".$grupo->IDDOCENTE."'");
foreach ($queryidocente->result() as $docente){
$queryidhorario= $this->db->query("SELECT * FROM HORARIOS_GRUPOS WHERE IDGRUPOS='".$grupo->IDGRUPOS."'");
foreach ($queryidhorario->result() as $horario){
$queryidaula= $this->db->query("SELECT * FROM AULAS WHERE IDAULA='".$horario->IDAULA."'");
foreach ($queryidaula->result() as $aula){
if($grupo->ESTADOGRUPO!='I' && $grupo->ESTGRUPO!='DESHABILITADO'){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->NOMMATERIA;?></td>
<td><?php echo $grupo->NUMGRUPO; ?></td>
<td><?php echo $aula->NUMAULA; ?></td>
<td><?php echo $horario->DIAHORARIO." - ".$horario->HORASHORARIO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/horario_seleccion/<?php echo $horario->IDHORARIO_GRU; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/horario_eliminar/<?php echo $horario->IDHORARIO_GRU; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php
$var3++;
$var4++;
}
}
}
}
}
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_hora" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar horario </h5>
</div>
<?php echo form_open("tablas/horario_agregar")?>
<div class="modal-body">
<div class="row">
<div class="col-md-12 pr-1">
<div class="form-group">
<label>Grupo</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar grupo --</option>
<?php
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
$querygrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDCOORDINADOR='".$coor->IDCOORDINADOR."'");
foreach ($querygrupo->result() as $grupo){
$querymate= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($querymate->result() as $mate){
if($grupo->ESTADOGRUPO!='I' && $grupo->ESTGRUPO!='DESHABILITADO'){
echo "<option class='' value='".$grupo->IDGRUPOS."'>" .$mate->NOMMATERIA." #".$grupo->NUMGRUPO."</option>"; // displaying data in option menu
}
}
}
}
?>
</select>
</div>
</div>
</div>
<?php
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
$querygrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDCOORDINADOR='".$coor->IDCOORDINADOR."'");
foreach ($querygrupo->result() as $grupo){
$querymate= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($querymate->result() as $mate){
echo"<input type='hidden' class='form-control' id='nivel' name='nivel' value='".$mate->NIVELMATERIA."'>";
}
}
}
?>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Aula</label>
<select id="idaula" name="idaula" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Aula --</option>
<?php
$queryaula= $this->db->query("SELECT * FROM AULAS");
foreach ($queryaula->result() as $aula){
echo "<option class='' value='".$aula->IDAULA."'>" .$aula->NUMAULA." </option>"; // displaying data in option menu
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Dia</label>
<select id="diahorario" name="diahorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Dia--</option>
<?php
$dia = array(
1=> "L",
2=> "M",
3=> "X",
4=> "J",
5=> "V"
);
foreach($dia as $key => $d) { ?>
<option d="<?php echo $key ?>"><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Hora</label>
<select id="horashorario" name="horashorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Hora --</option>
<?php
$horas = array(
1=> "07:00 - 08:00",
2=> "08:00 - 09:00",
3=> "09:00 - 10:00",
4=> "10:00 - 11:00",
5=> "11:00 - 12:00",
6=> "13:00 - 14:00",
7=> "14:00 - 15:00",
8=> "15:00 - 16:00",
9=> "16:00 - 17:00",
10=> "17:00 - 18:00"
);
foreach($horas as $key => $h) { ?>
<option h="<?php echo $key ?>"><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class tablas extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->helper("form");
$this->load->model("tablas_model");
$this->load->model("tablas_estras");
$this->load->library('session');
$this->load->model('login_model');
}//end
public function index()
{
if(isset($_SESSION['IdUsuario'])){
if($_SESSION['TipoUsuario'] == 'ADMIN'){
$data = array('tablas' => 'active',
'usuarios' => '');
//$mostrar = array('tablas'=>$this->tablas_model->mostrar());
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this-> retornoprueba());
$this->load->view('footer');
}
}else{
redirect('Login');
}
}
public function agregar(){
$datos = array(
"nombre" =>$this->input->post("nombre"),
"apellido" =>$this->input->post("apellido")
);
$this->tablas_model->agregar($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas");
}
public function seleccion($dato){
$valor=$this->tablas_model->seleccionar($dato);
$mos = array('tabl'=>$this->tablas_model->mostrar());
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('modaltabla',$valor);
$this->load->view('footer');
//$this->session->set_flashdata("success","se guardo los datos correctamente");
//redirect(base_url()."tablas");
}
public function actualizar($id){
$data = array(
"nombre" =>$this->input->post("nombre"),
"apellido" =>$this->input->post("apellido"));
$this->tablas_model->actualizar($data,$id);
//$this->session->set_flashdata("success","Has actualizado tu mascota");
redirect(base_url()."index.php/tablas");
}
function eliminar($id){
$this->tablas_model->eliminar($id);
redirect(base_url()."index.php/tablas");
}
////////////
//crud accion
////////////
public function agregar_accion(){
$datos = array(
"fechainicio" =>$this->input->post("fechainicio"),
"fechafinal" =>$this->input->post("fechafinal")
);
$this->tablas_estras->agregar_accion($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#accion");
}
public function seleccion_accion($dato){
$valor=$this->tablas_estras->seleccion_accion($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas', $this->retornoprueba());
$this->load->view('editar_accion',$valor);
$this->load->view('footer');
}
public function actualizar_accion($id){
$datos = array(
"fechainicio" =>$this->input->post("fechainicio"),
"fechafinal" =>$this->input->post("fechafinal")
);
$this->tablas_estras->actualizar_accion($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#accion");
}
function eliminar_accion($id){
$this->tablas_estras->eliminar_accion($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#accion");
}
////////////
//crud aulas
////////////
public function agregar_aulas(){
//agregar lo de la imagen********************
$datos = array(
"numaula" =>$this->input->post("numaula")
);
$this->tablas_estras->agregar_aulas($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#aula");
}
public function seleccion_aulas($dato){
$valor=$this->tablas_estras->seleccion_aulas($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas', $this->retornoprueba());
$this->load->view('editar_aulas',$valor);
$this->load->view('footer');
}
public function actualizar_aulas($id){
$datos = array(
"numaula" =>$this->input->post("numaula")
);
$this->tablas_estras->actualizar_aulas($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#aula");
}
function eliminar_aulas($id){
$this->tablas_estras->eliminar_aulas($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#aula");
}
////////////
//crud carrera
////////////
public function agregar_carrera(){
$datos = array(
"iddepto" =>$this->input->post("iddepto"),
"codcarrera" =>$this->input->post("codcarrera"),
"materias" =>$this->input->post("materias"),
"nomcarrera" =>$this->input->post("nomcarrera")
);
$this->tablas_estras->agregar_carrera($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#carrera");
}
public function seleccion_carrera($dato){
$valor=$this->tablas_estras->seleccion_carrera($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_carrera',$valor);
$this->load->view('footer');
}
public function actualizar_carrera($id){
$datos = array(
"iddepto" =>$this->input->post("iddepto"),
"codcarrera" =>$this->input->post("codcarrera"),
"materias" =>$this->input->post("materias"),
"nomcarrera" =>$this->input->post("nomcarrera")
);
$this->tablas_estras->actualizar_carrera($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#carrera");
}
function eliminar_carrera($id){
$this->tablas_estras->eliminar_carrera($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#carrera");
}
////////////
//crud coordinador
////////////
public function agregar_coordinador(){
$datos = array(
"nomcoor" =>$this->input->post("nomcoor"),
"apecoor" =>$this->input->post("apecoor"),
"idcarrera" =>$this->input->post("idcarrera")
);
$this->tablas_estras->agregar_coordinador($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#coordinador");
}
public function seleccion_coordinador($dato){
$valor=$this->tablas_estras->seleccion_coordinador($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_coordinador',$valor);
$this->load->view('footer');
}
public function actualizar_coordinador($id){
$datos = array(
"correocoor" =>$this->input->post("correocoor"),
"nomcoor" =>$this->input->post("nomcoor"),
"apecoor" =>$this->input->post("apecoor"),
"idcarrera" =>$this->input->post("idcarrera")
);
$this->tablas_estras->actualizar_coordinador($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#coordinador");
}
function eliminar_coordinador($id){
$this->tablas_estras->eliminar_coordinador($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#coordinador");
}
////////////
//crud departamento
////////////
public function agregar_departamento(){
$datos = array(
"nombredepto" =>$this->input->post("nombredepto"),
"idjefe" =>$this->input->post("idjefe"),
);
$this->tablas_estras->agregar_departamento($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#departamento");
}
public function seleccion_departamento($dato){
$valor=$this->tablas_estras->seleccion_departamento($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_departamento',$valor);
$this->load->view('footer');
}
public function actualizar_departamento($id){
$datos = array(
"nombredepto" =>$this->input->post("nombredepto"),
"idjefe" =>$this->input->post("idjefe"),
);
$this->tablas_estras->actualizar_departamento($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#departamento");
}
function eliminar_departamento($id){
$this->tablas_estras->eliminar_departamento($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#departamento");
}
////////////
//crud docente
////////////
public function agregar_docente(){
$datos = array(
"iddepto" =>$this->input->post("iddepto"),
"nomdocente" =>$this->input->post("nomdocente"),
"apedocente" =>$this->input->post("apedocente"),
"profdocente" =>$this->input->post("profdocente"),
"tipocontrato" =>$this->input->post("tipocontrato")
);
$this->tablas_estras->agregar_docente($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#docente");
}
public function seleccion_docente($dato){
$valor=$this->tablas_estras->seleccion_docente($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_docente',$valor);
$this->load->view('footer');
}
public function actualizar_docente($id){
$datos = array(
"iddepto" =>$this->input->post("iddepto"),
"nomdocente" =>$this->input->post("nomdocente"),
"apedocente" =>$this->input->post("apedocente"),
"profdocente" =>$this->input->post("profdocente"),
"tipocontrato" =>$this->input->post("tipocontrato"),
"correodocente" =>$this->input->post("correodocente")
);
$this->tablas_estras->actualizar_docente($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#docente");
}
function eliminar_docente($id){
$this->tablas_estras->eliminar_docente($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#docente");
}
////////////
//crud estudiantes
////////////
public function agregar_estudiantes(){
$datos = array(
"idcarrera" =>$this->input->post("idcarrera"),
"nomestudiante" =>$this->input->post("nomestudiante"),
"apelestudiante" =>$this->input->post("apelestudiante"),
"telestudiante" =>$this->input->post("telestudiante")
);
$this->tablas_estras->agregar_estudiantes($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#estudiantes");
}
public function seleccion_estudiantes($dato){
$valor=$this->tablas_estras->seleccion_estudiantes($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_estudiantes',$valor);
$this->load->view('footer');
}
public function actualizar_estudiantes($id){
$datos = array(
"idcarrera" =>$this->input->post("idcarrera"),
"nomestudiante" =>$this->input->post("nomestudiante"),
"apelestudiante" =>$this->input->post("apelestudiante"),
"carnetestu" =>$this->input->post("carnetestu"),
"correoestu" =>$this->input->post("correoestu"),
"telestudiante" =>$this->input->post("telestudiante")
);
$this->tablas_estras->actualizar_estudiantes($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#estudiantes");
}
function eliminar_estudiantes($id){
$this->tablas_estras->eliminar_estudiantes($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#estudiantes");
}
////////////
//crud grupos
////////////
public function agregar_grupos(){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idcoordinador" =>$this->input->post("idcoordinador"),
"cantcupos" =>$this->input->post("cantcupos"),
"numgrupo" =>$this->input->post("numgrupo"),
"ciclogrupo" =>$this->input->post("ciclogrupo"),
"aniogrupo" =>$this->input->post("aniogrupo"),
"estgrupo" =>$this->input->post("estgrupo"),
"iddocente" =>$this->input->post("iddocente")
);
$this->tablas_estras->agregar_grupos($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#grupo");
}
public function grupos_agregar(){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idcoordinador" =>$this->input->post("idcoordinador"),
"cantcupos" =>$this->input->post("cantcupos"),
"numgrupo" =>$this->input->post("numgrupo"),
"ciclogrupo" =>$this->input->post("ciclogrupo"),
"aniogrupo" =>$this->input->post("aniogrupo"),
"iddocente" =>$this->input->post("iddocente")
);
$this->tablas_estras->grupos_agregar($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."planeacion");
}
public function seleccion_grupos($dato){
$valor=$this->tablas_estras->seleccion_grupos($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_grupos',$valor);
$this->load->view('footer');
}
public function grupos_seleccion($dato){
$valor=$this->tablas_estras->seleccion_grupos($dato);
$data = array('planeacion' => 'active',
'historialplaneacion' => '',
'proyectohorassociales' => '',
'reportesdechoque'=>'',
'pensum'=>'',
'micuenta' => '');
$this->load->view('menucoordinador',$data);
$this->load->view('planeacion');
$this->load->view('grupos_editar',$valor);
$this->load->view('footer');
}
public function actualizar_grupos($id){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idcoordinador" =>$this->input->post("idcoordinador"),
"cantcupos" =>$this->input->post("cantcupos"),
"numgrupo" =>$this->input->post("numgrupo"),
"ciclogrupo" =>$this->input->post("ciclogrupo"),
"aniogrupo" =>$this->input->post("aniogrupo"),
"estgrupo" =>$this->input->post("estgrupo"),
"iddocente" =>$this->input->post("iddocente")
);
$this->tablas_estras->actualizar_grupos($datos,$id);
redirect(base_url()."tablas/#grupo");
}
public function grupos_actualizar($id){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idcoordinador" =>$this->input->post("idcoordinador"),
"cantcupos" =>$this->input->post("cantcupos"),
"numgrupo" =>$this->input->post("numgrupo"),
"ciclogrupo" =>$this->input->post("ciclogrupo"),
"aniogrupo" =>$this->input->post("aniogrupo"),
"estgrupo" =>$this->input->post("estgrupo"),
"iddocente" =>$this->input->post("iddocente")
);
$this->tablas_estras->grupos_actualizar($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."planeacion");
}
function eliminar_grupos($id){
$this->tablas_estras->eliminar_grupos($id);
redirect(base_url()."tablas/#grupo");
}
function grupos_eliminar($id){
$this->tablas_estras->eliminar_grupos($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."planeacion");
}
////////////
//crud horarios_grupos
////////////
public function agregar_horarios_grupos(){
$datos = array(
"idgrupos" =>$this->input->post("idgrupos"),
"idaula" =>$this->input->post("idaula"),
"diahorario" =>$this->input->post("diahorario"),
"horashorario" =>$this->input->post("horashorario")
);
$this->tablas_estras->agregar_horarios_grupos($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#horariosgrupos");
}
public function horario_agregar(){
$datos = array(
"idgrupos" =>$this->input->post("idgrupos"),
"idaula" =>$this->input->post("idaula"),
"diahorario" =>$this->input->post("diahorario"),
"horashorario" =>$this->input->post("horashorario"),
"nivel" =>$this->input->post("nivel")
);
$queryid= $this->db->query("SELECT * FROM HORARIOS_GRUPOS");
$aux=0;
foreach ($queryid->result() as $gr){
if($gr->IDGRUPOS==$datos['idgrupos'] && $gr->IDAULA==$datos['idaula'] && $gr->DIAHORARIO==$datos['diahorario'] && $gr->HORASHORARIO==$datos['horashorario'] )
{
$aux=1;
}
if($gr->IDAULA==$datos['idaula'] && $gr->DIAHORARIO==$datos['diahorario'] && $gr->HORASHORARIO==$datos['horashorario'] )
{
$aux=2;
}
}
if($aux==1){
$this->session->set_flashdata("success","El horario que desea ingresar ya existe para este grupo");
redirect(base_url()."planeacion");
}else if($aux==2){
$this->session->set_flashdata("success","Aulla ocupada en el horario ingresado");
redirect(base_url()."planeacion");
}else{
$this->tablas_estras->agregar_horarios_grupos($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."planeacion");
}
}
public function seleccion_horarios_grupos($dato){
$valor=$this->tablas_estras->seleccion_horarios_grupos($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_horarios_grupos',$valor);
$this->load->view('footer');
}
public function horario_seleccion($dato){
$valor=$this->tablas_estras->seleccion_horarios_grupos($dato);
$data = array('planeacion' => 'active',
'historialplaneacion' => '',
'proyectohorassociales' => '',
'reportesdechoque'=>'',
'pensum'=>'',
'micuenta' => '');
$this->load->view('menucoordinador',$data);
$this->load->view('planeacion');
$this->load->view('horario_editar',$valor);
$this->load->view('footer');
}
public function actualizar_horarios_grupos($id){
$datos = array(
"idgrupos" =>$this->input->post("idgrupos"),
"idaula" =>$this->input->post("idaula"),
"diahorario" =>$this->input->post("diahorario"),
"horashorario" =>$this->input->post("horashorario")
);
$this->tablas_estras->actualizar_horarios_grupos($datos,$id);
redirect(base_url()."tablas/#horariosgrupos");
}
public function horario_editar($id){
$datos = array(
"idgrupos" =>$this->input->post("idgrupos"),
"idaula" =>$this->input->post("idaula"),
"diahorario" =>$this->input->post("diahorario"),
"horashorario" =>$this->input->post("horashorario")
);
$this->tablas_estras->actualizar_horarios_grupos($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."planeacion");
}
function eliminar_horarios_grupos($id){
$this->tablas_estras->eliminar_horarios_grupos($id);
redirect(base_url()."tablas/#horariosgrupos");
}
function horario_eliminar($id){
$this->tablas_estras->eliminar_horarios_grupos($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."planeacion");
}
////////////
//crud horas_sociales
////////////
public function agregar_horas_sociales(){
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"iddocente" =>$this->input->post("iddocente"),
"nomproyecto" =>$this->input->post("nomproyecto"),
"duracionproyec" =>$this->input->post("duracionproyec"),
"estadoproyecto" =>$this->input->post("estadoproyecto"),
"anteproyecto" =>$this->input->post("anteproyecto"),
"estadoanteproyecto" =>$this->input->post("estadoanteproyecto"),
"comentariopro" =>$this->input->post("comentariopro")
);
$this->tablas_estras->agregar_horas_sociales($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#horassociales");
}
public function horas_agregar(){
$config = array(
'upload_path' => FCPATH.'uploads/',
'allowed_types' => 'pdf|doc|docx'
);
$this->load->library('upload', $config);
if ($this->upload->do_upload('file')) {
$data = $this->upload->data();
@chmod($data['full_path'], 0777);
}
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"iddocente" =>$this->input->post("iddocente"),
"nomproyecto" =>$this->input->post("nomproyecto"),
"duracionproyec" =>$this->input->post("duracionproyec"),
"estadoproyecto" =>'P',
"anteproyecto" =>$this->input->post("file"),
"estadoanteproyecto" =>'P',
"comentariopro" =>''
);
$this->tablas_estras->agregar_horas_sociales($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."horassociales");
}
public function seleccion_horas_sociales($dato){
$valor=$this->tablas_estras->seleccion_horas_sociales($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_horas_sociales',$valor);
$this->load->view('footer');
}
public function horas_seleccion($dato){
$valor=$this->tablas_estras->seleccion_horas_sociales($dato);
$data = array('inscripcion' => '',
'notas' => '',
'preinscripcion' => '',
'pensum'=>'',
'horassociales' => 'active',
'micuenta' =>'');
$this->load->view('menuestudiante',$data);
$this->load->view('horassociales');
$this->load->view('social_editar',$valor);
$this->load->view('footer');
}
public function actualizar_horas_sociales($id){
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"iddocente" =>$this->input->post("iddocente"),
"nomproyecto" =>$this->input->post("nomproyecto"),
"duracionproyec" =>$this->input->post("duracionproyec"),
"estadoproyecto" =>$this->input->post("estadoproyecto"),
"anteproyecto" =>$this->input->post("anteproyecto"),
"estadoanteproyecto" =>$this->input->post("estadoanteproyecto"),
"comentariopro" =>$this->input->post("comentariopro")
);
$this->tablas_estras->actualizar_horas_sociales($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#horassociales");
}
public function social_editar($id){
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"iddocente" =>$this->input->post("iddocente"),
"nomproyecto" =>$this->input->post("nomproyecto"),
"duracionproyec" =>$this->input->post("duracionproyec"),
"estadoproyecto" =>'P',
"anteproyecto" =>$this->input->post("file"),
"estadoanteproyecto" =>'P',
"comentariopro" =>''
);
$this->tablas_estras->actualizar_horas_sociales($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."horassociales");
}
function eliminar_horas_sociales($id){
$this->tablas_estras->eliminar_horas_sociales($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#horassociales");
}
////////////
//crud inscripcion
////////////
public function agregar_inscripcion(){
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"idgrupos" =>$this->input->post("idgrupos")
);
$this->tablas_estras->agregar_inscripcion($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#inscripcion");
}
public function seleccion_inscripcion($dato){
$valor=$this->tablas_estras->seleccion_inscripcion($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_inscripcion',$valor);
$this->load->view('footer');
}
public function actualizar_inscripcion($id){
$datos = array(
"idestudiante" =>$this->input->post("idestudiante"),
"idgrupos" =>$this->input->post("idgrupos")
);
$this->tablas_estras->actualizar_inscripcion($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#inscripcion");
}
function eliminar_inscripcion($id){
$this->tablas_estras->eliminar_inscripcion($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#inscripcion");
}
////////////
//crud jefe
////////////
//crear las funciones respectivas en los modales tabla_estas
public function agregar_jefe(){
$datos = array(
"nomjefe" =>$this->input->post("nomjefe"),
"apejefe" =>$this->input->post("apejefe")
);
$this->tablas_estras->agregar_jefe($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#jefe");
}
public function seleccion_jefe($dato){
$valor=$this->tablas_estras->seleccion_jefe($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_jefe',$valor);
$this->load->view('footer');
}
public function actualizar_jefe($id){
$datos = array(
"correojefe" =>$this->input->post("correojefe"),
"nomjefe" =>$this->input->post("nomjefe"),
"apejefe" =>$this->input->post("apejefe")
);
$this->tablas_estras->actualizar_jefe($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#jefe");
}
function eliminar_jefe($id){
$this->tablas_estras->eliminar_jefe($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#jefe");
}
////////////
//crud materias
////////////
public function agregar_materias(){
$datos = array(
"idcarrera" =>$this->input->post("idcarrera"),
"codmateria" =>$this->input->post("codmateria"),
"nivelmateria" =>$this->input->post("nivelmateria"),
"nommateria" =>$this->input->post("nommateria"),
"requisito" =>$this->input->post("requisito")
);
$this->tablas_estras->agregar_materias($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#materias");
}
public function seleccion_materias($dato){
$valor=$this->tablas_estras->seleccion_materias($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_materias',$valor);
$this->load->view('footer');
}
public function actualizar_materias($id){
$datos = array(
"idcarrera" =>$this->input->post("idcarrera"),
"codmateria" =>$this->input->post("codmateria"),
"nivelmateria" =>$this->input->post("nivelmateria"),
"nommateria" =>$this->input->post("nommateria"),
"requisito" =>$this->input->post("requisito")
);
$this->tablas_estras->actualizar_materias($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#materias");
}
function eliminar_materias($id){
$this->tablas_estras->eliminar_materias($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#materias");
}
////////////
//crud preinscripcion
////////////
public function agregar_preinscripcion(){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idestudiante" =>$this->input->post("idestudiante")
);
$this->tablas_estras->agregar_preinscripcion($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#preinscripcion");
}
public function preinscripcion_agregar($var){
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$datos = array(
"idmateria" =>$var,
"idestudiante" =>$estudiante->IDESTUDIANTE
);
$this->tablas_estras->agregar_preinscripcion($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."preinscripcion");
}
}
public function inscripcion_agregar($var){
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$datos = array(
"idgrupos" =>$var,
"idestudiante" =>$estudiante->IDESTUDIANTE
);
$this->tablas_estras->agregar_inscripcion($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."inscripcion");
}
}
public function seleccion_preinscripcion($dato){
$valor=$this->tablas_estras->seleccion_preinscripcion($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_preinscripcion',$valor);
$this->load->view('footer');
}
public function actualizar_preinscripcion($id){
$datos = array(
"idmateria" =>$this->input->post("idmateria"),
"idestudiante" =>$this->input->post("idestudiante")
);
$this->tablas_estras->actualizar_preinscripcion($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#preinscripcion");
}
function eliminar_preinscripcion($id){
$this->tablas_estras->eliminar_preinscripcion($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#preinscripcion");
}
////////////
//crud registro_estudiante
////////////
public function agregar_registro_estudiante(){
$datos = array(
"idincripcion" =>$this->input->post("idincripcion"),
"estadomateria" =>$this->input->post("estadomateria"),
"notamateria" =>$this->input->post("notamateria")
);
$this->tablas_estras->agregar_registro_estudiante($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#registroestudiante");
}
public function seleccion_registro_estudiante($dato){
$valor=$this->tablas_estras->seleccion_registro_estudiante($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_registro_estudiante',$valor);
$this->load->view('footer');
}
public function actualizar_registro_estudiante($id){
$datos = array(
"idincripcion" =>$this->input->post("idincripcion"),
"estadomateria" =>$this->input->post("estadomateria"),
"notamateria" =>$this->input->post("notamateria")
);
$this->tablas_estras->actualizar_registro_estudiante($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#registroestudiante");
}
function eliminar_registro_estudiante($id){
$this->tablas_estras->eliminar_registro_estudiante($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#registroestudiante");
}
////////////
//crud reportechoque
////////////
public function agregar_reportechoque(){
$datos = array(
"iddocente" =>$this->input->post("iddocente"),
"idestudiante" =>$this->input->post("idestudiante"),
"comentariochoque" =>$this->input->post("comentariochoque")
);
$this->tablas_estras->agregar_reportechoque($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#reportechoque");
}
public function reportechoque_agregar($var){
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidgrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDGRUPOS='".$var."'");
foreach ($queryidgrupo->result() as $grupo){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
$datos = array(
"iddocente" =>$grupo->IDCOORDINADOR,
"idestudiante" =>$estudiante->IDESTUDIANTE,
"comentariochoque" =>'Choque de materia '.$materia->NOMMATERIA.', grupo #'.$grupo->NUMGRUPO
);
$this->tablas_estras->agregar_reportechoque($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."inscripcion");
}
}
}
}
public function seleccion_reportechoque($dato){
$valor=$this->tablas_estras->seleccion_reportechoque($dato);
$data = array('tablas' => 'active',
'usuarios' => '');
$this->load->view('menuadmin',$data);
$this->load->view('tablas',$this->retornoprueba());
$this->load->view('editar_reportechoque',$valor);
$this->load->view('footer');
}
public function actualizar_reportechoque($id){
$datos = array(
"iddocente" =>$this->input->post("iddocente"),
"idestudiante" =>$this->input->post("idestudiante"),
"comentariochoque" =>$this->input->post("comentariochoque")
);
$this->tablas_estras->actualizar_reportechoque($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."tablas/#reportechoque");
}
function eliminar_reportechoque($id){
$this->tablas_estras->eliminar_reportechoque($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."tablas/#reportechoque");
}
public function seleccion_re($dato){
$valor=$this->tablas_estras->seleccion_re($dato);
$data = array('registronotas' => 'active',
'horariotrabajo' => '',
'docentesocial' => '',
'micuenta' => '');
$this->load->view('menudocente',$data);
$this->load->view('registronotas');
$this->load->view('editar_re',$valor);
$this->load->view('footer');
}
public function actualizar_re($id){
$datos = array(
"notamateria" =>$this->input->post("nota")
);
$this->tablas_estras->actualizar_re($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."registronotas");
}
public function docente_comentario($dato){
$valor=$this->tablas_estras->docente_comentario($dato);
$data = array('registronotas' => '',
'horariotrabajo' => '',
'docentesocial' => 'active',
'micuenta' => '');
$this->load->view('menudocente',$data);
$this->load->view('docentesocial');
$this->load->view('docente_comentario',$valor);
$this->load->view('footer');
}
public function actualizar_comentario($id){
$datos = array(
"comentario" =>$this->input->post("comentario")
);
$this->tablas_estras->actualizar_comentario($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."docentesocial");
}
function estado_anteproyecto($id){
$this->tablas_estras->estado_anteproyecto($id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."docentesocial");
}
function estado_proyecto($id){
$this->tablas_estras->estado_proyecto($id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."proyectohorassociales");
}
public function coordinador_comentario($dato){
$valor=$this->tablas_estras->docente_comentario($dato);
$data = array('planeacion' => '',
'historialplaneacion' => '',
'proyectohorassociales' => 'active',
'reportesdechoque'=>'',
'pensum'=>'',
'micuenta' => '');
$this->load->view('menucoordinador',$data);
$this->load->view('proyectohorassociales');
$this->load->view('coordinador_comentario',$valor);
$this->load->view('footer');
}
public function actualizar_comentarios($id){
$datos = array(
"comentario" =>$this->input->post("comentario")
);
$this->tablas_estras->actualizar_comentario($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."proyectohorassociales");
}
public function retornoprueba(){
$mostrar = array('tablas'=>$this->tablas_model->mostrar(),
'accion'=>$this->tablas_model->mostrar_accion(),
'aulas'=>$this->tablas_model->mostrar_aulas(),
'carrera'=>$this->tablas_model->mostrar_carrera(),
'coordinador'=>$this->tablas_model->mostrar_coordinador(),
'departamento'=>$this->tablas_model->mostrar_departamento(),
'docentes'=>$this->tablas_model->mostrar_docente(),
'estudiantes'=>$this->tablas_model->mostrar_estudiantes(),
'grupo'=>$this->tablas_model->mostrar_grupos(),
'horarios'=>$this->tablas_model->mostrar_horarios_grupos(),
'sociales'=>$this->tablas_model->mostrar_horas_sociales(),
'inscripcion'=>$this->tablas_model->mostrar_inscripcion(),
'jefe'=>$this->tablas_model->mostrar_jefe(),
'materia'=>$this->tablas_model->mostrar_materias(),
'preinscripcion'=>$this->tablas_model->mostrar_preinscripcion(),
'registroestudiante'=>$this->tablas_model->mostrar_registro_estudiante(),
'reportechoque'=>$this->tablas_model->mostrar_reportechoque(),
'grupoc'=>$this->tablas_model->mostrar_copia());
return $mostrar;
}
}
<file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar horario </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_horarios_grupos/<?php echo $IDHORARIO_GRU; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id grupo</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Grupo --</option>
<?php
$querygh= $this->db->query("SELECT * FROM GRUPOS ");
foreach ($querygh->result() as $gh){
?>
<option value="<?php echo $gh->IDGRUPOS ?>" <?php if($IDGRUPOS==$gh->IDGRUPOS){ echo 'selected="selected"';} ?> ><?php echo $gh->NUMGRUPO?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Dia</label>
<select id="diahorario" name="diahorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Dia--</option>
<?php
$dia = array(
1=> "L",
2=> "M",
3=> "X",
4=> "J",
5=> "V"
);
foreach($dia as $key => $d) { ?>
<option d="<?php echo $key ?>"<?php if($DIAHORARIO==$d){ echo 'selected="selected"';} ?>><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Hora</label>
<select id="horashorario" name="horashorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Hora --</option>
<?php
$horas = array(
1=> "07:00 - 08:00",
2=> "08:00 - 09:00",
3=> "09:00 - 10:00",
4=> "10:00 - 11:00",
5=> "11:00 - 12:00",
6=> "13:00 - 14:00",
7=> "14:00 - 15:00",
8=> "15:00 - 16:00",
9=> "16:00 - 17:00",
10=> "17:00 - 18:00"
);
foreach($horas as $key => $h) { ?>
<option h="<?php echo $key ?>"<?php if($HORASHORARIO==$h){ echo 'selected="selected"';} ?>><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id aula</label>
<select id="idaula" name="idaula" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Aula --</option>
<?php
$queryga= $this->db->query("SELECT * FROM AULAS ");
foreach ($queryga->result() as $ga){
?>
<option value="<?php echo $ga->IDAULA ?>"<?php if($IDAULA==$ga->IDAULA){ echo 'selected="selected"';} ?> ><?php echo $ga->NUMAULA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar estudiante </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_estudiantes/<?php echo $IDESTUDIANTE; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$queryce= $this->db->query("SELECT * FROM CARRERA ");
foreach ($queryce->result() as $cc){
?>
<option value="<?php echo $cc->IDCARRERA ?>" <?php if($IDCARRERA==$cc->IDCARRERA){ echo 'selected="selected"';} ?> ><?php echo $cc->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del estudiante</label>
<input type="text" class="form-control" placeholder="Nombre" id="nomestudiante" name="nomestudiante" value="<?php echo $NOMESTUDIANTE; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Apellido</label>
<input type="text" class="form-control" placeholder="Apellido" id="apelestudiante" name="apelestudiante" value="<?php echo $APELESTUDIANTE; ?>">
</div>
</div>
</div>
</div>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Carnet</label>
<input type="text" class="form-control" placeholder="carnet" id="carnetestu" name="carnetestu" value="<?php echo $CARNETESTU; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Correo del estudiante</label>
<input type="email" class="form-control" placeholder="correo" id="correoestu" name="correoestu" value="<?php echo $CORREOESTU; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Telefono del estudiante</label>
<input type="text" class="form-control" placeholder="Telefono" id="telestudiante" name="telestudiante" value="<?php echo $TELESTUDIANTE; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Ingresar nota </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_re/<?php echo $IDREGISTROESTU; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Nota</label>
<input type="text" class="form-control" id="nota" name="nota" value="<?php echo $NOTAMATERIA; ?>">
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Guardar nota</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar usuario </h5>
</div>
<form action="<?php echo base_url(); ?>usuarios/actualizar_usuario/<?php echo $IDUSUARIO; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Contraseña</label>
<input type="text" class="form-control" placeholder="contraseña" id="password" name="password" value="<?php echo $PASSWORD; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>tipo de usuario</label>
<input type="text" class="form-control" placeholder="tipo usuario" id="tipousuairo" name="tipousuairo" value="<?php echo $TIPOUSUAIRO; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado de usuario</label>
<input type="text" class="form-control" placeholder="estado de usuario" id="estadousuario" name="estadousuario" value="<?php echo $ESTADOUSUARIO; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Grupos </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_grupos/<?php echo $IDGRUPOS; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id materia</label>
<select id="idmateria" name="idmateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Materia --</option>
<?php
$querymg= $this->db->query("SELECT * FROM MATERIAS ");
foreach ($querymg->result() as $mg){
?>
<option value="<?php echo $mg->IDMATERIA ?>" <?php if($IDMATERIA==$mg->IDMATERIA){ echo 'selected="selected"';} ?>><?php echo $mg->NOMMATERIA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id coordinador</label>
<select id="idcoordinador" name="idcoordinador" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Coordinador --</option>
<?php
$querycg= $this->db->query("SELECT * FROM COORDINADOR ");
foreach ($querycg->result() as $cg){
?>
<option value="<?php echo $cg->IDCOORDINADOR ?>" <?php if($IDCOORDINADOR==$cg->IDCOORDINADOR){ echo 'selected="selected"';} ?> ><?php echo $cg->NOMCOOR." ".$cg->APECOOR?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>canttidad de cupos</label>
<input type="text" class="form-control" placeholder="cantidad de cupos" id="cantcupos" name="cantcupos" value="<?php echo $CANTCUPOS; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Num de grupo</label>
<input type="text" class="form-control" placeholder="Num de grupo" id="numgrupo" name="numgrupo" value="<?php echo $NUMGRUPO; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Ciclo del grupo</label>
<select id="ciclogrupo" name="ciclogrupo" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Ciclo--</option>
<?php
$ci = array(
1=> "CICLO 1",
2=> "CICLO 2"
);
foreach($ci as $key => $d) { ?>
<option d="<?php echo $key ?>" <?php if($CICLOGRUPO==$d){ echo 'selected="selected"';} ?>><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Año</label>
<input type="text" class="form-control" placeholder="año" id="aniogrupo" name="aniogrupo" value="<?php echo $ANIOGRUPO; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado</label>
<select id="estgrupo" name="estgrupo" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estado--</option>
<?php
$est = array(
1=> "HABILITADO",
2=> "DESHABILITADO"
);
foreach($est as $key => $d) { ?>
<option d="<?php echo $key ?>"<?php if($ESTGRUPO==$d){ echo 'selected="selected"';} ?>><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id Docente</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$querydg= $this->db->query("SELECT * FROM DOCENTE ");
foreach ($querydg->result() as $dg){
?>
<option value="<?php echo $dg->IDDOCENTE ?>" <?php if($IDDOCENTE==$dg->IDDOCENTE){ echo 'selected="selected"';} ?> ><?php echo $dg->NOMDOCENTE." ".$dg->APEDOCENTE?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Login extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->model('login_model');
$this->load->library('session');
}//end
public function index()
{
if( array_key_exists( 'intentos', $_SESSION ) ){
$_SESSION['intentos'] = $_SESSION['intentos'] + 1;
} else {
$_SESSION['intentos'] = 0;
}
if(isset($_SESSION["IDUSUARIO"])){
if($_SESSION["TIPOUSUAIRO"] == 'ADMIN'){
redirect('tablas');
}
elseif($_SESSION["TIPOUSUAIRO"] == 'JEFE'){
redirect('planificaciones');
}
elseif($_SESSION["TIPOUSUAIRO"] == 'COORDINADOR'){
redirect('planeacion');
}
elseif($_SESSION["TIPOUSUAIRO"] == 'DOCENTE'){
redirect('registronotas');
}
elseif($_SESSION["TIPOUSUAIRO"] == 'ESTUDIANTE'){
redirect('inscripcion');
}
}
if(isset($_POST['contra'])){
$contra= sha1($_POST['contra']);
if($this->login_model->login($_POST['usuario'],$contra)){
$obtenciondatos = $this->login_model->obtener($_POST['usuario']);
$this->session->Nombre= $obtenciondatos->USUARIO;
$this->session->IdUsuario= $obtenciondatos->IDUSUARIO;
$this->session->TipoUsuario= $obtenciondatos->TIPOUSUAIRO;
$this->session->EstadooUsuario= $obtenciondatos->ESTADOUSUARIO;
if($this->session->EstadooUsuario=='A')
{
$_SESSION['intentos'] = $_SESSION['intentos'];
if($this->session->TipoUsuario == 'ADMIN'){
redirect('tablas');
}
elseif($this->session->TipoUsuario == 'JEFE'){
redirect('planificaciones');
}
elseif($this->session->TipoUsuario == 'COORDINADOR'){
redirect('planeacion');
}
elseif($this->session->TipoUsuario == 'DOCENTE'){
redirect('registronotas');
}
elseif($this->session->TipoUsuario == 'ESTUDIANTE'){
redirect('inscripcion');
}
}else{
$this->session->set_flashdata("error","Su cuenta esta inhabilitada por intentos fallidos");
redirect('Login');
}
}$this->session->set_flashdata("error","Datos incorectos");
}
$this->load->view('login');
}
public function salir(){
session_destroy();
redirect('Login');
}
}
?>
<file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Excel_import extends CI_Controller {
public function __construct() {
parent::__construct();
//$this->load->library('form_validation');
$this->load->helper(array('form', 'url'));
}
public function index() {
$data['num_rows'] = $this->db->get('PROBAR')->num_rows();
$this->load->view('excel_import', $data);
}
public function import_data() {
$config = array(
'upload_path' => FCPATH.'uploads/',
'allowed_types' => 'csv|xls'
);
$this->load->library('upload', $config);
if ($this->upload->do_upload('file')) {
$data = $this->upload->data();
@chmod($data['full_path'], 0777);
$this->load->library('Spreadsheet_Excel_Readerr');
$this->spreadsheet_excel_readerr->setOutputEncoding('CP1251');
$this->spreadsheet_excel_readerr->read($data['full_path']);
$sheets = $this->spreadsheet_excel_readerr->sheets[0];
error_reporting(0);
$yearr=date('y');
$carnet='';
$carnet='';
$size=1;
//$fecha=$yearr->format('y');
$data_excel = array();
$data_usuario = array();
$contra = sha1('ues'.date("Y"));
for ($i = 2; $i <= $sheets['numRows']; $i++) {
if ($sheets['cells'][$i][1] == '') break;
$nombre = $sheets['cells'][$i][2];
$apellido = $sheets['cells'][$i][3];
substr($nombre,0,1);
substr($apellido,0,1);
$codigo=substr($nombre,0,1).substr($apellido,0,1);
$codigos=strtoupper($codigo);
$codigoc=$codigos.date('y');
$contador= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CARNETESTU LIKE '".$codigo.date('y')."%'");
foreach ($contador->result() as $dc){
$size++;
}
//$size = $row['COUNT(*)'];
if($cont<10){
$carnet=$codigo.date('y').'00'.$size;
}else if($contador<100){
$carnet=$codigo.date('y').'0'.$size;
}else if($contador<1000){
$carnet=$codigo.date('y').$size;
}
$correo=strtolower($carnet);
$correo=$correo.'@<EMAIL>';
$data_excel[$i - 1]['IDCARRERA'] = $sheets['cells'][$i][1];
$data_excel[$i - 1]['NOMESTUDIANTE'] = $sheets['cells'][$i][2];
$data_excel[$i - 1]['APELESTUDIANTE'] = $sheets['cells'][$i][3];
$data_excel[$i - 1]['CARNETESTU'] = $carnet;
$data_excel[$i - 1]['CORREOESTU'] = $correo;
$data_excel[$i - 1]['TELESTUDIANTE'] = $sheets['cells'][$i][4];
$data_excel[$i - 1]['ESTADOESTU'] = 'A';
$data_usuario[$i - 1]['USUARIO'] = $correo;
$data_usuario[$i - 1]['PASSWORD'] = $<PASSWORD>;
$data_usuario[$i - 1]['TIPOUSUAIRO'] = 'ESTUDIANTE';
$data_usuario[$i - 1]['ESTADOUSUARIO'] = 'A';
$data_usuario[$i - 1]['INTENTOS'] = 0;
$size=1;
}
$this->db->insert_batch('ESTUDIANTES', $data_excel);
$this->db->insert_batch('USUARIO', $data_usuario);
@unlink($data['full_path']);
redirect('tablas/#estudiantes');
}else
{
//edirect('usuarios');
}
redirect('tablas');
}
public function import_doc() {
$config = array(
'upload_path' => FCPATH.'uploads/',
'allowed_types' => 'pdf|doc|docx'
);
$this->load->library('upload', $config);
if ($this->upload->do_upload('file')) {
$data = $this->upload->data();
@chmod($data['full_path'], 0777);
redirect('horassociales');
}
//redirect('tablas');
}
}
/* End of file Excel_import.php */
/* Location: ./application/controllers/Excel_import.php */<file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------------
| URI ROUTING
| -------------------------------------------------------------------------
| This file lets you re-map URI requests to specific controller functions.
|
| Typically there is a one-to-one relationship between a URL string
| and its corresponding controller class/method. The segments in a
| URL normally follow this pattern:
|
| example.com/class/method/id/
|
| In some instances, however, you may want to remap this relationship
| so that a different class/function is called than the one
| corresponding to the URL.
|
| Please see the user guide for complete details:
|
| https://codeigniter.com/user_guide/general/routing.html
|
| -------------------------------------------------------------------------
| RESERVED ROUTES
| -------------------------------------------------------------------------
|
| There are three reserved routes:
|
| $route['default_controller'] = 'welcome';
|
| This route indicates which controller class should be loaded if the
| URI contains no data. In the above example, the "welcome" class
| would be loaded.
|
| $route['404_override'] = 'errors/page_missing';
|
| This route will tell the Router which controller/method to use if those
| provided in the URL cannot be matched to a valid route.
|
| $route['translate_uri_dashes'] = FALSE;
|
| This is not exactly a route, but allows you to automatically route
| controller and method names that contain dashes. '-' isn't a valid
| class or method name character, so it requires translation.
| When you set this option to TRUE, it will replace ALL dashes in the
| controller and method URI segments.
|
| Examples: my-controller/index -> my_controller/index
| my-controller/my-method -> my_controller/my_method
*/
$route['default_controller'] = 'Login';
$route['index.php/tablas/seleccion/(:num)'] = 'index,php/modaltabla/seleccion/$1';
$route['index.php/tablas/seleccion_accion/(:num)'] = 'index,php/editar_accion/seleccion_accion/$1';
$route['index.php/tablas/seleccion_aulas/(:num)'] = 'index,php/editar_aulas/seleccion_aulas/$1';
$route['index.php/tablas/seleccion_carrera/(:num)'] = 'index,php/editar_carrera/seleccion_carrera/$1';
$route['index.php/tablas/seleccion_coordinador/(:num)'] = 'index,php/editar_coordinador/seleccion_coordinador/$1';
$route['index.php/tablas/seleccion_departamento/(:num)'] = 'index,php/editar_departamento/seleccion_departamento/$1';
$route['index.php/tablas/seleccion_docente/(:num)'] = 'index,php/editar_docente/seleccion_docente/$1';
$route['index.php/tablas/seleccion_estudiantes/(:num)'] = 'index,php/editar_estudiantes/seleccion_estudiantes/$1';
$route['index.php/tablas/seleccion_grupos/(:num)'] = 'index,php/editar_grupos/seleccion_grupos/$1';
$route['index.php/tablas/seleccion_horarios_grupos/(:num)'] = 'index,php/editar_horarios_grupos/seleccion_horarios_grupos/$1';
$route['index.php/tablas/seleccion_horas_sociales/(:num)'] = 'index,php/editar_horas_sociales/seleccion_horas_sociales/$1';
$route['index.php/tablas/seleccion_inscripcion/(:num)'] = 'index,php/editar_inscripcion/seleccion_inscripcion/$1';
$route['index.php/tablas/seleccion_jefe/(:num)'] = 'index,php/editar_jefe/seleccion_jefe/$1';
$route['index.php/tablas/seleccion_materias/(:num)'] = 'index,php/editar_materias/seleccion_materias/$1';
$route['index.php/tablas/seleccion_preinscripcion/(:num)'] = 'index,php/editar_preinscripcion/seleccion_preinscripcion/$1';
$route['index.php/tablas/seleccion_registro_estudiante/(:num)'] = 'index,php/editar_registro_estudiante/seleccion_registro_estudiante/$1';
$route['index.php/tablas/seleccion_reportechoque/(:num)'] = 'index,php/editar_reportechoque/seleccion_reportechoque/$1';
$route['index.php/usuarios/seleccion_usuario/(:num)'] = 'index,php/editar_usuario/seleccion_usuario/$1';
$route['index.php/tablas/seleccion_re/(:num)'] = 'index,php/editar_re/seleccion_re/$1';
//$route['index.php/Detalles/(:num)'] = 'index,php/Detalles/$1';
$route['404_override'] = 'welcome';
$route['translate_uri_dashes'] = FALSE;
<file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class usuarios extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->model("tablas_estras");
$this->load->library('session');
}//end
public function index()
{
if(isset($_SESSION['IdUsuario'])){
if($_SESSION['TipoUsuario'] == 'ADMIN'){
$data = array('tablas' => '',
'usuarios' => 'active');
$mostrar = array('usuario'=>$this->tablas_estras->mostrar_usuario());
$this->load->view('menuadmin',$data);
$this->load->view('usuarios',$mostrar);
$this->load->view('footer');
}
}else{
redirect('Login');
}
}
////////////
//crud usuario
////////////
public function agregar_usuario(){
$datos = array(
"usuario" =>$this->input->post("usuario"),
"password" =>$this->input->post("password"),
"tipousuairo" =>$this->input->post("tipousuairo"),
"estadousuario" =>$this->input->post("estadousuario")
);
$this->tablas_estras->agregar_usuario($datos);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."usuarios");
}
public function seleccion_usuario($dato){
$valor=$this->tablas_estras->seleccion_usuario($dato);
$mostrar = array('usuario'=>$this->tablas_estras->mostrar_usuario());
$data = array('tablas' => '',
'usuarios' => 'active');
$this->load->view('menuadmin',$data);
$this->load->view('usuarios',$mostrar);
$this->load->view('editar_usuario',$valor);
$this->load->view('footer');
}
public function actualizar_usuario($id){
$datos = array(
"usuario" =>$this->input->post("usuario"),
"password" =>$this->input->post("password"),
"tipousuairo" =>$this->input->post("tipousuairo"),
"estadousuario" =>$this->input->post("estadousuario")
);
$this->tablas_estras->actualizar_usuario($datos,$id);
$this->session->set_flashdata("success","se ejcuto correctamente la accion");
redirect(base_url()."usuarios");
}
function eliminar_usuario($id){
$this->tablas_estras->eliminar_usuario($id);
$this->session->set_flashdata("success","se elimino correctamente");
redirect(base_url()."usuarios");
}
public function usuario_actualizar($id){
$datos = array(
"usuario" =>$this->input->post("usuario"),
"oldpassword" =>$this->input->post("oldpassword"),
"password" =>$<PASSWORD>->post("<PASSWORD>"),
"tipousuairo" =>$this->input->post("tipousuairo"),
"estadousuario" =>$this->input->post("estadousuario")
);
$queryid= $this->db->query("SELECT * FROM USUARIO WHERE IDUSUARIO=".$id);
$aux=0;
foreach ($queryid->result() as $gr){
if($gr->PASSWORD!=sha1($datos['oldpassword'] ))
{
$aux=1;
}
}
if($aux==1){
$this->session->set_flashdata("error","La contraseña anterior no coincide");
redirect(base_url()."micuenta");
}else{
$this->tablas_estras->actualizar_usuario($datos,$id);
$this->session->set_flashdata("success","La contraseña ha sido cambiada");
redirect(base_url()."micuenta");
}
}
}<file_sep><script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.tabledit.js"></script>
<script type="text/javascript" src="custom_table_edit.js"></script>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Registro de notas</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
#scroll {
overflow:auto;
max-height:27em;
width:100%;
}
</style>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}</style>
<!-- End Navbar -->
<script language="javascript">
function doSearch(nombre,apellido)
{
const tableReg = document.getElementById(nombre);
const searchText = document.getElementById(apellido).value.toLowerCase();
let total = 0;
// Recorremos todas las filas con contenido de la tabla
for (let i = 1; i < tableReg.rows.length; i++) {
// Si el td tiene la clase "noSearch" no se busca en su cntenido
if (tableReg.rows[i].classList.contains("noSearch")) {
continue;
}
let found = false;
const cellsOfRow = tableReg.rows[i].getElementsByTagName('td');
// Recorremos todas las celdas
for (let j = 0; j < cellsOfRow.length && !found; j++) {
const compareWith = cellsOfRow[j].innerHTML.toLowerCase();
// Buscamos el texto en el contenido de la celda
if (searchText.length == 0 || compareWith.indexOf(searchText) > -1) {
found = true;
total++;
}
}
if (found) {
tableReg.rows[i].style.display = '';
} else {
// si no ha encontrado ninguna coincidencia, esconde la
// fila de la tabla
tableReg.rows[i].style.display = 'none';
}
}
// mostramos las coincidencias
const lastTR=tableReg.rows[tableReg.rows.length-1];
const td=lastTR.querySelector("td");
lastTR.classList.remove("hide", "red");
if (searchText == "") {
lastTR.classList.add("hide");
} else if (total) {
td.innerHTML="Se ha encontrado "+total+" coincidencia"+((total>1)?"s":"");
} else {
lastTR.classList.add("red");
td.innerHTML="No se han encontrado coincidencias";
}
}
</script>
<style>
#datos {border:1px solid #ccc;padding:10px;font-size:1em;}
#datos tr:nth-child(even) {background:#ccc;}
#datos td {padding:5px;}
#datos tr.noSearch {background:White;font-size:0.8em;}
#datos tr.noSearch td {padding-top:10px;text-align:right;}
.hide {display:none;}
.red {color:Red;}
</style>
<!-- End Navbar -->
<div class="content">
<?php
$var1=1;
$var2=100;
$iddocente=$_SESSION['Nombre'];
$queryiddocente= $this->db->query("SELECT * FROM DOCENTE WHERE CORREODOCENTE='".$iddocente."'");
foreach ($queryiddocente->result() as $docente){
$queryidgrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDDOCENTE='".$docente->IDDOCENTE."'");
foreach ($queryidgrupo->result() as $grupo){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
$number =1;
if($grupo->ESTADOGRUPO=="A" && $grupo->ESTGRUPO=="HABILITADO"){
?>
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h3 class="card-title"><?php echo $materia->CODMATERIA." - ".$materia->NOMMATERIA?></h3>
<h4 class="card-title"><?php echo ($grupo->CICLOGRUPO." - ".$grupo->ANIOGRUPO." - #".$grupo->NUMGRUPO); ?></h4>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="<?php echo $var2?>" type="text" onkeyup="doSearch(''+ <?php echo $var1 ?>+'',''+<?php echo $var2 ?> +'')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="<?php echo $var1?>">
<thead class=" text-primary">
<th>#</th>
<th>CARNET</th>
<th>ESTUDIANTE</th>
<th>ESTADO</th>
<th>NOTA</th>
<th class="text-right">ACCION</th>
</thead>
<tbody>
<?php
$queryidinscripcion= $this->db->query("SELECT * FROM INSCRIPCION WHERE IDGRUPOS='".$grupo->IDGRUPOS."'");
foreach ($queryidinscripcion->result() as $inscripcion){
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE IDESTUDIANTE='".$inscripcion->IDESTUDIANTE."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidregistro= $this->db->query("SELECT * FROM REGISTRO_ESTUDIANTE WHERE IDINCRIPCION='".$inscripcion->IDINCRIPCION."'");
foreach ($queryidregistro->result() as $registro){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $estudiante->CARNETESTU; ?></td>
<td><?php echo $estudiante->NOMESTUDIANTE." ".$estudiante->APELESTUDIANTE;?></td>
<td ><?php echo $registro->ESTADOMATERIA; ?></td>
<td><?php echo $registro->NOTAMATERIA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_re/<?php echo $registro->IDREGISTROESTU; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a></td>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php
$var1++;
$var2++;
}
}
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<?php
}
}
}
?>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep><?php defined('BASEPATH') OR exit('No direct script access allowed');
class tablas_estras extends CI_Model{
function __construct()
{
parent::__construct();
$this->load->database();
}
function agregar($data){
$parametro=array(array('name'=>':nombres','value'=>$data['nombre'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':apellidos','value'=>$data['apellido'],'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','pr',$parametro);
}
function mostrar(){
$this->db->select("*");
$this->db->from("PROBAR");
$this->db->order_by("IDP ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccionar($id){
$this->db->select("*");
$this->db->from("PROBAR");
$this->db->where("IDP",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar($data,$id){
$parametro=array(array('name'=>':vnombre','value'=>$data['nombre'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapellido','value'=>$data['apellido'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vid','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','editar',$parametro);
}
function eliminar($id){
$parametro=array(array('name'=>':vid','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eli',$parametro);
}
////////////
//crud accion
////////////
function agregar_accion($data){
$parametro=array(
array('name'=>':vfechainicio','value'=>date('d-m-y',$data['fechainicio']),'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vfechafinal','value'=>date('d-m-y',$data['fechafinal']),'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_accion',$parametro);
}
function mostrar_accion(){
$this->db->select("*");
$this->db->from("ACCION");
$this->db->order_by("IDACCION ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_accion($id){
$this->db->select("*");
$this->db->from("ACCION");
$this->db->where("IDACCION",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_accion($data,$id){
$parametro=array(
array('name'=>':vidaccion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vfechainicio','value'=>$data['fechainicio'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vfechafinal','value'=>$data['fechafinal'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','atualizar_accion',$parametro);
}
function eliminar_accion($id){
$parametro=array(array('name'=>':vidaccion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_accion',$parametro);
}
////////////
//crud aulas
////////////
function agregar_aulas($data){
$parametro=array(
array('name'=>':vnumaula','value'=>$data['numaula'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_aulas',$parametro);
}
function mostrar_aulas(){
$this->db->select("*");
$this->db->from("AULAS");
$this->db->order_by("IDAULA ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_aulas($id){
$this->db->select("*");
$this->db->from("AULAS");
$this->db->where("IDAULA",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_aulas($data,$id){
$parametro=array(
array('name'=>':vidaula','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnumaula','value'=>$data['numaula'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_aulas',$parametro);
}
function eliminar_aulas($id){
$parametro=array(array('name'=>':vidaula','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_aulas',$parametro);
}
////////////
//crud carrera
////////////
function agregar_carrera($data){
$parametro=array(
array('name'=>':viddepto','value'=>$data['iddepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcodcarrera','value'=>$data['codcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vmaterias','value'=>$data['materias'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomcarrera','value'=>$data['nomcarrera'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_carrera',$parametro);
}
function mostrar_carrera(){
$this->db->select("*");
$this->db->from("CARRERA");
$this->db->order_by("IDCARRERA ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_carrera($id){
$this->db->select("*");
$this->db->from("CARRERA");
$this->db->where("IDCARRERA",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_carrera($data,$id){
$parametro=array(
array('name'=>':vidcarrera','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddepto','value'=>$data['iddepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcodcarrera','value'=>$data['codcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vmaterias','value'=>$data['materias'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomcarrera','value'=>$data['nomcarrera'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_carrera',$parametro);
}
function eliminar_carrera($id){
$parametro=array(array('name'=>':vidcarrera','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_carrera',$parametro);
}
////////////
//crud coordinador
////////////
function agregar_coordinador($data){
$id = sha1('ues'.date("Y"));
$parametro=array(
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcorreocoor','value'=>$data['correocoor'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomcoor','value'=>$data['nomcoor'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapecoor','value'=>$data['apecoor'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>$id,'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_coordinador',$parametro);
}
function mostrar_coordinador(){
$this->db->select("*");
$this->db->from("COORDINADOR");
$this->db->order_by("IDCOORDINADOR ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_coordinador($id){
$this->db->select("*");
$this->db->from("COORDINADOR");
$this->db->where("IDCOORDINADOR",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_coordinador($data,$id){
$parametro=array(
array('name'=>':vidcoordinador','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomcoor','value'=>$data['nomcoor'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapecoor','value'=>$data['apecoor'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_coordinador',$parametro);
}
function eliminar_coordinador($id){
$parametro=array(array('name'=>':vidcoordinador','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_coordinador',$parametro);
}
////////////
//crud departamento
////////////
function agregar_departamento($data){
$parametro=array(
array('name'=>':vnombredepto','value'=>$data['nombredepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidjefe','value'=>$data['idjefe'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_departamento',$parametro);
}
function mostrar_departamento(){
$this->db->select("*");
$this->db->from("DEPARTAMENTO");
$this->db->order_by("IDDEPTO ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_departamento($id){
$this->db->select("*");
$this->db->from("DEPARTAMENTO");
$this->db->where("IDDEPTO",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_departamento($data,$id){
$parametro=array(
array('name'=>':videpto','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnombredepto','value'=>$data['nombredepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidjefe','value'=>$data['idjefe'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_departamento',$parametro);
}
function eliminar_departamentor($id){
$parametro=array(array('name'=>':videpto','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_departamento',$parametro);
}
////////////
//crud docente
////////////
function agregar_docente($data){
$id = sha1('ues'.date("Y"));
$parametro=array(
array('name'=>':viddepto','value'=>$data['iddepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomdocente','value'=>$data['nomdocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapedocente','value'=>$data['apedocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vprofdocente','value'=>$data['profdocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtipocontrato','value'=>$data['tipocontrato'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>$id,'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_docente',$parametro);
}
function mostrar_docente(){
$this->db->select("*");
$this->db->from("DOCENTE");
$this->db->order_by("IDDOCENTE ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_docente($id){
$this->db->select("*");
$this->db->from("DOCENTE");
$this->db->where("IDDOCENTE",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_docente($data,$id){
$parametro=array(
array('name'=>':viddocente','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddepto','value'=>$data['iddepto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomdocente','value'=>$data['nomdocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapedocente','value'=>$data['apedocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vprofdocente','value'=>$data['profdocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtipocontrato','value'=>$data['tipocontrato'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcorreodocente','value'=>$data['correodocente'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_docente',$parametro);
}
function eliminar_docente($id){
$parametro=array(array('name'=>':viddocente','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_docente',$parametro);
}
////////////
//crud estudiantes
////////////
function agregar_estudiantes($data){
$id = sha1('ues'.date("Y"));
$parametro=array(
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomestudiante','value'=>$data['nomestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapelestudiante','value'=>$data['apelestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtelestudiante','value'=>$data['telestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>$id,'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_estudiantes',$parametro);
}
function mostrar_estudiantes(){
$this->db->select("*");
$this->db->from("ESTUDIANTES");
$this->db->order_by("IDESTUDIANTE ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_estudiantes($id){
$this->db->select("*");
$this->db->from("ESTUDIANTES");
$this->db->where("IDESTUDIANTE",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_estudiantes($data,$id){
$parametro=array(
array('name'=>':videstudiante','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomestudiante','value'=>$data['nomestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapelestudiante','value'=>$data['apelestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcarnetestu','value'=>$data['carnetestu'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcorreoestu','value'=>$data['correoestu'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtelestudiante','value'=>$data['telestudiante'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_estudiantes',$parametro);
}
function eliminar_estudiantes($id){
$parametro=array(array('name'=>':videstudiante','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_estudiantes',$parametro);
}
////////////
//crud grupos
////////////
function agregar_grupos($data){
$parametro=array(
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcoordinador','value'=>$data['idcoordinador'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcantcupos','value'=>$data['cantcupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnumgrupo','value'=>$data['numgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vciclogrupo','value'=>$data['ciclogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vaniogrupo','value'=>$data['aniogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestgrupo','value'=>$data['estgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_grupos',$parametro);
}
function grupos_agregar($data){
$parametro=array(
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcoordinador','value'=>$data['idcoordinador'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcantcupos','value'=>$data['cantcupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnumgrupo','value'=>$data['numgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vciclogrupo','value'=>$data['ciclogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vaniogrupo','value'=>$data['aniogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestgrupo','value'=>'HABILITADO','length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_grupos',$parametro);
}
function mostrar_grupos(){
$this->db->select("*");
$this->db->from("GRUPOS");
$this->db->order_by("IDGRUPOS ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_grupos($id){
$this->db->select("*");
$this->db->from("GRUPOS");
$this->db->where("IDGRUPOS",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_grupos($data,$id){
$parametro=array(
array('name'=>':vidgrupos','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcoordinador','value'=>$data['idcoordinador'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcantcupos','value'=>$data['cantcupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnumgrupo','value'=>$data['numgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vciclogrupo','value'=>$data['ciclogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vaniogrupo','value'=>$data['aniogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestgrupo','value'=>$data['estgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_grupos',$parametro);
}
function grupos_actualizar($data,$id){
$parametro=array(
array('name'=>':vidgrupos','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcoordinador','value'=>$data['idcoordinador'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcantcupos','value'=>$data['cantcupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnumgrupo','value'=>$data['numgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vciclogrupo','value'=>$data['ciclogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vaniogrupo','value'=>$data['aniogrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestgrupo','value'=>$data['estgrupo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_grupos',$parametro);
}
function eliminar_grupos($id){
$parametro=array(array('name'=>':vidgrupos','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_grupos',$parametro);
}
////////////
//crud horarios_grupos
////////////
function agregar_horarios_grupos($data){
$parametro=array(
array('name'=>':vidgrupos','value'=>$data['idgrupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidaula','value'=>$data['idaula'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vdiahorario','value'=>$data['diahorario'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vhorashorario','value'=>$data['horashorario'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_horarios_grupos',$parametro);
}
function mostrar_horarios_grupos(){
$this->db->select("*");
$this->db->from("HORARIOS_GRUPOS");
$this->db->order_by("IDHORARIO_GRU ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_horarios_grupos($id){
$this->db->select("*");
$this->db->from("HORARIOS_GRUPOS");
$this->db->where("IDHORARIO_GRU",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_horarios_grupos($data,$id){
$parametro=array(
array('name'=>':vidhorario_gru','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidgrupos','value'=>$data['idgrupos'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidaula','value'=>$data['idaula'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vdiahorario','value'=>$data['diahorario'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vhorashorario','value'=>$data['horashorario'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','editar_horarios_grupos',$parametro);
}
function eliminar_horarios_grupos($id){
$parametro=array(array('name'=>':vidhorario_gru','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_horarios_grupos',$parametro);
}
////////////
//crud horas_sociales
////////////
function agregar_horas_sociales($data){
$parametro=array(
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomproyecto','value'=>$data['nomproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vduracionproyec','value'=>$data['duracionproyec'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadoproyecto','value'=>$data['estadoproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vanteproyecto','value'=>$data['anteproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadoanteproyecto','value'=>$data['estadoanteproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcomentariopro','value'=>$data['comentariopro'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_horas_sociales',$parametro);
}
function mostrar_horas_sociales(){
$this->db->select("*");
$this->db->from("HORAS_SOCIALES");
$this->db->order_by("IDHORASSOCIALES ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_horas_sociales($id){
$this->db->select("*");
$this->db->from("HORAS_SOCIALES");
$this->db->where("IDHORASSOCIALES",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_horas_sociales($data,$id){
$parametro=array(
array('name'=>':vidhorassociales','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':viddocente','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomproyecto','value'=>$data['nomproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vduracionproyec','value'=>$data['duracionproyec'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadoproyecto','value'=>$data['estadoproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vanteproyecto','value'=>$data['anteproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadoanteproyecto','value'=>$data['estadoanteproyecto'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcomentariopro','value'=>$data['comentariopro'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_horas_sociales',$parametro);
}
function eliminar_horas_sociales($id){
$parametro=array(array('name'=>':vidhorassociales','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_horas_sociales',$parametro);
}
////////////
//crud inscripcion
////////////
function agregar_inscripcion($data){
$parametro=array(
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidgrupos','value'=>$data['idgrupos'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_inscripcion',$parametro);
}
function mostrar_inscripcion(){
$this->db->select("*");
$this->db->from("INSCRIPCION");
$this->db->order_by("IDINCRIPCION ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_inscripcion($id){
$this->db->select("*");
$this->db->from("INSCRIPCION");
$this->db->where("IDINCRIPCION",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_inscripcion($data,$id){
$parametro=array(
array('name'=>':vidincripcion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidgrupos','value'=>$data['idgrupos'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_inscripcion',$parametro);
}
function eliminar_inscripcion($id){
$parametro=array(array('name'=>':vidincripcion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_inscripcion',$parametro);
}
////////////
//crud jefe
////////////
function agregar_jefe($data){
$id = sha1('ues'.date("Y"));
$parametro=array(
array('name'=>':vnomjefe','value'=>$data['nomjefe'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapejefe','value'=>$data['apejefe'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>$id,'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_jefe',$parametro);
}
function mostrar_jefe(){
$es='A';
$this->db->select("*");
$this->db->from("JEFE");
$this->db->where("ESTADOJEFE",$es);
$this->db->order_by("IDJEFE ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_jefe($id){
$this->db->select("*");
$this->db->from("JEFE");
$this->db->where("IDJEFE",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_jefe($data,$id){
$parametro=array(
array('name'=>':vidjefe','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnomjefe','value'=>$data['nomjefe'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vapejefe','value'=>$data['apejefe'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcorreojefe','value'=>$data['correojefe'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_jefe',$parametro);
}
function eliminar_jefe($id){
$parametro=array(array('name'=>':vidjefe','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_jefe',$parametro);
}
////////////
//crud materias
////////////
function agregar_materias($data){
$parametro=array(
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcodmateria','value'=>$data['codmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnivelmateria','value'=>$data['nivelmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnommateria','value'=>$data['nommateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vrequisito','value'=>$data['requisito'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_materias',$parametro);
}
function mostrar_materias(){
$this->db->select("*");
$this->db->from("MATERIAS");
$this->db->order_by("IDMATERIA ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_materias($id){
$this->db->select("*");
$this->db->from("MATERIAS");
$this->db->where("IDMATERIA",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_materias($data,$id){
$parametro=array(
array('name'=>':vidmateria','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcarrera','value'=>$data['idcarrera'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcodmateria','value'=>$data['codmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnivelmateria','value'=>$data['nivelmateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnommateria','value'=>$data['nommateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vrequisito','value'=>$data['requisito'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_materias',$parametro);
}
function eliminar_materias($id){
$parametro=array(array('name'=>':vidmateria','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_materias',$parametro);
}
////////////
//crud preinscripcion
////////////
function agregar_preinscripcion($data){
$parametro=array(
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_preinscripcion',$parametro);
}
function mostrar_preinscripcion(){
$this->db->select("*");
$this->db->from("PREINSCRIPCION");
$this->db->order_by("IDPREINSCRIPCION ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_preinscripcion($id){
$this->db->select("*");
$this->db->from("PREINSCRIPCION");
$this->db->where("IDPREINSCRIPCION",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_preinscripcion($data,$id){
$parametro=array(
array('name'=>':vidpreinscripcion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidmateria','value'=>$data['idmateria'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_preinscripcion',$parametro);
}
function eliminar_preinscripcion($id){
$parametro=array(array('name'=>':vidpreinscripcion','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_preinscripcion',$parametro);
}
////////////
//crud registro_estudiante
////////////
function agregar_registro_estudiante($data){
$parametro=array(
array('name'=>':vidincripcion','value'=>$data['idincripcion'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadomateria','value'=>$data['estadomateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnotamateria','value'=>$data['notamateria'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_registro_estudiante',$parametro);
}
function mostrar_registro_estudiante(){
$this->db->select("*");
$this->db->from("REGISTRO_ESTUDIANTE");
$this->db->order_by("IDREGISTROESTU ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_registro_estudiante($id){
$this->db->select("*");
$this->db->from("REGISTRO_ESTUDIANTE");
$this->db->where("IDREGISTROESTU",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_registro_estudiante($data,$id){
$parametro=array(
array('name'=>':vidregistroestu','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidincripcion','value'=>$data['idincripcion'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadomateria','value'=>$data['estadomateria'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vnotamateria','value'=>$data['notamateria'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_registro_estudiante',$parametro);
}
function eliminar_registro_estudiante($id){
$parametro=array(array('name'=>':vidregistroestu','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package','eliminar_registro_estudiante',$parametro);
}
////////////
//crud reportechoque
////////////
function agregar_reportechoque($data){
$parametro=array(
array('name'=>':vidcoordinador','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcomentariochoque','value'=>$data['comentariochoque'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_reportechoque',$parametro);
}
function mostrar_reportechoque(){
$this->db->select("*");
$this->db->from("REPORTECHOQUE");
$this->db->order_by("IDCHOQUE ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_reportechoque($id){
$this->db->select("*");
$this->db->from("REPORTECHOQUE");
$this->db->where("IDCHOQUE",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_reportechoque($data,$id){
$parametro=array(
array('name'=>':vidchoque','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vidcoodinador','value'=>$data['iddocente'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':videstudiante','value'=>$data['idestudiante'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vcomentariochoque','value'=>$data['comentariochoque'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_reportechoque',$parametro);
}
function eliminar_reportechoque($id){
$parametro=array(array('name'=>':vidchoque','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_reportechoque',$parametro);
}
////////////
//crud usuario
////////////
function agregar_usuario($data){
$parametro=array(
array('name'=>':vusuario','value'=>$data['usuario'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>sha1($data['password']),'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtipousuairo','value'=>$data['tipousuairo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadousuario','value'=>$data['estadousuario'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','agregar_usuario',$parametro);
}
function mostrar_usuario(){
$this->db->select("*");
$this->db->from("USUARIO");
$this->db->order_by("IDUSUARIO ASC");
$resultados =$this->db->get();
return $resultados->result();
}
function seleccion_usuario($id){
$this->db->select("*");
$this->db->from("USUARIO");
$this->db->where("IDUSUARIO",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_usuario($data,$id){
$parametro=array(
array('name'=>':vidusuario','value'=>$id,'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vpassword','value'=>sha1($data['password']),'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vtipousuairo','value'=>$data['tipousuairo'],'length'=>-1,'type'=>SQLT_CHR),
array('name'=>':vestadousuario','value'=>$data['estadousuario'],'length'=>-1,'type'=>SQLT_CHR)
);
$this->db->stored_procedure('package1','actualizar_usuario',$parametro);
}
function eliminar_usuario($id){
$parametro=array(array('name'=>':vidusuario','value'=>$id,'length'=>-1,'type'=>SQLT_CHR));
$this->db->stored_procedure('package1','eliminar_usuario',$parametro);
}
function seleccion_re($id){
$this->db->select("*");
$this->db->from("REGISTRO_ESTUDIANTE");
$this->db->where("IDREGISTROESTU",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_re($data,$id){
$estado;
if($data['notamateria']>=6){
$estado='A';
}else{
$estado='R';
}
$this->db->query("UPDATE REGISTRO_ESTUDIANTE SET NOTAMATERIA=".$data['notamateria'].", ESTADOMATERIA='".$estado."' WHERE IDREGISTROESTU=".$id);
}
function docente_comentario($id){
$this->db->select("*");
$this->db->from("HORAS_SOCIALES");
$this->db->where("IDHORASSOCIALES",$id);
$resultados =$this->db->get();
return $resultados->row();
}
function actualizar_comentario($data,$id){
$this->db->query("UPDATE HORAS_SOCIALES SET COMENTARIOPRO='".$data['comentario']."'WHERE IDHORASSOCIALES=".$id);
}
function estado_anteproyecto($id){
$this->db->query("UPDATE HORAS_SOCIALES SET ESTADOANTEPROYECTO= 'A' WHERE IDHORASSOCIALES=".$id);
}
function estado_proyecto($id){
$this->db->query("UPDATE HORAS_SOCIALES SET ESTADOPROYECTO= 'A' WHERE IDHORASSOCIALES=".$id);
}
}
?><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Inscripcion de materias</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<?php
$queryidfecha= $this->db->query("SELECT * FROM ACCION ");
foreach ($queryidfecha->result() as $fecha){
$fechaactual = date('Y-m-d');
$fechaactual=date('Y-m-d', strtotime($fechaactual));
$inscripcioninicio = date('Y-m-d', strtotime($fecha->FECHAINICIO));
$inscripcionfinal = date('Y-m-d', strtotime($fecha->FECHAFINAL));
if (($fechaactual >= $inscripcioninicio) && ($fechaactual <= $inscripcionfinal)){
?>
<div class="content">
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Materias a Inscribir</h4>
</form>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="yecto">
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th>GRUPO</th>
<th>HORARIO</th>
<th class="text-right">ACCION</th>
</thead>
<tbody>
<?php
$number=1;
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidpre= $this->db->query("SELECT * FROM PREINSCRIPCION WHERE IDESTUDIANTE='".$estudiante->IDESTUDIANTE."'");
foreach ($queryidpre->result() as $pre){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$pre->IDMATERIA."'");
foreach ($queryidmateria->result() as $materia){
$queryidgrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDMATERIA='".$materia->IDMATERIA."' AND ESTGRUPO='HABILITADO'");
foreach ($queryidgrupo->result() as $grupo){
$queryidhorario= $this->db->query("SELECT * FROM HORARIOS_GRUPOS WHERE IDGRUPOS='".$grupo->IDGRUPOS."'");
foreach ($queryidhorario->result() as $horario){
$queryidaula= $this->db->query("SELECT * FROM AULAS WHERE IDAULA='".$horario->IDAULA."'");
foreach ($queryidaula->result() as $aula){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->NOMMATERIA;?></td>
<td><?php echo $grupo->NUMGRUPO; ?></td>
<td><?php echo $horario->DIAHORARIO." - ".$horario->HORASHORARIO." - Aula: ".$aula->NUMAULA; ?></td>
<td><?php echo $materia->NIVELMATERIA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/inscripcion_agregar/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-check"></i></a>
<a href="<?php echo base_url(); ?>tablas/reportechoque_agregar/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-danger btn-round btn-icon " ><i class="fa fa-thumbs-down"></i></a>
</tr>
<?php
}
}
}
}
}
}
}else{
?>
<div class="content">
<div class="row">
<div class="col-md-12">
<h3 class="description">El periodo de inscripcion no esta habilitado</h3>
</div>
</div>
</div>
<?php
}
}
?>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar registro de estudiante </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_registro_estudiante/<?php echo $IDREGISTROESTU; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id inscripcion</label>
<select id="idincripcion" name="idincripcion" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Inscripcion --</option>
<?php
$queryri= $this->db->query("SELECT * FROM INSCRIPCION ");
foreach ($queryri->result() as $ri){
?>
<option value="<?php echo $ri->IDINCRIPCION ?>" <?php if($IDINCRIPCION==$ri->IDINCRIPCION){ echo 'selected="selected"';} ?>><?php echo $ri->IDINCRIPCION?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>estado de materia</label>
<select id="estadomateria" name="estadomateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estado --</option>
<?php
$esm = array(
1=> "A",
2=> "C",
3=> "R"
);
foreach($esm as $key => $h) { ?>
<option h="<?php echo $key ?>" <?php if($ESTADOMATERIA==$h){ echo 'selected="selected"';} ?>><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>nota de materia</label>
<input type="text" class="form-control" placeholder="nota" id="notamateria" name="notamateria" value="<?php echo $NOTAMATERIA; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Proyectos de Horas Sociales</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}</style>
<!-- End Navbar -->
<!-- End Navbar -->
<div class="content">
<?php
$iddocente=$_SESSION['Nombre'];
$queryiddocente= $this->db->query("SELECT * FROM DOCENTE WHERE CORREODOCENTE='".$iddocente."'");
foreach ($queryiddocente->result() as $docente){
$queryidhoras= $this->db->query("SELECT * FROM HORAS_SOCIALES WHERE IDDOCENTE='".$docente->IDDOCENTE."'");
foreach ($queryidhoras->result() as $horas){
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE IDESTUDIANTE='".$horas->IDESTUDIANTE."'");
foreach ($queryidestudiante->result() as $estudiante){
$number =1;
if($horas->ESTADOPROYECTO=='A' && $horas->ESTADOANTEPROYECTO!='A'){
?>
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title"><?php echo ($estudiante->NOMESTUDIANTE." ".$estudiante->APELESTUDIANTE); ?></h4>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="soc">
<thead class=" text-primary">
<th>#</th>
<th>PROYECTO</th>
<th>DURACION</th>
<th>ANTEPROYECTO</th>
<th>ESTADO</th>
<th>FECHA</th>
<th class="text-right">ACCION</th>
</thead>
<tbody>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $horas->NOMPROYECTO; ?></td>
<td><?php echo $horas->DURACIONPROYEC;?></td>
<td><a class="btn btn-info btn-round btn-icon " title="Descargar Archivo" href="<?php echo base_url(); ?>uploads/<?php echo $horas->ANTEPROYECTO; ?>" download="<?php echo $horas->ANTEPROYECTO; ?>" ><i class="fa fa-download"></i> </a></td>
<td><?php echo $horas->ESTADOANTEPROYECTO; ?></td>
<td><?php echo $horas->FECHASOCIALES; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/docente_comentario/<?php echo $horas->IDHORASSOCIALES; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-comment"></i></a>
<a href="<?php echo base_url(); ?>tablas/estado_anteproyecto/<?php echo $horas->IDHORASSOCIALES; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-check"></i></a></td>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<?php
}
}
}
}
?>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script>
<file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Eviar comentarios </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_comentarios/<?php echo $IDHORASSOCIALES; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-12 pr-1">
<div class="form-group">
<label>Comentario</label>
<input type="text" class="form-control" id="comentario" name="comentario" value="">
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Enviar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" >Estadisticas de horas sociales</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
.chart-wrap {
--chart-width:420px;
--grid-color:#aaa;
--bar-color:#F16335;
--bar-thickness:40px;
--bar-rounded: 3px;
--bar-spacing:10px;
font-family:sans-serif;
width:var(--chart-width);
}
.chart-wrap .title{
font-weight:bold;
padding:1.8em 0;
text-align:center;
white-space:nowrap;
}
/* cuando definimos el gráfico en horizontal, lo giramos 90 grados */
.chart-wrap.horizontal .grid{
transform:rotate(-90deg);
}
.chart-wrap.horizontal .bar::after{
/* giramos las letras para horizontal*/
transform: rotate(45deg);
padding-top:0px;
display: block;
}
.chart-wrap .grid{
margin-left:50px;
position:relative;
padding:5px 0 5px 0;
height:100%;
width:100%;
border-left:2px solid var(--grid-color);
}
/* posicionamos el % del gráfico*/
.chart-wrap .grid::before{
font-size:0.8em;
font-weight:bold;
content:'0%';
position:absolute;
left:-0.5em;
top:-1.5em;
}
.chart-wrap .grid::after{
font-size:0.8em;
font-weight:bold;
content:'100%';
position:absolute;
right:-1.5em;
top:-1.5em;
}
/* giramos las valores de 0% y 100% para horizontal */
.chart-wrap.horizontal .grid::before, .chart-wrap.horizontal .grid::after {
transform: rotate(90deg);
}
.chart-wrap .bar {
width: var(--bar-value);
height:var(--bar-thickness);
margin:var(--bar-spacing) 0;
background-color:var(--bar-color);
border-radius:0 var(--bar-rounded) var(--bar-rounded) 0;
}
.chart-wrap .bar:hover{
opacity:0.7;
}
.chart-wrap .bar::after{
content:attr(data-name);
margin-left:100%;
padding:10px;
display:inline-block;
white-space:nowrap;
}
</style>
<div class="content">
<div class="container">
<div class="ccol-lg-4 col-md-6 ml-auto mr-auto">
<div class="card ">
<div class="card-header ">
<h4 class="card-title center-block">Estudiantes con horas sociales activas</h4>
</div>
<div class="card-body ">
<br>
<br>
<br>
<?php
$var1=1;
$var2=100;
$correo=$_SESSION['Nombre'];
$valoresY;
$valoresX;
$queryid= $this->db->query("SELECT IDJEFE FROM JEFE WHERE CORREOJEFE='".$correo."'");
foreach ($queryid->result() as $jefe){
$querydepartamento= $this->db->query("SELECT * FROM DEPARTAMENTO WHERE IDJEFE=".$jefe->IDJEFE."");
foreach ($querydepartamento->result() as $depto){
?>
<div class="chart-wrap "> <!-- quitar el estilo "horizontal" para visualizar verticalmente -->
<div class="grid">
<?php
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDDEPTO=".$depto->IDDEPTO."");
foreach ($querycarrera->result() as $carrera){
$contador=0;
$cantest=0;
$valoresX=$carrera->NOMCARRERA;
$queryestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE IDCARRERA=".$carrera->IDCARRERA."");
foreach ($queryestudiante->result() as $estudiante){
$cantest++;
$queryehoras= $this->db->query("SELECT * FROM HORAS_SOCIALES WHERE IDESTUDIANTE=".$estudiante->IDESTUDIANTE." AND ESTADOPROYECTO='A' AND ESTADOANTEPROYECTO='P'");
foreach ($queryehoras->result() as $horas){
$contador++;
}
}
if($contador>0){
$porcentaje=((float)$contador*100)/$cantest;
$porcentaje = round($porcentaje, 0);
$valoresY=$contador;
?>
<div class="bar" data-toggle="modal" data-target="#GSCCModal" style='<?php echo strval('--bar-value:'.$porcentaje.'%;')?>' data-name="<?php echo $valoresX?>" title="<?php echo $porcentaje.'%'?>"></div>
<div id="GSCCModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="myModalLabel"><?php echo $valoresX ?></h4>
</div>
<div class="modal-body">
<h5>De los <?php echo $cantest ?> estudiantes que cursan la carrera, solo <?php echo $contador ?>
tienen sus proyectos de horas sociales activos, representando asi el <?php echo $porcentaje ?>%</h5>
</div>
</div>
</div>
</div>
<?php
}
}
?>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</section>
</div>
<?php
}
}
?>
<file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Departamento </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_departamento/<?php echo $IDDEPTO; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-8 pr-1">
<div class="form-group">
<label>Nombre de departamento</label>
<input type="text" class="form-control" placeholder="Nombre de departamento" id="nombredepto" name="nombredepto" value="<?php echo $NOMBREDEPTO; ?>">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Id jefe</label>
<select id="idjefe" name="idjefe" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Jefe --</option>
<?php
$querydj= $this->db->query("SELECT * FROM JEFE ");
foreach ($querydj->result() as $dj){
?>
<option value="<?php echo $dj->IDJEFE ?>" <?php if($IDJEFE==$dj->IDJEFE){ echo 'selected="selected"';} ?>><?php echo $dj->NOMJEFE." ".$dj->APEJEFE?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Jefe </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_jefe/<?php echo $IDJEFE; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Correo</label>
<input type="email" class="form-control" pattern=".+@ues\.edu\.sv" placeholder="Correo" id="correojefe" name="correojefe" value="<?php echo $CORREOJEFE; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre jefe</label>
<input type="text" class="form-control" placeholder="Nombre jefe" id="nomjefe" name="nomjefe" value="<?php echo $NOMJEFE; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Apellido jefe</label>
<input type="text" class="form-control" placeholder="Apellido" id="apejefe" name="apejefe" value="<?php echo $APEJEFE; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar preinscripcion </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_preinscripcion/<?php echo $IDPREINSCRIPCION; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$querype= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($querype->result() as $pe){
?>
<option value="<?php echo $pe->IDESTUDIANTE ?>" <?php if($IDESTUDIANTE==$pe->IDESTUDIANTE){ echo 'selected="selected"';} ?> ><?php echo $pe->NOMESTUDIANTE." ".$pe->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id materia</label>
<select id="idmateria" name="idmateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Materia --</option>
<?php
$querypm= $this->db->query("SELECT * FROM MATERIAS ");
foreach ($querypm->result() as $pm){
?>
<option value="<?php echo $pm->IDMATERIA ?>" <?php if($IDMATERIA==$pm->IDMATERIA){ echo 'selected="selected"';} ?> ><?php echo $pm->NOMMATERIA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Core JS Files -->
<script src="<?php echo base_url(); ?>assets/js/core/jquery.min.js"></script>
<script src="<?php echo base_url(); ?>assets/js/core/popper.min.js"></script>
<script src="<?php echo base_url(); ?>assets/js/core/bootstrap.min.js"></script>
<script src="<?php echo base_url(); ?>assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Control Center for Now Ui Dashboard: parallax effects, scripts for the example pages etc -->
<script src="<?php echo base_url(); ?>assets/js/paper-dashboard.min.js?v=2.0.1" type="text/javascript"></script>
</body>
</html>
<file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class sValor extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->model("probar");
}//end
public function index()
{
$data = array('dashboard' => 'active',
'segundo' => '',
'tercero' => '');
$this->load->view('header',$data);
$this->load->view('body');
$this->load->view('footer');
}
public function prueba()
{
$nombre = $this->input->post("nombre");
$apellito = $this->input->post("apellido");
$datos = array(
"nombre" => $nombre,
"apellido" => $apellito,
);
$this->probar->registrar($datos);
redirect(base_url().'Welcome');
}
}<file_sep><!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo base_url(); ?>assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="<?php echo base_url(); ?>assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
LOGIN
</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS Files -->
<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>assets/css/paper-dashboard.css?v=2.0.1" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="<?php echo base_url(); ?>assets/demo/demo.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
</head>
<style>
.center-block {
text-align: center;
}
</style>
<body style="background-color:#f4f3ef;">
<div class="wrapper wrapper-full-page ">
<!-- you can change the color of the filter page using: data-color="blue | purple | green | orange | red | rose " -->
<div class="content">
<div class="container">
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="col-lg-4 col-md-6 ml-auto mr-auto">
<form method="post" action="<?php echo base_url();?>Login" enctype="multipart/form-data">
<div class="card card-login">
<div class="card-header ">
<div class="card-header ">
<h3 class="header text-center">Login</h3>
<h4 class="header text-center">Univeridad de El Salvador</h4>
</div>
</div>
<div class="card-body ">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="nc-icon nc-single-02"></i>
</span>
</div>
<input type="email" name="usuario" pattern=".+<EMAIL>" class="form-control" placeholder="Usuario" aria-label="Username" aria-describedby="basic-addon1">
</div>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="nc-icon nc-key-25"></i>
</span>
</div>
<input type="Password" name="contra" class="form-control" placeholder="Contraseña" aria-label="Username" aria-describedby="basic-addon1">
</div>
<br>
<div class="card-footer center-block ">
<input type="submit" class="btn btn-danger btn-round" value="Ingresar">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="<?php echo base_url(); ?>assets/extra/assets/js/jquery-3.2.1.min.js"></script>
<script src="<?php echo base_url(); ?>assets/extra/assets/js/popper.min.js"></script>
<script src="<?php echo base_url(); ?>assets/extra/assets/js/bootstrap.min.js"></script>
<script src="<?php echo base_url(); ?>assets/extra/assets/js/script.js"></script>
<script>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script>
</html><file_sep><?php
defined('BASEPATH') OR exit('No direct script access allowed');
class estadisticas extends CI_Controller {
function __construct(){
parent::__construct();
$this->load->library('session');
}//end
public function index()
{
if(isset($_SESSION['IdUsuario'])){
if($_SESSION['TipoUsuario'] == 'JEFE'){
$data = array('planificaciones' => '',
'micuenta' => '',
'estadisticas'=>'active');
$this->load->view('menujefe',$data);
$this->load->view('estadisticas');
$this->load->view('footer');
}
}else{
redirect('Login');
}
}
}<file_sep><?php defined('BASEPATH') OR exit('No direct script access allowed');
class login_model extends CI_Model{
function __construct(){
parent::__construct();
$this->load->database();
}
public function login($username,$passwor){
$this->db->where('USUARIO',$username);
$this->db->where('PASSWORD',$passwor);
$q = $this->db->get('USUARIO');
if($q->num_rows() > 0){
$this->db->query("UPDATE USUARIO SET INTENTOS=0 WHERE USUARIO='".$username."'");
return true;
}else{
$usuarioquery=$this->db->query("SELECT INTENTOS FROM USUARIO WHERE USUARIO='".$username."'");
if($usuarioquery->num_rows()>0){
foreach ($usuarioquery->result() as $intento){
if($intento->INTENTOS==0){
$this->db->query("UPDATE USUARIO SET INTENTOS=1 WHERE USUARIO='".$username."'");
return false;
}
if($intento->INTENTOS==1){
$this->db->query("UPDATE USUARIO SET INTENTOS=2 WHERE USUARIO='".$username."'");
return false;
}
if($intento->INTENTOS==2){
$this->db->query("UPDATE USUARIO SET INTENTOS=3, ESTADOUSUARIO='I' WHERE USUARIO='".$username."'");
return false;
}
}
}
}
}
public function obtener($username){
$this->db->select("IDUSUARIO,USUARIO,TIPOUSUAIRO,ESTADOUSUARIO");
$this->db->from("USUARIO");
$this->db->where("USUARIO",$username);
$resultado = $this->db->get();
if($resultado->num_rows() > 0){
return $resultado->row();
}else{
return false;
}
}
function update($id){
$this->db->query("update USUARIO set ESTADOUSUARIO= 'I' WHERE USUARIO='".$id."'");
}
public function errordecontra($username){
$this->db->where('USUARIO',$username);
$q = $this->db->get('USUARIO');
if($q->num_rows() > 0){
return true;
}else{
return false;
}
}
}
?><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Docente </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_docente/<?php echo $IDDOCENTE; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del docente</label>
<input value="<?php echo $NOMDOCENTE; ?>" type="text" class="form-control" placeholder="Nombre del docente" id="nomdocente" name="nomdocente">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Apellido del docente</label>
<input value="<?php echo $APEDOCENTE; ?>" type="text" class="form-control" placeholder="Apellido del docente" id="apedocente" name="apedocente">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Profesion del docente</label>
<input value="<?php echo $PROFDOCENTE; ?>" type="text" class="form-control" placeholder="profesion" id="profdocente" name="profdocente">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Tipo de contrato</label>
<select id="tipocontrato" name="tipocontrato" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Tipo--</option>
<?php
$tipo = array(
1=> "HORAS CLASE",
2=> "PLAZA"
);
foreach($tipo as $key => $d) { ?>
<option d="<?php echo $key ?>" <?php if($TIPOCONTRATO==$d){ echo 'selected="selected"';} ?>><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Correo</label>
<input value="<?php echo $CORREODOCENTE; ?>" type="email" pattern=".+@ues\.edu\.sv" class="form-control" placeholder="correo" id="correodocente" name="correodocente">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Id departamento</label>
<select id="iddepto" name="iddepto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Departamento --</option>
<?php
$querydc= $this->db->query("SELECT * FROM DEPARTAMENTO ");
foreach ($querydc->result() as $dc){
?>
<option value="<?php echo $dc->IDDEPTO ?>" <?php if($IDDEPTO==$dc->IDDEPTO){ echo 'selected="selected"';} ?> ><?php echo $dc->NOMBREDEPTO?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><?php defined('BASEPATH') OR exit('No direct script access allowed');
class probar extends CI_Model{
function __construct(){
parent::__construct();
$this->load->database();
}
public function registrar($datos){
$this->db->insert("PROBAR",array("NOMBRE"=>$datos["nombre"],
"APELLIDO"=>$datos["apellido"]));
}
}
?><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modificar horario </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/horario_editar/<?php echo $IDHORARIO_GRU; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-12 pr-1">
<div class="form-group">
<label>Grupo</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar grupo --</option>
<?php
$iddocente=$_SESSION['Nombre'];
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
$querygrupo= $this->db->query("SELECT * FROM GRUPOS WHERE IDCOORDINADOR='".$coor->IDCOORDINADOR."'");
foreach ($querygrupo->result() as $grupo){
$querymate= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."'");
foreach ($querymate->result() as $mate){
if($grupo->ESTADOGRUPO!='I' && $grupo->ESTGRUPO!='DESHABILITADO'){
?>
<option value="<?php echo $grupo->IDGRUPOS ?>" <?php if($IDGRUPOS==$grupo->IDGRUPOS){ echo 'selected="selected"';} ?> ><?php echo $mate->NOMMATERIA." #".$grupo->NUMGRUPO?></option>
<?php
//echo "<option class='' value='".$grupo->IDGRUPOS."'>" .$mate->NOMMATERIA." #".$grupo->NUMGRUPO."</option>"; // displaying data in option menu
}
}
}
}
?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Aula</label>
<select id="idaula" name="idaula" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Aula --</option>
<?php
$queryaula= $this->db->query("SELECT * FROM AULAS");
foreach ($queryaula->result() as $aula){
?>
<option value="<?php echo $aula->IDAULA ?>" <?php if($IDAULA==$aula->IDAULA){ echo 'selected="selected"';} ?> ><?php echo $aula->NUMAULA?></option>
<?php
//echo "<option class='' value='".$aula->IDAULA."'>" .$aula->NUMAULA." </option>"; // displaying data in option menu
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Dia</label>
<select id="diahorario" name="diahorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Dia--</option>
<?php
$dia = array(
1=> "L",
2=> "M",
3=> "X",
4=> "J",
5=> "V"
);
foreach($dia as $key => $d) { ?>
<option d="<?php echo $key ?>" <?php if($DIAHORARIO==$d){ echo 'selected="selected"';} ?> ><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Hora</label>
<select id="horashorario" name="horashorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Hora --</option>
<?php
$horas = array(
1=> "07:00 - 08:00",
2=> "08:00 - 09:00",
3=> "09:00 - 10:00",
4=> "10:00 - 11:00",
5=> "11:00 - 12:00",
6=> "13:00 - 14:00",
7=> "14:00 - 15:00",
8=> "15:00 - 16:00",
9=> "16:00 - 17:00",
10=> "17:00 - 18:00"
);
foreach($horas as $key => $h) { ?>
<option h="<?php echo $key ?>" <?php if($HORASHORARIO==$h){ echo 'selected="selected"';} ?> ><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Fin de Modal --><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar materia </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_materias/<?php echo $IDMATERIA; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Codigo materia</label>
<input type="text" class="form-control" placeholder="codigo materia" id="codmateria" name="codmateria" value="<?php echo $CODMATERIA; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nivel de materia</label>
<input type="text" class="form-control" placeholder="Nivel de materia" id="nivelmateria" name="nivelmateria" value="<?php echo $NIVELMATERIA; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre de materia</label>
<input type="text" class="form-control" placeholder="Nombre de materia" id="nommateria" name="nommateria" value="<?php echo $NOMMATERIA; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Requisito</label>
<input type="text" class="form-control" placeholder="Requisito" id="requisito" name="requisito" value="<?php echo $REQUISITO; ?>">
</div>
</div>
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$querycm= $this->db->query("SELECT * FROM CARRERA ");
foreach ($querycm->result() as $cm){
?>
<option value="<?php echo $cm->IDCARRERA ?>" <?php if($IDCARRERA==$cm->IDCARRERA){ echo 'selected="selected"';} ?> ><?php echo $cm->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Proyecto </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/social_editar/<?php echo $IDHORASSOCIALES; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-12 pr-1">
<div class="form-group">
<label>Nombre Proyecto</label>
<input readonly type="text" class="form-control" placeholder="Nombre del pryecto" id="nomproyecto" name="nomproyecto" value="<?php echo $NOMPROYECTO; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Duracion</label>
<input readonly type="text" class="form-control" placeholder="Duracion" id="duracionproyec" name="duracionproyec" value="<?php echo $DURACIONPROYEC; ?>">
</div>
</div>
<div class="col-md-6 px-1">
<div class="form-group">
<span class="btn btn-warning btn-file">
Subir Anteproyecto<input type="file" name="file" value="<?php echo $ANTEPROYECTO; ?>" />
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Tutor</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$querydoc= $this->db->query("SELECT * FROM DOCENTE ");
foreach ($querydoc->result() as $doc){
?>
<option value="<?php echo $doc->IDDOCENTE ?>" <?php if($IDDOCENTE==$doc->IDDOCENTE){ echo 'selected="selected"';} ?> ><?php echo $doc->NOMDOCENTE." ".$doc->APEDOCENTE?></option>
<?php
//echo "<option class='' value='".$doc->IDDOCENTE."'>" .$doc->NOMDOCENTE." ".$doc->APEDOCENTE."</option>"; // displaying data in option menu
}
?>
</select>
</div>
</div>
</div>
<?php
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
echo"<input type='hidden' class='form-control' id='idestudiante' name='idestudiante' value='".$estudiante->IDESTUDIANTE."'>";
}
?>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Fin de Modal --><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar reporte </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_reportechoque/<?php echo $IDCHOQUE; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id Coordinador</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Coordinador --</option>
<?php
$querycch= $this->db->query("SELECT * FROM COORDINADOR ");
foreach ($querycch->result() as $cch){
?>
<option value="<?php echo $cch->IDCOORDINADOR ?>" <?php if($IDCOORDINADOR==$cch->IDCOORDINADOR){ echo 'selected="selected"';} ?> ><?php echo $cch->NOMCOOR." ".$cch->APECOOR?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$querypes= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($querypes->result() as $pe){
?>
<option value="<?php echo $pe->IDESTUDIANTE ?>" <?php if($IDESTUDIANTE==$pe->IDESTUDIANTE){ echo 'selected="selected"';} ?> ><?php echo $pe->NOMESTUDIANTE." ".$pe->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Comentario</label>
<input type="text" class="form-control" placeholder="comentario" id="comentariochoque" name="comentariochoque" value="<?php echo $COMENTARIOCHOQUE; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Inscripcion </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_inscripcion/<?php echo $IDINCRIPCION; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$queryie= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($queryie->result() as $ie){
?>
<option value="<?php echo $ie->IDESTUDIANTE ?>" <?php if($IDESTUDIANTE==$ie->IDESTUDIANTE){ echo 'selected="selected"';} ?> ><?php echo $ie->NOMESTUDIANTE." ".$ie->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id grupos</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Grupo --</option>
<?php
$queryig= $this->db->query("SELECT * FROM GRUPOS ");
foreach ($queryig->result() as $ig){
?>
<option value="<?php echo $ig->IDGRUPOS ?>"<?php if($IDGRUPOS==$ig->IDGRUPOS){ echo 'selected="selected"';} ?> ><?php echo $ig->NUMGRUPO?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Proyectos de horas sociales</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="content">
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Reportes</h4>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="yecto">
<thead class=" text-primary">
<th>#</th>
<th>COMENTARIO</th>
<th>FECHA</th>
</thead>
<tbody>
<?php
$number=1;
$iddocente=$_SESSION['Nombre'];
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coordinador){
$queryidreporte= $this->db->query("SELECT * FROM REPORTECHOQUE WHERE IDCOORDINADOR='".$coordinador->IDCOORDINADOR."'");
foreach ($queryidreporte->result() as $reporte){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $reporte->COMENTARIOCHOQUE; ?></td>
<td><?php echo $reporte->FECHACHOQUE;?></td>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal Modificar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Accion </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_accion/<?php echo $IDACCION; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Fecha de inicio</label>
<input type="date" value="01/01/2012" class="form-control datepicker" placeholder="Num. aula" id="fechainicio" name="fechainicio">
</div>
</div>
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Fecha de fin</label>
<input type="date" value="01/01/2012" class="" placeholder="Num. aula" id="fechafinal" name="fechafinal">
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Mi Pensum</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<section class="row" id="grupo">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<?php
$number=1;
$idestudiante=$_SESSION['Nombre'];
$tipo=$_SESSION['TipoUsuario'];
if($tipo=='ESTUDIANTE'){
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidcarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$estudiante->IDCARRERA."'");
foreach ($queryidcarrera->result() as $carrera){
?>
<h4 class="card-title"><?php echo $carrera->NOMCARRERA?> </h4>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" >
<thead class=" text-primary">
<th>#</th>
<th>CODIGO</th>
<th>NOMBRE</th>
<th>CICLO</th>
<th>REQUISITOS</th>
</thead>
<tbody>
<?php
$queryidcarrera= $this->db->query("SELECT * FROM MATERIAS WHERE IDCARRERA='".$carrera->IDCARRERA."' ORDER BY NIVELMATERIA ASC");
foreach ($queryidcarrera->result() as $materia){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->CODMATERIA;?></td>
<td><?php echo $materia->NOMMATERIA; ?></td>
<td><?php echo $materia->NIVELMATERIA; ?></td>
<td><?php echo $materia->REQUISITO; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<?php
}
}
}
if($tipo=='COORDINADOR'){
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$idestudiante."'");
foreach ($queryidcoor->result() as $coor){
$queryidcarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$coor->IDCARRERA."'");
foreach ($queryidcarrera->result() as $carrera){
?>
<h4 class="card-title"><?php echo $carrera->NOMCARRERA?> </h4>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" >
<thead class=" text-primary">
<th>#</th>
<th>CODIGO</th>
<th>NOMBRE</th>
<th>CICLO</th>
<th>REQUISITOS</th>
</thead>
<tbody>
<?php
$queryidcarrera= $this->db->query("SELECT * FROM MATERIAS WHERE IDCARRERA='".$carrera->IDCARRERA."' ORDER BY NIVELMATERIA ASC");
foreach ($queryidcarrera->result() as $materia){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->CODMATERIA;?></td>
<td><?php echo $materia->NOMMATERIA; ?></td>
<td><?php echo $materia->NIVELMATERIA; ?></td>
<td><?php echo $materia->REQUISITO; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<?php
}
}
}
?>
<file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Grupos </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/grupos_actualizar/<?php echo $IDGRUPOS; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-3 pr-1">
<div class="form-group">
<label># de grupo</label>
<input type="text" class="form-control" placeholder="# de grupo" id="numgrupo" name="numgrupo" value="<?php echo $IDGRUPOS; ?>">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Cantidad de cupos</label>
<input type="text" class="form-control" placeholder="Cantidad de cupos" id="cantcupos" name="cantcupos" value="<?php echo $CANTCUPOS; ?>">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Ciclo</label>
<input type="text" class="form-control" placeholder="Ciclo" id="ciclogrupo" name="ciclogrupo" value="<?php echo $CICLOGRUPO; ?>">
</div>
</div>
<div class="col-md-3 px-1">
<div class="form-group">
<label>Año</label>
<input type="text" class="form-control" placeholder="Año" id="aniogrupo" name="aniogrupo" value="<?php echo $ANIOGRUPO; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-3 pr-1">
<div class="form-group">
<label>Estado de grupo</label>
<select class="form-control" name='estgrupo' id='estgrupo'>
<option value="HABILITADO"<?php if($ESTGRUPO=="HABILITADO") echo 'selected="selected"'; ?> >HABILITADO</option>
<option value="DESHABILITADO"<?php if($ESTGRUPO=="DESHABILITADO") echo 'selected="selected"'; ?> >DESHABILITADO</option>
<option value="LLENO"<?php if($ESTGRUPO=="LLENO") echo 'selected="selected"'; ?> >LLENO</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Materia</label>
<select id="idmateria" name="idmateria" class="form-control " >
<?php
$iddocente=$_SESSION['Nombre'];
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$coor->IDCARRERA."'");
foreach ($querycarrera->result() as $carre){
$querymate= $this->db->query("SELECT * FROM MATERIAS WHERE IDCARRERA='".$carre->IDCARRERA."'");
foreach ($querymate->result() as $mate){
if($grupo->ESTADOGRUPO!='I' && $grupo->ESTGRUPO!='DESHABILITADO'){
?>
<option value="<?php echo $mate->IDMATERIA ?>" <?php if($IDMATERIA==$mate->IDMATERIA){ echo 'selected="selected"';} ?> ><?php echo $mate->NOMMATERIA?></option>
<?php
//echo "<option class='' value='".$mate->IDMATERIA."' selected>" .$mate->NOMMATERIA."</option>"; // displaying data in option menu
}
}
}
}
?>
</select>
</div>
</div>
<div class="col-md-6 px-1">
<div class="form-group">
<label>Docente</label>
<select id="iddocente" name="iddocente" class="form-control">
<?php
$queryidcoor= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoor->result() as $coor){
// echo"<input type='hidden' class='form-control' id='idcoordinador' name='dcoordinador' value='".$coor->IDCOORDINADOR."'>";
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDCARRERA='".$coor->IDCARRERA."'");
foreach ($querycarrera->result() as $carre){
$querydep= $this->db->query("SELECT * FROM DEPARTAMENTO WHERE IDDEPTO='".$carre->IDDEPTO."'");
foreach ($querydep->result() as $dep){
$querydoc= $this->db->query("SELECT * FROM DOCENTE WHERE IDDEPTO='".$dep->IDDEPTO."'");
foreach ($querydoc->result() as $doc){
?>
<option value="<?php echo $doc->IDDOCENTE ?>" <?php if($IDDOCENTE==$doc->IDDOCENTE){ echo 'selected="selected"';} ?> ><?php echo $doc->NOMDOCENTE." ".$doc->APEDOCENTE?></option>
<?php
//echo "<option class='' value='".$doc->IDDOCENTE."' selected>" .$doc->NOMDOCENTE." ".$doc->APEDOCENTE."</option>"; // displaying data in option menu
}
}
}
}
?>
</select>
<?php
$queryidcoord= $this->db->query("SELECT * FROM COORDINADOR WHERE CORREOCOOR='".$iddocente."'");
foreach ($queryidcoord->result() as $coord){
echo"<input type='hidden' class='form-control' id='idcoordinador' name='idcoordinador' value='".$coord->IDCOORDINADOR."'>";
}
?>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<?php
$var1=1;
$var2=100;
$correo=$_SESSION['Nombre'];
$valoresY=array();//cantidad
$valoresX=array();//carrera
$queryid= $this->db->query("SELECT IDJEFE FROM JEFE WHERE CORREOJEFE='".$correo."'");
foreach ($queryid->result() as $jefe){
$querydepartamento= $this->db->query("SELECT * FROM DEPARTAMENTO WHERE IDJEFE=".$jefe->IDJEFE."");
foreach ($querydepartamento->result() as $depto){
$querycarrera= $this->db->query("SELECT * FROM CARRERA WHERE IDDEPTO=".$depto->IDDEPTO."");
foreach ($querycarrera->result() as $carrera){
$contador=0;
$valoresX[]=$carrera->NOMCARRERA;
$queryestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE IDCARRERA=".$carrera->IDCARRERA."");
foreach ($queryestudiante->result() as $estudiante){
$queryehoras= $this->db->query("SELECT * FROM HORAS_SOCIALES WHERE IDESTUDIANTE=".$estudiante->IDESTUDIANTE." AND ESTADOPROYECTO='P'");
foreach ($queryehoras->result() as $horas){
$contador++;
}
}
$valoresY[]=$contador;
}
}
}
$datosX=json_encode($valoresX);
$datosY=json_encode($valoresY);
?> <h1><?php $datosX ?><h1>
<div id="graficaBarras"></div>
<script type="text/javascript">
function crearCadenaBarras(json){
var parsed = JSON.parse(json);
var arr = [];
for(var x in parsed){
arr.push(parsed[x]);
}
return arr;
}
</script>
<script type="text/javascript">
datosX=crearCadenaBarras('<?php echo $datosX ?>');
datosY=crearCadenaBarras('<?php echo $datosY ?>');
var data = [
{
x: datosX,
y: datosY,
type: 'bar'
}
];
Plotly.newPlot('graficaBarras', data);
</script>
<?php
?>
<file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Tablas</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
#scroll {
overflow:auto;
max-height:27em;
width:100%;
}
</style>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
#scrolll {
overflow:auto;
width:100%;
} </style>
<!-- End Navbar -->
<script language="javascript">
function doSearch(nombre,apellido)
{
const tableReg = document.getElementById(nombre);
const searchText = document.getElementById(apellido).value.toLowerCase();
let total = 0;
// Recorremos todas las filas con contenido de la tabla
for (let i = 1; i < tableReg.rows.length; i++) {
// Si el td tiene la clase "noSearch" no se busca en su cntenido
if (tableReg.rows[i].classList.contains("noSearch")) {
continue;
}
let found = false;
const cellsOfRow = tableReg.rows[i].getElementsByTagName('td');
// Recorremos todas las celdas
for (let j = 0; j < cellsOfRow.length && !found; j++) {
const compareWith = cellsOfRow[j].innerHTML.toLowerCase();
// Buscamos el texto en el contenido de la celda
if (searchText.length == 0 || compareWith.indexOf(searchText) > -1) {
found = true;
total++;
}
}
if (found) {
tableReg.rows[i].style.display = '';
} else {
// si no ha encontrado ninguna coincidencia, esconde la
// fila de la tabla
tableReg.rows[i].style.display = 'none';
}
}
// mostramos las coincidencias
const lastTR=tableReg.rows[tableReg.rows.length-1];
const td=lastTR.querySelector("td");
lastTR.classList.remove("hide", "red");
if (searchText == "") {
lastTR.classList.add("hide");
} else if (total) {
td.innerHTML="Se ha encontrado "+total+" coincidencia"+((total>1)?"s":"");
} else {
lastTR.classList.add("red");
td.innerHTML="No se han encontrado coincidencias";
}
}
</script>
<style>
#datos {border:1px solid #ccc;padding:10px;font-size:1em;}
#datos tr:nth-child(even) {background:#ccc;}
#datos td {padding:5px;}
#datos tr.noSearch {background:White;font-size:0.8em;}
#datos tr.noSearch td {padding-top:10px;text-align:right;}
.hide {display:none;}
.red {color:Red;}
</style>
<div class="content">
<!-- **************************************************
************** TABLA ACCION *************************
*******************************************************-->
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Acciones</h4>
<!--<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_accion" >Agregar Accion</button>
Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_accion" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Accion </h5>
</div>
<?php echo form_open("tablas/agregar_accion")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Fecha de inicio</label>
<input type="date" value="<?php echo date('d-m-y'); ?>" class="form-control datepicker" placeholder="Num. aula" id="fechainicio" name="fechainicio">
</div>
</div>
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Fecha de fin</label>
<input type="date" value="<?php echo date('d-m-y'); ?>" class="form-control datepicker" placeholder="Num. aula" id="fechafinal" name="fechafinal">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scrolll" class="table-responsive">
<table class="table" id="accionesv">
<thead class=" text-primary">
<th>#</th>
<th>IDACCION</th>
<th>Fecha de inicio</th>
<th>Fecha de fin</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($accion as $key => $acc) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $acc->IDACCION;?></td>
<td><?php echo $acc->FECHAINICIO; ?></td>
<td><?php echo $acc->FECHAFINAL; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_accion/<?php echo $acc->IDACCION; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<!--<a href="<?php echo base_url(); ?>tablas/eliminar_accion/<?php echo $acc->IDACCION; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a>--> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULA *************************
*******************************************************-->
<section id="aula" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Aula</h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_aula">Agregar aula</button>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#vermapa">Consultar mapa</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_aula" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Aula </h5>
</div>
<?php echo form_open("tablas/agregar_aulas")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>NUMERO DE AULA</label>
<input type="text" class="form-control" placeholder="Num. aula" id="numaula" name="numaula">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="vermapa" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<img src='https://uca.edu.sv/wp-content/uploads/2016/06/mapa-campus-uca.jpg'>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="aulass" type="text" onkeyup="doSearch('aulas','aulass')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="aulas">
<thead class=" text-primary">
<th>#</th>
<th>IDAULA</th>
<th>Numero de aula</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($aulas as $key => $aula) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $aula->IDAULA;?></td>
<td><?php echo $aula->NUMAULA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_aulas/<?php echo $aula->IDAULA; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_aulas/<?php echo $aula->IDAULA; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA CARRERA *************************
*******************************************************-->
<section id="carrera" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Carrera </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_carrera">Agregar Carrera</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_carrera" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Carrera </h5>
</div>
<?php echo form_open("tablas/agregar_carrera")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id departamento</label>
<select id="iddepto" name="iddepto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Departamento --</option>
<?php
$querydc= $this->db->query("SELECT * FROM DEPARTAMENTO ");
foreach ($querydc->result() as $dc){
?>
<option value="<?php echo $dc->IDDEPTO ?>" ><?php echo $dc->NOMBREDEPTO?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Codigo de carrera</label>
<input type="text" class="form-control" placeholder="Codigo de carrera" id="codcarrera" name="codcarrera">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Materias</label>
<input type="text" class="form-control" placeholder="Num materias" id="materias" name="materias">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 ">
<div class="form-group">
<label>Nombre de carrera</label>
<input type="text" class="form-control" placeholder="Nombre de carrera" id="nomcarrera" name="nomcarrera">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="carrerass" type="text" onkeyup="doSearch('carrerav','carrerass')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="carrerav">
<thead class=" text-primary">
<th>#</th>
<th>IDCARRERA</th>
<th>ID DEPTO</th>
<th>COD DE CARRERA</th>
<th>MATERERIAS</th>
<th>NOMBRE</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($carrera as $key => $carrera) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $carrera->IDCARRERA;?></td>
<td><?php echo $carrera->IDDEPTO; ?></td>
<td><?php echo $carrera->CODCARRERA; ?></td>
<td><?php echo $carrera->MATERIAS; ?></td>
<td><?php echo $carrera->NOMCARRERA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_carrera/<?php echo $carrera->IDCARRERA;?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_carrera/<?php echo $carrera->IDCARRERA; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE COORDINADOR *************************
*******************************************************-->
<section id="coordinador" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Coordinador </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_coordinador">Agregar coordinador</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_coordinador" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Coordinador </h5>
</div>
<?php echo form_open("tablas/agregar_coordinador")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$querycc= $this->db->query("SELECT * FROM CARRERA ");
foreach ($querycc->result() as $cc){
?>
<option value="<?php echo $cc->IDCARRERA ?>" ><?php echo $cc->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Nombre coordinador</label>
<input type="text" class="form-control" placeholder="Nombre del coordinador" id="nomcoor" name="nomcoor">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 ">
<div class="form-group">
<label>Apellido</label>
<input type="text" class="form-control" placeholder="apellido" id="apecoor" name="apecoor">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="coordinadors" type="text" onkeyup="doSearch('coordinadorv','coordinadors')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="coordinadorv">
<thead class=" text-primary">
<th>#</th>
<th>ID COORDINADOR</th>
<th>ID CARRERA</th>
<th>NOMBRE</th>
<th>APELLIDO</th>
<th>CORREO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($coordinador as $key => $coordinador) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $coordinador->IDCOORDINADOR;?></td>
<td><?php echo $coordinador->IDCARRERA; ?></td>
<td><?php echo $coordinador->NOMCOOR; ?></td>
<td><?php echo $coordinador->APECOOR; ?></td>
<td><?php echo $coordinador->CORREOCOOR; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_coordinador/<?php echo $coordinador->IDCOORDINADOR; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_coordinador/<?php echo $coordinador->IDCOORDINADOR; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE DEPARTAMENTO *************************
*******************************************************-->
<section id="departamento" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Departamento </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_departamento">Agregar departamento</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_departamento" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Departamento </h5>
</div>
<?php echo form_open("tablas/agregar_departamento")?>
<div class="modal-body">
<div class="row">
<div class="col-md-8 pr-1">
<div class="form-group">
<label>Nombre de departamento</label>
<input type="text" class="form-control" placeholder="Nombre de departamento" id="nombredepto" name="nombredepto">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Id jefe</label>
<select id="idjefe" name="idjefe" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Jefe --</option>
<?php
$querydj= $this->db->query("SELECT * FROM JEFE ");
foreach ($querydj->result() as $dj){
?>
<option value="<?php echo $dj->IDJEFE ?>" ><?php echo $dj->NOMJEFE." ".$dj->APEJEFE?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="deptos" type="text" onkeyup="doSearch('depto','deptos')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="depto">
<thead class=" text-primary">
<th>#</th>
<th>ID DEPTO</th>
<th>ID JEFE</th>
<th>NOMBRE DE DEPARTAMENTO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($departamento as $key => $departamento) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $departamento->IDDEPTO;?></td>
<td><?php echo $departamento->IDJEFE; ?></td>
<td><?php echo $departamento->NOMBREDEPTO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_departamento/<?php echo $departamento->IDDEPTO; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_departamento/<?php echo $departamento->IDDEPTO; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE DOCENTE *************************
*******************************************************-->
<section id="docente" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Docente </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_docente">Agregar docente</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_docente" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Docente </h5>
</div>
<?php echo form_open("tablas/agregar_docente")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del docente</label>
<input type="text" class="form-control" placeholder="Nombre del docente" id="nomdocente" name="nomdocente">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Apellido del docente</label>
<input type="text" class="form-control" placeholder="Apellido del docente" id="apedocente" name="apedocente">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Profesion del docente</label>
<input type="text" class="form-control" placeholder="profesion" id="profdocente" name="profdocente">
</div>
</div>
<div class="col-md-4">
<div class="form-group">
<label>Tipo de contrato</label>
<select id="tipocontrato" name="tipocontrato" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Tipo--</option>
<?php
$tipo = array(
1=> "HORAS CLASE",
2=> "PLAZA"
);
foreach($tipo as $key => $d) { ?>
<option d="<?php echo $key ?>"><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 ">
<div class="form-group">
<label>Id departamento</label>
<select id="iddepto" name="iddepto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Departamento --</option>
<?php
$querydc= $this->db->query("SELECT * FROM DEPARTAMENTO ");
foreach ($querydc->result() as $dc){
?>
<option value="<?php echo $dc->IDDEPTO ?>" ><?php echo $dc->NOMBREDEPTO?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="docentesv" type="text" onkeyup="doSearch('docentev','docentesv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="docentev">
<thead class=" text-primary">
<th>#</th>
<th>ID DOCENTE</th>
<th>ID DEPTO</th>
<th>NOMBRE DEL DOCENTE</th>
<th>APELLIDO</th>
<th>PROFESION</th>
<th>TIPO DE CONTRATO</th>
<th>FEHCA DE INGRESO</th>
<th>CORREO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($docentes as $key => $docentes) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $docentes->IDDOCENTE;?></td>
<td><?php echo $docentes->IDDEPTO; ?></td>
<td><?php echo $docentes->NOMDOCENTE; ?></td>
<td><?php echo $docentes->APEDOCENTE; ?></td>
<td><?php echo $docentes->PROFDOCENTE; ?></td>
<td><?php echo $docentes->TIPOCONTRATO; ?></td>
<td><?php echo $docentes->INGREDOCENTE; ?></td>
<td><?php echo $docentes->CORREODOCENTE; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_docente/<?php echo $docentes->IDDOCENTE; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_docente/<?php echo $docentes->IDDOCENTE; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE ESTUDIANTES *************************
*******************************************************-->
<section id="estudiantes" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Estudiante </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_estudiantes">Agregar estudiante</button>
<?php echo form_open_multipart('Excel_import/import_data');?>
<span class="btn btn-warning btn-file">
Seleccion Excel<input type="file" name="file" />
</span>
<input class="btn btn-info" type="submit" value="Importar" />
</form>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_estudiantes" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar estudiante </h5>
</div>
<?php echo form_open("tablas/agregar_estudiantes")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$queryce= $this->db->query("SELECT * FROM CARRERA ");
foreach ($queryce->result() as $cc){
?>
<option value="<?php echo $cc->IDCARRERA ?>" ><?php echo $cc->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del estudiante</label>
<input type="text" class="form-control" placeholder="Nombre" id="nomestudiante" name="nomestudiante">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Apellido</label>
<input type="text" class="form-control" placeholder="Apellido" id="apelestudiante" name="apelestudiante">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Telefono del estudiante</label>
<input type="text" class="form-control" placeholder="Telefono" id="telestudiante" name="telestudiante">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="estudiantesv" type="text" onkeyup="doSearch('estudiantev','estudiantesv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="estudiantev">
<thead class=" text-primary">
<th>#</th>
<th>ID ESTUDIANTE</th>
<th>ID CARRERA</th>
<th>NOMBRE DEL ESTUDIANTE</th>
<th>APELLIDO</th>
<th>CARNET</th>
<th>CORREO</th>
<th>TELEFONO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($estudiantes as $key => $estudiantes) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $estudiantes->IDESTUDIANTE;?></td>
<td><?php echo $estudiantes->IDCARRERA; ?></td>
<td><?php echo $estudiantes->NOMESTUDIANTE; ?></td>
<td><?php echo $estudiantes->APELESTUDIANTE; ?></td>
<td><?php echo $estudiantes->CARNETESTU; ?></td>
<td><?php echo $estudiantes->CORREOESTU; ?></td>
<td><?php echo $estudiantes->TELESTUDIANTE; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_estudiantes/<?php echo $estudiantes->IDESTUDIANTE; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_estudiantes/<?php echo $estudiantes->IDESTUDIANTE; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE GRUPOS *************************
******************************************************* -->
<section class="row" id="grupo">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Grupos </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_grupos">Agregar grupos</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_grupos" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Grupos </h5>
</div>
<?php echo form_open("tablas/agregar_grupos")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id materia</label>
<select id="idmateria" name="idmateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Materia --</option>
<?php
$querymg= $this->db->query("SELECT * FROM MATERIAS ");
foreach ($querymg->result() as $mg){
?>
<option value="<?php echo $mg->IDMATERIA ?>" ><?php echo $mg->NOMMATERIA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id coordinador</label>
<select id="idcoordinador" name="idcoordinador" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Coordinador --</option>
<?php
$querycg= $this->db->query("SELECT * FROM COORDINADOR ");
foreach ($querycg->result() as $cg){
?>
<option value="<?php echo $cg->IDCOORDINADOR ?>" ><?php echo $cg->NOMCOOR." ".$cg->APECOOR?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Canttidad de cupos</label>
<input type="text" class="form-control" placeholder="cantidad de cupos" id="cantcupos" name="cantcupos">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Num de grupo</label>
<input type="text" class="form-control" placeholder="Num de grupo" id="numgrupo" name="numgrupo">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Ciclo del grupo</label>
<select id="ciclogrupo" name="ciclogrupo" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Ciclo--</option>
<?php
$ci = array(
1=> "CICLO 1",
2=> "CICLO 2"
);
foreach($ci as $key => $d) { ?>
<option d="<?php echo $key ?>"><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Año</label>
<input type="text" class="form-control" placeholder="año" id="aniogrupo" name="aniogrupo">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado</label>
<select id="estgrupo" name="estgrupo" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estado--</option>
<?php
$est = array(
1=> "HABILITADO",
2=> "DESHABILITADO"
);
foreach($est as $key => $d) { ?>
<option d="<?php echo $key ?>"><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id Docente</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$querydg= $this->db->query("SELECT * FROM DOCENTE ");
foreach ($querydg->result() as $dg){
?>
<option value="<?php echo $dg->IDDOCENTE ?>" ><?php echo $dg->NOMDOCENTE." ".$dg->APEDOCENTE?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="gruposv" type="text" onkeyup="doSearch('grupov','gruposv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="grupov">
<thead class=" text-primary">
<th>#</th>
<th>ID GRUPOS</th>
<th>ID COORDINADOR</th>
<th>ID MATERIA</th>
<th>CANTIDAD CUPOS</th>
<th>FECHA CREACION</th>
<th>NUM GRUPOS</th>
<th>CICLO</th>
<th>AÑO</th>
<th>ESTADO</th>
<th>ID DOCENTE</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($grupo as $key => $grupo) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $grupo->IDGRUPOS;?></td>
<td><?php echo $grupo->IDCOORDINADOR; ?></td>
<td><?php echo $grupo->IDMATERIA; ?></td>
<td><?php echo $grupo->CANTCUPOS; ?></td>
<td><?php echo $grupo->FECHACREACION; ?></td>
<td><?php echo $grupo->NUMGRUPO; ?></td>
<td><?php echo $grupo->CICLOGRUPO; ?></td>
<td><?php echo $grupo->ANIOGRUPO; ?></td>
<td><?php echo $grupo->ESTGRUPO; ?></td>
<td><?php echo $grupo->IDDOCENTE; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_grupos/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_grupos/<?php echo $grupo->IDGRUPOS; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA AULAS DE GRUPOS *************************
******************************************************* -->
<section class="row" id="grupocopia">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Copia de Grupos </h4>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="gruposvn" type="text" onkeyup="doSearch('grupovn','gruposvn')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="grupovn">
<thead class=" text-primary">
<th>#</th>
<th>ID COPIA</th>
<th>ID GRUPO</th>
<th>CANTIDAD CUPOS</th>
<th>FECHA ACCION</th>
<th>NUM GRUPO</th>
<th>ACCION</th>
</thead>
<tbody>
<?php $number =1; foreach ($grupoc as $key => $grupoc) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $grupoc->IDCOPIAGRUPO;?></td>
<td><?php echo $grupoc->IDGRUPOS; ?></td>
<td><?php echo $grupoc->COP_CANTICUPOS; ?></td>
<td><?php echo $grupoc->FECHAMODIGRUPO; ?></td>
<td><?php echo $grupoc->COP_NUMGRUPO; ?></td>
<td><?php echo $grupoc->ACCIONCOPIA; ?></td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA HORARIO DE GRUPOS*************************
*******************************************************-->
<section id="horariosgrupos" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Horario de grupos </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_horario">Agregar horario</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_horario" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar horario </h5>
</div>
<?php echo form_open("tablas/agregar_horarios_grupos")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id grupo</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Grupo --</option>
<?php
$querygh= $this->db->query("SELECT * FROM GRUPOS ");
foreach ($querygh->result() as $gh){
?>
<option value="<?php echo $gh->IDGRUPOS ?>" ><?php echo $gh->NUMGRUPO?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Dia</label>
<select id="diahorario" name="diahorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Dia--</option>
<?php
$dia = array(
1=> "L",
2=> "M",
3=> "X",
4=> "J",
5=> "V"
);
foreach($dia as $key => $d) { ?>
<option d="<?php echo $key ?>"><?php echo $d ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Hora</label>
<select id="horashorario" name="horashorario" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Hora --</option>
<?php
$horas = array(
1=> "07:00 - 08:00",
2=> "08:00 - 09:00",
3=> "09:00 - 10:00",
4=> "10:00 - 11:00",
5=> "11:00 - 12:00",
6=> "13:00 - 14:00",
7=> "14:00 - 15:00",
8=> "15:00 - 16:00",
9=> "16:00 - 17:00",
10=> "17:00 - 18:00"
);
foreach($horas as $key => $h) { ?>
<option h="<?php echo $key ?>"><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id aula</label>
<select id="idaula" name="idaula" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Aula --</option>
<?php
$queryga= $this->db->query("SELECT * FROM AULAS ");
foreach ($queryga->result() as $ga){
?>
<option value="<?php echo $ga->IDAULA ?>" ><?php echo $ga->NUMAULA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="horariossv" type="text" onkeyup="doSearch('horariosv','horariossv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="horariosv">
<thead class=" text-primary">
<th>#</th>
<th>ID HORARIO DE GRUPO</th>
<th>ID GRUPO</th>
<th>ID AULA</th>
<th>DIA</th>
<th>HORA</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($horarios as $key => $horarios) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $horarios->IDHORARIO_GRU;?></td>
<td><?php echo $horarios->IDGRUPOS; ?></td>
<td><?php echo $horarios->IDAULA; ?></td>
<td><?php echo $horarios->DIAHORARIO; ?></td>
<td><?php echo $horarios->HORASHORARIO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_horarios_grupos/<?php echo $horarios->IDHORARIO_GRU; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_horarios_grupos/<?php echo $horarios->IDHORARIO_GRU; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA HORAS SOCIALES *************************
*******************************************************-->
<section id="horassociales" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Horas sociales </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_horas_sociales">Agregar horas sociales</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_horas_sociales" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar horas sociales </h5>
</div>
<?php echo form_open("tablas/agregar_horas_sociales")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$queryhe= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($queryhe->result() as $he){
?>
<option value="<?php echo $he->IDESTUDIANTE ?>" ><?php echo $he->NOMESTUDIANTE." ".$he->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del proyecto</label>
<input type="text" class="form-control" placeholder="nombre del proyecto" id="nomproyecto" name="nomproyecto">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Duracion del proyecto</label>
<input type="text" class="form-control" placeholder="Duracion" id="duracionproyec" name="duracionproyec">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Estado del proyecto</label>
<select id="estadoproyecto" name="estadoproyecto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Estado Proyecto --</option>
<?php
$estp = array(
1=> "P",
2=> "A"
);
foreach($estp as $key => $h) { ?>
<option h="<?php echo $key ?>"><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Ante-proyecto</label>
<input type="text" class="form-control" placeholder="Ante-proyecto" id="anteproyecto" name="anteproyecto">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado de ante proyecto</label>
<select id="estadoanteproyecto" name="estadoanteproyecto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Estado Anteproyecto --</option>
<?php
$estap = array(
1=> "P",
2=> "A"
);
foreach($estap as $key => $h) { ?>
<option h="<?php echo $key ?>"><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-8 px-1">
<div class="form-group">
<label>Comentario</label>
<input type="text" class="form-control" placeholder="Comentario" id="comentariopro" name="comentariopro">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id docente</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$queryhd= $this->db->query("SELECT * FROM DOCENTE ");
foreach ($queryhd->result() as $hd){
?>
<option value="<?php echo $hd->IDDOCENTE ?>" ><?php echo $hd->NOMDOCENTE." ".$hd->APEDOCENTE?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="socialess" type="text" onkeyup="doSearch('sociales','socialess')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="sociales">
<thead class=" text-primary">
<th>#</th>
<th>IDHORASSOCIALES</th>
<th>IDESTUDIANTE</th>
<th>IDDOCENTE</th>
<th>NOM. PROYECTO</th>
<th>DURACION</th>
<th>ESTADO</th>
<th>ANTE-PRO</th>
<th>EST. ANTE-PRO</th>
<th>FECHA</th>
<th>COMENTARIO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($sociales as $key => $sociales) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $sociales->IDHORASSOCIALES;?></td>
<td><?php echo $sociales->IDESTUDIANTE; ?></td>
<td><?php echo $sociales->IDDOCENTE; ?></td>
<td><?php echo $sociales->NOMPROYECTO; ?></td>
<td><?php echo $sociales->DURACIONPROYEC; ?></td>
<td><?php echo $sociales->ESTADOPROYECTO; ?></td>
<td><?php echo $sociales->ANTEPROYECTO; ?></td>
<td><?php echo $sociales->ESTADOANTEPROYECTO; ?></td>
<td><?php echo $sociales->FECHASOCIALES; ?></td>
<td><?php echo $sociales->COMENTARIOPRO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_horas_sociales/<?php echo $sociales->IDHORASSOCIALES; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_horas_sociales/<?php echo $sociales->IDHORASSOCIALES; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA INSCRIPCION *************************
*******************************************************-->
<section id="inscripcion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Inscripcion </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_inscripcion">Agregar inscripcion</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_inscripcion" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Inscripcion </h5>
</div>
<?php echo form_open("tablas/agregar_inscripcion")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$queryie= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($queryie->result() as $ie){
?>
<option value="<?php echo $ie->IDESTUDIANTE ?>" ><?php echo $ie->NOMESTUDIANTE." ".$ie->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id grupos</label>
<select id="idgrupos" name="idgrupos" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Grupo --</option>
<?php
$queryig= $this->db->query("SELECT * FROM GRUPOS ");
foreach ($queryig->result() as $ig){
?>
<option value="<?php echo $ig->IDGRUPOS ?>" ><?php echo $ig->NUMGRUPO?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="inscripcionsv" type="text" onkeyup="doSearch('inscripcionv','inscripcionsv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="inscripcionv">
<thead class=" text-primary">
<th>#</th>
<th>ID INSCRIPCION</th>
<th>ID ESTUDIANTE</th>
<th>ID GRUPOS</th>
<th>FECHA DE INSCRIPCION</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($inscripcion as $key => $inscripcion) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $inscripcion->IDINCRIPCION;?></td>
<td><?php echo $inscripcion->IDESTUDIANTE; ?></td>
<td><?php echo $inscripcion->IDGRUPOS; ?></td>
<td><?php echo $inscripcion->FECHAINSCRIP; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_inscripcion/<?php echo $inscripcion->IDINCRIPCION;?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_inscripcion/<?php echo $inscripcion->IDINCRIPCION; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA JEFE *************************
*******************************************************-->
<section id="jefe" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Jefe </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_jefe">Agregar jefe</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_jefe" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Jefe </h5>
</div>
<?php echo form_open("tablas/agregar_jefe")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre jefe</label>
<input type="text" class="form-control" placeholder="Nombre jefe" id="nomjefe" name="nomjefe">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Apellido jefe</label>
<input type="text" class="form-control" placeholder="Apellido" id="apejefe" name="apejefe">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="jefesv" type="text" onkeyup="doSearch('jefev','jefesv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="jefev">
<thead class=" text-primary">
<th>#</th>
<th>ID JEFE</th>
<th>CORREO</th>
<th>NOMBRE</th>
<th>APELLIDO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($jefe as $key => $jefe) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $jefe->IDJEFE;?></td>
<td><?php echo $jefe->CORREOJEFE;?></td>
<td><?php echo $jefe->NOMJEFE; ?></td>
<td><?php echo $jefe->APEJEFE; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_jefe/<?php echo $jefe->IDJEFE;?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_jefe/<?php echo $jefe->IDJEFE; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA MATERIAS *************************
*******************************************************-->
<section id="materias" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Materias </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_materias">Agregar Materia</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_materias" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar materia </h5>
</div>
<?php echo form_open("tablas/agregar_materias")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Codigo materia</label>
<input type="text" class="form-control" placeholder="codigo materia" id="codmateria" name="codmateria">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nivel de materia</label>
<input type="text" class="form-control" placeholder="Nivel de materia" id="nivelmateria" name="nivelmateria">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre de materia</label>
<input type="text" class="form-control" placeholder="Nombre de materia" id="nommateria" name="nommateria">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Requisito</label>
<input type="text" class="form-control" placeholder="Requisito" id="requisito" name="requisito">
</div>
</div>
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$querycm= $this->db->query("SELECT * FROM CARRERA ");
foreach ($querycm->result() as $cm){
?>
<option value="<?php echo $cm->IDCARRERA ?>" ><?php echo $cm->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="materiasv" type="text" onkeyup="doSearch('materiav','materiasv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="materiav">
<thead class=" text-primary">
<th>#</th>
<th>ID MATERIA</th>
<th>ID CARRERA</th>
<th>COD MATERIA</th>
<th>NIVEL</th>
<th>MATERIA</th>
<th>REQUISITO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($materia as $key => $materia) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->IDMATERIA;?></td>
<td><?php echo $materia->IDCARRERA; ?></td>
<td><?php echo $materia->CODMATERIA; ?></td>
<td><?php echo $materia->NIVELMATERIA; ?></td>
<td><?php echo $materia->NOMMATERIA; ?></td>
<td><?php echo $materia->REQUISITO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_materias/<?php echo $materia->IDMATERIA; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_materias/<?php echo $materia->IDMATERIA; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA PREINSCRIPCION *************************
*******************************************************-->
<section id="preinscripcion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Preinscripcion </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_preinscripcion">Agregar preinscripcion</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_preinscripcion" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Preinscripcion </h5>
</div>
<?php echo form_open("tablas/agregar_preinscripcion")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$querype= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($querype->result() as $pe){
?>
<option value="<?php echo $pe->IDESTUDIANTE ?>" ><?php echo $pe->NOMESTUDIANTE." ".$pe->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id materia</label>
<select id="idmateria" name="idmateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Materia --</option>
<?php
$querypm= $this->db->query("SELECT * FROM MATERIAS ");
foreach ($querypm->result() as $pm){
?>
<option value="<?php echo $pm->IDMATERIA ?>" ><?php echo $pm->NOMMATERIA?></option>
<?php
}
?>
</select>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="preinscripcionsvv" type="text" onkeyup="doSearch('vpreinscripcionv','preinscripcionsvv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="vpreinscripcionv">
<thead class=" text-primary">
<th>#</th>
<th>ID PREINSCRIPCION</th>
<th>ID ESTUDIANTE</th>
<th>ID MATERIA</th>
<th>FECHA</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($preinscripcion as $key => $preinscripcion) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $preinscripcion->IDPREINSCRIPCION;?></td>
<td><?php echo $preinscripcion->IDESTUDIANTE; ?></td>
<td><?php echo $preinscripcion->IDMATERIA; ?></td>
<td><?php echo $preinscripcion->FECHAPREINCRIPCION; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_preinscripcion/<?php echo $preinscripcion->IDPREINSCRIPCION; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_preinscripcion/<?php echo $preinscripcion->IDPREINSCRIPCION; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA REGISTRO DE ESTUDIANTE *************************
*******************************************************-->
<section id="registroestudiante" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Registro estudiante </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_registro">Agregar registrar nota</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_registro" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar registro de estudiante </h5>
</div>
<?php echo form_open("tablas/agregar_registro_estudiante")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id inscripcion</label>
<select id="idincripcion" name="idincripcion" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Inscripcion --</option>
<?php
$queryri= $this->db->query("SELECT * FROM INSCRIPCION ");
foreach ($queryri->result() as $ri){
?>
<option value="<?php echo $ri->IDINCRIPCION ?>" ><?php echo $ri->IDINCRIPCION?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>estado de materia</label>
<select id="estadomateria" name="estadomateria" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estado --</option>
<?php
$esm = array(
1=> "A",
2=> "C",
3=> "R"
);
foreach($esm as $key => $h) { ?>
<option h="<?php echo $key ?>"><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>nota de materia</label>
<input type="text" class="form-control" placeholder="nota" id="notamateria" name="notamateria">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="registroestudiantesv" type="text" onkeyup="doSearch('registroestudiantev','registroestudiantesv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="registroestudiantev">
<thead class=" text-primary">
<th>#</th>
<th>ID REGISTRO</th>
<th>ID INSCRIPCION</th>
<th>FECHA</th>
<th>ESTADO</th>
<th>NOTA</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($registroestudiante as $key => $registroestudiante) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $registroestudiante->IDREGISTROESTU;?></td>
<td><?php echo $registroestudiante->IDINCRIPCION; ?></td>
<td><?php echo $registroestudiante->FECHAREGIESTU; ?></td>
<td><?php echo $registroestudiante->ESTADOMATERIA; ?></td>
<td><?php echo $registroestudiante->NOTAMATERIA; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_registro_estudiante/<?php echo $registroestudiante->IDREGISTROESTU; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_registro_estudiante/<?php echo $registroestudiante->IDREGISTROESTU; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- **************************************************
************** TABLA REPORTE DE CHOQUE *************************
*******************************************************-->
<section id="reportechoque" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Reporte de choque </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_reporte">Agregar reporte</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_reporte" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar reporte </h5>
</div>
<?php echo form_open("tablas/agregar_reportechoque")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id Coordinador</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Coordinador --</option>
<?php
$querycch= $this->db->query("SELECT * FROM COORDINADOR ");
foreach ($querycch->result() as $cch){
?>
<option value="<?php echo $cch->IDCOORDINADOR ?>" ><?php echo $cch->NOMCOOR." ".$cch->APECOOR?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$querypes= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($querypes->result() as $pe){
?>
<option value="<?php echo $pe->IDESTUDIANTE ?>" ><?php echo $pe->NOMESTUDIANTE." ".$pe->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Comentario</label>
<input type="text" class="form-control" placeholder="comentario" id="comentariochoque" name="comentariochoque">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="reportechoquesv" type="text" onkeyup="doSearch('reportechoquev','reportechoquesv')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="reportechoquev">
<thead class=" text-primary">
<th>#</th>
<th>ID CHOQUE</th>
<th>ID ESTUDIANTE</th>
<th>ID COORDINADOR</th>
<th>FECHA</th>
<th>COMENTARIO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($reportechoque as $key => $reportechoque) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $reportechoque->IDCHOQUE;?></td>
<td><?php echo $reportechoque->IDESTUDIANTE; ?></td>
<td><?php echo $reportechoque->IDCOORDINADOR; ?></td>
<td><?php echo $reportechoque->FECHACHOQUE; ?></td>
<td><?php echo $reportechoque->COMENTARIOCHOQUE; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/seleccion_reportechoque/<?php echo $reportechoque->IDCHOQUE; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>tablas/eliminar_reportechoque/<?php echo $reportechoque->IDCHOQUE; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!-- FIN TABLAS -->
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Coordinador </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_coordinador/<?php echo $IDCOORDINADOR; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id carrera</label>
<select id="idcarrera" name="idcarrera" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Carrera --</option>
<?php
$querycc= $this->db->query("SELECT * FROM CARRERA ");
foreach ($querycc->result() as $cc){
?>
<option value="<?php echo $cc->IDCARRERA ?>" <?php if($IDCARRERA==$cc->IDCARRERA){ echo 'selected="selected"';} ?>><?php echo $cc->NOMCARRERA?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Correo</label>
<input type="email" pattern=".+<EMAIL>" class="form-control" placeholder="correo" id="correocoor" name="correocoor" value="<?php echo $CORREOCOOR; ?>">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Nombre coordinador</label>
<input type="text" class="form-control" placeholder="Nombre del coordinador" id="nomcoor" name="nomcoor" value="<?php echo $NOMCOOR; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 ">
<div class="form-group">
<label>Apellido</label>
<input type="text" class="form-control" placeholder="apellido" id="apecoor" name="apecoor" value="<?php echo $APECOOR; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- Fin de Modal --><file_sep><!--
=========================================================
* Paper Dashboard 2 - v2.0.1
=========================================================
* Product Page: https://www.creative-tim.com/product/paper-dashboard-2
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo base_url(); ?>assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="<?php echo base_url(); ?>assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
Sistema UES
</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS Files -->
<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>assets/css/paper-dashboard.css?v=2.0.1" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="<?php echo base_url(); ?>assets/demo/demo.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="<KEY>" crossorigin="anonymous"></script>
</head>
<body class="" style="background-color:#f4f3ef;">
<div class="wrapper ">
<div class="sidebar" data-color="white" data-active-color="danger">
<div class="logo">
<a class="simple-text logo-mini">
<!-- <div class="logo-image-small">
<img src="./assets/img/logo-small.png">
</div> -->
<!-- <p>CT</p> -->
</a>
<a class="simple-text logo-normal">
Adminstrador
<!-- <div class="logo-image-big">
<img src="../assets/img/logo-big.png">
</div> -->
</a>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="<?= $tablas ?>">
<a href="<?php echo base_url('tablas'); ?>">
<i class="nc-icon nc-layout-11"></i>
<p>Tablas</p>
</a>
</li>
<li class="<?= $usuarios ?>">
<a href="<?php echo base_url('usuarios'); ?>">
<i class="nc-icon nc-single-02"></i>
<p>Usuarios</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel" ><file_sep><!--
=========================================================
* Paper Dashboard 2 - v2.0.1
=========================================================
* Product Page: https://www.creative-tim.com/product/paper-dashboard-2
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
Coded by www.creative-tim.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="<?php echo base_url(); ?>assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="<?php echo base_url(); ?>assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
Paper Dashboard 2 by Creative Tim
</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700,200" rel="stylesheet" />
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS Files -->
<link href="<?php echo base_url(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
<link href="<?php echo base_url(); ?>assets/css/paper-dashboard.css?v=2.0.1" rel="stylesheet" />
<!-- CSS Just for demo purpose, don't include it in your project -->
<link href="<?php echo base_url(); ?>assets/demo/demo.css" rel="stylesheet" />
</head>
<body class="">
<div class="wrapper ">
<div class="sidebar" data-color="white" data-active-color="danger">
<div class="logo">
<a href="https://www.creative-tim.com" class="simple-text logo-mini">
<!-- <div class="logo-image-small">
<img src="./assets/img/logo-small.png">
</div> -->
<!-- <p>CT</p> -->
</a>
<a href="<?php echo base_url('sValor'); ?>" class="simple-text logo-normal">
Your Logo
<!-- <div class="logo-image-big">
<img src="../assets/img/logo-big.png">
</div> -->
</a>
</div>
<div class="sidebar-wrapper">
<ul class="nav">
<li class="<?= $dashboard ?>">
<a href="<?php echo base_url('sValor'); ?>">
<i class="nc-icon nc-bank"></i>
<p>First Item</p>
</a>
</li>
<li class="<?= $segundo ?>">
<a href="<?php echo base_url('Welcome'); ?>">
<i class="nc-icon nc-diamond"></i>
<p>Second Item</p>
</a>
</li>
<li class="<?= $tercero ?>">
<a href="javascript:;">
<i class="nc-icon nc-pin-3"></i>
<p>Third Item</p>
</a>
</li>
</ul>
</div>
</div>
<div class="main-panel" style="height: 100vh;"><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal Modificar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Carrera </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_carrera/<?php echo $IDCARRERA; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id departamento</label>
<select id="iddepto" name="iddepto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Departamento --</option>
<?php
$querydc= $this->db->query("SELECT * FROM DEPARTAMENTO ");
foreach ($querydc->result() as $dc){
?>
<option value="<?php echo $dc->IDDEPTO ?>" <?php if($IDDEPTO==$dc->IDDEPTO){ echo 'selected="selected"';} ?> ><?php echo $dc->NOMBREDEPTO?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Codigo de carrera</label>
<input type="text" value="<?php echo $CODCARRERA; ?>"class="form-control" placeholder="Codigo de carrera" id="codcarrera" name="codcarrera">
</div>
</div>
<div class="col-md-4 ">
<div class="form-group">
<label>Materias</label>
<input type="text" value="<?php echo $MATERIAS; ?>"class="form-control" placeholder="Num materias" id="materias" name="materias">
</div>
</div>
</div>
<div class="row">
<div class="col-md-12 ">
<div class="form-group">
<label>Nombre de carrera</label>
<input type="text" value="<?php echo $NOMCARRERA; ?>"class="form-control" placeholder="Nombre de carrera" id="nomcarrera" name="nomcarrera">
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</div>
</form>
</div>
</div>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<!-- Modal Modificar -->
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar Prueba </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar/<?php echo $IDP; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>NOMBRE</label>
<input type="text" class="form-control" name="nombre" value="<?php echo $NOMBRE; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>APELLIDO</label>
<input type="text" class="form-control" name="apellido" value="<?php echo $APELLIDO; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div>
<file_sep>-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 30-11-2020 a las 10:22:55
-- Versión del servidor: 10.4.13-MariaDB
-- Versión de PHP: 7.4.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `diariopeluditos`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `agenta`
--
CREATE TABLE `agenta` (
`IdAgenda` int(11) NOT NULL,
`Descripcion` varchar(100) COLLATE utf8mb4_spanish_ci NOT NULL,
`Hora` time NOT NULL,
`IdMascota` int(11) NOT NULL,
`IdUsuario` int(11) NOT NULL,
`Dia` varchar(20) COLLATE utf8mb4_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `comentario`
--
CREATE TABLE `comentario` (
`IdComentario` int(11) NOT NULL,
`Descripcion_comentario` varchar(250) COLLATE utf8mb4_spanish_ci NOT NULL,
`Fecha_comentario` date NOT NULL,
`IdUsuario` int(11) NOT NULL,
`IdPublicacion` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `mascota`
--
CREATE TABLE `mascota` (
`IdMascota` int(11) NOT NULL,
`Nombre_mascota` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`Sexo` varchar(10) COLLATE utf8mb4_spanish_ci NOT NULL,
`Tipo_mascota` varchar(20) COLLATE utf8mb4_spanish_ci NOT NULL,
`Raza_mascota` varchar(20) COLLATE utf8mb4_spanish_ci NOT NULL,
`Edad` int(2) NOT NULL,
`Foto_mascota` text COLLATE utf8mb4_spanish_ci NOT NULL,
`IdUsuario` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `prueba`
--
CREATE TABLE `prueba` (
`id` int(11) NOT NULL,
`nombre` varchar(100) COLLATE utf8mb4_spanish_ci NOT NULL,
`curso` varchar(100) COLLATE utf8mb4_spanish_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `publicacion`
--
CREATE TABLE `publicacion` (
`IdPublicacion` int(11) NOT NULL,
`Titulo` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`Descripcion_publicacion` varchar(250) COLLATE utf8mb4_spanish_ci NOT NULL,
`Fecha_publicacion` date NOT NULL,
`Foto` text COLLATE utf8mb4_spanish_ci NOT NULL,
`IdUsuario` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
--
-- Volcado de datos para la tabla `publicacion`
--
INSERT INTO `publicacion` (`IdPublicacion`, `Titulo`, `Descripcion_publicacion`, `Fecha_publicacion`, `Foto`, `IdUsuario`) VALUES
(3, 'Prueba1', 'Esto es una prueba....', '2020-11-30', 'plato-de-hamburguesa8.jpg', 1),
(4, 'Prueba2', 'prueba2', '2020-11-30', 'plato-de-hamburguesa8.jpg', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuario`
--
CREATE TABLE `usuario` (
`IdUsuario` int(11) NOT NULL,
`Nombre` varchar(30) COLLATE utf8mb4_spanish_ci NOT NULL,
`Apellido` varchar(30) COLLATE utf8mb4_spanish_ci NOT NULL,
`Correo` varchar(30) COLLATE utf8mb4_spanish_ci NOT NULL,
`usuario` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`Password` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`Telefono` varchar(8) COLLATE utf8mb4_spanish_ci NOT NULL,
`Direccion` varchar(100) COLLATE utf8mb4_spanish_ci NOT NULL,
`Trabajo` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`Fecha_creacion` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
--
-- Volcado de datos para la tabla `usuario`
--
INSERT INTO `usuario` (`IdUsuario`, `Nombre`, `Apellido`, `Correo`, `usuario`, `Password`, `Telefono`, `Direccion`, `Trabajo`, `Fecha_creacion`) VALUES
(1, 'christo', 'cruz', '<EMAIL>', 'admin', '123', '123', '', 'doc', '0000-00-00'),
(3, 'Pricila', 'Romero', '<EMAIL>', 'pricila', '123', '', '', '', '0000-00-00'),
(4, 'Mateo', 'Quinteros', '<EMAIL>', 'mateo', '123', '', '', '', '2020-11-28'),
(7, 'Alexis', 'Fuentes', '<EMAIL>', 'alexito', '123', '', '', '', '2020-11-28');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `verificacion_veterinario`
--
CREATE TABLE `verificacion_veterinario` (
`IdVeterinario` int(11) NOT NULL,
`Carnet` varchar(25) COLLATE utf8mb4_spanish_ci NOT NULL,
`IdUsuario` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_spanish_ci;
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `agenta`
--
ALTER TABLE `agenta`
ADD PRIMARY KEY (`IdAgenda`),
ADD KEY `IdUsuario` (`IdUsuario`),
ADD KEY `IdMascota` (`IdMascota`);
--
-- Indices de la tabla `comentario`
--
ALTER TABLE `comentario`
ADD PRIMARY KEY (`IdComentario`),
ADD KEY `IdPublicacion` (`IdPublicacion`),
ADD KEY `IdUsuario` (`IdUsuario`);
--
-- Indices de la tabla `mascota`
--
ALTER TABLE `mascota`
ADD PRIMARY KEY (`IdMascota`),
ADD KEY `IdUsuario` (`IdUsuario`);
--
-- Indices de la tabla `prueba`
--
ALTER TABLE `prueba`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `publicacion`
--
ALTER TABLE `publicacion`
ADD PRIMARY KEY (`IdPublicacion`),
ADD KEY `IdUsuario` (`IdUsuario`);
--
-- Indices de la tabla `usuario`
--
ALTER TABLE `usuario`
ADD PRIMARY KEY (`IdUsuario`);
--
-- Indices de la tabla `verificacion_veterinario`
--
ALTER TABLE `verificacion_veterinario`
ADD PRIMARY KEY (`IdVeterinario`),
ADD KEY `IdUsuario` (`IdUsuario`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `agenta`
--
ALTER TABLE `agenta`
MODIFY `IdAgenda` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `comentario`
--
ALTER TABLE `comentario`
MODIFY `IdComentario` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `mascota`
--
ALTER TABLE `mascota`
MODIFY `IdMascota` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `prueba`
--
ALTER TABLE `prueba`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `publicacion`
--
ALTER TABLE `publicacion`
MODIFY `IdPublicacion` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT de la tabla `usuario`
--
ALTER TABLE `usuario`
MODIFY `IdUsuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT de la tabla `verificacion_veterinario`
--
ALTER TABLE `verificacion_veterinario`
MODIFY `IdVeterinario` int(11) NOT NULL AUTO_INCREMENT;
--
-- Restricciones para tablas volcadas
--
--
-- Filtros para la tabla `agenta`
--
ALTER TABLE `agenta`
ADD CONSTRAINT `agenta_ibfk_1` FOREIGN KEY (`IdUsuario`) REFERENCES `usuario` (`IdUsuario`) ON UPDATE CASCADE,
ADD CONSTRAINT `agenta_ibfk_2` FOREIGN KEY (`IdMascota`) REFERENCES `mascota` (`IdMascota`) ON UPDATE CASCADE;
--
-- Filtros para la tabla `comentario`
--
ALTER TABLE `comentario`
ADD CONSTRAINT `comentario_ibfk_1` FOREIGN KEY (`IdUsuario`) REFERENCES `usuario` (`IdUsuario`) ON UPDATE CASCADE,
ADD CONSTRAINT `comentario_ibfk_2` FOREIGN KEY (`IdPublicacion`) REFERENCES `publicacion` (`IdPublicacion`) ON UPDATE CASCADE;
--
-- Filtros para la tabla `mascota`
--
ALTER TABLE `mascota`
ADD CONSTRAINT `mascota_ibfk_1` FOREIGN KEY (`IdUsuario`) REFERENCES `usuario` (`IdUsuario`) ON UPDATE CASCADE;
--
-- Filtros para la tabla `publicacion`
--
ALTER TABLE `publicacion`
ADD CONSTRAINT `publicacion_ibfk_1` FOREIGN KEY (`IdUsuario`) REFERENCES `usuario` (`IdUsuario`) ON UPDATE CASCADE;
--
-- Filtros para la tabla `verificacion_veterinario`
--
ALTER TABLE `verificacion_veterinario`
ADD CONSTRAINT `verificacion_veterinario_ibfk_1` FOREIGN KEY (`IdUsuario`) REFERENCES `usuario` (`IdUsuario`) ON UPDATE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Notas</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<div class="content">
<section class="row" id="grupo">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">NOTAS </h4>
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" >
<thead class=" text-primary">
<th>#</th>
<th>MATERIA</th>
<th>NOTA</th>
<th>ESTADO</th>
<th>CICLO</th>
</thead>
<tbody>
<?php
$number=1;
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidinscripcion= $this->db->query("SELECT * FROM INSCRIPCION WHERE IDESTUDIANTE='".$estudiante->IDESTUDIANTE."'");
foreach ($queryidinscripcion->result() as $inscripcion){
$queryidgrupo=$this->db->query("SELECT * FROM GRUPOS WHERE IDGRUPOS='".$inscripcion->IDGRUPOS."'");
foreach ($queryidgrupo->result() as $grupo){
$queryidmateria= $this->db->query("SELECT * FROM MATERIAS WHERE IDMATERIA='".$grupo->IDMATERIA."' ORDER BY NIVELMATERIA DESC");
foreach ($queryidmateria->result() as $materia){
$queryidregistro= $this->db->query("SELECT * FROM REGISTRO_ESTUDIANTE WHERE IDINCRIPCION='".$inscripcion->IDINCRIPCION."'");
foreach ($queryidregistro->result() as $registro){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $materia->NOMMATERIA;?></td>
<td><?php echo $registro->NOTAMATERIA; ?></td>
<td><?php echo $registro->ESTADOMATERIA; ?></td>
<td><?php echo $materia->NIVELMATERIA; ?></td>
</tr>
<?php
}
}
}
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div><file_sep><script type="text/javascript">
$(window).on('load', function() {
$('#modificar').modal('show');
});
</script>
<div class="modal fade bd-example-modal-lg" id="modificar" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Editar horas sociales </h5>
</div>
<form action="<?php echo base_url(); ?>tablas/actualizar_horas_sociales/<?php echo $IDHORASSOCIALES; ?>" method="post" role="form" >
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Id estudiante</label>
<select id="idestudiante" name="idestudiante" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Estudiante --</option>
<?php
$queryhe= $this->db->query("SELECT * FROM ESTUDIANTES ");
foreach ($queryhe->result() as $he){
?>
<option value="<?php echo $he->IDESTUDIANTE ?>" <?php if($IDESTUDIANTE==$he->IDESTUDIANTE){ echo 'selected="selected"';} ?> ><?php echo $he->NOMESTUDIANTE." ".$he->APELESTUDIANTE?></option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Nombre del proyecto</label>
<input type="text" class="form-control" placeholder="nombre del proyecto" id="nomproyecto" name="nomproyecto" value="<?php echo $NOMPROYECTO; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Duracion del proyecto</label>
<input type="text" class="form-control" placeholder="Duracion" id="duracionproyec" name="duracionproyec" value="<?php echo $DURACIONPROYEC; ?>">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Estado del proyecto</label>
<select id="estadoproyecto" name="estadoproyecto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Estado Proyecto --</option>
<?php
$estp = array(
1=> "P",
2=> "A"
);
foreach($estp as $key => $h) { ?>
<option h="<?php echo $key ?>"<?php if($ESTADOPROYECTO==$h){ echo 'selected="selected"';} ?>><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Ante-proyecto</label>
<input type="text" class="form-control" placeholder="Ante-proyecto" id="anteproyecto" name="anteproyecto" value="<?php echo $ANTEPROYECTO; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado de ante proyecto</label>
<select id="estadoanteproyecto" name="estadoanteproyecto" class="form-control " aria-label="Default select example">
<option disabled selected>-- Estado Anteproyecto --</option>
<?php
$estap = array(
1=> "P",
2=> "A"
);
foreach($estap as $key => $h) { ?>
<option h="<?php echo $key ?>"<?php if($ESTADOANTEPROYECTO==$h){ echo 'selected="selected"';} ?>><?php echo $h ?></option>
<?php }
?>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Comentario</label>
<input type="text" class="form-control" placeholder="Comentario" id="comentariopro" name="comentariopro" value="<?php echo $COMENTARIOPRO; ?>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Id docente</label>
<input type="text" class="form-control" placeholder="Id docente" id="iddocente" name="iddocente" value="<?php echo $IDDOCENTE; ?>">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<button type="submit" class="btn btn-primary btn-round">Editar</button>
</div>
</div>
</form>
</div>
</div>
</div><file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Usuarios</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
#scroll {
overflow:auto;
max-height:27em;
width:100%;
}
</style>
<script language="javascript">
function doSearch2(nombre)
{
const tableReg = document.getElementById(nombre);
const searchText = document.getElementById('searchTermv').value.toLowerCase();
let total = 0;
// Recorremos todas las filas con contenido de la tabla
for (let i = 1; i < tableReg.rows.length; i++) {
// Si el td tiene la clase "noSearch" no se busca en su cntenido
if (tableReg.rows[i].classList.contains("noSearch")) {
continue;
}
let found = false;
const cellsOfRow = tableReg.rows[i].getElementsByTagName('td');
// Recorremos todas las celdas
for (let j = 0; j < cellsOfRow.length && !found; j++) {
const compareWith = cellsOfRow[j].innerHTML.toLowerCase();
// Buscamos el texto en el contenido de la celda
if (searchText.length == 0 || compareWith.indexOf(searchText) > -1) {
found = true;
total++;
}
}
if (found) {
tableReg.rows[i].style.display = '';
} else {
// si no ha encontrado ninguna coincidencia, esconde la
// fila de la tabla
tableReg.rows[i].style.display = 'none';
}
}
// mostramos las coincidencias
const lastTR=tableReg.rows[tableReg.rows.length-1];
const td=lastTR.querySelector("td");
lastTR.classList.remove("hide", "red");
if (searchText == "") {
lastTR.classList.add("hide");
} else if (total) {
td.innerHTML="Se ha encontrado "+total+" coincidencia"+((total>1)?"s":"");
} else {
lastTR.classList.add("red");
td.innerHTML="No se han encontrado coincidencias";
}
}
</script>
<style>
#datos {border:1px solid #ccc;padding:10px;font-size:1em;}
#datos tr:nth-child(even) {background:#ccc;}
#datos td {padding:5px;}
#datos tr.noSearch {background:White;font-size:0.8em;}
#datos tr.noSearch td {padding-top:10px;text-align:right;}
.hide {display:none;}
.red {color:Red;}
</style>
<!-- End Navbar -->
<div class="content">
<!-- **************************************************
************** TABLA USUARIO *************************
*******************************************************-->
<section id="usuario" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4 class="card-title">Tabla Usuario </h4>
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregar_registro">Agregar usuario</button>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregar_registro" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar usuario </h5>
</div>
<?php echo form_open("usuarios/agregar_usuario")?>
<div class="modal-body">
<div class="row">
<div class="col-md-4 pr-1">
<div class="form-group">
<label>Usuario</label>
<input type="text" class="form-control" placeholder="usuario" id="usuario" name="usuario">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>Contraseña</label>
<input type="text" class="form-control" placeholder="<PASSWORD>" id="<PASSWORD>" name="<PASSWORD>">
</div>
</div>
<div class="col-md-4 px-1">
<div class="form-group">
<label>tipo de usuario</label>
<input type="text" class="form-control" placeholder="tipo usuario" id="tipousuairo" name="tipousuairo">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 px-1">
<div class="form-group">
<label>Estado de usuario</label>
<input type="text" class="form-control" placeholder="estado de usuario" id="estadousuario" name="estadousuario">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
</div>
<div class="card-body">
<div id="scroll" class="table-responsive">
<form>
<input class="form-control" id="searchTermv" type="text" onkeyup="doSearch2('usuarioc')" placeholder="Buscar"/>
<br>
</form>
<table class="table" id="usuarioc">
<thead class=" text-primary">
<th>#</th>
<th>ID USUARIO</th>
<th>USUARIO</th>
<th>PASSWORD</th>
<th>TIPO DE USUARIO</th>
<th>ESTADO DE USUARIO</th>
<th class="text-right"> ACCIONES</th>
</thead>
<tbody>
<?php $number =1; foreach ($usuario as $key => $usuario) {?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $usuario->IDUSUARIO;?></td>
<td><?php echo $usuario->USUARIO;?></td>
<td><?php echo $usuario->PASSWORD; ?></td>
<td><?php echo $usuario->TIPOUSUAIRO; ?></td>
<td><?php echo $usuario->ESTADOUSUARIO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>usuarios/seleccion_usuario/<?php echo $usuario->IDUSUARIO; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<a href="<?php echo base_url(); ?>usuarios/eliminar_usuario/<?php echo $usuario->IDUSUARIO; ?>" class="btn btn-danger btn-round btn-icon" ><i class="fa fa-trash"></i></a> </td>
</tr>
<tr class='noSearch hide'>
<td colspan="5"></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script><file_sep>/*==============================================================*/
/* DBMS name: ORACLE Version 11g */
/* Created on: 06/06/2021 04:35:56 PM */
/*==============================================================*/
alter table AULAS_GRUPOS
drop constraint FK_AULAS_GR_AULAS_GRU_AULAS;
alter table AULAS_GRUPOS
drop constraint FK_AULAS_GR_AULAS_GRU_GRUPOS;
alter table CARRERA
drop constraint FK_CARRERA_DEPTO_CAR_DEPARTAM;
alter table CARRERA_MATERIA
drop constraint FK_CARRERA__CARRERA_M_CARRERA;
alter table CARRERA_MATERIA
drop constraint FK_CARRERA__CARRERA_M_MATERIAS;
alter table COPIAGRUPO
drop constraint FK_COPIAGRU_GRUPOS_CO_GRUPOS;
alter table DOCENTE
drop constraint FK_DOCENTE_GRUPO_DOC_GRUPOS;
alter table DOCENTE
drop constraint FK_DOCENTE_ROLES_DOC_ROLES;
alter table DOCENTE_DEPTO
drop constraint FK_DOCENTE__DOCENTE_D_DOCENTE;
alter table DOCENTE_DEPTO
drop constraint FK_DOCENTE__DOCENTE_D_DEPARTAM;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_CARRERA_E_CARRERA;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_ESTUDIANT_PREINSCR;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_HORASSOCI_HORAS_SO;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_INSCRIPCI_INSCRIPC;
alter table ESTUDIANTES
drop constraint FK_ESTUDIAN_ROLES_EST_ROLES;
alter table GRUPOS
drop constraint FK_GRUPOS_MATERIAS__MATERIAS;
alter table HORARIOS_GRUPOS
drop constraint FK_HORARIOS_GRUPOS_HO_GRUPOS;
alter table HORASSOCIALES_DOCENTE
drop constraint FK_HORASSOC_HORASSOCI_HORAS_SO;
alter table HORASSOCIALES_DOCENTE
drop constraint FK_HORASSOC_HORASSOCI_DOCENTE;
alter table INSCRIPCION
drop constraint FK_INSCRIPC_GRUPOS_IN_GRUPOS;
alter table MATERIAS
drop constraint FK_MATERIAS_MATERIAS__PREINSCR;
alter table PLAN_ESTUDIO
drop constraint FK_PLAN_EST_HISTO_PLA_HISTORIA;
alter table PLAN_ESTUDIO
drop constraint FK_PLAN_EST_PLAN_ESTU_CARRERA;
alter table REGISTRO_ESTUDIANTE
drop constraint FK_REGISTRO_INSCRIPCI_INSCRIPC;
alter table REPORTECHOQUE
drop constraint FK_REPORTEC_DOCENTE_R_DOCENTE;
alter table REPORTECHOQUE
drop constraint FK_REPORTEC_ESTUDIANT_ESTUDIAN;
drop table AULAS cascade constraints;
drop index AULAS_GRUPOS2_FK;
drop index AULAS_GRUPOS_FK;
drop table AULAS_GRUPOS cascade constraints;
drop index DEPTO_CARRERA_FK;
drop table CARRERA cascade constraints;
drop index CARRERA_MATERIA2_FK;
drop index CARRERA_MATERIA_FK;
drop table CARRERA_MATERIA cascade constraints;
drop index GRUPOS_COPIAGRUPO_FK;
drop table COPIAGRUPO cascade constraints;
drop table DEPARTAMENTO cascade constraints;
drop index GRUPO_DOCENTE_FK;
drop index ROLES_DOCENTE_FK;
drop table DOCENTE cascade constraints;
drop index DOCENTE_DEPTO2_FK;
drop index DOCENTE_DEPTO_FK;
drop table DOCENTE_DEPTO cascade constraints;
drop index INSCRIPCION_ESTUDIANTE_FK;
drop index CARRERA_ESTUDIANTE_FK;
drop index HORASSOCIALES_ESTUDIANTE_FK;
drop index ESTUDIANTE_PREINSCRIP_FK;
drop index ROLES_ESTUDIANTE_FK;
drop table ESTUDIANTES cascade constraints;
drop index MATERIAS_GRUPOS_FK;
drop table GRUPOS cascade constraints;
drop table HISTORIAL_PLANIFICACION cascade constraints;
drop index GRUPOS_HORARIOS_FK;
drop table HORARIOS_GRUPOS cascade constraints;
drop index HORASSOCIALES_DOCENTE2_FK;
drop index HORASSOCIALES_DOCENTE_FK;
drop table HORASSOCIALES_DOCENTE cascade constraints;
drop table HORAS_SOCIALES cascade constraints;
drop index GRUPOS_INSCRIPCION_FK;
drop table INSCRIPCION cascade constraints;
drop index MATERIAS_PREINSCRIP_FK;
drop table MATERIAS cascade constraints;
drop index HISTO_PLAN_ESTUDIO_FK;
drop index PLAN_ESTUDIO_FK;
drop table PLAN_ESTUDIO cascade constraints;
drop table PREINSCRIPCION cascade constraints;
drop index INSCRIPCION_RESGISTRO_FK;
drop table REGISTRO_ESTUDIANTE cascade constraints;
drop index ESTUDIANTE_REPORTE_FK;
drop index DOCENTE_REPORTE_FK;
drop table REPORTECHOQUE cascade constraints;
drop table ROLES cascade constraints;
/*==============================================================*/
/* Table: AULAS */
/*==============================================================*/
create table AULAS
(
IDAULA INTEGER not null,
NUMAULA VARCHAR2(15) not null,
FOTOAULA VARCHAR2(50),
constraint PK_AULAS primary key (IDAULA)
);
/*==============================================================*/
/* Table: AULAS_GRUPOS */
/*==============================================================*/
create table AULAS_GRUPOS
(
IDAULA INTEGER not null,
IDGRUPOS INTEGER not null,
constraint PK_AULAS_GRUPOS primary key (IDAULA, IDGRUPOS)
);
/*==============================================================*/
/* Index: AULAS_GRUPOS_FK */
/*==============================================================*/
create index AULAS_GRUPOS_FK on AULAS_GRUPOS (
IDAULA ASC
);
/*==============================================================*/
/* Index: AULAS_GRUPOS2_FK */
/*==============================================================*/
create index AULAS_GRUPOS2_FK on AULAS_GRUPOS (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: CARRERA */
/*==============================================================*/
create table CARRERA
(
IDCARRERA INTEGER not null,
IDDEPTO INTEGER not null,
CODCARRERA VARCHAR2(20) not null,
MATERIAS INTEGER not null,
constraint PK_CARRERA primary key (IDCARRERA)
);
/*==============================================================*/
/* Index: DEPTO_CARRERA_FK */
/*==============================================================*/
create index DEPTO_CARRERA_FK on CARRERA (
IDDEPTO ASC
);
/*==============================================================*/
/* Table: CARRERA_MATERIA */
/*==============================================================*/
create table CARRERA_MATERIA
(
IDCARRERA INTEGER not null,
IDMATERIA INTEGER not null,
constraint PK_CARRERA_MATERIA primary key (IDCARRERA, IDMATERIA)
);
/*==============================================================*/
/* Index: CARRERA_MATERIA_FK */
/*==============================================================*/
create index CARRERA_MATERIA_FK on CARRERA_MATERIA (
IDCARRERA ASC
);
/*==============================================================*/
/* Index: CARRERA_MATERIA2_FK */
/*==============================================================*/
create index CARRERA_MATERIA2_FK on CARRERA_MATERIA (
IDMATERIA ASC
);
/*==============================================================*/
/* Table: COPIAGRUPO */
/*==============================================================*/
create table COPIAGRUPO
(
IDCOPIAGRUPO INTEGER not null,
IDGRUPOS INTEGER not null,
COP_CANTICUPOS INTEGER not null,
FECHAMODIGRUPO DATE not null,
COP_NUMGRUPO INTEGER not null,
constraint PK_COPIAGRUPO primary key (IDCOPIAGRUPO)
);
/*==============================================================*/
/* Index: GRUPOS_COPIAGRUPO_FK */
/*==============================================================*/
create index GRUPOS_COPIAGRUPO_FK on COPIAGRUPO (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: DEPARTAMENTO */
/*==============================================================*/
create table DEPARTAMENTO
(
IDDEPTO INTEGER not null,
NOMBREDEPTO VARCHAR2(50) not null,
CANTCARRERA INTEGER not null,
constraint PK_DEPARTAMENTO primary key (IDDEPTO)
);
/*==============================================================*/
/* Table: DOCENTE */
/*==============================================================*/
create table DOCENTE
(
IDDOCENTE INTEGER not null,
IDROL INTEGER not null,
IDGRUPOS INTEGER not null,
NOMDOCENTE VARCHAR2(25) not null,
APEDOCENTE VARCHAR2(25) not null,
PROFDOCENTE VARCHAR2(25) not null,
ESTDOCENTE INTEGER not null,
TIPOCONTRATO VARCHAR2(25) not null,
INGREDOCENTE DATE not null,
constraint PK_DOCENTE primary key (IDDOCENTE)
);
/*==============================================================*/
/* Index: ROLES_DOCENTE_FK */
/*==============================================================*/
create index ROLES_DOCENTE_FK on DOCENTE (
IDROL ASC
);
/*==============================================================*/
/* Index: GRUPO_DOCENTE_FK */
/*==============================================================*/
create index GRUPO_DOCENTE_FK on DOCENTE (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: DOCENTE_DEPTO */
/*==============================================================*/
create table DOCENTE_DEPTO
(
IDDOCENTE INTEGER not null,
IDDEPTO INTEGER not null,
constraint PK_DOCENTE_DEPTO primary key (IDDOCENTE, IDDEPTO)
);
/*==============================================================*/
/* Index: DOCENTE_DEPTO_FK */
/*==============================================================*/
create index DOCENTE_DEPTO_FK on DOCENTE_DEPTO (
IDDOCENTE ASC
);
/*==============================================================*/
/* Index: DOCENTE_DEPTO2_FK */
/*==============================================================*/
create index DOCENTE_DEPTO2_FK on DOCENTE_DEPTO (
IDDEPTO ASC
);
/*==============================================================*/
/* Table: ESTUDIANTES */
/*==============================================================*/
create table ESTUDIANTES
(
IDESTUDIANTE INTEGER not null,
IDROL INTEGER not null,
IDHORASSOCIALES INTEGER not null,
IDINCRIPCION INTEGER not null,
IDCARRERA INTEGER not null,
IDPREINSCRIPCION INTEGER not null,
NOMESTUDIANTE VARCHAR2(25) not null,
APELESTUDIANTE VARCHAR2(25) not null,
CARNETESTU VARCHAR2(15) not null,
CORREOESTU VARCHAR2(40) not null,
TELESTUDIANTE INTEGER not null,
PASSWORDESTU VARCHAR2(25) not null,
constraint PK_ESTUDIANTES primary key (IDESTUDIANTE)
);
/*==============================================================*/
/* Index: ROLES_ESTUDIANTE_FK */
/*==============================================================*/
create index ROLES_ESTUDIANTE_FK on ESTUDIANTES (
IDROL ASC
);
/*==============================================================*/
/* Index: ESTUDIANTE_PREINSCRIP_FK */
/*==============================================================*/
create index ESTUDIANTE_PREINSCRIP_FK on ESTUDIANTES (
IDPREINSCRIPCION ASC
);
/*==============================================================*/
/* Index: HORASSOCIALES_ESTUDIANTE_FK */
/*==============================================================*/
create index HORASSOCIALES_ESTUDIANTE_FK on ESTUDIANTES (
IDHORASSOCIALES ASC
);
/*==============================================================*/
/* Index: CARRERA_ESTUDIANTE_FK */
/*==============================================================*/
create index CARRERA_ESTUDIANTE_FK on ESTUDIANTES (
IDCARRERA ASC
);
/*==============================================================*/
/* Index: INSCRIPCION_ESTUDIANTE_FK */
/*==============================================================*/
create index INSCRIPCION_ESTUDIANTE_FK on ESTUDIANTES (
IDINCRIPCION ASC
);
/*==============================================================*/
/* Table: GRUPOS */
/*==============================================================*/
create table GRUPOS
(
IDGRUPOS INTEGER not null,
IDMATERIA INTEGER not null,
CANTCUPOS INTEGER not null,
FECHACREACION DATE not null,
NUMGRUPO INTEGER not null,
constraint PK_GRUPOS primary key (IDGRUPOS)
);
/*==============================================================*/
/* Index: MATERIAS_GRUPOS_FK */
/*==============================================================*/
create index MATERIAS_GRUPOS_FK on GRUPOS (
IDMATERIA ASC
);
/*==============================================================*/
/* Table: HISTORIAL_PLANIFICACION */
/*==============================================================*/
create table HISTORIAL_PLANIFICACION
(
IDHISOTIAL_PLAN INTEGER not null,
CICLO INTEGER not null,
ANIO DATE not null,
constraint PK_HISTORIAL_PLANIFICACION primary key (IDHISOTIAL_PLAN)
);
/*==============================================================*/
/* Table: HORARIOS_GRUPOS */
/*==============================================================*/
create table HORARIOS_GRUPOS
(
IDHORARIO_GRU CHAR(10) not null,
IDGRUPOS INTEGER not null,
DIAHORARIO CHAR(10) not null,
HORASHORARIO CHAR(10) not null,
constraint PK_HORARIOS_GRUPOS primary key (IDHORARIO_GRU)
);
/*==============================================================*/
/* Index: GRUPOS_HORARIOS_FK */
/*==============================================================*/
create index GRUPOS_HORARIOS_FK on HORARIOS_GRUPOS (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: HORASSOCIALES_DOCENTE */
/*==============================================================*/
create table HORASSOCIALES_DOCENTE
(
IDHORASSOCIALES INTEGER not null,
IDDOCENTE INTEGER not null,
constraint PK_HORASSOCIALES_DOCENTE primary key (IDHORASSOCIALES, IDDOCENTE)
);
/*==============================================================*/
/* Index: HORASSOCIALES_DOCENTE_FK */
/*==============================================================*/
create index HORASSOCIALES_DOCENTE_FK on HORASSOCIALES_DOCENTE (
IDHORASSOCIALES ASC
);
/*==============================================================*/
/* Index: HORASSOCIALES_DOCENTE2_FK */
/*==============================================================*/
create index HORASSOCIALES_DOCENTE2_FK on HORASSOCIALES_DOCENTE (
IDDOCENTE ASC
);
/*==============================================================*/
/* Table: HORAS_SOCIALES */
/*==============================================================*/
create table HORAS_SOCIALES
(
IDHORASSOCIALES INTEGER not null,
NOMPROYECTO VARCHAR2(100) not null,
DURACIONPROYEC VARCHAR2(30) not null,
ESTADOPROYECTO VARCHAR2(1) not null,
ANTEPROYECTO VARCHAR2(50) not null,
ESTADOANTEPROYECTO VARCHAR2(1) not null,
FECHASOCIALES DATE not null,
constraint PK_HORAS_SOCIALES primary key (IDHORASSOCIALES)
);
/*==============================================================*/
/* Table: INSCRIPCION */
/*==============================================================*/
create table INSCRIPCION
(
IDINCRIPCION INTEGER not null,
IDGRUPOS INTEGER not null,
FECHAINSCRIP DATE not null,
constraint PK_INSCRIPCION primary key (IDINCRIPCION)
);
/*==============================================================*/
/* Index: GRUPOS_INSCRIPCION_FK */
/*==============================================================*/
create index GRUPOS_INSCRIPCION_FK on INSCRIPCION (
IDGRUPOS ASC
);
/*==============================================================*/
/* Table: MATERIAS */
/*==============================================================*/
create table MATERIAS
(
IDMATERIA INTEGER not null,
IDPREINSCRIPCION INTEGER not null,
CODMATERIA VARCHAR2(20) not null,
NIVELMATERIA VARCHAR2(30) not null,
NOMMATERIA VARCHAR2(50) not null,
REQUISITO VARCHAR2(50) not null,
constraint PK_MATERIAS primary key (IDMATERIA)
);
/*==============================================================*/
/* Index: MATERIAS_PREINSCRIP_FK */
/*==============================================================*/
create index MATERIAS_PREINSCRIP_FK on MATERIAS (
IDPREINSCRIPCION ASC
);
/*==============================================================*/
/* Table: PLAN_ESTUDIO */
/*==============================================================*/
create table PLAN_ESTUDIO
(
IDPLAN INTEGER not null,
IDHISOTIAL_PLAN INTEGER not null,
IDCARRERA INTEGER not null,
DURACIONPLAN VARCHAR2(20) not null,
DESCRIPCIONPLAN VARCHAR2(200) not null,
constraint PK_PLAN_ESTUDIO primary key (IDPLAN)
);
/*==============================================================*/
/* Index: PLAN_ESTUDIO_FK */
/*==============================================================*/
create index PLAN_ESTUDIO_FK on PLAN_ESTUDIO (
IDCARRERA ASC
);
/*==============================================================*/
/* Index: HISTO_PLAN_ESTUDIO_FK */
/*==============================================================*/
create index HISTO_PLAN_ESTUDIO_FK on PLAN_ESTUDIO (
IDHISOTIAL_PLAN ASC
);
/*==============================================================*/
/* Table: PREINSCRIPCION */
/*==============================================================*/
create table PREINSCRIPCION
(
IDPREINSCRIPCION INTEGER not null,
FECHAPREINCRIPCION DATE not null,
constraint PK_PREINSCRIPCION primary key (IDPREINSCRIPCION)
);
/*==============================================================*/
/* Table: REGISTRO_ESTUDIANTE */
/*==============================================================*/
create table REGISTRO_ESTUDIANTE
(
IDREGISTROESTU INTEGER not null,
IDINCRIPCION INTEGER not null,
FECHAREGIESTU DATE not null,
ESTADOMATERIA VARCHAR2(1) not null,
NOTAMATERIA FLOAT(2) not null,
constraint PK_REGISTRO_ESTUDIANTE primary key (IDREGISTROESTU)
);
/*==============================================================*/
/* Index: INSCRIPCION_RESGISTRO_FK */
/*==============================================================*/
create index INSCRIPCION_RESGISTRO_FK on REGISTRO_ESTUDIANTE (
IDINCRIPCION ASC
);
/*==============================================================*/
/* Table: REPORTECHOQUE */
/*==============================================================*/
create table REPORTECHOQUE
(
IDCHOQUE INTEGER not null,
IDESTUDIANTE INTEGER not null,
IDDOCENTE INTEGER not null,
FECHACHOQUE DATE not null,
COMENTARIOCHOQUE VARCHAR2(100) not null,
constraint PK_REPORTECHOQUE primary key (IDCHOQUE)
);
/*==============================================================*/
/* Index: DOCENTE_REPORTE_FK */
/*==============================================================*/
create index DOCENTE_REPORTE_FK on REPORTECHOQUE (
IDDOCENTE ASC
);
/*==============================================================*/
/* Index: ESTUDIANTE_REPORTE_FK */
/*==============================================================*/
create index ESTUDIANTE_REPORTE_FK on REPORTECHOQUE (
IDESTUDIANTE ASC
);
/*==============================================================*/
/* Table: ROLES */
/*==============================================================*/
create table ROLES
(
IDROL INTEGER not null,
TIPOROL VARCHAR2(30) not null,
constraint PK_ROLES primary key (IDROL)
);
alter table AULAS_GRUPOS
add constraint FK_AULAS_GR_AULAS_GRU_AULAS foreign key (IDAULA)
references AULAS (IDAULA);
alter table AULAS_GRUPOS
add constraint FK_AULAS_GR_AULAS_GRU_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table CARRERA
add constraint FK_CARRERA_DEPTO_CAR_DEPARTAM foreign key (IDDEPTO)
references DEPARTAMENTO (IDDEPTO);
alter table CARRERA_MATERIA
add constraint FK_CARRERA__CARRERA_M_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table CARRERA_MATERIA
add constraint FK_CARRERA__CARRERA_M_MATERIAS foreign key (IDMATERIA)
references MATERIAS (IDMATERIA);
alter table COPIAGRUPO
add constraint FK_COPIAGRU_GRUPOS_CO_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table DOCENTE
add constraint FK_DOCENTE_GRUPO_DOC_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table DOCENTE
add constraint FK_DOCENTE_ROLES_DOC_ROLES foreign key (IDROL)
references ROLES (IDROL);
alter table DOCENTE_DEPTO
add constraint FK_DOCENTE__DOCENTE_D_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table DOCENTE_DEPTO
add constraint FK_DOCENTE__DOCENTE_D_DEPARTAM foreign key (IDDEPTO)
references DEPARTAMENTO (IDDEPTO);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_CARRERA_E_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_ESTUDIANT_PREINSCR foreign key (IDPREINSCRIPCION)
references PREINSCRIPCION (IDPREINSCRIPCION);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_HORASSOCI_HORAS_SO foreign key (IDHORASSOCIALES)
references HORAS_SOCIALES (IDHORASSOCIALES);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_INSCRIPCI_INSCRIPC foreign key (IDINCRIPCION)
references INSCRIPCION (IDINCRIPCION);
alter table ESTUDIANTES
add constraint FK_ESTUDIAN_ROLES_EST_ROLES foreign key (IDROL)
references ROLES (IDROL);
alter table GRUPOS
add constraint FK_GRUPOS_MATERIAS__MATERIAS foreign key (IDMATERIA)
references MATERIAS (IDMATERIA);
alter table HORARIOS_GRUPOS
add constraint FK_HORARIOS_GRUPOS_HO_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table HORASSOCIALES_DOCENTE
add constraint FK_HORASSOC_HORASSOCI_HORAS_SO foreign key (IDHORASSOCIALES)
references HORAS_SOCIALES (IDHORASSOCIALES);
alter table HORASSOCIALES_DOCENTE
add constraint FK_HORASSOC_HORASSOCI_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table INSCRIPCION
add constraint FK_INSCRIPC_GRUPOS_IN_GRUPOS foreign key (IDGRUPOS)
references GRUPOS (IDGRUPOS);
alter table MATERIAS
add constraint FK_MATERIAS_MATERIAS__PREINSCR foreign key (IDPREINSCRIPCION)
references PREINSCRIPCION (IDPREINSCRIPCION);
alter table PLAN_ESTUDIO
add constraint FK_PLAN_EST_HISTO_PLA_HISTORIA foreign key (IDHISOTIAL_PLAN)
references HISTORIAL_PLANIFICACION (IDHISOTIAL_PLAN);
alter table PLAN_ESTUDIO
add constraint FK_PLAN_EST_PLAN_ESTU_CARRERA foreign key (IDCARRERA)
references CARRERA (IDCARRERA);
alter table REGISTRO_ESTUDIANTE
add constraint FK_REGISTRO_INSCRIPCI_INSCRIPC foreign key (IDINCRIPCION)
references INSCRIPCION (IDINCRIPCION);
alter table REPORTECHOQUE
add constraint FK_REPORTEC_DOCENTE_R_DOCENTE foreign key (IDDOCENTE)
references DOCENTE (IDDOCENTE);
alter table REPORTECHOQUE
add constraint FK_REPORTEC_ESTUDIANT_ESTUDIAN foreign key (IDESTUDIANTE)
references ESTUDIANTES (IDESTUDIANTE);
<file_sep>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
<div class="container-fluid">
<div class="navbar-wrapper">
<div class="navbar-toggle">
<button type="button" class="navbar-toggler">
<span class="navbar-toggler-bar bar1"></span>
<span class="navbar-toggler-bar bar2"></span>
<span class="navbar-toggler-bar bar3"></span>
</button>
</div>
<a class="navbar-brand" href="javascript:;">Horas sociales</a>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation-index" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
<span class="navbar-toggler-bar navbar-kebab"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navigation">
<ul class="navbar-nav">
<li class="nav-item btn-rotate dropdown">
<a class="btn btn-danger btn-round" href="<?php echo base_url('Login/salir'); ?>">Cerrar sesion</a>
</li>
</ul>
</div>
</div>
</nav>
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}</style>
<!-- End Navbar -->
<div class="content">
<section id="accion" class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<button type="button" class="btn btn-success" data-toggle="modal" data-target="#agregarhora">Agregar proyecto social</button>
<?php echo form_open_multipart('Excel_import/import_doc');?>
</form>
<div class="card-body">
<div id="scroll" class="table-responsive">
<table class="table" id="yecto">
<thead class=" text-primary">
<th>#</th>
<th>NOMBRE PROYECTO</th>
<th>DURACION</th>
<th>ANTEPROYECTO</th>
<th>ESTADO</th>
<th>FECHA</th>
<th>COMENTARIOS</th>
<th class="text-right">ACCION</th>
</thead>
<tbody>
<?php
$number=1;
$idestudiante=$_SESSION['Nombre'];
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
$queryidhoras= $this->db->query("SELECT * FROM HORAS_SOCIALES WHERE IDESTUDIANTE='".$estudiante->IDESTUDIANTE."'");
foreach ($queryidhoras->result() as $horas){
?>
<tr>
<th scope="row"><?php echo $number++; ?></th>
<td><?php echo $horas->NOMPROYECTO; ?></td>
<td><?php echo $horas->DURACIONPROYEC;?></td>
<td><?php echo $horas->ANTEPROYECTO;?></td>
<td><?php echo $horas->ESTADOPROYECTO; ?></td>
<td><?php echo $horas->FECHASOCIALES; ?></td>
<td><?php echo $horas->COMENTARIOPRO; ?></td>
<td class="text-right"><a href="<?php echo base_url(); ?>tablas/horas_seleccion/<?php echo $horas->IDHORASSOCIALES; ?>" class="btn btn-info btn-round btn-icon " ><i class="fa fa-edit"></i></a>
<?php
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- Modal de Agregar -->
<div class="modal fade bd-example-modal-lg" id="agregarhora" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Agregar Proyecto </h5>
</div>
<?php echo form_open("tablas/horas_agregar")?>
<div class="modal-body">
<div class="row">
<div class="col-md-12 pr-1">
<div class="form-group">
<label>Nombre Proyecto</label>
<input type="text" class="form-control" placeholder="Nombre del pryecto" id="nomproyecto" name="nomproyecto">
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Duracion</label>
<input type="text" class="form-control" placeholder="Duracion" id="duracionproyec" name="duracionproyec">
</div>
</div>
<div class="col-md-6 px-1">
<div class="form-group">
<span class="btn btn-warning btn-file">
Subir Anteproyecto<input type="file" name="file" />
</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 px-1">
<div class="form-group">
<label>Tutor</label>
<select id="iddocente" name="iddocente" class="form-control " aria-label="Default select example">
<option disabled selected>-- Seleccionar Docente --</option>
<?php
$querydoc= $this->db->query("SELECT * FROM DOCENTE ");
foreach ($querydoc->result() as $doc){
echo "<option class='' value='".$doc->IDDOCENTE."'>" .$doc->NOMDOCENTE." ".$doc->APEDOCENTE."</option>"; // displaying data in option menu
}
?>
</select>
</div>
</div>
</div>
<?php
$queryidestudiante= $this->db->query("SELECT * FROM ESTUDIANTES WHERE CORREOESTU='".$idestudiante."'");
foreach ($queryidestudiante->result() as $estudiante){
echo"<input type='hidden' class='form-control' id='idestudiante' name='idestudiante' value='".$estudiante->IDESTUDIANTE."'>";
}
?>
</div>
<div class="modal-footer">
<div class="update ml-auto mr-auto">
<input class="btn btn-primary btn-round" type="submit" name="btnAdd" id="btnAdd" value="Agregar"></input>
</div>
</div>
<?php echo form_close()?>
</div>
</div>
</div>
<!-- Fin de Modal -->
<script src="https://unpkg.com/ionicons@5.1.2/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10"></script>
<script>
<?php if($this->session->flashdata("error")): ?>
Swal.fire({
icon: 'error',
title: 'Error',
text: '<?php echo $this->session->flashdata("error"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
if($this->session->flashdata("success")): ?>
Swal.fire({
icon: 'success',
title: 'Bien hecho!',
text: '<?php echo $this->session->flashdata("success"); ?>',
showConfirmButton: false,
timer: 3000
});
<?php endif;
?>
</script> | df5cc4ce90f238cc1b32314adc5c4d051ac328fe | [
"SQL",
"PHP"
] | 53 | SQL | christoCruz/BDproyecto | f4d3f229512dd6fc531f94902db956ce5dd1b56e | 2c04bb38b9cc9e2200fad98261fdaf006e1889bc |
refs/heads/master | <file_sep>package com.example.zzapp;
/**
* Created by affan_ui693t9 on 2/4/2018.
*/
class aa {
private static final aa ourInstance = new aa();
static aa getInstance() {
return ourInstance;
}
private aa() {
}
}
<file_sep>package com.example.zzapp;
/**
* Created by affan_ui693t9 on 2/3/2018.
*/
public class ABC extends MainActivity {
int aa = 0;
public void aaaa()
{
System.out.println(aa);
}
}
| 2096812e9a2ca6b09fd5245d5685041fe32bcfbd | [
"Java"
] | 2 | Java | livelyattit/Zzapp | 96e9219cd3d369b5f5b0d98a284ed9525fb696fc | 1d0955d65f5f78d033bd7a093727b82dfccab4ad |
refs/heads/master | <file_sep>package com.zxg.network.light.groups.impl.mina;
import com.zxg.network.light.groups.Response;
public class MinaResponse implements Response{
@Override
public void setContent(byte[] content) {
// TODO Auto-generated method stub
}
@Override
public byte[] getContent() {
// TODO Auto-generated method stub
return null;
}
@Override
public StatusCode getStatusCode() {
// TODO Auto-generated method stub
return null;
}
@Override
public Exception getException() {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>package com.zxg.network.light.groups;
import java.net.InetSocketAddress;
import java.util.List;
import java.util.Set;
/**
*
* @author <NAME>
*
*/
public interface Group {
public static enum State {
}
/**
* asynchronous connect
*
* @param configuration
*/
public ConnectFuture connect(Configuration configuration);
/**
* asynchronous disconnect
*
*/
public DisconnectFuture disconnect();
public State getState();
public void addListener(Listener listener);
public void removeListener(Listener listener);
/**
* asynchronous add member
*
* @param inetSocketAddress
*/
public MemberAddFuture tryAddMember(InetSocketAddress inetSocketAddress);
public List<Member> getMembers();
public void registerRequestHandler(RequestHandler requestHandler);
public void unregisterRequestHandler(RequestHandler requestHandler);
public Request createRequest();
/**
* asynchronous request
*
* @param request
* @param member
* @return
* @throws GroupException
*/
public RequestFuture request(Request request, Member member)
throws GroupException;
/**
* asynchronous request
*
* @param request
* @param memberSet
* @return
* @throws GroupException
*/
public BroadcastRequestFuture request(Request request, Set<Member> memberSet)
throws GroupException;
public void shareMemberData(String key, Object object);
public void unshareMemberData(String key);
public Member getLocalMember();
}
<file_sep>package com.zxg.network.light.groups.impl.tcp;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.rmi.server.RMIClientSocketFactory;
import java.rmi.server.RMIServerSocketFactory;
import java.util.List;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.CopyOnWriteArraySet;
import com.zxg.network.light.groups.BroadcastRequestFuture;
import com.zxg.network.light.groups.Configuration;
import com.zxg.network.light.groups.ConnectFuture;
import com.zxg.network.light.groups.DisconnectFuture;
import com.zxg.network.light.groups.Group;
import com.zxg.network.light.groups.GroupException;
import com.zxg.network.light.groups.Listener;
import com.zxg.network.light.groups.Member;
import com.zxg.network.light.groups.MemberAddFuture;
import com.zxg.network.light.groups.Request;
import com.zxg.network.light.groups.RequestFuture;
import com.zxg.network.light.groups.RequestHandler;
/**
*
* @author <NAME>
*
*/
class TcpGroup implements Group {
private Registry registry;
private List<ServerSocket> serverSocketList;
private List<Socket> socketList;
public TcpGroup() {
serverSocketList=new CopyOnWriteArrayList<ServerSocket>();
socketList=new CopyOnWriteArrayList<Socket>();
}
@Override
public ConnectFuture connect(Configuration configuration) {
final int port = configuration.getPort();
String name = configuration.getName();
Thread connectThread = new Thread() {
@Override
public void run() {
try {
registry = LocateRegistry.createRegistry(port,
new RMIClientSocketFactory() {
@Override
public Socket createSocket(String host, int port)
throws IOException {
Socket socket=new Socket(host, port);
socketList.add(socket);
return socket;
}
}, new RMIServerSocketFactory() {
@Override
public ServerSocket createServerSocket(int port)
throws IOException {
ServerSocket serverSocket= new ServerSocket(port);
return serverSocket;
}
});
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};
return null;
}
@Override
public DisconnectFuture disconnect() {
// TODO Auto-generated method stub
return null;
}
@Override
public State getState() {
// TODO Auto-generated method stub
return null;
}
@Override
public void addListener(Listener listener) {
// TODO Auto-generated method stub
}
@Override
public void removeListener(Listener listener) {
// TODO Auto-generated method stub
}
@Override
public MemberAddFuture tryAddMember(InetSocketAddress inetSocketAddress) {
// TODO Auto-generated method stub
return null;
}
@Override
public List<Member> getMembers() {
// TODO Auto-generated method stub
return null;
}
@Override
public void registerRequestHandler(RequestHandler requestHandler) {
// TODO Auto-generated method stub
}
@Override
public void unregisterRequestHandler(RequestHandler requestHandler) {
// TODO Auto-generated method stub
}
@Override
public Request createRequest() {
// TODO Auto-generated method stub
return null;
}
@Override
public RequestFuture request(Request request, Member member)
throws GroupException {
// TODO Auto-generated method stub
return null;
}
@Override
public BroadcastRequestFuture request(Request request, Set<Member> memberSet)
throws GroupException {
// TODO Auto-generated method stub
return null;
}
@Override
public void shareMemberData(String key, Object object) {
// TODO Auto-generated method stub
}
@Override
public void unshareMemberData(String key) {
// TODO Auto-generated method stub
}
@Override
public Member getLocalMember() {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>package com.zxg.network.light.groups;
/**
*
* @author <NAME>
*
*/
public interface Event {
public static enum Type {
MEMBER_JOINED, MEMBER_LEAVED, GROUP_CONNECTED, GROUP_DISCONNECTED
};
public Type getType();
public Member getMember();
}
<file_sep>package com.zxg.network.light.groups.test;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.concurrent.ExecutionException;
import com.zxg.network.light.groups.Configuration;
import com.zxg.network.light.groups.Group;
import com.zxg.network.light.groups.impl.mina.MinaGroupFactory;
public class Main {
/**
* @param args
* @throws NotBoundException
* @throws ExecutionException
* @throws InterruptedException
*/
public static void main(String[] args) throws NotBoundException, InterruptedException, ExecutionException {
Group group=MinaGroupFactory.createGroup();
group.connect(new Configuration()).get();
}
/**
* @param args
* @throws NotBoundException
*/
public static void main2(String[] args) throws NotBoundException {
try {
Registry localRegistry = LocateRegistry.createRegistry(9999);
localRegistry.rebind("testService", new TestServiceImpl());
Registry remoteRegistry = LocateRegistry.getRegistry("127.0.0.1",
9999);
TestService testService = (TestService) remoteRegistry
.lookup("testService");
String greetingString = testService.getGreetingString();
System.out.println(greetingString);
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
<file_sep>package com.zxg.network.light.groups.impl.mina;
import com.zxg.network.light.groups.GroupException;
/**
*
* @author <NAME>
*
*/
class MinaGroupException extends GroupException{
private static final long serialVersionUID = -8636153928618341365L;
@Override
public Type getType() {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>package com.zxg.network.light.groups;
/**
*
* @author <NAME>
*
*/
public interface RequestHandler {
public boolean isSupported(String path);
public void handleRequest(Request request,Response response);
}
<file_sep>package com.zxg.network.light.groups.test;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface TestService extends Remote,Serializable{
public String getGreetingString()throws RemoteException;
}
<file_sep>package com.zxg.network.light.groups;
/**
*
* @author <NAME>
*
*/
public interface Listener {
public void handleEvent(Event event);
}
<file_sep>package com.zxg.network.light.groups;
import java.util.concurrent.Future;
/**
*
* @author <NAME>
*
*/
public interface DisconnectFuture extends Future<Boolean> {
}
<file_sep>package com.zxg.network.light.groups.impl.tcp;
import java.net.InetSocketAddress;
import com.zxg.network.light.groups.Member;
/**
*
* @author <NAME>
*
*/
public class TcpMember implements Member{
@Override
public String getUuid() {
// TODO Auto-generated method stub
return null;
}
@Override
public InetSocketAddress getInetSocketAddress() {
// TODO Auto-generated method stub
return null;
}
@Override
public Object getData(String key) {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>light-groups
============<file_sep>package com.zxg.network.light.groups.impl.mina;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import com.zxg.network.light.groups.DisconnectFuture;
/**
*
* @author <NAME>
*
*/
public class MinaDisconnectFuture implements DisconnectFuture{
@Override
public boolean cancel(boolean mayInterruptIfRunning) {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isCancelled() {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isDone() {
// TODO Auto-generated method stub
return false;
}
@Override
public Boolean get() throws InterruptedException, ExecutionException {
// TODO Auto-generated method stub
return null;
}
@Override
public Boolean get(long timeout, TimeUnit unit)
throws InterruptedException, ExecutionException, TimeoutException {
// TODO Auto-generated method stub
return null;
}
}
<file_sep>package com.zxg.network.light.groups;
import java.net.InetSocketAddress;
/**
*
* @author <NAME>
*
*/
public interface Member {
public String getUuid();
public InetSocketAddress getInetSocketAddress();
public Object getData(String key);
}
<file_sep>package com.zxg.network.light.groups.impl.tcp;
import com.zxg.network.light.groups.Group;
/**
*
* @author <NAME>
*
*/
public class TcpGroupFactory{
public static Group createGroup() {
return new TcpGroup();
}
}
| ebdd375d20112e1b51b03a0818b05a59e7b9f9d2 | [
"Markdown",
"Java"
] | 15 | Java | Xianguang/light-groups | 3841699fe09bfa50f6748f0c146441f67bbed7bf | 35e563a8bf78ace910681ee7b10a29ecd5a322e8 |
refs/heads/main | <file_sep>const bcrypt = require("bcrypt");
const express = require("express");
const _ = require("lodash");
const auth = require('../middleware/auth');
const { PaystackService } = require("../utils/paystack");
const { validate, Wallet } = require("../models/wallet");
const router = express.Router();
//USER CAN CREATE WALLET AND FETCH WALLET DATA
router.post("/", auth, async (req, res) => {
try {
const {_id} = req.user;
const { error } = validate(req.body);
if (error) return res.status(400).send(error.details[0].message);
const {accountNumber, bankCode} = req.body;
const verifyAccount = await PaystackService.verifyAccountNumber({
accountNumber,
bankCode,
});
if (verifyAccount && Object.keys(verifyAccount).length <= 0) {
throw Error('Invalid account information');
}
let wallet = new Wallet(_.pick(req.body, ["bankCode", "accountNumber"]));
wallet.user = _id;
wallet.accountName = verifyAccount.account_name;
await wallet.save();
res.status(201).send(_.pick(wallet, ['_id','user','bankCode','accountName', 'accountNumber', 'balance']));;
} catch (error) {
return error;
}
});
router.get("/", auth, async (req, res) => {
try {
const {_id} = req.user
const wallet = await Wallet.findOne({user: _id})
res.status(200).send( _.pick(wallet, ['_id','user', 'accountName', 'accountNumber', 'bankCode']));
} catch (error) {
return error;
}
});
module.exports = router;
<file_sep>const express = require("express");
const _ = require("lodash");
const auth = require('../middleware/auth');
const { PaystackService } = require("../utils/paystack");
const { validate, Wallet } = require("../models/wallet");
const { Transaction } = require("../models/transaction");
const router = express.Router();
router.post("/", auth, async (req, res) => {
const {_id} = req.user;
const { accountNumber, bankCode, amount, reason, type } = req.body;
// get my wallet balance and make sure it is > 0
// 1) Verify account number
const wallet = await Wallet.findOne({ user: _id });
const verified = await PaystackService.verifyAccountNumber({
accountNumber,
bankCode,
});
console.log({ verified });
if (verified && Object.keys(verified).length <= 0) {
throw Error("Invalid account information");
}
if (wallet.balance < amount) {
res.send("Insufficient funds");
}
// create transfer recipient
const transferRecipient = await PaystackService.createTransferRecipient({
account_number: accountNumber,
bank_code: bankCode,
});
console.log({ transferRecipient });
// 3) Inititate transfer
const transfer = await PaystackService.transfer({
reason,
amount,
recipient: transferRecipient,
});
console.log(transfer)
const final = await walletTransaction[type]({ amount, walletId: wallet._id });
console.log("USER BALANCE AFTER DEBIT", final);
console.log({ transfer });
});
router.get("/", auth, async (req, res) => {
try {
const {_id} = req.user
const wallet = await Wallet.findOne({user: _id})
const transaction = await Transaction.findOne({wallet: wallet._id})
res.status(200).send( _.pick([transaction, '_id','reference', 'balanceBefore', 'balanceAfter', 'wallet']));
} catch (error) {
return error;
}
});
module.exports = router;<file_sep>const { PaystackService } = require("./paystack");
const { creditWallet, debitWallet } = require("./transactions");
module.exports.transactionType = {
credit: PaystackService,
debit: null,
};
module.exports.walletTransaction = {
credit: creditWallet,
debit: debitWallet,
};
| 5c02b12b9d219ec6d6956bf578742bd25ca4be5d | [
"JavaScript"
] | 3 | JavaScript | Abim-Bola/simple-wallet-system | 4d311a4d56ed64dd32b1fd44a9391af4e6dd3ac7 | 6d99ac69d2966c8d29619c528b9f168953c2b379 |
refs/heads/master | <repo_name>utep-cs-systems-courses/project2-game-Edwin-Trejo<file_sep>/project/timerLib/clocksTimer.h
#ifndef timerLib_included
#define timerLib_included
void configureClocks();
void enableWDTInterrupts();
void timerAUpmode();
#endif
<file_sep>/demos/project/stateMachines.h
#ifndef stateMachine_included
#define stateMachine_included
#endif
<file_sep>/project/main.c
#include <msp430.h>
#include "libTimer.h"
#include "led.h"
int main(void){
P1DIR |= LEDS;
P1OUT &= ~LED_GREEN;
P1OUT |= LED_RED;
or_sr(0x18);
}
<file_sep>/project/Makefile
# makfile configuration
COMMON_OBJECTS = main.o # Wdinterrupthandler.o
CPU = msp430g2553
CFLAGS = -mmcu=${CPU} -I../h
LDFLAGS = -L/opt/ti/msp430_gcc/include
#switch the compiler (for the internal make rules)
CC = msp430-elf-gcc
AS = msp430-elf-as
all: led.elf
#additional rules for files
led.elf: ${COMMON_OBJECTS}
${CC} ${CFLAGS} ${LDFLAGS} -o $@ $^ ../lib/libTimer.a
load: led.elf
msp430loader.sh led.elf
clean:
rm -f *.o *.elf
main.o: led.h
wdInterruptHandler.o: led.h
| 00873ec6abc35723f4b3db66fd2f2dd9bf321abe | [
"C",
"Makefile"
] | 4 | C | utep-cs-systems-courses/project2-game-Edwin-Trejo | 21af869271e8928e2bade0ccf8539e8400d7c7f5 | 7f8b0933b7c965ec646d6345dda8585b7ff401fb |
refs/heads/master | <repo_name>thesponge/agripay<file_sep>/viewer.py
import os
from werkzeug.wsgi import DispatcherMiddleware
from paste.cgiapp import CGIApplication
from path import path
from webob import Request
VIEWER_HOME = path(__file__).abspath().parent / 'maps'
def create_mapserver_app():
cgi = CGIApplication({}, os.environ.get('MAPSERV_BIN', 'mapserv'))
def app(environ, start_response):
request = Request(environ)
request.GET['map'] = VIEWER_HOME / 'money.map'
request.GET['SRS'] = 'EPSG:3857'
return cgi(environ, start_response)
return app
def initialize(app):
app.wsgi_app = DispatcherMiddleware(app.wsgi_app, {
'/mapserv': create_mapserver_app(),
})
| 761bfe552e30d8e8b9636188cf3c784a1239bd38 | [
"Python"
] | 1 | Python | thesponge/agripay | 24836a9e4f635441785799cd49e9c495f646e812 | d689b4e842a15b1fa21299a15781c9bca98caee5 |
refs/heads/master | <repo_name>ajafff/untitled-css-in-js-project<file_sep>/.storybook/webpack.config.js
const createTransformers = require('../dist/src/ts-transformer').default;
module.exports = ({ config }) => {
config.module.rules.push({
test: /\.tsx$/,
use: [
{
loader: require.resolve('ts-loader'),
options: {
// This NEEDS to be false for us to be able to go beyond module boundaries.
// Might need to raise a ticket to figure out how we can get around this if we just want to transpile.
// Does transpiling do it file by file instead of project?
transpileOnly: true,
getCustomTransformers: program => ({
before: createTransformers(program, { debug: process.env.NODE_ENV !== 'production' }),
}),
},
},
],
});
config.resolve.extensions.push('.tsx');
return config;
};
| d2391baa76da8874429747c3c83022fb72efac90 | [
"JavaScript"
] | 1 | JavaScript | ajafff/untitled-css-in-js-project | e0828de8118aaf0a793b98f350e06139bf0f1532 | ef1fd13ce8b23609cda35d84b86b20e605e48772 |
refs/heads/master | <repo_name>vidartf/jupyterlab-github<file_sep>/setup.py
"""
Setup module for the jupyterlab-github proxy extension
"""
import setuptools
setuptools.setup(
name='jupyterlab_github',
description='A Jupyter Notebook server extension which acts as a proxy for GitHub API requests.',
version='0.4.0',
packages=setuptools.find_packages(),
author = '<NAME>',
author_email = '<EMAIL>',
url = 'http://jupyter.org',
license = 'BSD',
platforms = "Linux, Mac OS X, Windows",
keywords = ['Jupyter', 'JupyterLab', 'GitHub'],
classifiers = [
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=[
'notebook'
],
package_data={'jupyterlab_github':['*']},
)
| b9e135604630272393c457e6a90811bc1d6f9e1c | [
"Python"
] | 1 | Python | vidartf/jupyterlab-github | f94d5120b6d22beeeacd8e300aef9b2fc676c26b | bc8c8ab254c2e13c58b036f26332e5e5672691fb |
refs/heads/master | <repo_name>glebskalinskii/dotfiles<file_sep>/brew-cask.sh
# Install native apps
# daily
brew install dropbox
brew install google-drive
brew install flux
brew install whatsapp
brew install viber
brew install slack
# dev
brew install karabiner-elements
brew install sublime-text
brew install sublime-merge
brew install visual-studio-code
brew install ngrok
brew install postico
brew install postman
# browsers
brew install google-chrome
brew install firefox
brew install brave-browser
brew install torbrowser
# different
brew install vlc
brew install spotify
<file_sep>/setup-a-new-machine.sh
#oh-my-zsh
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
chsh -s $(which zsh)
cp ./undefined.zsh-theme ~/.oh-my-zsh/themes
# Homebrew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install all the things
./brew.sh
./brew-cask.sh
# Node Version Manager - https://github.com/creationix/nvm
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
# https://github.com/nvm-sh/nvm#troubleshooting-on-macos
. ~/.nvm/nvm.sh
mkdir ~/.vim/backup//
mkdir ~/.vim/swap//
mkdir ~/.vim/undo//
# install npm packages
npm install --global trash
npm install --global psi
# install solarized theme for terminal(requires to be set as default in Preferences)
open -a Terminal ./solarized-dark-xterm-256color.terminal
# install tmux plugin manager
git clone https://github.com/tmux-plugins/tpm.git ~/.tmux/plugins/tpm
# karabiner settings
./karabiner-import.sh
# test installs
git --version
node -v
npm -v
<file_sep>/brew.sh
#!/bin/bash
# Install command-line tools using Homebrew
# Make sure we’re using the latest Homebrew
brew update
# Upgrade any already-installed formulae
brew upgrade
brew install vim
brew install tmux
brew install yarn
brew install tree
brew install git
brew install ack
brew install jq
# https://github.com/rakyll/hey
brew install hey
# Remove outdated versions from the cellar
brew cleanup
| 9076729dbb498bfde0b094d1e4839a8c1bf0809d | [
"Shell"
] | 3 | Shell | glebskalinskii/dotfiles | e1227396fa947cc5354cee519247a42ac1855961 | f08ac99d826712ab85d5d33d21afcd4f36e06580 |
refs/heads/master | <repo_name>charan223/Database-Management-Systems<file_sep>/SQL Queries/queries.py
import MySQLdb
db = MySQLdb.connect(host="10.5.18.101", user="14CS10037", passwd="<PASSWORD>", db="14CS10037")
cursor = db.cursor()
sql = """select coursename from teacher,teaches where teacher.teachername="PPC" and teacher.teacherid=teaches.teacherid"""
tweets = open("output.txt", "w")
cursor.execute(sql)
print>>tweets, "Query 1:"
print>>tweets, "List all the Courses taught by the teacher - PPC "
print>>tweets, "**********************************************"
for row in cursor:
print>>tweets, row[0]
print>>tweets, "**********************************************"
print>>tweets, "\n\n"
tweets.close()
sql = """select name,course.coursename from student,enrolls,course,teaches,teacher where
student.studentid=enrolls.studentid AND enrolls.coursename=course.coursename AND
course.coursename=teaches.coursename AND teacher.teachername="PPC" AND
teacher.teacherid=teaches.teacherid"""
tweets = open("output.txt", "a")
cursor.execute(sql)
print>>tweets, "Query 2:"
print>>tweets, "List all students registered in the courses taught by PPC "
print>>tweets, "**********************************************"
for row in cursor:
print>>tweets, row[0]
print>>tweets, "**********************************************"
print>>tweets, "\n\n"
tweets.close()
sql = """select starttime,endtime,date from timings,timetable,course,willbein,classroom where
timings.timeid=timetable.timeid AND
timetable.coursename=course.coursename AND
course.coursename=willbein.coursename AND
classroom.roomnumber=willbein.roomnumber AND classroom.roomnumber="NC142" """
tweets = open("output.txt", "a")
cursor.execute(sql)
print>>tweets, "Query 3:"
print>>tweets, "List the timings of all courses in Class-Room NC142."
print>>tweets, "**********************************************"
for row in cursor:
print>>tweets, row[0]
print>>tweets, "**********************************************"
print>>tweets, "\n\n"
tweets.close()
sql = """(select student.name,student.studentid from student,(select marks.marksid,max(marks.marks),
course.coursename from marks,have,course,teaches,teacher where marks.marksid=have.marksid AND
have.coursename=course.coursename and course.coursename=teaches.coursename and teaches.teacherid=teacher.teacherid
and teacher.teachername="PPC" group by marks.marksid,course.coursename) as x where x.marksid=student.studentid ) """
tweets = open("output.txt", "a")
cursor.execute(sql)
print>>tweets, "Query 4:"
print>>tweets, "List the name of the students who received the highest marks in the courses taught by PPC "
print>>tweets, "**********************************************"
for row in cursor:
print>>tweets, row[0]
print>>tweets, "**********************************************"
print>>tweets, "\n\n"
tweets.close()
sql = """select q.name from (select name,p,count(*) as EX1 from student,gradecard, (select max(EXcount) as p from (select student.name, count(*) as EXcount from student,gradecard where grade="EX" and studentid=gradeid group by gradeid ) as x )as z where grade="EX" and studentid=gradeid group by gradeid )as q where q. p=q.EX1
"""
tweets = open("output.txt", "a")
cursor.execute(sql)
print>>tweets, "Query 5:"
print>>tweets, "List the students who have received a grade of EX in the largest number of courses."
print>>tweets, "**********************************************"
for row in cursor:
print>>tweets, row[0]
print>>tweets, "**********************************************"
print>>tweets, "\n\n"
tweets.close()
db.close()
| f890d5d41d8f8afb6bb7595891ec6b9e883af6e9 | [
"Python"
] | 1 | Python | charan223/Database-Management-Systems | 72c5ae55f7d48897e68e6a88b4d92eaa25ffa2a4 | 97f023e1bd92e325f84a60af3b4202b2103ee0e8 |
refs/heads/master | <file_sep>import Header from './components/Header'
import Tasks from './components/Tasks'
import { useState } from 'react'
function App() {
const [tasks, setTasks] = useState([
{
id: 1,
text: 'Doctors Appointment',
day: 'Feb 5th at 2:30pm',
reminder: true,
},
{
id: 2,
text: 'FRS Meeting',
day: 'Feb 6th at 2:30pm',
reminder: false,
},
{
id: 3,
text: 'IT Meeting',
day: 'Feb 6th at 10am',
reminder: true,
},
{
id: 4,
text: 'Sports Event',
day: 'Feb 10th at 5pm',
reminder: false,
},
{
id: 5,
text: 'Doctors 2nd Appointment',
day: 'Feb 11th at 2:30pm',
reminder: true,
},
{
id: 6,
text: 'B Day',
day: 'Feb 22nd at 11:30am',
reminder: true,
},
])
return (
<div className="container">
<Header />
<Tasks tasks={tasks} />
</div>
);
}
export default App; | 1d801cd08e64811a12ed6d131567ce5c58ea71bf | [
"JavaScript"
] | 1 | JavaScript | SoulApps/task-manager | ad0ae1242785ff904971f6fc6cd57391a43da822 | 510aa1dc34bf7e5e1960d319ca97467640bda630 |
refs/heads/master | <repo_name>uts-ikehata/uts-ikehata-readable-code<file_sep>/recipe.c
#include <stdio.h>
#include <stdlib.h>
#define MAX_LENGTH 50
int main(int argc, char *argv[]) {
FILE* fp;
char str[MAX_LENGTH];
int id;
if (argc < 2) {
printf("ファイル名が入力されていません。\n");
exit(EXIT_FAILURE);
}
if ((fp = fopen(argv[1], "r")) == NULL) {
printf("指定されたファイルが開けません。\n");
exit(EXIT_FAILURE);
}
for (id = 1; fgets(str, MAX_LENGTH, fp); id++) {
printf("%d:%s", id, str);
}
fclose(fp);
return 0;
}<file_sep>/readme.txt
今回の開発言語:C言語
コンパイラ:gcc
●コンパイル
コマンドプロンプトを起動し、
recipe.cを置いたフォルダで以下のコマンドを実行。
gcc recipe.c -o recipe.exe
●プログラム実行
以下のコマンドを実行。
recipe.exe (レシピ情報ファイル名)
●レシピ情報
ファイル名:自由に設定してください。
形式:テキストファイル
エンコード:Shift-JIS | 06a88251edf088e7180933d81e719dee173a4908 | [
"C",
"Text"
] | 2 | C | uts-ikehata/uts-ikehata-readable-code | 130c4bc79f2958992f8623a7bf6d69692032d181 | 9e3feedd10176f7e31a129881784463f245defc8 |
refs/heads/master | <file_sep>"use strict";
(function () {
angular
.module("conpa")
.config(config)
.run(setup);
config.$inject = ["$stateProvider", "$urlRouterProvider"];
function config($stateProvider, $urlRouterProvider) {
$stateProvider
.state("default", {
abstract: true,
url: "/",
templateUrl: "app/layout/default.html"
})
.state("default.subs", {
views: {
"header": {
templateUrl: "app/header/header.html"
},
"basket": {
templateUrl: "app/basket/basket.html",
controller: "Basket",
controllerAs: "vm"
},
"info": {
templateUrl: "app/info/info.html",
controller: "Info",
controllerAs: "vm"
},
"stats": {
templateUrl: "app/stats/stats.html",
controller: "Stats",
controllerAs: "vm"
},
"latest": {
templateUrl: "app/latest/latest.html",
controller: "Latest",
controllerAs: "vm"
},
"other": {
templateUrl: "app/other/other.html",
controller: "Other",
controllerAs: "vm"
}
}
});
$urlRouterProvider.otherwise("/");
}
setup.$inject = ["$state"];
function setup($state) {
$state.transitionTo("default.subs");
}
}());
| 068457d2aad1959602a514ef1878550f965ae60e | [
"JavaScript"
] | 1 | JavaScript | yjwang1314/node-conpa | c0c522c39c75ae2d8dd19942d17ca85bff1e7b1a | ae3b6046e440d46a88f91ccef91dd4abaa66407e |
refs/heads/master | <file_sep>
Page({
data: {
date: '',
show: false,
onInitChart(F2, config) {
const chart = new F2.Chart(config);
const data = [
{ value: 63.4, city: 'New York', date: '2011-10-01' },
{ value: 62.7, city: 'Alaska', date: '2011-10-01' },
{ value: 72.2, city: 'Austin', date: '2011-10-01' },
{ value: 58, city: 'New York', date: '2011-10-02' },
{ value: 59.9, city: 'Alaska', date: '2011-10-02' },
{ value: 67.7, city: 'Austin', date: '2011-10-02' },
{ value: 53.3, city: 'New York', date: '2011-10-03' },
{ value: 59.1, city: 'Alaska', date: '2011-10-03' },
{ value: 69.4, city: 'Austin', date: '2011-10-03' },
];
chart.source(data, {
date: {
range: [0, 1],
type: 'timeCat',
mask: 'MM-DD'
},
value: {
max: 300,
tickCount: 4
}
});
chart.area().position('date*value').color('city').adjust('stack');
chart.line().position('date*value').color('city').adjust('stack');
chart.render();
// 注意:需要把chart return 出来
return chart;
}
},
onDisplay() {
this.setData({ show: true });
},
onClose() {
this.setData({ show: false });
},
formatDate(date) {
date = new Date(date);
return `${date.getMonth() + 1}/${date.getDate()}`;
},
onConfirm(event) {
this.setData({
show: false,
date: this.formatDate(event.detail),
});
},
onChange(event) {
wx.showToast({
icon: 'none',
title: `当前值:${event.detail}`,
});
},
});<file_sep>// pages/son/index.js
Component({
/**
* 组件的属性列表
*/
properties: {
msg: {
type: String
}
},
/**
* 组件的初始数据
*/
data: {
str: 'son的data',
sonmsg: '给父亲的'
},
/**
* 组件的方法列表
*/
methods: {
click(){
this.triggerEvent('send', this.data.sonmsg)
}
}
})
<file_sep>// pages/03_code/index.js
Page({
/**
* 页面的初始数据
*/
data: {
username: '',
password: '',
sex: '0',
hobby: ['run']
},
radioChange(e) {
this.setData({
sex: e.detail.value
})
},
checkboxChange(e) {
this.setData({
hobby: e.detail.value
})
},
send(e) {
this.setData({
username: e.detail.value.username,
password: e.detail.value.password
})
let obj = {
username: this.data.username,
password: <PASSWORD>,
sex: this.data.sex,
hobby: this.data.hobby
}
console.log(obj);
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})<file_sep>// pages/01_code/index.js
var tools = require('./tools')
var app = require('mine')
var util = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
movie: 'hot',
msg: 'hello',
str: '哈哈',
flag: false,
list: [
{ name: 'zs', age: 11 },
{ name: 'ls', age: 32 },
{ name: 'ay', age: 33 }
],
flystr: '嘻嘻',
abc: 'A',
a: '奥奥',
fly: '翅膀'
},
open() {
wx.chooseImage({
count: 1,
sizeType: ['original', 'compressed'],
sourceType: ['album', 'camera'],
success(res) {
// tempFilePath可以作为img标签的src属性显示图片
console.log(res);
}
})
},
click(e) {
wx.showActionSheet({
itemList: ['A', 'B', 'C'],
success(res) {
console.log(res.tapIndex)
},
fail(res) {
console.log(res.errMsg)
}
})
console.log(e);
console.log(this);
this.setData({
flag: !this.data.flag
})
},
btn(e) {
wx.showModal({
title: '提示',
content: '这是一个模态弹窗',
success(res) {
if (res.confirm) {
console.log('用户点击确定')
} else if (res.cancel) {
console.log('用户点击取消')
}
}
})
console.log(e);
console.log(e.target.dataset.flag);
},
touch(e) {
wx.showToast({
title: '切换成功',
duration: 10000
})
setTimeout(() => {
wx.hideToast()
}, 500)
console.log(e.target.dataset.info);
this.setData({
movie: e.target.dataset.info
})
},
/**
* 生命周期函数--监听页面加载
*/
// onLoad: function (options) {
// },
onLoad(e) {
this.setData({
a: util.yes(this.data.a)
})
this.setData({
abc: app(this.data.abc)
})
// wx.showLoading({
// title: '加载中',
// mask: true
// })
// setTimeout(() => {
// wx.hideLoading()
// }, 2000)
// console.log(e, 'page onload');
var that = this
that.setData({
msg: '发送请求中'
})
console.log('发送请求 ');
// wx.request({
// url: 'http://m.maoyan.com/movie/list.json?type=hot&offset=0&limit=1000',
// method: 'get',
// data: {},
// success: function (res) {
// console.log(that);
// console.log(12423423);
// }
// })
that.setData({
str: '接口成功'
})
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function (e) {
console.log(e, 'page show');
// var newstr = tools(flystr)
var that = this
console.log(that.data.flystr);
that.setData({
flystr: tools.tools(that.data.flystr)
})
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function (e) {
// console.log(e, 'page hide');
},
}) | 8deba0c0a2663fef7ed18fea240a93a31a398018 | [
"JavaScript"
] | 4 | JavaScript | xiaen/wx-miniProgram | 4c7eb5aa8668828c63eb29c7c28715dfa3feec03 | 8269857ad8f7de7ee25e7277701531308884cf7c |
refs/heads/master | <repo_name>jtrussell/4dmon-cli<file_sep>/README.md
# 4dmon-cli
Command line utility for remote controlling 4dmon instances
<file_sep>/lib/cli.js
/*
* 4dmon-cli
*/
'use strict';
var fs = require( 'fs' )
, path = require( 'path' )
, request = require( 'request' )
, async = require( 'async' )
, home = process.env[(process.platform === 'win32') ? 'USERPROFILE' : 'HOME']
, confFile = path.join( home, '.4dmon' )
, getSettings
, saveSettings
, getAliasHost
, getBaseUrl
;
// -----------------------------------------------------
// Defaults
// -----------------------------------------------------
exports.host = 'localhost';
exports.port = '4077';
exports.protocol = 'http';
exports.setHostAlias = function( alias, cb ) {
var conf = getSettings();
conf.aliases[alias] = exports.host;
saveSettings( conf );
cb();
};
getAliasHost = function( alias, cb ) {
var conf = getSettings()
, host = alias
;
if( conf.aliases.hasOwnProperty( alias ) ) {
host = conf.aliases[alias];
console.log( 'Resolving alias: ' + alias + ' ===> ' + host );
}
return host;
};
exports.listAliases = function( cb ) {
var aliases = getSettings().aliases
, a
;
for( a in aliases ) {
if( aliases.hasOwnProperty( a ) ) {
console.log( a + ': ' + aliases[a] );
}
}
cb();
};
getSettings = function() {
var conf = {};
if( fs.existsSync( confFile ) ) {
conf = JSON.parse( fs.readFileSync( confFile ).toString() );
}
conf.aliases = conf.aliases || {};
return conf;
};
saveSettings = function( obj ) {
fs.writeFileSync( confFile, JSON.stringify( obj ) );
};
exports.cleanSettings = function( cb ) {
fs.unlinkSync( confFile );
cb();
};
exports.stopServer = function( cb ) {
var host = exports.host
, port = exports.port
;
host = getAliasHost( host ); // Resolve alias if needed
host = host + ':' + port;
request( 'http://' + host + '', function( error, response, body ) {
if( error || response.statusCode !== 200 ) {
console.log( 'Whoops! 4dmon-cli could not reach ' + host );
}
cb();
});
};
exports.stopClient = function( cb ) {
};
exports.startClient = function( cb ) {
};
exports.startServer = function( cb ) {
};
exports.snapshot = function( cb ) {
};
getBaseUrl = function() {
var alias = exports.host
, host = getAliasHost( alias )
, port = exports.port
, prot = exports.protocol
, url = prot + '://' + host + ':' + port
;
return url;
};
exports.snapshot = function( cb ) {
var baseUrl = getBaseUrl()
, url = baseUrl + '/trackers/list'
;
request( url, function( error, response, body ) {
if( error || response.statusCode !== 200 ) {
console.log( 'Whoops! 4dmon-cli could not reach ' + exports.host );
process.exit();
}
var list = JSON.parse( body )
, trackers = list.snapshot
;
trackers.forEach( function( tracker ) {
var url = baseUrl + '/snapshot/' + tracker
;
request( url, function( error, response, body ) {
if( error || response.statusCode !== 200 ) {
console.log( 'Whoops! 4dmon-cli count not get info for tracker: ' + tracker );
process.exit();
}
var stats = JSON.parse( body ).data
, output = '' // Buffer this so we aren't inerrupted
;
output += '\n';
output += tracker + '\n';
output += '---------------- \n';
if( stats ) {
stats.forEach( function( stat ) {
output += stat.name + ': ' + stat.value;
});
console.log( output );
} else {
console.log( 'Whoops! 4dmon-cli could not get info for tracker: ' + tracker );
}
});
});
});
};
<file_sep>/lib/info.js
'use strict';
var pkg = require( '../package.json' )
, version = pkg.version
, desc = pkg.description
, helpHeader
, helpFooter
;
exports.version = function() {
return [
pkg.name + ' v' + version
].join( '\n' );
};
| e89dc07fa2de6d16634cbcff462be11770cd9af9 | [
"Markdown",
"JavaScript"
] | 3 | Markdown | jtrussell/4dmon-cli | e5954206f833c530c4654cfeddc5fc8b778ee465 | bff75447709c06e15e36899634258d151b922252 |
refs/heads/master | <repo_name>museun/keypress<file_sep>/src/input.rs
use winapi::um::winuser;
use std::fmt;
#[derive(Debug)]
pub struct Event {
pub key: Key,
pub state: KeyState,
pub modifier: Modifier,
}
impl Event {
pub fn new(key: Key, state: KeyState) -> Self {
Self {
key,
state,
modifier: Modifier::new(),
}
}
}
const KEY_STATES: [i32; 6] = [
winuser::VK_LSHIFT,
winuser::VK_RSHIFT,
winuser::VK_LCONTROL,
winuser::VK_RCONTROL,
winuser::VK_LMENU, // these are Alt
winuser::VK_RMENU,
];
#[derive(PartialEq, Debug)]
pub enum KeyState {
Pressed,
Released,
}
// 0x0000_0000
// RCONTROL----^^^^
// LCONTROl-----|||
// RSHIFT--------||
// LSHIFT---------|
#[derive(Default)]
pub struct Modifier(u8);
impl Modifier {
pub fn left_shift(&self) -> bool {
self.0 & 1 != 0
}
pub fn right_shift(&self) -> bool {
self.0 & (1 << 1) != 0
}
pub fn left_ctrl(&self) -> bool {
self.0 & (1 << 2) != 0
}
pub fn right_ctrl(&self) -> bool {
self.0 & (1 << 3) != 0
}
pub fn left_alt(&self) -> bool {
self.0 & (1 << 4) != 0
}
pub fn right_alt(&self) -> bool {
self.0 & (1 << 5) != 0
}
}
impl fmt::Debug for Modifier {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{:08b}", self.0)
}
}
impl Modifier {
pub fn new() -> Self {
let mut bad = 0u8;
unsafe {
for (i, ks) in KEY_STATES.iter().enumerate() {
let res = winuser::GetKeyState(*ks);
if res.is_negative() {
bad |= 1u8 << (i as u8);
}
}
}
Modifier(bad)
}
}
#[allow(non_camel_case_types)]
#[derive(PartialEq, Clone, Copy, Debug, Serialize, Deserialize)]
pub enum Key {
VK_BACK,
VK_TAB,
VK_CLEAR,
VK_RETURN,
VK_SHIFT,
VK_CONTROL,
VK_MENU,
VK_PAUSE,
VK_CAPITAL,
VK_ESCAPE,
VK_SPACE,
VK_PRIOR,
VK_NEXT,
VK_END,
VK_HOME,
VK_LEFT,
VK_UP,
VK_RIGHT,
VK_DOWN,
VK_SELECT,
VK_PRINT,
VK_EXECUTE,
VK_SNAPSHOT,
VK_INSERT,
VK_DELETE,
VK_HELP,
KEY_0,
KEY_1,
KEY_2,
KEY_3,
KEY_4,
KEY_5,
KEY_6,
KEY_7,
KEY_8,
KEY_9,
KEY_A,
KEY_B,
KEY_C,
KEY_D,
KEY_E,
KEY_F,
KEY_G,
KEY_H,
KEY_I,
KEY_J,
KEY_K,
KEY_L,
KEY_M,
KEY_N,
KEY_O,
KEY_P,
KEY_Q,
KEY_R,
KEY_S,
KEY_T,
KEY_U,
KEY_V,
KEY_W,
KEY_X,
KEY_Y,
KEY_Z,
VK_LWIN,
VK_RWIN,
VK_APPS,
VK_NUMPAD0,
VK_NUMPAD1,
VK_NUMPAD2,
VK_NUMPAD3,
VK_NUMPAD4,
VK_NUMPAD5,
VK_NUMPAD6,
VK_NUMPAD7,
VK_NUMPAD8,
VK_NUMPAD9,
VK_MULTIPLY,
VK_ADD,
VK_SEPARATOR,
VK_SUBTRACT,
VK_DECIMAL,
VK_DIVIDE,
VK_F1,
VK_F2,
VK_F3,
VK_F4,
VK_F5,
VK_F6,
VK_F7,
VK_F8,
VK_F9,
VK_F10,
VK_F11,
VK_F12,
VK_F13,
VK_F14,
VK_F15,
VK_F16,
VK_F17,
VK_F18,
VK_F19,
VK_F20,
VK_F21,
VK_F22,
VK_F23,
VK_F24,
VK_NUMLOCK,
VK_SCROLL,
VK_LSHIFT,
VK_RSHIFT,
VK_LCONTROL,
VK_RCONTROL,
VK_LMENU,
VK_RMENU,
VK_OEM_COMMA,
VK_OEM_MINUS,
VK_OEM_PERIOD,
SC_DASH,
SC_UNDERSCORE,
SC_EQUALS,
SC_PLUS,
SC_OPEN_SQUARE_BRACKET,
SC_OPEN_CURLY_BRACKET,
SC_CLOSE_SQUARE_BRACKET,
SC_CLOSE_CURLY_BRACKET,
SC_SEMICOLON,
SC_COLON,
SC_SQUOTE,
SC_DQUOTE,
SC_BACKTICK,
SC_TIDLE,
SC_BACKSLASH,
SC_PIPE,
SC_COMMA,
SC_OPEN_ANGLE_BRACKET,
SC_PERIOD,
SC_CLOSE_ANGLE_BRACKET,
SC_FORWARD_SLASH,
SC_QUESTION_MARK,
}
impl Key {
pub fn try_make(key: usize, shift: bool, alt: bool) -> Option<Self> {
if alt {
return Some(Key::VK_LMENU);
}
let s = match (key, shift) {
(0x0C, false) => Key::SC_DASH,
(0x0D, false) => Key::SC_EQUALS,
(0x1A, false) => Key::SC_OPEN_SQUARE_BRACKET,
(0x1B, false) => Key::SC_CLOSE_SQUARE_BRACKET,
(0x27, false) => Key::SC_SEMICOLON,
(0x28, false) => Key::SC_SQUOTE,
(0x29, false) => Key::SC_BACKTICK,
(0x2B, false) => Key::SC_BACKSLASH,
(0x33, false) => Key::SC_COMMA,
(0x34, false) => Key::SC_CLOSE_ANGLE_BRACKET,
(0x35, false) => Key::SC_FORWARD_SLASH,
(0x0C, true) => Key::SC_UNDERSCORE,
(0x0D, true) => Key::SC_PLUS,
(0x1A, true) => Key::SC_OPEN_CURLY_BRACKET,
(0x1B, true) => Key::SC_CLOSE_CURLY_BRACKET,
(0x27, true) => Key::SC_COLON,
(0x28, true) => Key::SC_DQUOTE,
(0x29, true) => Key::SC_TIDLE,
(0x2B, true) => Key::SC_PIPE,
(0x33, true) => Key::SC_OPEN_ANGLE_BRACKET,
(0x34, true) => Key::SC_CLOSE_ANGLE_BRACKET,
(0x35, true) => Key::SC_QUESTION_MARK,
_ => return None,
};
Some(s)
}
}
impl fmt::Display for Key {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Key::VK_BACK => write!(f, "Backspace"),
Key::VK_TAB => write!(f, "Tab"),
Key::VK_CLEAR => write!(f, "Clear"),
Key::VK_RETURN => write!(f, "Enter"),
Key::VK_SHIFT => write!(f, "Shift"),
Key::VK_CONTROL => write!(f, "Ctrl"),
Key::VK_MENU => write!(f, "Alt"),
Key::VK_PAUSE => write!(f, "Pause"),
Key::VK_CAPITAL => write!(f, "Caps Lock"),
Key::VK_ESCAPE => write!(f, "Esc"),
Key::VK_SPACE => write!(f, "Spacebar"),
Key::VK_PRIOR => write!(f, "Page Up"),
Key::VK_NEXT => write!(f, "Page Down"),
Key::VK_END => write!(f, "End"),
Key::VK_HOME => write!(f, "Home"),
Key::VK_LEFT => write!(f, "Left Arrow"),
Key::VK_UP => write!(f, "Up Arrow"),
Key::VK_RIGHT => write!(f, "Right Arrow"),
Key::VK_DOWN => write!(f, "Down Arrow"),
Key::VK_SELECT => write!(f, "Select"),
Key::VK_PRINT => write!(f, "Print"),
Key::VK_EXECUTE => write!(f, "Execute"),
Key::VK_SNAPSHOT => write!(f, "Print Screen"),
Key::VK_INSERT => write!(f, "Ins"),
Key::VK_DELETE => write!(f, "Del"),
Key::VK_HELP => write!(f, "Help"),
Key::KEY_0 => write!(f, "0"),
Key::KEY_1 => write!(f, "1"),
Key::KEY_2 => write!(f, "2"),
Key::KEY_3 => write!(f, "3"),
Key::KEY_4 => write!(f, "4"),
Key::KEY_5 => write!(f, "5"),
Key::KEY_6 => write!(f, "6"),
Key::KEY_7 => write!(f, "7"),
Key::KEY_8 => write!(f, "8"),
Key::KEY_9 => write!(f, "9"),
Key::KEY_A => write!(f, "A"),
Key::KEY_B => write!(f, "B"),
Key::KEY_C => write!(f, "C"),
Key::KEY_D => write!(f, "D"),
Key::KEY_E => write!(f, "E"),
Key::KEY_F => write!(f, "F"),
Key::KEY_G => write!(f, "G"),
Key::KEY_H => write!(f, "H"),
Key::KEY_I => write!(f, "I"),
Key::KEY_J => write!(f, "J"),
Key::KEY_K => write!(f, "K"),
Key::KEY_L => write!(f, "L"),
Key::KEY_M => write!(f, "M"),
Key::KEY_N => write!(f, "N"),
Key::KEY_O => write!(f, "O"),
Key::KEY_P => write!(f, "P"),
Key::KEY_Q => write!(f, "Q"),
Key::KEY_R => write!(f, "R"),
Key::KEY_S => write!(f, "S"),
Key::KEY_T => write!(f, "T"),
Key::KEY_U => write!(f, "U"),
Key::KEY_V => write!(f, "V"),
Key::KEY_W => write!(f, "W"),
Key::KEY_X => write!(f, "X"),
Key::KEY_Y => write!(f, "Y"),
Key::KEY_Z => write!(f, "Z"),
Key::VK_LWIN => write!(f, "Left Windows"),
Key::VK_RWIN => write!(f, "Right Windows"),
Key::VK_APPS => write!(f, "Applications"),
Key::VK_NUMPAD0 => write!(f, "Num 0"),
Key::VK_NUMPAD1 => write!(f, "Num 1"),
Key::VK_NUMPAD2 => write!(f, "Num 2"),
Key::VK_NUMPAD3 => write!(f, "Num 3"),
Key::VK_NUMPAD4 => write!(f, "Num 4"),
Key::VK_NUMPAD5 => write!(f, "Num 5"),
Key::VK_NUMPAD6 => write!(f, "Num 6"),
Key::VK_NUMPAD7 => write!(f, "Num 7"),
Key::VK_NUMPAD8 => write!(f, "Num 8"),
Key::VK_NUMPAD9 => write!(f, "Num 9"),
Key::VK_MULTIPLY => write!(f, "*"),
Key::VK_ADD => write!(f, "+"),
Key::VK_SEPARATOR => write!(f, ","),
Key::VK_SUBTRACT => write!(f, "-"),
Key::VK_DECIMAL => write!(f, "."),
Key::VK_DIVIDE => write!(f, "/"),
Key::VK_F1 => write!(f, "F1"),
Key::VK_F2 => write!(f, "F2"),
Key::VK_F3 => write!(f, "F3"),
Key::VK_F4 => write!(f, "F4"),
Key::VK_F5 => write!(f, "F5"),
Key::VK_F6 => write!(f, "F6"),
Key::VK_F7 => write!(f, "F7"),
Key::VK_F8 => write!(f, "F8"),
Key::VK_F9 => write!(f, "F9"),
Key::VK_F10 => write!(f, "F10"),
Key::VK_F11 => write!(f, "F11"),
Key::VK_F12 => write!(f, "F12"),
Key::VK_F13 => write!(f, "F13"),
Key::VK_F14 => write!(f, "F14"),
Key::VK_F15 => write!(f, "F15"),
Key::VK_F16 => write!(f, "F16"),
Key::VK_F17 => write!(f, "F17"),
Key::VK_F18 => write!(f, "F18"),
Key::VK_F19 => write!(f, "F19"),
Key::VK_F20 => write!(f, "F20"),
Key::VK_F21 => write!(f, "F21"),
Key::VK_F22 => write!(f, "F22"),
Key::VK_F23 => write!(f, "F23"),
Key::VK_F24 => write!(f, "F24"),
Key::VK_NUMLOCK => write!(f, "Num Lock"),
Key::VK_SCROLL => write!(f, "Scroll Lock"),
Key::VK_LSHIFT => write!(f, "Left Shift"),
Key::VK_RSHIFT => write!(f, "Right Shift"),
Key::VK_LCONTROL => write!(f, "Left Control"),
Key::VK_RCONTROL => write!(f, "Right Control"),
Key::VK_LMENU => write!(f, "Left Menu"),
Key::VK_RMENU => write!(f, "Right Menu"),
Key::VK_OEM_COMMA => write!(f, ","),
Key::VK_OEM_MINUS => write!(f, "-"),
Key::VK_OEM_PERIOD => write!(f, "."),
Key::SC_DASH => write!(f, "-"),
Key::SC_UNDERSCORE => write!(f, "_"),
Key::SC_EQUALS => write!(f, "="),
Key::SC_PLUS => write!(f, "+"),
Key::SC_OPEN_SQUARE_BRACKET => write!(f, "["),
Key::SC_OPEN_CURLY_BRACKET => write!(f, "{{"),
Key::SC_CLOSE_SQUARE_BRACKET => write!(f, "]"),
Key::SC_CLOSE_CURLY_BRACKET => write!(f, "}}"),
Key::SC_SEMICOLON => write!(f, ";"),
Key::SC_COLON => write!(f, ":"),
Key::SC_SQUOTE => write!(f, "'"),
Key::SC_DQUOTE => write!(f, "\""),
Key::SC_BACKTICK => write!(f, "`"),
Key::SC_TIDLE => write!(f, "~"),
Key::SC_BACKSLASH => write!(f, "\\"),
Key::SC_PIPE => write!(f, "|"),
Key::SC_COMMA => write!(f, ","),
Key::SC_OPEN_ANGLE_BRACKET => write!(f, "<"),
Key::SC_PERIOD => write!(f, "."),
Key::SC_CLOSE_ANGLE_BRACKET => write!(f, ">"),
Key::SC_FORWARD_SLASH => write!(f, "/"),
Key::SC_QUESTION_MARK => write!(f, "?"),
}
}
}
pub(crate) static KEY_TABLE: &[Option<Key>; 1 << 8] = &[
/*0x00*/ None,
/*0x01*/ None,
/*0x02*/ None,
/*0x03*/ None,
/*0x04*/ None,
/*0x05*/ None,
/*0x06*/ None,
/*0x07*/ None,
/*0x08*/ Some(Key::VK_BACK),
/*0x09*/ Some(Key::VK_TAB),
/*0x0A*/ None,
/*0x0B*/ None,
/*0x0C*/ Some(Key::VK_CLEAR),
/*0x0D*/ Some(Key::VK_RETURN),
/*0x0E*/ None,
/*0x0F*/ None,
/*0x10*/ Some(Key::VK_SHIFT),
/*0x11*/ Some(Key::VK_CONTROL),
/*0x12*/ Some(Key::VK_MENU),
/*0x13*/ Some(Key::VK_PAUSE),
/*0x14*/ Some(Key::VK_CAPITAL),
/*0x15*/ None,
/*0x16*/ None,
/*0x17*/ None,
/*0x18*/ None,
/*0x19*/ None,
/*0x1A*/ None,
/*0x1B*/ Some(Key::VK_ESCAPE),
/*0x1C*/ None,
/*0x1D*/ None,
/*0x1E*/ None,
/*0x1F*/ None,
/*0x20*/ Some(Key::VK_SPACE),
/*0x21*/ Some(Key::VK_PRIOR),
/*0x22*/ Some(Key::VK_NEXT),
/*0x23*/ Some(Key::VK_END),
/*0x24*/ Some(Key::VK_HOME),
/*0x25*/ Some(Key::VK_LEFT),
/*0x26*/ Some(Key::VK_UP),
/*0x27*/ Some(Key::VK_RIGHT),
/*0x28*/ Some(Key::VK_DOWN),
/*0x29*/ Some(Key::VK_SELECT),
/*0x2A*/ Some(Key::VK_PRINT),
/*0x2B*/ Some(Key::VK_EXECUTE),
/*0x2C*/ Some(Key::VK_SNAPSHOT),
/*0x2D*/ Some(Key::VK_INSERT),
/*0x2E*/ Some(Key::VK_DELETE),
/*0x2F*/ Some(Key::VK_HELP),
/*0x30*/ Some(Key::KEY_0),
/*0x31*/ Some(Key::KEY_1),
/*0x32*/ Some(Key::KEY_2),
/*0x33*/ Some(Key::KEY_3),
/*0x34*/ Some(Key::KEY_4),
/*0x35*/ Some(Key::KEY_5),
/*0x36*/ Some(Key::KEY_6),
/*0x37*/ Some(Key::KEY_7),
/*0x38*/ Some(Key::KEY_8),
/*0x39*/ Some(Key::KEY_9),
/*0x3A*/ None,
/*0x3B*/ None,
/*0x3C*/ None,
/*0x3D*/ None,
/*0x3E*/ None,
/*0x3F*/ None,
/*0x40*/ None,
/*0x41*/ Some(Key::KEY_A),
/*0x42*/ Some(Key::KEY_B),
/*0x43*/ Some(Key::KEY_C),
/*0x44*/ Some(Key::KEY_D),
/*0x45*/ Some(Key::KEY_E),
/*0x46*/ Some(Key::KEY_F),
/*0x47*/ Some(Key::KEY_G),
/*0x48*/ Some(Key::KEY_H),
/*0x49*/ Some(Key::KEY_I),
/*0x4A*/ Some(Key::KEY_J),
/*0x4B*/ Some(Key::KEY_K),
/*0x4C*/ Some(Key::KEY_L),
/*0x4D*/ Some(Key::KEY_M),
/*0x4E*/ Some(Key::KEY_N),
/*0x4F*/ Some(Key::KEY_O),
/*0x50*/ Some(Key::KEY_P),
/*0x51*/ Some(Key::KEY_Q),
/*0x52*/ Some(Key::KEY_R),
/*0x53*/ Some(Key::KEY_S),
/*0x54*/ Some(Key::KEY_T),
/*0x55*/ Some(Key::KEY_U),
/*0x56*/ Some(Key::KEY_V),
/*0x57*/ Some(Key::KEY_W),
/*0x58*/ Some(Key::KEY_X),
/*0x59*/ Some(Key::KEY_Y),
/*0x5A*/ Some(Key::KEY_Z),
/*0x5B*/ Some(Key::VK_LWIN),
/*0x5C*/ Some(Key::VK_RWIN),
/*0x5D*/ Some(Key::VK_APPS),
/*0x5E*/ None,
/*0x5F*/ None,
/*0x60*/ Some(Key::VK_NUMPAD0),
/*0x61*/ Some(Key::VK_NUMPAD1),
/*0x62*/ Some(Key::VK_NUMPAD2),
/*0x63*/ Some(Key::VK_NUMPAD3),
/*0x64*/ Some(Key::VK_NUMPAD4),
/*0x65*/ Some(Key::VK_NUMPAD5),
/*0x66*/ Some(Key::VK_NUMPAD6),
/*0x67*/ Some(Key::VK_NUMPAD7),
/*0x68*/ Some(Key::VK_NUMPAD8),
/*0x69*/ Some(Key::VK_NUMPAD9),
/*0x6A*/ Some(Key::VK_MULTIPLY),
/*0x6B*/ Some(Key::VK_ADD),
/*0x6C*/ Some(Key::VK_SEPARATOR),
/*0x6D*/ Some(Key::VK_SUBTRACT),
/*0x6E*/ Some(Key::VK_DECIMAL),
/*0x6F*/ Some(Key::VK_DIVIDE),
/*0x70*/ Some(Key::VK_F1),
/*0x71*/ Some(Key::VK_F2),
/*0x72*/ Some(Key::VK_F3),
/*0x73*/ Some(Key::VK_F4),
/*0x74*/ Some(Key::VK_F5),
/*0x75*/ Some(Key::VK_F6),
/*0x76*/ Some(Key::VK_F7),
/*0x77*/ Some(Key::VK_F8),
/*0x78*/ Some(Key::VK_F9),
/*0x79*/ Some(Key::VK_F10),
/*0x7A*/ Some(Key::VK_F11),
/*0x7B*/ Some(Key::VK_F12),
/*0x7C*/ Some(Key::VK_F13),
/*0x7D*/ Some(Key::VK_F14),
/*0x7E*/ Some(Key::VK_F15),
/*0x7F*/ Some(Key::VK_F16),
/*0x80*/ Some(Key::VK_F17),
/*0x81*/ Some(Key::VK_F18),
/*0x82*/ Some(Key::VK_F19),
/*0x83*/ Some(Key::VK_F20),
/*0x84*/ Some(Key::VK_F21),
/*0x85*/ Some(Key::VK_F22),
/*0x86*/ Some(Key::VK_F23),
/*0x87*/ Some(Key::VK_F24),
/*0x88*/ None,
/*0x89*/ None,
/*0x8A*/ None,
/*0x8B*/ None,
/*0x8C*/ None,
/*0x8D*/ None,
/*0x8E*/ None,
/*0x8F*/ None,
/*0x90*/ Some(Key::VK_NUMLOCK),
/*0x91*/ Some(Key::VK_SCROLL),
/*0x92*/ None,
/*0x93*/ None,
/*0x94*/ None,
/*0x95*/ None,
/*0x96*/ None,
/*0x97*/ None,
/*0x98*/ None,
/*0x99*/ None,
/*0x9A*/ None,
/*0x9B*/ None,
/*0x9C*/ None,
/*0x9D*/ None,
/*0x9E*/ None,
/*0x9F*/ None,
/*0xA0*/ Some(Key::VK_LSHIFT),
/*0xA1*/ Some(Key::VK_RSHIFT),
/*0xA2*/ Some(Key::VK_LCONTROL),
/*0xA3*/ Some(Key::VK_RCONTROL),
/*0xA4*/ Some(Key::VK_LMENU),
/*0xA5*/ Some(Key::VK_RMENU),
/*0xA6*/ None,
/*0xA7*/ None,
/*0xA8*/ None,
/*0xA9*/ None,
/*0xAA*/ None,
/*0xAB*/ None,
/*0xAC*/ None,
/*0xAD*/ None,
/*0xAE*/ None,
/*0xAF*/ None,
/*0xB0*/ None,
/*0xB1*/ None,
/*0xB2*/ None,
/*0xB3*/ None,
/*0xB4*/ None,
/*0xB5*/ None,
/*0xB6*/ None,
/*0xB7*/ None,
/*0xB8*/ None,
/*0xB9*/ None,
/*0xBA*/ None,
/*0xBB*/ None,
/*0xBC*/ Some(Key::VK_OEM_COMMA),
/*0xBD*/ Some(Key::VK_OEM_MINUS),
/*0xBE*/ Some(Key::VK_OEM_PERIOD),
/*0xBF*/ None,
/*0xC0*/ None,
/*0xC1*/ None,
/*0xC2*/ None,
/*0xC3*/ None,
/*0xC4*/ None,
/*0xC5*/ None,
/*0xC6*/ None,
/*0xC7*/ None,
/*0xC8*/ None,
/*0xC9*/ None,
/*0xCA*/ None,
/*0xCB*/ None,
/*0xCC*/ None,
/*0xCD*/ None,
/*0xCE*/ None,
/*0xCF*/ None,
/*0xD0*/ None,
/*0xD1*/ None,
/*0xD2*/ None,
/*0xD3*/ None,
/*0xD4*/ None,
/*0xD5*/ None,
/*0xD6*/ None,
/*0xD7*/ None,
/*0xD8*/ None,
/*0xD9*/ None,
/*0xDA*/ None,
/*0xDB*/ None,
/*0xDC*/ None,
/*0xDD*/ None,
/*0xDE*/ None,
/*0xDF*/ None,
/*0xE0*/ None,
/*0xE1*/ None,
/*0xE2*/ None,
/*0xE3*/ None,
/*0xE4*/ None,
/*0xE5*/ None,
/*0xE6*/ None,
/*0xE7*/ None,
/*0xE8*/ None,
/*0xE9*/ None,
/*0xEA*/ None,
/*0xEB*/ None,
/*0xEC*/ None,
/*0xED*/ None,
/*0xEE*/ None,
/*0xEF*/ None,
/*0xF0*/ None,
/*0xF1*/ None,
/*0xF2*/ None,
/*0xF3*/ None,
/*0xF4*/ None,
/*0xF5*/ None,
/*0xF6*/ None,
/*0xF7*/ None,
/*0xF8*/ None,
/*0xF9*/ None,
/*0xFA*/ None,
/*0xFB*/ None,
/*0xFC*/ None,
/*0xFD*/ None,
/*0xFE*/ None,
/*0xFF*/ None,
];
<file_sep>/src/lib.rs
#![allow(dead_code)]
extern crate winapi;
#[macro_use]
extern crate log;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
extern crate toml;
#[macro_use]
extern crate crossbeam_channel;
extern crate tungstenite;
mod config;
pub use config::*;
mod hook;
pub use hook::Hook;
mod input;
pub use input::*;
pub mod websocket;
#[cfg(feature = "generate")]
mod generate;
<file_sep>/README.md
# keypress
sends keypresses for a specific window over a websocket. what could go wrong.
this listens for a keypresses for a specific window and sends them out to a websocket
a simple html file is included that can be used with obs
this is obviously windows only
keypressed.toml is where the configuration is, it has 3 keys you can set, and the address
for the websocket server to listen on.
exit_key is the key that'll instantly kill the program
watch_key is the key that'll have it watch the window that has focused
pause-key is the key that'll pause all event processing until toggled
host is in an address:port format
<file_sep>/src/websocket.rs
use std::net::{Shutdown, TcpListener, TcpStream};
use std::thread;
use input::{Event, Key};
use crossbeam_channel as channel;
use serde_json;
use tungstenite as ws;
type TX<T> = channel::Sender<T>;
type RX<T> = channel::Receiver<T>;
#[derive(Serialize)]
pub struct Message {
#[serde(with = "string")]
pub key: Key,
pub l_shift: bool,
pub r_shift: bool,
pub l_control: bool,
pub r_control: bool,
pub l_alt: bool,
pub r_alt: bool,
}
mod string {
use std::fmt::Display;
use std::str::FromStr;
use serde::{de, Deserialize, Deserializer, Serializer};
pub fn serialize<T, S>(value: &T, serializer: S) -> Result<S::Ok, S::Error>
where
T: Display,
S: Serializer,
{
serializer.collect_str(value)
}
pub fn deserialize<'de, T, D>(deserializer: D) -> Result<T, D::Error>
where
T: FromStr,
T::Err: Display,
D: Deserializer<'de>,
{
String::deserialize(deserializer)?
.parse()
.map_err(de::Error::custom)
}
}
impl From<Event> for Message {
fn from(ev: Event) -> Self {
Message {
key: ev.key,
l_shift: ev.modifier.left_shift(),
r_shift: ev.modifier.right_shift(),
l_control: ev.modifier.left_ctrl(),
r_control: ev.modifier.right_ctrl(),
l_alt: ev.modifier.left_alt(),
r_alt: ev.modifier.right_alt(),
}
}
}
pub fn run_in_thread(addr: &str) -> TX<Message> {
let (tx, rx) = channel::bounded(32);
let listener = TcpListener::bind(addr).expect("must listen");
thread::spawn(move || {
for stream in listener.incoming() {
if let Ok(stream) = stream {
let rx = rx.clone();
handle_socket(stream, &rx);
}
}
});
tx
}
fn handle_socket(socket: TcpStream, rx: &RX<Message>) {
let mut socket = match ws::accept(socket) {
Ok(val) => val,
Err(err) => {
error!("cannot accept client: {}", err);
return;
}
};
loop {
select!{
recv(rx, msg) => {
if let Some(msg) = msg {
let msg = serde_json::to_string(&msg).unwrap(); // trust ourselves
if let Err(err) = socket.write_message(ws::Message::Text(msg)) {
if let Err(err) = socket.get_mut().shutdown(Shutdown::Both) {
debug!("couldn't properly shutdown socket: {}", err);
}
debug!("couldn't write to client: {}", err);
return;
}
}
}
// maybe send a ping here
}
}
}
<file_sep>/src/hook.rs
use std::cell::RefCell;
use std::{mem, ptr};
use winapi::shared::{minwindef, ntdef, windef};
use winapi::um::{errhandlingapi, processthreadsapi, winbase, winuser};
use config::Config;
use input::*;
const MSG_EXIT: minwindef::UINT = winuser::WM_USER + 1;
// TODO maybe move this to an AtomicPointer
thread_local!{
static HOOK: RefCell<Option<Hook>> = RefCell::new(None);
}
pub struct Hook {
id: windef::HHOOK,
tid: minwindef::DWORD,
config: Config,
paused: bool,
fg: Option<windef::HWND>,
cb: Box<FnMut(Event)>,
}
impl Drop for Hook {
fn drop(&mut self) {
unsafe { winuser::PostThreadMessageW(self.tid, MSG_EXIT, 0, 0) };
}
}
impl Hook {
pub fn run(config: Config, f: impl FnMut(Event) + 'static) {
let id = unsafe {
winuser::SetWindowsHookExW(winuser::WH_KEYBOARD_LL, Some(callback), ptr::null_mut(), 0)
};
if id.is_null() {
error!("error: {}", get_last_error());
return;
}
let tid = unsafe { processthreadsapi::GetCurrentThreadId() };
HOOK.with(|hook| {
*hook.borrow_mut() = Some(Hook {
id,
tid,
config,
paused: true,
fg: None,
cb: Box::new(f),
});
});
// dropping the Hook will send the MSG_EXIT message, which'll exit this loop
let mut msg = unsafe { mem::uninitialized() };
loop {
let ret = unsafe { winuser::GetMessageW(&mut msg, ptr::null_mut(), 0, 0) };
match (ret, msg.message) {
(ret, _) if ret < 0 => {
error!("error: {}", get_last_error());
break;
}
(_, MSG_EXIT) => {
debug!("got exit message");
break;
}
_ => {}
}
}
unsafe { winuser::UnhookWindowsHookEx(id) };
}
}
unsafe extern "system" fn callback(
code: i32,
wp: minwindef::WPARAM,
lp: minwindef::LPARAM,
) -> minwindef::LRESULT {
HOOK.with(|hook| {
let mut hook = hook.borrow_mut();
let hook = hook.as_mut().expect("to borrow hook");
match wp as u32 {
winuser::WM_KEYUP | winuser::WM_KEYDOWN => {
let kb: winuser::KBDLLHOOKSTRUCT = *(lp as *const winuser::KBDLLHOOKSTRUCT);
let key = match KEY_TABLE[kb.vkCode as usize] {
Some(key) => key,
None => match Key::try_make(
kb.scanCode as usize,
false,
u32::from(winuser::KF_ALTDOWN >> 8) & kb.flags == 1,
) {
Some(key) => key,
None => return winuser::CallNextHookEx(hook.id, code, wp, lp),
},
};
let state = if (wp as u32) == winuser::WM_KEYUP {
KeyState::Released
} else {
KeyState::Pressed
};
let hwnd = winuser::GetForegroundWindow();
if state == KeyState::Pressed {
if key == hook.config.exit_key {
info!("quitting");
winuser::PostThreadMessageW(hook.tid, MSG_EXIT, 0, 0);
// skip the dispatch
return winuser::CallNextHookEx(hook.id, code, wp, lp);
}
if key == hook.config.watch_key && !hook.paused {
hook.fg = Some(hwnd);
info!("watching {}", get_window_title(hwnd));
// skip the dispatch
return winuser::CallNextHookEx(hook.id, code, wp, lp);
}
if key == hook.config.pause_key {
hook.paused = !hook.paused;
info!("setting pause to: {}", hook.paused);
// skip the dispatch
return winuser::CallNextHookEx(hook.id, code, wp, lp);
}
}
if !hook.paused && Some(hwnd) == hook.fg {
let ev = Event::new(key, state);
(&mut hook.cb)(ev)
}
}
_ => {}
}
winuser::CallNextHookEx(hook.id, code, wp, lp)
})
}
fn get_last_error() -> String {
let err = unsafe { errhandlingapi::GetLastError() };
let mut msg = vec![0u16; 127]; // fixed length strings in the windows api
unsafe {
winbase::FormatMessageW(
winbase::FORMAT_MESSAGE_FROM_SYSTEM | winbase::FORMAT_MESSAGE_IGNORE_INSERTS,
ptr::null_mut(),
err,
u32::from(ntdef::LANG_SYSTEM_DEFAULT),
msg.as_mut_ptr(),
msg.len() as u32,
ptr::null_mut(),
);
}
String::from_utf16_lossy(&msg)
}
fn get_window_title(hwnd: windef::HWND) -> String {
use std::ffi::OsString;
use std::os::windows::ffi::OsStringExt;
let len = unsafe { winuser::GetWindowTextLengthW(hwnd) + 1 };
let mut buf = vec![0u16; len as usize];
let len = unsafe { winuser::GetWindowTextW(hwnd, buf.as_mut_ptr(), len) };
buf.truncate(len as usize);
OsString::from_wide(&buf).to_string_lossy().to_string()
}
<file_sep>/src/generate.rs
#[allow(unused)]
fn generate_table() {
let mut counter = 0;
println!("static KEY_TABLE: &[Option<Key>; 1<<8] = &[");
for &(key, id, _) in MAPPING {
while counter < id {
println!("/*0x{:02X}*/ None,", counter);
counter += 1
}
println!("/*0x{:02X}*/ Some(Key::{}),", counter, key);
counter += 1
}
while counter < 1 << 8 {
println!("/*0x{:02X}*/ None,", counter);
counter += 1
}
println!("];")
}
#[allow(unused)]
fn generate_enum() {
println!("enum Key{{");
for (key, _, _) in MAPPING {
println!("{},", key)
}
println!("}}")
}
#[allow(unused)]
fn generate_display() {
println!("impl fmt::Display for Key {{");
println!("fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {{");
println!("match self {{");
for (key, _, name) in MAPPING {
println!("Key::{} => {{ write!(f, \"{}\") }}", key, name)
}
println!("}} }} }}")
}
#[allow(unused)]
fn generate_debug() {
println!("impl fmt::Debug for Key {{");
println!("fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {{");
println!("match self {{");
for (key, id, _) in MAPPING {
println!(
"Key::{} => {{ write!(f, \"(0x{:02X}) {}\") }}",
key, id, key
)
}
println!("}} }} }}");
}
#[allow(unused)]
static MAPPING: &[(&str, u32, &str)] = &[
("VK_BACK", 0x08, "BACKSPACE key"),
("VK_TAB", 0x09, "TAB key"),
("VK_CLEAR", 0x0C, "CLEAR key"),
("VK_RETURN", 0x0D, "ENTER key"),
("VK_SHIFT", 0x10, "SHIFT key"),
("VK_CONTROL", 0x11, "CTRL key"),
("VK_MENU", 0x12, "ALT key"),
("VK_PAUSE", 0x13, "PAUSE key"),
("VK_CAPITAL", 0x14, "CAPS LOCK key"),
("VK_ESCAPE", 0x1B, "ESC key"),
("VK_SPACE", 0x20, "SPACEBAR"),
("VK_PRIOR", 0x21, "PAGE UP key"),
("VK_NEXT", 0x22, "PAGE DOWN key"),
("VK_END", 0x23, "END key"),
("VK_HOME", 0x24, "HOME key"),
("VK_LEFT", 0x25, "LEFT ARROW key"),
("VK_UP", 0x26, "UP ARROW key"),
("VK_RIGHT", 0x27, "RIGHT ARROW key"),
("VK_DOWN", 0x28, "DOWN ARROW key"),
("VK_SELECT", 0x29, "SELECT key"),
("VK_PRINT", 0x2A, "PRINT key"),
("VK_EXECUTE", 0x2B, "EXECUTE key"),
("VK_SNAPSHOT", 0x2C, "PRINT SCREEN key"),
("VK_INSERT", 0x2D, "INS key"),
("VK_DELETE", 0x2E, "DEL key"),
("VK_HELP", 0x2F, "HELP key"),
("KEY_0", 0x30, "0 key"),
("KEY_1", 0x31, "1 key"),
("KEY_2", 0x32, "2 key"),
("KEY_3", 0x33, "3 key"),
("KEY_4", 0x34, "4 key"),
("KEY_5", 0x35, "5 key"),
("KEY_6", 0x36, "6 key"),
("KEY_7", 0x37, "7 key"),
("KEY_8", 0x38, "8 key"),
("KEY_9", 0x39, "9 key"),
("KEY_A", 0x41, "A key"),
("KEY_B", 0x42, "B key"),
("KEY_C", 0x43, "C key"),
("KEY_D", 0x44, "D key"),
("KEY_E", 0x45, "E key"),
("KEY_F", 0x46, "F key"),
("KEY_G", 0x47, "G key"),
("KEY_H", 0x48, "H key"),
("KEY_I", 0x49, "I key"),
("KEY_J", 0x4A, "J key"),
("KEY_K", 0x4B, "K key"),
("KEY_L", 0x4C, "L key"),
("KEY_M", 0x4D, "M key"),
("KEY_N", 0x4E, "N key"),
("KEY_O", 0x4F, "O key"),
("KEY_P", 0x50, "P key"),
("KEY_Q", 0x51, "Q key"),
("KEY_R", 0x52, "R key"),
("KEY_S", 0x53, "S key"),
("KEY_T", 0x54, "T key"),
("KEY_U", 0x55, "U key"),
("KEY_V", 0x56, "V key"),
("KEY_W", 0x57, "W key"),
("KEY_X", 0x58, "X key"),
("KEY_Y", 0x59, "Y key"),
("KEY_Z", 0x5A, "Z key"),
("VK_LWIN", 0x5B, "Left Windows key (Natural keyboard)"),
("VK_RWIN", 0x5C, "Right Windows key (Natural keyboard)"),
("VK_APPS", 0x5D, "Applications key (Natural keyboard)"),
("VK_NUMPAD0", 0x60, "Numeric keypad 0 key"),
("VK_NUMPAD1", 0x61, "Numeric keypad 1 key"),
("VK_NUMPAD2", 0x62, "Numeric keypad 2 key"),
("VK_NUMPAD3", 0x63, "Numeric keypad 3 key"),
("VK_NUMPAD4", 0x64, "Numeric keypad 4 key"),
("VK_NUMPAD5", 0x65, "Numeric keypad 5 key"),
("VK_NUMPAD6", 0x66, "Numeric keypad 6 key"),
("VK_NUMPAD7", 0x67, "Numeric keypad 7 key"),
("VK_NUMPAD8", 0x68, "Numeric keypad 8 key"),
("VK_NUMPAD9", 0x69, "Numeric keypad 9 key"),
("VK_MULTIPLY", 0x6A, "Multiply key"),
("VK_ADD", 0x6B, "Add key"),
("VK_SEPARATOR", 0x6C, "Separator key"),
("VK_SUBTRACT", 0x6D, "Subtract key"),
("VK_DECIMAL", 0x6E, "Decimal key"),
("VK_DIVIDE", 0x6F, "Divide key"),
("VK_F1", 0x70, "F1 key"),
("VK_F2", 0x71, "F2 key"),
("VK_F3", 0x72, "F3 key"),
("VK_F4", 0x73, "F4 key"),
("VK_F5", 0x74, "F5 key"),
("VK_F6", 0x75, "F6 key"),
("VK_F7", 0x76, "F7 key"),
("VK_F8", 0x77, "F8 key"),
("VK_F9", 0x78, "F9 key"),
("VK_F10", 0x79, "F10 key"),
("VK_F11", 0x7A, "F11 key"),
("VK_F12", 0x7B, "F12 key"),
("VK_F13", 0x7C, "F13 key"),
("VK_F14", 0x7D, "F14 key"),
("VK_F15", 0x7E, "F15 key"),
("VK_F16", 0x7F, "F16 key"),
("VK_F17", 0x80, "F17 key"),
("VK_F18", 0x81, "F18 key"),
("VK_F19", 0x82, "F19 key"),
("VK_F20", 0x83, "F20 key"),
("VK_F21", 0x84, "F21 key"),
("VK_F22", 0x85, "F22 key"),
("VK_F23", 0x86, "F23 key"),
("VK_F24", 0x87, "F24 key"),
("VK_NUMLOCK", 0x90, "NUM LOCK key"),
("VK_SCROLL", 0x91, "SCROLL LOCK key"),
("VK_LSHIFT", 0xA0, "Left SHIFT key"),
("VK_RSHIFT", 0xA1, "Right SHIFT key"),
("VK_LCONTROL", 0xA2, "Left CONTROL key"),
("VK_RCONTROL", 0xA3, "Right CONTROL key"),
("VK_LMENU", 0xA4, "Left MENU key"),
("VK_RMENU", 0xA5, "Right MENU key"),
("VK_OEM_COMMA", 0xBC, "For any country/region, the ',' key"),
("VK_OEM_MINUS", 0xBD, "For any country/region, the '-' key"),
("VK_OEM_PERIOD", 0xBE, "For any country/region, the '.' key"),
];
<file_sep>/src/bin/main.rs
extern crate env_logger;
extern crate keypress;
use keypress::*;
fn main() {
env_logger::init();
let config = load_or_create_config();
let tx = websocket::run_in_thread(&config.host);
let tx = tx.clone();
Hook::run(config, move |event| {
if event.state == KeyState::Pressed {
tx.send(event.into());
}
});
}
<file_sep>/src/config.rs
use input::Key;
use std::{fs, io::Write};
use toml;
pub const CONFIG_FILE: &str = "keypressed.toml";
#[derive(Serialize, Deserialize)]
pub struct Config {
pub exit_key: Key,
pub watch_key: Key,
pub pause_key: Key,
pub host: String,
}
pub enum Error {
Read,
Write,
Serialize,
Deserialize,
}
pub fn load_or_create_config() -> Config {
match Config::load() {
Ok(config) => config,
Err(Error::Read) => {
let config = Config {
exit_key: Key::VK_F10,
watch_key: Key::VK_F9,
pause_key: Key::VK_PAUSE,
host: "localhost:51005".into(),
};
if config.save().is_err() {
error!("cannot create default config");
::std::process::exit(1);
}
warn!("created a default config in {}", CONFIG_FILE);
warn!("edit it then rerun the program");
::std::process::exit(1);
}
Err(_) => {
error!("cannot load the config file",);
::std::process::exit(1);
}
}
}
impl Config {
pub fn load() -> Result<Self, Error> {
let data = fs::read_to_string(CONFIG_FILE).map_err(|e| {
error!("cannot read file: {}", e);
Error::Read
})?;
toml::from_str(&data).map_err(|e| {
error!("Cannot deserialize toml: {}", e);
Error::Deserialize
})
}
pub fn save(&self) -> Result<(), Error> {
let toml = toml::to_string(&self).map_err(|e| {
error!("cannot serialize toml: {}", e);
Error::Serialize
})?;
let mut f = fs::File::create(CONFIG_FILE).map_err(|e| {
error!("cannot create file: {}", e);
Error::Write
})?;
f.write_all(toml.as_bytes()).map_err(|e| {
error!("cannot create file: {}", e);
Error::Write
})
}
}
<file_sep>/Cargo.toml
[package]
name = "keypress"
version = "0.1.0"
authors = ["museun <<EMAIL>>"]
[features]
default = []
generate = []
[dependencies]
log = "0.4.3"
env_logger = "0.5.12"
winapi = { version = "0.3.5", features=["winuser", "errhandlingapi"] }
toml = "0.4.6"
serde = "1.0.71"
serde_derive = "1.0.71"
serde_json = "1.0.24"
tungstenite = "0.6.0"
crossbeam-channel = "0.2.4"
| 75b15b6c65d728a176caafa81d164ed0c3018f54 | [
"Markdown",
"Rust",
"TOML"
] | 9 | Rust | museun/keypress | cb9f2b06f2945c0785a3e557c0deed5a74dffda2 | b1ee1a30055769595ef3c78fc552a1eba46ef63c |
refs/heads/master | <repo_name>trongtuanit/ReactJS<file_sep>/learn-react/src/components/Input/Input.jsx
import React from "react";
const Input = ({ handleFocus, type, focusout }) => {
const Input = <input onFocus={handleFocus} type={type} onBlur={focusout} />;
return Input;
};
export default Input;
<file_sep>/formik-yud/src/App.js
import rocketImg from "./assests/rocket.png";
import Signup from "./components/Signup";
function App() {
return (
<div className="App">
<div className="container mt-3">
<div className="row">
<div className="col-md-5">
<Signup />
</div>
<div className="col-md-7">
<img className="img-fluid w-100" src={rocketImg} alt="rocketImg" />
</div>
</div>
</div>
</div>
);
}
export default App;
<file_sep>/learn-react/src/components/Clock/Clock.jsx
import React, { useState } from "react";
export default function Clock() {
const [date, setDate] = useState(new Date());
setInterval(() => {
setDate(new Date());
}, 1000);
return (
<div>
<h5>This is {date.toLocaleString()}</h5>
</div>
);
}
<file_sep>/react-project/accordion/src/components/Modal.jsx
import React from "react";
import { data } from "../data";
import Item from "./Item";
// import { reducer } from "../reducer.js";
// const defaultState = {};
export default function Modal() {
// const [state, dispatch] = useReducer(reducer, defaultState);
return (
<div className="modal">
{data.map((item) => {
const { question, answer } = item;
return <Item question={question} answer={answer} />;
})}
</div>
);
}
<file_sep>/learn-react/src/components/CustomModal/CustomModal.jsx
import React, { useState } from "react";
import { Modal, Button, Row, Input } from "antd";
// import Counter from "../Counter/Counter";
export default function CustomModal() {
const [value, setValue] = useState(0);
const [isModalVisible, setIsModalVisible] = useState(false);
const showModal = () => {
setIsModalVisible(true);
};
const handleOk = (value) => {
setIsModalVisible(false);
};
const handleCancel = () => {
setIsModalVisible(false);
};
const handleCounter = () => {
setValue(value + 1);
};
const handleReset = () => {
setValue(0);
};
return (
<div>
<Row justify="center">Value:</Row>
<br />
<Row justify="center">
<Button type="primary" onClick={showModal}>
Open Modal
</Button>
</Row>
<Modal
title="Basic Modal"
visible={isModalVisible}
onOk={handleOk}
onCancel={handleCancel}
>
<Input disabled value={value} size="middle" /> <br /> <br />
<Button type="primary" onClick={handleCounter} danger>
Count
</Button>
<span> </span>
<Button type="primary" onClick={handleReset} danger>
Reset
</Button>
</Modal>
</div>
);
}
<file_sep>/react-project/accordion/src/App.js
import Modal from "./components/Modal";
function App() {
return (
<div className="App">
<div className="container">
<div className="title">Questions And Answers About Login</div>
<Modal></Modal>
</div>
</div>
);
}
export default App;
<file_sep>/learn-react/src/components/ModalCounter/ModalCounter.jsx
import { Modal, Row } from "antd";
import React, { Component } from "react";
import "antd/dist/antd.css";
export default class ModalCounter extends Component {
constructor(props) {
super(props);
this.state = {
counter: this.props.defaultValue,
};
}
componentDidMount() {
console.log(this.state.counter);
this.count = setInterval(() => {
this.setState({ counter: this.state.counter + 1 });
}, 200);
}
componentWillUnmount() {
clearInterval(this.count);
}
render() {
return (
<Modal
style={{ top: 20 }}
title="Counter Modal"
visible={this.props.isVisible}
onOk={() => this.props.onOk(this.state.counter)}
onCancel={this.props.onCancel}
>
<Row justify="center">Value: {this.state.counter}</Row>
</Modal>
);
}
}
<file_sep>/todo-app/src/components/Footer.jsx
import React, { useState, useEffect } from "react";
import { Button, Radio } from "antd";
export default function Footer({
amount,
showAll,
showActive,
showCompleted,
deleteAllCompleted,
}) {
const [value, setValue] = useState("All");
const onChange = (e) => {
setValue(e.target.value);
};
useEffect(() => {
if (value === "All") {
showAll();
} else if (value === "Active") {
showActive();
} else if (value === "Completed") {
showCompleted();
}
// eslint-disable-next-line
}, [value]);
return (
<div className="footer">
{amount ? (
<span className="amount">
{amount} {amount > 1 ? "items" : "item"} left
</span>
) : null}
<div>
<Radio.Group
defaultValue="All"
onChange={onChange}
value={value}
optionType="button"
buttonStyle="solid"
>
<Radio.Button value="All">All</Radio.Button>
<Radio.Button value="Active">Active</Radio.Button>
<Radio.Button value="Completed">Completed</Radio.Button>
</Radio.Group>
</div>
<Button
className="dangerBtn"
type="danger"
onClick={() => deleteAllCompleted()}
>
Delete all completed
</Button>
</div>
);
}
<file_sep>/todo-app/src/Data.js
const setData = (arr) => {
localStorage.setItem("todoList", JSON.stringify(arr));
};
const getData = () => {
let data;
if (!JSON.parse(localStorage.getItem("todoList"))) {
data = [];
localStorage.setItem("todoList", JSON.stringify(data));
} else {
data = JSON.parse(localStorage.getItem("todoList"));
}
return data;
};
export { setData, getData };
<file_sep>/react-project/random-person/src/components/reducer.jsx
export const reducer = (state, action) => {
switch (action.type) {
case "GET_NAME":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
case "GET_EMAIL":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
case "GET_AGE":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
case "GET_LOCATION":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
case "GET_PHONE":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
case "GET_PASSWORD":
return {
...state,
title: action.payload.title,
value: action.payload.value,
};
default:
throw new Error("no matching action type");
}
};
<file_sep>/learn-react/src/components/Select/Select.jsx
import React from 'react'
export default function Select({ values, callback, disabled = false, readonly = false, selected }) {
return (
<div>
<select
disabled={disabled}
readOnly={readonly}
onChange={({ target : { value } }) => callback(value)}
>
{values.map(([value, text]) => <option selected={selected === value}value={value}>{text}</option>)}
</select>
</div>
)
}
<file_sep>/todo-app/src/components/TodoItem.jsx
import React, { useState } from "react";
import { Checkbox, Button } from "antd";
export default function TodoItem({
id,
content,
isComplete,
deleteItem,
checkItem,
editItem,
}) {
const [text, setText] = useState(content);
const [isContentEditale, setIsContentEditale] = useState(false);
const handleEdit = () => {
setIsContentEditale(true);
};
const completeEdit = (e) => {
if (!e.target.value) {
e.target.textContent = text;
e.target.value = text;
setIsContentEditale(false);
} else {
editItem(id, text);
setIsContentEditale(false);
}
};
const handleChangeValue = (e) => {
if (!e.target.value) {
e.target.value = text;
return;
} else {
setText(e.target.value);
}
};
return (
<div className="item">
<Checkbox
className="checkbox"
onChange={() => checkItem(id)}
checked={isComplete}
/>
<p
onKeyDown={(e) => {
if (e.key === "Enter") {
completeEdit();
}
}}
onChange={handleChangeValue}
contentEditable={isContentEditale}
onDoubleClick={handleEdit}
onBlur={completeEdit}
className={isComplete && "completed"}
>
{text}
</p>
<Button
className="dangerBtn"
type="danger"
onClick={() => deleteItem(id)}
>
Delete
</Button>
</div>
);
}
<file_sep>/react-project/accordion/src/data.js
export const data = [
{
id: 1,
question: "Do I have to allow the use of cookes?",
answer:
"Unicorn vinyl poutine brooklyn, next level direct trade iceland. Shaman copper mug church-key coloring book, whatever poutine normcore fixie cred kickstarter post-ironic street art",
},
{
id: 2,
question: "Do I have to allow the use of cookes?",
answer:
"Unicorn vinyl poutine brooklyn, next level direct trade iceland. Shaman copper mug church-key coloring book, whatever poutine normcore fixie cred kickstarter post-ironic street art",
},
{
id: 3,
question: "Do I have to allow the use of cookes?",
answer:
"Unicorn vinyl poutine brooklyn, next level direct trade iceland. Shaman copper mug church-key coloring book, whatever poutine normcore fixie cred kickstarter post-ironic street art",
},
{
id: 4,
question: "Do I have to allow the use of cookes?",
answer:
"Unicorn vinyl poutine brooklyn, next level direct trade iceland. Shaman copper mug church-key coloring book, whatever poutine normcore fixie cred kickstarter post-ironic street art",
},
{
id: 5,
question: "Do I have to allow the use of cookes?",
answer:
"Unicorn vinyl poutine brooklyn, next level direct trade iceland. Shaman copper mug church-key coloring book, whatever poutine normcore fixie cred kickstarter post-ironic street art",
},
];
<file_sep>/todo-app/src/components/TableTodo.jsx
import React, { useReducer, useEffect } from "react";
import InputTodo from "./InputTodo";
import TodoItem from "./TodoItem";
import Footer from "./Footer";
import { Button, notification } from "antd";
import { getData, setData } from "../Data.js";
import { v1 as uuidv1 } from "uuid";
import { reducer } from "../reducer.js";
import Modal from "./Modal";
const openNotificationWithIcon = (type) => {
notification[type]({
duration: 1.5,
message: "Thành công",
description: "Chúc mừng bạn đã hoàn thành tất cả công việc!",
});
};
const defaultState = {
todoList: getData(),
isShowCompleted: false,
isShowActive: false,
isShowAll: true,
isModalOpen: false,
modalContent: "",
};
export default function TableTodo() {
const [state, dispatch] = useReducer(reducer, defaultState);
const addTodo = (value) => {
if (!value) {
dispatch({ type: "NO_CONTENT" });
} else {
const newTodo = {
id: uuidv1(),
content: value,
isComplete: false,
};
const newTodoList = [...state.todoList, newTodo];
dispatch({ type: "ADD_ITEM", payload: newTodoList });
}
};
const checkItem = (id) => {
let isUncomplete = false;
let newTodoList = state.todoList.map((todo) => {
if (todo.id === id) {
const newTodo = { ...todo };
if (newTodo.isComplete) {
isUncomplete = true;
}
newTodo.isComplete = !newTodo.isComplete;
return newTodo;
}
return todo;
});
if (isUncomplete) {
dispatch({ type: "UNCOMPLETE_ITEM", payload: newTodoList });
} else {
dispatch({ type: "COMPLETE_ITEM", payload: newTodoList });
}
};
const deleteItem = (id) => {
const newTodoList = state.todoList.filter((item) => item.id !== id);
dispatch({ type: "REMOVE_ITEM", payload: newTodoList });
};
const editItem = (id, value) => {
if (!value) {
return;
}
let newTodoList = state.todoList.map((todo) => {
if (todo.id === id) {
const newTodo = { ...todo };
newTodo.content = value;
return newTodo;
}
return todo;
});
dispatch({ type: "EDIT_ITEM", payload: newTodoList });
};
useEffect(() => {
setData(state.todoList);
}, [state.todoList]);
const deleteAllCompleted = () => {
const newTodoList = state.todoList.filter(
(item) => item.isComplete !== true
);
dispatch({ type: "REMOVE_ALL_COMPLETED", payload: newTodoList });
};
const closeModal = () => {
dispatch({ type: "CLOSE_MODAL" });
};
const showCompleted = () => {
dispatch({ type: "GET_COMPLETED" });
};
const showActive = () => {
dispatch({ type: "GET_ACTIVE" });
};
const showAll = () => {
dispatch({ type: "GET_ALL" });
};
const setAllCompleted = () => {
let newTodoList = state.todoList.map((todo) => {
const newTodo = { ...todo };
newTodo.isComplete = true;
return newTodo;
});
dispatch({ type: "COMPLETE_ALL", payload: newTodoList });
openNotificationWithIcon("success");
};
return (
<div className="container">
<div className="notice">
{state.isModalOpen && (
<Modal closeModal={closeModal} modalContent={state.modalContent} />
)}
</div>
<InputTodo addTodo={addTodo} />
{state.todoList.length ? (
<Button
type="danger"
className="dangerBtn center"
onClick={setAllCompleted}
>
Complete all
</Button>
) : null}
{state.todoList.map((item) => {
const { id, content, isComplete } = item;
if (state.isShowAll) {
return (
<TodoItem
key={id}
id={id}
content={content}
isComplete={isComplete}
deleteItem={deleteItem}
checkItem={checkItem}
editItem={editItem}
/>
);
} else if (state.isShowCompleted) {
if (item.isComplete === true) {
return (
<TodoItem
key={id}
id={id}
content={content}
isComplete={isComplete}
deleteItem={deleteItem}
checkItem={checkItem}
editItem={editItem}
/>
);
}
} else if (state.isShowActive) {
if (item.isComplete === false) {
return (
<TodoItem
key={id}
id={id}
content={content}
isComplete={isComplete}
deleteItem={deleteItem}
checkItem={checkItem}
editItem={editItem}
/>
);
}
}
return null;
})}
{state.todoList.length ? (
<Footer
amount={state.todoList.length}
showAll={showAll}
showActive={showActive}
showCompleted={showCompleted}
deleteAllCompleted={deleteAllCompleted}
/>
) : null}
</div>
);
}
<file_sep>/react-project/random-person/src/App.js
import Card from "./components/Card";
import { useFetch } from "./hooks/useFetch";
import Loading from "./components/Loading";
import React from "react";
const Context = React.createContext();
const url = "https://randomuser.me/api/";
function App() {
const { loading, data, getData } = useFetch(url);
return (
<Context.Provider value>
<div className="page">
{loading ? (
<Loading />
) : (
<Card data={data.results[0]} getData={getData} />
)}
</div>
</Context.Provider>
);
}
export default App;
<file_sep>/react-project/accordion/src/components/Item.jsx
import React, { useReducer } from "react";
import { reducer } from "../reducer";
const defaultState = {
isAnswerOpen: false,
};
export default function Item({ question, answer }) {
const [state, dispatch] = useReducer(reducer, defaultState);
const toggleAnswer = () => {
dispatch({ type: "TOGGLE_ANSWER" });
};
return (
<div className="item">
<div className="question">
<h4>{question}</h4>
<button onClick={toggleAnswer}>{state.isAnswerOpen ? "-" : "+"}</button>
</div>
{state.isAnswerOpen && (
<div className="answer">
<p>{answer}</p>
</div>
)}
</div>
);
}
<file_sep>/todo-app/src/reducer.js
export const reducer = (state, action) => {
switch (action.type) {
case "ADD_ITEM":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Item added!",
};
case "NO_CONTENT":
return {
...state,
isModalOpen: true,
modalContent: "Please enter value!",
};
case "CLOSE_MODAL":
return { ...state, isModalOpen: false };
case "REMOVE_ITEM":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Remove item successfully!",
};
case "COMPLETE_ITEM":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Item completed!",
};
case "UNCOMPLETE_ITEM":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Item uncompleted!",
};
case "COMPLETE_ALL":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "All items completed!",
};
case "GET_ALL":
return {
...state,
isShowActive: false,
isShowCompleted: false,
isShowAll: true,
};
case "GET_COMPLETED":
return {
...state,
isShowActive: false,
isShowCompleted: true,
isShowAll: false,
};
case "GET_ACTIVE":
return {
...state,
isShowActive: true,
isShowCompleted: false,
isShowAll: false,
};
case "REMOVE_ALL_COMPLETED":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Delete all items completed!",
};
case "EDIT_ITEM":
return {
...state,
todoList: action.payload,
isModalOpen: true,
modalContent: "Item edited!",
};
default:
throw new Error("no matching action type");
}
};
<file_sep>/react-project/random-person/src/components/Card.jsx
import React, { useReducer } from "react";
import ListInfo from "./ListInfo";
import { reducer } from "./reducer";
export default function Card({ data, getData }) {
const defaultState = {
title: `My name is`,
value: `${data.name.first} ${data.name.last}`,
};
const [state, dispatch] = useReducer(reducer, defaultState);
const getName = () => {
const newState = {
title: `My name is`,
value: `${data.name.first} ${data.name.last}`,
};
dispatch({ type: "GET_NAME", payload: newState });
};
const getEmail = () => {
const newState = {
title: `My email is`,
value: `${data.email}`,
};
dispatch({ type: "GET_EMAIL", payload: newState });
};
const getAge = () => {
const newState = {
title: `My age is`,
value: `${data.dob.age}`,
};
dispatch({ type: "GET_AGE", payload: newState });
};
const getLocation = () => {
const newState = {
title: `My street is`,
value: `${data.location.street.name}`,
};
dispatch({ type: "GET_LOCATION", payload: newState });
};
const getPhone = () => {
const newState = {
title: `My phone is`,
value: `${data.phone}`,
};
dispatch({ type: "GET_PHONE", payload: newState });
};
const getPassword = () => {
const newState = {
title: `My password is`,
value: `${data.login.password}`,
};
dispatch({ type: "GET_PASSWORD", payload: newState });
};
return (
<div className="modal">
<div className="img">
<img src={data.picture.large} alt="avatar" />
</div>
<div className="user-data">
<p className="user-title">{state.title}</p>
<h1 className="user-value">{state.value}</h1>
</div>
<ListInfo
getName={getName}
getEmail={getEmail}
getAge={getAge}
getLocation={getLocation}
getPhone={getPhone}
getPassword={getPassword}
/>
<button className="random" onClick={getData}>
Random person
</button>
</div>
);
}
<file_sep>/todo-app/src/App.js
import React, { useState } from "react";
import TableTodo from "./components/TableTodo";
import { Switch } from "antd";
import "antd/dist/antd.css";
import "./App.css";
function App() {
const [isInDarkMode, setisInDarkMode] = useState(false);
const setDarkMode = () => {
setisInDarkMode(!isInDarkMode);
};
return (
<div className={isInDarkMode ? "dark-mode content" : "content"}>
<Switch defaultChecked={isInDarkMode} onChange={setDarkMode} />
<div className="container">
<h1 className="title">Todo List</h1>
<TableTodo />
</div>
</div>
);
}
export default App;
| 9d634763e36cf7e283a9ff70121da131a5a9a243 | [
"JavaScript"
] | 19 | JavaScript | trongtuanit/ReactJS | b71e5b6beb61477115b2395ad716e21cb2d791a3 | 906b86b2a65785fb6f0038495ee7487d6601a53b |
refs/heads/main | <file_sep>import React, {useState} from 'react';
import {
View,
Text,
StyleSheet,
Dimensions,
TouchableOpacity,
Picker,
} from 'react-native';
import {useDispatch, useSelector} from 'react-redux';
import { addPelanggan } from '../redux/actions/pelanggan'
import Input from '../components/input';
export default function AdddPelanggan({navigation}) {
const [nama, setNama] = useState('');
const [domisili, setDomisili] = useState('');
const [jk, setJk] = useState('');
const dispatch = useDispatch();
const _onSubmit = () =>{
dispatch(addPelanggan({nama, domisili, jenis_kelamin:jk}))
// navigation.navigate('Pelanggan')
}
return (
<View style={styles.container}>
<View style={styles.card}>
<Text style={styles.title}> Tambah Data Pelanggan</Text>
<Input
value={nama}
onChangeText={(text) => setNama(text)}
placeholder="Nama"
returnKeyType="next"
autoCapitalize="none"
/>
<Input
value={domisili}
onChangeText={(text) => setDomisili(text)}
placeholder="Domisili"
returnKeyType="next"
autoCapitalize="none"
/>
<View
style={{
height: 50,
borderBottomWidth: 1.3,
borderBottomColor: '#a6a6a6',
}}>
<Picker
selectedValue={jk}
onValueChange={(itemValue) => setJk(itemValue)}>
<Picker.Item label="Jenis Kelamin" value="" />
<Picker.Item label="Pria" value="PRIA" />
<Picker.Item label="Wanita" value="WANITA" />
</Picker>
</View>
<TouchableOpacity
style={styles.button}
onPress={()=>_onSubmit()}>
<Text>Tambah Data Pelanggan</Text>
</TouchableOpacity>
</View>
</View>
);
}
const styles = StyleSheet.create({
container: {
marginTop: 20,
paddingTop: 10,
backgroundColor: 'white',
height: Dimensions.get('screen').height,
paddingHorizontal: 10,
},
card: {
backgroundColor: 'white',
padding: 20,
marginVertical: 10,
borderRadius: 10,
elevation: 3,
},
title: {fontSize: 18, marginVertical: 20},
button: {
backgroundColor: '#a6a6a6',
justifyContent: 'center',
alignItems: 'center',
padding: 10,
marginTop: 50,
},
});
<file_sep>import {GET_PELANGGAN, ADD_PELANGGAN} from '../type/pelanggan';
import axios from 'axios';
import {URI} from '../../utils';
import { ToastAndroid } from 'react-native';
export const getPelanggan = () => async (dispatch) => {
try {
const res = await axios.get(`${URI}/pelanggan`);
dispatch({type: GET_PELANGGAN, payload: res.data.data});
} catch (e) {
console.log(e);
}
};
export const addPelanggan = (data) => async (dispatch) => {
try {
const res = await axios.post(`${URI}/pelanggan`, data);
dispatch({type: ADD_PELANGGAN, payload: res.data.data});
ToastAndroid.show(
`Data pelanggan berhasil ditambahkan`,
ToastAndroid.SHORT,
);
} catch (e) {
console.log(e);
}
};
<file_sep>import React from 'react';
import {
View,
Text,
StyleSheet,
Dimensions,
ScrollView,
FlatList,
TouchableOpacity,
Image,
} from 'react-native';
import {useDispatch, useSelector} from 'react-redux';
import {getPelanggan} from '../redux/actions/pelanggan';
import {Images} from '../../assets';
export default function Pelanggan({navigation}) {
const dispatch = useDispatch();
const {pelanggan, message} = useSelector((state) => state.pelanggan);
React.useEffect(() => {
dispatch(getPelanggan());
}, [message]);
const renderItem = ({item}) => {
return (
<View style={styles.card}>
<View style={styles.kode}>
<Text>{item.id_pelanggan}</Text>
</View>
<View style={styles.data}>
<Text style={{fontWeight: 'bold'}}>{item.nama}</Text>
<Text>{item.jenis_kelamin}</Text>
<Text>{item.domisili}</Text>
</View>
{/* <View style={styles.action}>
<TouchableOpacity>
<Image source={Images.edit} style={{height: 25, width: 25}} />
</TouchableOpacity>
<TouchableOpacity>
<Image
source={Images.delete}
style={{height: 25, width: 25, marginTop: 10}}
/>
</TouchableOpacity>
</View> */}
</View>
);
};
return (
<View style={styles.container}>
<Text style={styles.title}>Data Pelanggan</Text>
<TouchableOpacity
style={styles.button}
onPress={()=>navigation.navigate('AddPelanggan')}>
<Text>Tambah Data Pelanggan</Text>
</TouchableOpacity>
<ScrollView style={{marginBottom:100, marginTop:10}}>
<FlatList
data={pelanggan}
renderItem={renderItem}
keyExtractor={(item, index) => index.toString()}
/>
</ScrollView>
</View>
);
}
const styles = StyleSheet.create({
container: {
marginTop: 20,
paddingTop: 10,
backgroundColor: 'white',
height: Dimensions.get('screen').height,
paddingHorizontal: 10,
},
card: {
backgroundColor: 'white',
padding: 20,
marginVertical: 10,
borderRadius: 10,
elevation: 3,
flex: 1,
flexDirection: 'row',
},
title: {fontSize: 18, marginVertical: 20},
kode: {
backgroundColor: 'rgba(58, 61, 66, 0.1)',
height: 80,
width: 120,
alignItems: 'center',
justifyContent: 'center',
flex: 1,
},
data: {
flex: 1,
flexDirection: 'column',
marginHorizontal: 10,
justifyContent: 'center',
},
action: {
flexDirection: 'column',
marginLeft: 'auto',
justifyContent: 'center',
},
button:{
backgroundColor: '#1aff66',
justifyContent: 'center',
alignItems: 'center',
padding: 10,
width:200,
}
});
<file_sep>import React from 'react';
import {
View,
Text,
Dimensions,
ScrollView,
StyleSheet,
FlatList,
TouchableOpacity,
Image
} from 'react-native';
import {useDispatch, useSelector} from 'react-redux';
import {getBarang} from '../redux/actions/barang';
export default function Barang() {
const dispatch = useDispatch();
const {barang} = useSelector((state) => state.barang);
React.useEffect(() => {
dispatch(getBarang());
}, []);
const renderItem = ({item}) => {
return (
// <View style={styles.dataTable}>
// <Text style={styles.flexdata1}>{item.kode}</Text>
// <Text style={styles.flexdata1}>{item.nama}</Text>
// <Text style={styles.flexdata1}>{item.kategori}</Text>
// <Text style={styles.flexdata1}>{item.harga}</Text>
// </View>
<View style={styles.card}>
<View style={styles.kode}>
<Text>{item.kode}</Text>
</View>
<View style={styles.data}>
<Text style={{fontWeight: 'bold'}}>{item.nama}</Text>
<Text>{item.kategori}</Text>
<Text>{item.harga}</Text>
</View>
<View style={styles.action}>
{/* <TouchableOpacity onPress={()=>navigation.navigate('EditPenjualan',{nota:item.id_nota})}> */}
{/* <TouchableOpacity onPress={()=>_onEdit(item.id_nota, item.id_item)}>
<Image source={Images.edit} style={{height: 25, width: 25}} />
</TouchableOpacity>
<TouchableOpacity onPress={()=>_onDelete(item.id_nota)}>
<Image
source={Images.delete}
style={{height: 25, width: 25, marginTop: 10}}
/>
</TouchableOpacity> */}
</View>
</View>
);
};
return (
<View style={styles.container}>
<Text style={styles.titleTable}>Data Barang</Text>
{/* <View style={styles.dataTable}>
<Text style={styles.flex1}>KODE</Text>
<Text style={styles.flex1}>NAMA</Text>
<Text style={styles.flex1}>KATEGORI</Text>
<Text style={styles.flex1}>HARGA</Text>
</View> */}
<FlatList
data={barang}
renderItem={renderItem}
keyExtractor={(item, index) => index.toString()}
/>
</View>
);
}
const styles = StyleSheet.create({
container: {
marginTop: 20,
paddingTop: 10,
backgroundColor: 'white',
height: Dimensions.get('screen').height,
paddingHorizontal: 10,
},
dataTable: {
// flex: 1,
flexDirection: 'row',
borderTopWidth: 1,
borderColor: 'grey',
width: '100%',
paddingVertical: 10,
},
titleTable: {fontSize: 18, marginVertical: 20},
flex1: {fontWeight: 'bold', color: 'grey', flex: 1},
flexdata1: {color: 'black', flex: 1},
card: {
backgroundColor: 'white',
padding: 20,
marginVertical: 10,
borderRadius: 10,
elevation: 3,
flex: 1,
flexDirection: 'row',
},
title: {fontSize: 18, marginVertical: 20},
kode: {
backgroundColor: 'rgba(58, 61, 66, 0.1)',
height: 80,
width: 120,
alignItems: 'center',
justifyContent: 'center',
flex: 1,
},
data: {
flex: 1,
flexDirection: 'column',
marginHorizontal: 5,
justifyContent: 'center',
},
action: {
flexDirection: 'column',
marginLeft: 'auto',
justifyContent: 'center',
},
});
<file_sep>export const GET_PELANGGAN = 'GET_PELANGGAN';
export const ADD_PELANGGAN = 'ADD_PELANGGAN';
<file_sep>import React from 'react';
import {
View,
Text,
StyleSheet,
Dimensions,
ScrollView,
FlatList,
TouchableOpacity,
Image,
} from 'react-native';
import {useDispatch, useSelector} from 'react-redux';
import {getPenjualan, getPenjualanByNota, deletePenjualan} from '../redux/actions/penjualan';
import {Images} from '../../assets';
export default function Penjualan({navigation}) {
const dispatch = useDispatch();
const {penjualan, message} = useSelector((state) => state.penjualan);
React.useEffect(() => {
dispatch(getPenjualan());
}, [message]);
const _onEdit = async(nota, item) =>{
await dispatch(getPenjualanByNota(nota));
navigation.push('EditPenjualan', {id_nota:nota, id_item:item})
}
const _onDelete = async(nota) =>{
await dispatch(deletePenjualan(nota));
}
const renderItem = ({item}) => {
return (
<View style={styles.card}>
<View style={styles.kode}>
<Text>{item.id_nota}</Text>
</View>
<View style={styles.data}>
<Text style={{fontWeight: 'bold'}}>{item.nama}</Text>
<Text>{item.tgl}</Text>
<Text>{item.subtotal}</Text>
</View>
<View style={styles.action}>
{/* <TouchableOpacity onPress={()=>navigation.navigate('EditPenjualan',{nota:item.id_nota})}> */}
<TouchableOpacity onPress={()=>_onEdit(item.id_nota, item.id_item)}>
<Image source={Images.edit} style={{height: 25, width: 25}} />
</TouchableOpacity>
<TouchableOpacity onPress={()=>_onDelete(item.id_nota)}>
<Image
source={Images.delete}
style={{height: 25, width: 25, marginTop: 10}}
/>
</TouchableOpacity>
</View>
</View>
);
};
return (
<View style={styles.container}>
<Text style={styles.title}>Data Penjualan</Text>
<TouchableOpacity
style={styles.button}
onPress={() => navigation.navigate('AddPenjualan')}>
<Text>Tambah Data Penjualan</Text>
</TouchableOpacity>
<ScrollView style={{marginBottom: 100, marginTop: 10}}>
<FlatList
data={penjualan}
renderItem={renderItem}
keyExtractor={(item, index) => index.toString()}
/>
</ScrollView>
</View>
);
}
const styles = StyleSheet.create({
container: {
marginTop: 20,
paddingTop: 10,
backgroundColor: 'white',
height: Dimensions.get('screen').height,
paddingHorizontal: 10,
},
card: {
backgroundColor: 'white',
padding: 20,
marginVertical: 10,
borderRadius: 10,
elevation: 3,
flex: 1,
flexDirection: 'row',
},
title: {fontSize: 18, marginVertical: 20},
kode: {
backgroundColor: 'rgba(58, 61, 66, 0.1)',
height: 80,
width: 120,
alignItems: 'center',
justifyContent: 'center',
flex: 1,
},
data: {
flex: 1,
flexDirection: 'column',
marginHorizontal: 5,
justifyContent: 'center',
},
action: {
flexDirection: 'column',
marginLeft: 'auto',
justifyContent: 'center',
},
button:{
backgroundColor: '#1aff66',
justifyContent: 'center',
alignItems: 'center',
padding: 10,
width:200,
}
});
<file_sep>import { combineReducers } from 'redux'
import barangReducer from './barang'
import pelangganReducer from './pelanggan'
import penjualanReducer from './penjualan'
export default combineReducers({
barang:barangReducer,
pelanggan:pelangganReducer,
penjualan:penjualanReducer,
})<file_sep>import {GET_PENJUALAN, ADD_PENJUALAN, EDIT_PENJUALAN, GET_PENJUALAN_BY_NOTA, DELETE_PENJUALAN} from '../type/penjualan';
const initialState = {
penjualan: [],
penjualanByNota: [],
message:'',
};
export default (state = initialState, action) => {
switch (action.type) {
case GET_PENJUALAN:
return {
...state,
penjualan: action.payload,
};
case GET_PENJUALAN_BY_NOTA:
return {
...state,
penjualanByNota: action.payload,
};
case ADD_PENJUALAN:
return {
...state,
message: action.payload.message,
};
case EDIT_PENJUALAN:
return {
...state,
message: action.payload.message,
};
case DELETE_PENJUALAN:
return {
...state,
message: action.payload.message,
};
default:
return {
...state,
};
}
};
<file_sep>// export const URI = 'http://192.168.43.149:8000/api/v1';
export const URI = 'https://penjualan-api.herokuapp.com/api/v1';<file_sep>import React from 'react';
import {StatusBar} from 'react-native';
import MainNavigator from './src/navigator';
import {Provider} from 'react-redux';
import {PersistGate} from 'redux-persist/es/integration/react';
import {store, persistor} from './src/redux/store';
const App = () => {
return (
<>
<StatusBar translucent backgroundColor="white" barStyle="dark-content" />
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<MainNavigator />
</PersistGate>
</Provider>
</>
);
};
export default App;
| d918dcbc57c84cf98089815d4496fe6e721a5a99 | [
"JavaScript"
] | 10 | JavaScript | amyusup/penjualan | 5e0e721254be64cc5e9ea92323f9f30f4a1ded80 | da86c0a8f5dbadfb157817cb091d90d4208862b3 |
refs/heads/master | <file_sep>import { TsMorphMetadataProvider } from "@mikro-orm/reflection";
import { MikroORM } from "@mikro-orm/core";
import path from "path";
import { __prod__ } from "./constants";
import { Todo } from "./entities";
export default {
migrations: {
path: path.join(__dirname, "./migrations"),
pattern: /^[\w-]+\d+\.[tj]s$/,
transactional: true,
disableForeignKeys: true,
allOrNothing: true,
dropTables: true,
safe: false,
emit: "ts",
},
entities: [Todo],
debug: !__prod__,
metadataProvider: TsMorphMetadataProvider,
type: "postgresql",
dbName: process.env.DB_NAME,
user: process.env.DB_USER,
password: <PASSWORD>,
} as Parameters<typeof MikroORM.init>[0];
<file_sep>import { Migration } from '@mikro-orm/migrations';
export class Migration20210811024335 extends Migration {
async up(): Promise<void> {
this.addSql('create table "todo" ("id" uuid not null default uuid_generate_v4(), "created_at" timestamptz(0) not null, "updated_at" timestamptz(0) not null, "title" text not null, "finished" bool not null);');
this.addSql('alter table "todo" add constraint "todo_pkey" primary key ("id");');
this.addSql('drop table if exists "post" cascade;');
}
}
<file_sep>export { TodoResolver } from "./todo";
<file_sep>import "reflect-metadata";
import { MikroORM } from "@mikro-orm/core";
import { ApolloServer } from "apollo-server-express";
import { buildSchema } from "type-graphql";
import { __prod__ } from "./constants";
import express from "express";
import colors from "colors";
import dotenv from "dotenv";
dotenv.config({ path: __prod__ ? ".env" : ".env.development" });
import { TodoResolver } from "./resolvers";
import mikroConfig from "./mikro-orm.config";
const main = async () => {
const orm = await MikroORM.init(mikroConfig);
await orm.getMigrator().up();
const app = express();
const PORT = process.env.PORT || 5000;
const apolloServer = new ApolloServer({
schema: await buildSchema({
resolvers: [TodoResolver],
validate: false,
}),
context: () => ({ em: orm.em }),
introspection: true,
});
apolloServer.applyMiddleware({ app });
app.get("/", (_, res) => {
res.send("Database Connected");
});
app.listen(PORT, () => {
console.clear();
console.log(`Connected to DB: ${process.env.DB_NAME}`);
console.log(
colors.green(`ready - started server on`),
colors.blue(`http://localhost:${PORT}`)
);
});
};
main().catch((err) => {
console.log(err);
});
<file_sep># PERN Todo List
🚧 `WORK IN PROGRESS` 🚧
A very straight-forward and simple todo-list with the PERN Stack (Postgres, Express, React, Node).
> Practicing MobX as a the state-management for the client-side with persistence.
> Serves as a boilerplate for crud functionality
---
## Project Structure
```bash
├ 📁client # WIP: connected to postgres server
├ 📁client-static # no connection to postgres server
| └ 📁src
| ├ 📁utils
| | └ AppStore.ts # MobX store and context hook
| └ App.tsx # Main interface
└ 📁server
└ 📁src
├ 📁entities
| └ *.ts # Models for Postgres and GraphQL
├ 📁migrations
| └ AppStore.ts # Postgres commands for migration
| # more in package.json `migration:*`
├ 📁resolvers
| └ *.ts # GraphQL resolvers (CRUD logic)
├ server.ts # Entry point of server
| # (contains resolver array)
└ mikro-orm.config.ts # Config for database connection
# (contains entities array)
```
---
## Client-Static Preview
<div align="center">
<img src="./assets/sc.png" alt="client preview">
</div>
<br />
## GraphQL Preview
<div align="center">
<img src="./assets/graphql.png" alt="client preview">
</div>
<br />
<file_sep>import React from "react";
import { makeAutoObservable } from "mobx";
import {
makePersistable,
clearPersistedStore,
isHydrated,
isPersisting,
} from "mobx-persist-store";
export interface ITodo {
id: string;
title: string;
finished: boolean;
dateAdded: number;
}
export class AppStore {
todos: ITodo[] = [];
constructor() {
makeAutoObservable(this);
makePersistable(
this,
{
name: "AppStore",
properties: ["todos"],
storage: window.localStorage,
stringify: true,
debugMode: false,
},
{ delay: 0 }
);
}
get isHydrated() {
return isHydrated(this);
}
get isPersisting() {
return isPersisting(this);
}
async clearPersistedData(): Promise<void> {
await clearPersistedStore(this);
}
addTodo(todo: ITodo) {
const old = JSON.parse(JSON.stringify(this.todos));
this.todos = [...old, todo];
}
updateTodo(id: string, todo: ITodo) {
this.todos = this.todos.filter((e) => e.id !== id);
this.addTodo(todo);
}
deleteTodo(id: string) {
this.todos = this.todos.filter((e) => e.id !== id);
}
}
export const appStore = new AppStore();
export const AppStoreContext = React.createContext(appStore);
export const useAppStore = (): AppStore => React.useContext(AppStoreContext);
<file_sep>import { Todo } from "../entities/";
import { MyContext } from "../types";
import { Arg, Ctx, Mutation, Query, Resolver } from "type-graphql";
@Resolver()
export class TodoResolver {
@Query(() => [Todo])
async todos(@Ctx() { em }: MyContext): Promise<Todo[]> {
return await em.find(Todo, {});
}
@Query(() => Todo, { nullable: true })
async todo(
@Arg("id", () => String) id: string,
@Ctx() { em }: MyContext
): Promise<Todo | null> {
return await em.findOne(Todo, { id });
}
@Mutation(() => Todo)
async createTodo(
@Arg("title", () => String) title: string,
@Ctx() { em }: MyContext
): Promise<Todo> {
const post = await em.create(Todo, { title, finished: false });
await em.persistAndFlush(post);
return post;
}
@Mutation(() => Todo, { nullable: true })
async updateTodo(
@Arg("id", () => String) id: string,
@Arg("title", () => String) title: string,
@Arg("finished", () => Boolean) finished: boolean,
@Ctx() { em }: MyContext
): Promise<Todo | null> {
const post = await em.findOne(Todo, { id });
if (!post) {
return null;
}
if (!!title) {
post.title = title;
post.finished = finished;
await em.persistAndFlush(post);
}
return post;
}
@Mutation(() => Boolean)
async deleteTodo(
@Arg("id", () => String) id: string,
@Ctx() { em }: MyContext
): Promise<boolean> {
try {
await em.nativeDelete(Todo, { id });
return true;
} catch (_) {
return false;
}
}
}
| a5ddf5643150c2f0358da9bb078637ee43d74b5d | [
"Markdown",
"TypeScript"
] | 7 | TypeScript | arikurniawan77/pern-todo-list | 21f5d33315ef493644e3b57fb86d3dd2aee4da07 | 8bd50e5f541908cf5a796382adbef9fc4ee8fe1e |
refs/heads/master | <file_sep>import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders email for contact', () => {
const { getByText } = render(<App />);
const emailElement = getByText(/<EMAIL>/i);
expect(emailElement).toBeInTheDocument();
});
<file_sep>import React from 'react';
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="w-100">
<h1 className="mb-0">Rodrigo
<span className="text-primary">Guilherme</span>
</h1>
<div className="subheading mb-5"><NAME> · João Pessoa-PB · (84)99902-8242 ·
<a href="mailto:<EMAIL>"><EMAIL></a>
</div>
<p className="lead mb-5">Estudante de Gestão da Tecnologia da Informação, estagiando com desenvolvimento de sistemas em Fábrica de Software UNIPÊ</p>
<div className="social-icons">
<a href="#">
<i className="fab fa-linkedin-in"></i>
</a>
<a href="#">
<i className="fab fa-github"></i>
</a>
<a href="#">
<i className="fab fa-twitter"></i>
</a>
<a href="#">
<i className="fab fa-facebook-f"></i>
</a>
</div>
</div>
);
}
export default App;
| 98a6f09fdc633140164600231842d80068ff66a7 | [
"JavaScript"
] | 2 | JavaScript | guilhermerodrigo/my-profile | 788c5bd02bcb7a2222f4e3742b003c55b0a947ed | 5d53821218368b0306676287ffa6e62f5bb67c01 |
refs/heads/master | <file_sep>package de.sldk.mc;
import io.prometheus.client.CollectorRegistry;
import io.prometheus.client.exporter.common.TextFormat;
import org.eclipse.jetty.server.Request;
import org.eclipse.jetty.server.handler.AbstractHandler;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.logging.Level;
public class MetricsController extends AbstractHandler {
private final MetricRegistry metricRegistry = MetricRegistry.getInstance();
private final PrometheusExporter exporter;
public MetricsController(PrometheusExporter exporter) {
this.exporter = exporter;
}
@Override
public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException {
if (!target.equals("/metrics")) {
response.sendError(HttpServletResponse.SC_NOT_FOUND);
return;
}
/*
* Bukkit API calls have to be made from the main thread.
* That's why we use the BukkitScheduler to retrieve the server stats.
* */
Future<Object> future = exporter.getServer().getScheduler().callSyncMethod(exporter, () -> {
metricRegistry.collectMetrics();
return null;
});
try {
future.get();
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType(TextFormat.CONTENT_TYPE_004);
TextFormat.write004(response.getWriter(), CollectorRegistry.defaultRegistry.metricFamilySamples());
baseRequest.setHandled(true);
} catch (InterruptedException | ExecutionException e) {
exporter.getLogger().log(Level.WARNING, "Failed to read server statistic: " + e.getMessage());
exporter.getLogger().log(Level.FINE, "Failed to read server statistic: ", e);
response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
}
}
<file_sep>package de.sldk.mc.metrics;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import de.sldk.mc.metrics.statistics.PlayerStatistics;
import io.prometheus.client.CollectorRegistry;
import java.io.File;
import java.nio.file.Paths;
import java.util.UUID;
import java.util.logging.Logger;
import org.bukkit.OfflinePlayer;
import org.bukkit.Server;
import org.bukkit.World;
import org.bukkit.plugin.Plugin;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
class PlayerStatisticsTest {
private static final String ENTITY_METRIC_NAME = "mc_player_statistic";
private static final String[] METRIC_LABELS =
new String[]{"player_name", "player_uid", "statistic"};
private PlayerStatistics playerStatistics;
@BeforeAll
static void beforeAllTests() {
CollectorRegistry.defaultRegistry.clear();
}
@BeforeEach
void beforeEachTest() {
Plugin plugin = mock(Plugin.class);
when(plugin.getLogger()).thenReturn(Logger.getAnonymousLogger());
File f = Paths
.get("src", "test", "resources", "minecraft", "data", "plugins", "PrometheusExporter")
.toFile().getAbsoluteFile();
when(plugin.getDataFolder()).thenReturn(f);
Server server = mock(Server.class);
when(plugin.getServer()).thenReturn(server);
when(server.getWorldContainer()).thenReturn(
Paths.get("src", "test", "resources", "minecraft", "data")
.toFile().getAbsoluteFile()
);
playerStatistics = new PlayerStatistics(plugin);
playerStatistics.enable();
}
@AfterEach
void afterEachTest() {
CollectorRegistry.defaultRegistry.clear();
}
// TODO make this good
@Test
void x() {
final String worldName = "world_name";
final String playerName = "unique_player_name";
final UUID playerUuid = UUID.fromString("eab53112-b93f-11ea-b3de-0242ac130004");
World world = mock(World.class);
when(world.getName()).thenReturn(worldName);
OfflinePlayer offlinePlayer = mock(OfflinePlayer.class);
when(offlinePlayer.getName()).thenReturn(playerName);
when(offlinePlayer.getUniqueId()).thenReturn(playerUuid);
assertNull(offlinePlayer.getPlayer(),
"Player is required to be null for data to be fetched from files");
playerStatistics.collect(offlinePlayer);
assertThat(CollectorRegistry.defaultRegistry.getSampleValue(ENTITY_METRIC_NAME, METRIC_LABELS,
new String[]{playerName, playerUuid.toString().toLowerCase(), "JUMP"})).isEqualTo(1);
assertThat(CollectorRegistry.defaultRegistry.getSampleValue(ENTITY_METRIC_NAME, METRIC_LABELS,
new String[]{playerName, playerUuid.toString(), "PLAY_ONE_MINUTE"})).isEqualTo(676);
assertThat(CollectorRegistry.defaultRegistry.getSampleValue(ENTITY_METRIC_NAME, METRIC_LABELS,
new String[]{playerName, playerUuid.toString(), "TIME_SINCE_REST"})).isEqualTo(676);
assertThat(CollectorRegistry.defaultRegistry.getSampleValue(ENTITY_METRIC_NAME, METRIC_LABELS,
new String[]{playerName, playerUuid.toString(), "WALK_ONE_CM"})).isEqualTo(65);
assertThat(CollectorRegistry.defaultRegistry.getSampleValue(ENTITY_METRIC_NAME, METRIC_LABELS,
new String[]{playerName, playerUuid.toString(), "LEAVE_GAME"})).isEqualTo(1);
}
}
<file_sep>package de.sldk.mc.metrics.statistics;
import de.sldk.mc.metrics.PlayerMetric;
import io.prometheus.client.Gauge;
import java.util.Map;
import java.util.logging.Logger;
import org.bukkit.OfflinePlayer;
import org.bukkit.plugin.Plugin;
/**
* Offline player -> fetch data from files
* <p>
* Online player -> fetch data from Minecraft API
*/
public class PlayerStatistics extends PlayerMetric {
private static final Gauge PLAYER_STATS = Gauge.build()
.name(prefix("player_statistic"))
.help("Player statistics")
.labelNames("player_name", "player_uid", "statistic")
.create();
private static Logger logger;
private final StatsFileReader statsFileReader;
private final PlayerStatsFetcher playerStatsFetcher;
public PlayerStatistics(Plugin plugin) {
super(plugin, PLAYER_STATS);
logger = plugin.getLogger();
statsFileReader = new StatsFileReader(plugin);
playerStatsFetcher = new PlayerStatsFetcher(plugin);
}
@Override
public void collect(OfflinePlayer player) {
logger.info("Collect running for PlayerStatistics");
Map<Enum<?>, Integer> statistics;
if (player.getPlayer() == null) {
statistics = statsFileReader.getPlayersStats(player.getUniqueId());
} else {
logger.info("OfflinePlayer is null");
statistics = playerStatsFetcher.getPlayerStats(player.getPlayer());
}
final String playerNameLabel = getNameOrUid(player);
final String playerUidLabel = getUid(player);
statistics.forEach((stat, value) -> {
logger.info("pushing stat: " + stat + ", val: " + value);
PLAYER_STATS.labels(playerNameLabel, playerUidLabel, stat.name()).set(value);
}
);
}
}
| b262955653b335c55f34d7aecc2106909c24833a | [
"Java"
] | 3 | Java | aSemy/minecraft-prometheus-exporter | a55009c73719b91a8322708885cd1c71c483346c | a3d3aaafd7eb44271274d01d452c1737eda21981 |
refs/heads/master | <repo_name>huangyueranbbc/ML_musicClassifier<file_sep>/classifyMusic.py
# -*- coding: utf-8 -*-
"""
Created on Fri Mar 27 16:01:00 2015
@author: xiispace
"""
import matplotlib
import matplotlib.pyplot as plt
import subprocess
import wave
import struct
import os
import numpy
import csv
import sys
def read_wav(wav_file):
''' 读取wav音频文件'''
w = wave.open(wav_file)
n = 60*10000
if w.getnframes() < n*2:
raise ValueError(u'音频太短了')
frames = w.readframes(n)
wav_data1 = struct.unpack('%dh' % n, frames)
frames = w.readframes(n)
wav_data2 = struct.unpack('%dh' % n, frames)
return wav_data1, wav_data2
def compute_chunk_features(mp3_file):
'''返回特征向量'''
#把mp3转换成单声道,10khz的wav
mpg123_command = 'D:\Code\Python\音乐图谱\mpg123\mpg123.exe -w "%s" -r 10000 -m "%s"'
out_file = 'temp.wav'
cmd = mpg123_command % (out_file, mp3_file)
temp = subprocess.call(cmd) #音频格式转换
wav_data1, wav_data2 = read_wav(out_file)
return features(wav_data1), features(wav_data2)
def moments(x):
mean = x.mean() #均值
std = x.var()**0.5 #标准差
skewness = ((x - mean)**3).mean() / std**3 #偏态
kurtosis = ((x - mean)**4).mean() / std**4 #峰态
return [mean, std, skewness, kurtosis]
def fftfeatures(wavdata):
f = numpy.fft.fft(wavdata)
f = f[2:(f.size / 2 + 1)]
f = abs(f)
total_power = f.sum()
f = numpy.array_split(f, 10)
return [e.sum() / total_power for e in f]
def features(x):
'''特征值提取'''
x = numpy.array(x)
f = []
xs = x
diff = xs[1:] - xs[:-1]
f.extend(moments(xs))
f.extend(moments(diff))
xs = x.reshape(-1, 10).mean(1)
diff = xs[1:] - xs[:-1]
f.extend(moments(xs))
f.extend(moments(diff))
xs = x.reshape(-1, 100).mean(1)
diff = xs[1:] - xs[:-1]
f.extend(moments(xs))
f.extend(moments(diff))
xs = x.reshape(-1, 1000).mean(1)
diff = xs[1:] - xs[:-1]
f.extend(moments(xs))
f.extend(moments(diff))
f.extend(fftfeatures(x))
return f
# names:
# amp1mean
# amp1std
# amp1skew
# amp1kurt
# amp1dmean
# amp1dstd
# amp1dskew
# amp1dkurt
# amp10mean
# amp10std
# amp10skew
# amp10kurt
# amp10dmean
# amp10dstd
# amp10dskew
# amp10dkurt
# amp100mean
# amp100std
# amp100skew
# amp100kurt
# amp100dmean
# amp100dstd
# amp100dskew
# amp100dkurt
# amp1000mean
# amp1000std
# amp1000skew
# amp1000kurt
# amp1000dmean
# amp1000dstd
# amp1000dskew
# amp1000dkurt
# power1
# power2
# power3
# power4
# power5
# power6
# power7
# power8
# power9
# power10
#最优特征
# amp10mean
# amp10std
# amp10skew
# amp10dstd
# amp10dskew
# amp10dkurt
# amp100mean
# amp100std
# amp100dstd
# amp1000mean
# power2
# power3
# power4
# power5
# ower6
# power7
# power8
# power9
#Main Script
MusicPath='D:\Code\Python\音乐图谱\music'
data=[]
labels=[]
#降维,取前两个最优特征做为横纵坐标
for path, dirs, files in os.walk(MusicPath):
for f in files:
if not f.endswith('.mp3'):
continue
print(f)
if f.find('G.E.M.邓紫棋')!=-1:
labels.append(1)
elif f.find('李健')!=-1:
labels.append(2)
elif f.find('王菲')!=-1:
labels.append(3)
elif f.find('李玉刚')!= -1:
labels.append(4)
elif f.find('莫文蔚') != -1:
labels.append(5)
mp3_file = os.path.join(path, f)
tail, track = os.path.split(mp3_file)
tail, dir1 = os.path.split(tail)
tail, dir2 = os.path.split(tail)
try:
feature_vec1, feature_vec2 = compute_chunk_features(mp3_file)
mainIndex = [8,9]
mainF_vec1 = [feature_vec1[x] for x in mainIndex]
mainF_vec2 = [feature_vec2[x] for x in mainIndex]
data.append(mainF_vec1)
# data.append(mainF_vec2)
except:
print('error')
continue
data = numpy.array(data)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.scatter(data[:, 0], data[:, 1], 15.0*numpy.array(labels),
15.0*numpy.array(labels))
plt.show()
| 7af4355711441f5bdb36b7d8cefd5ccc49876c1d | [
"Python"
] | 1 | Python | huangyueranbbc/ML_musicClassifier | bae47e6025857773730c73bf5540b81cb96f2d59 | a8c5473ddb457b6e487f82919188fa74805f74dd |
refs/heads/master | <repo_name>fabiopaulinogabriel/Inmetrics<file_sep>/tests/features/support/env.rb
require 'selenium-webdriver'
require 'capybara/cucumber'
Capybara.configure do |config|
config.default_driver = :selenium_chrome
config.app_host = 'https://www.inmetrics.com.br'
config.default_max_wait_time = 10
end
Capybara.default_max_wait_time = 30
browser = Capybara.current_session.driver.browser
browser.manage.window.resize_to(1920, 1065)<file_sep>/tests/features/step_definitions/acessando_site.rb
Dado('que eu acesse o site') do
visit 'https://www.inmetrics.com.br/'
sleep(2)
end
Quando('clico em midia') do
click_on('Na Mídia')
sleep(2)
end
Então('são apresentados informações sobre a inmetrics na mídia') do
expect(page.assert_text('Veja onde a Inmetrics apareceu na mídia')).to eq true
sleep(2)
end
Então('clico no link de premio executivo') do
click_on('Conheça os finalistas do prêmio Executivo de TI do Ano 2020')
sleep(2)
end | 62a3264ad17da23e23aa9ca922b1465d3f394c0c | [
"Ruby"
] | 2 | Ruby | fabiopaulinogabriel/Inmetrics | 3060eca1556fd8cb9fa44009de2220c024f23c89 | 58fbcd6df9184d17134c6c84f536331fee3a1ea1 |
refs/heads/master | <repo_name>asanuama/inheritance<file_sep>/app/models/spouse.rb
class Spouse < ApplicationRecord
belongs_to :decedent
end
<file_sep>/db/migrate/20201222102013_create_decedents.rb
class CreateDecedents < ActiveRecord::Migration[5.0]
def change
create_table :decedents do |t|
t.string :name
t.date :birthday
t.boolean :is_male, default: true
t.date :date_of_death
t.boolean :is_married ,default: true
t.text :comment
t.string :name_of_father
t.string :name_of_mother
t.string :relationship
t.timestamps
end
end
end
<file_sep>/app/models/parent.rb
class Parent < ApplicationRecord
belongs_to :decedent
end
<file_sep>/config/routes.rb
Rails.application.routes.draw do
root to: 'home#top'
devise_for :users
get 'decedent/new'
get 'decedent/create'
get 'decedent/show'
get 'decedent/edit'
get 'decedent/update'
get 'decedent/destory'
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end
<file_sep>/app/models/decedent.rb
class Decedent < ApplicationRecord
has_one :spouse, dependent: :destroy, class_name: Decedent
has_many :parents
end
<file_sep>/db/migrate/20201223111710_create_parents.rb
class CreateParents < ActiveRecord::Migration[5.0]
def change
create_table :parents do |t|
t.string :name
t.date :birthday
t.boolean :is_male, default: true
t.date :date_of_death
t.date :date_of_mariage
t.boolean :is_alive ,default: true
t.boolean :is_abandoned ,default: false
t.boolean :is_real_parent ,default: true
t.date :adoption
t.integer :decedent_id
t.string :name_of_father
t.string :name_of_mother
t.string :relationship
t.text :comment
t.timestamps
end
end
end
<file_sep>/app/models/child.rb
class Child < ApplicationRecord
belongs_to :decedent
end
| eb106f88430b46560d7edd85ced71526d830c3fa | [
"Ruby"
] | 7 | Ruby | asanuama/inheritance | 5e4ab05c7c1298943750a7b9d70271bcfcedfbc9 | f0fbafcfb83c9c762d3cdc60c67ea5c1d96fbf70 |
refs/heads/master | <file_sep><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.amazon.aws</groupId>
<artifactId>pix</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>AWS PIX (Brazilian Instant Payment System)</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<quarkus.version>1.7.0.Final</quarkus.version>
<camel-quarkus.version>1.0.0</camel-quarkus.version>
<aws.bom.version>2.13.0</aws.bom.version>
<lombok.version>1.18.12</lombok.version>
<junit.version>4.13.1</junit.version>
<commons-io.version>2.7</commons-io.version>
</properties>
<modules>
<module>core</module>
<module>cloudhsm</module>
<module>kms</module>
<module>test</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.amazon.aws</groupId>
<artifactId>pix-core</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-bom</artifactId>
<version>${camel-quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>${aws.bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<configuration>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version}</version>
<executions>
<execution>
<goals>
<goal>build</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jboss.jandex</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>1.0.7</version>
<executions>
<execution>
<id>make-index</id>
<goals>
<goal>jandex</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
<file_sep>package com.amazon.aws.pix.cloudhsm.proxy.camel.netty;
import io.netty.handler.ssl.SslContext;
import lombok.Data;
import org.apache.camel.support.jsse.SSLContextParameters;
@Data
public class NettySSLContextParameters extends SSLContextParameters {
private SslContext sslContext;
}
<file_sep>#!/bin/bash
# Start CloudHSM Client
echo "$HSM_CUSTOMER_CA" > /opt/cloudhsm/etc/customerCA.crt
HSM_IP=`aws cloudhsmv2 describe-clusters --region $AWS_DEFAULT_REGION --filter clusterIds=$HSM_CLUSTER_ID --query "Clusters[0].Hsms[0].EniIp" --output text`
/opt/cloudhsm/bin/configure -a $HSM_IP
/opt/cloudhsm/bin/cloudhsm_client /opt/cloudhsm/etc/cloudhsm_client.cfg &> /tmp/cloudhsm_client_start.log &
# wait for startup
while true
do
if grep 'libevmulti_init: Ready !' /tmp/cloudhsm_client_start.log &> /dev/null
then
echo "[OK]"
break
fi
sleep 0.5
done
echo -e "\n* CloudHSM client started successfully ... \n"
echo "safe sleeping... 10s"
sleep 10
echo "awake and resuming..."
# Start application
java -jar application.jar<file_sep>FROM amazoncorretto:11
WORKDIR /tmp/
RUN curl https://s3.amazonaws.com/cloudhsmv2-software/CloudHsmClient/EL7/cloudhsm-client-latest.el7.x86_64.rpm -O \
&& curl https://s3.amazonaws.com/cloudhsmv2-software/CloudHsmClient/EL7/cloudhsm-client-jce-latest.el7.x86_64.rpm -O \
&& curl https://s3.amazonaws.com/cloudhsmv2-software/CloudHsmClient/EL7/cloudhsm-client-dyn-latest.el7.x86_64.rpm -O
RUN yum -y install ./cloudhsm-client-latest.el7.x86_64.rpm \
./cloudhsm-client-jce-latest.el7.x86_64.rpm \
awscli openssl apr \
&& yum clean all \
&& rm -rf /var/cache/yum
RUN chown -R 1001 /opt/cloudhsm \
&& chmod -R "g+rwX" /opt/cloudhsm \
&& chown -R 1001:root /opt/cloudhsm
ENV PATH="/opt/cloudhsm/bin:${PATH}"
ENV LD_LIBRARY_PATH="/opt/cloudhsm/lib"
WORKDIR /work/
COPY proxy/cloudhsm/proxy/src/main/docker/wrapper_script.sh /work/wrapper_script.sh
COPY proxy/cloudhsm/proxy/target/*-runner.jar /work/application.jar
# set up permissions for user `1001`
RUN chmod 775 /work /work/wrapper_script.sh \
&& chown -R 1001 /work \
&& chmod -R "g+rwX" /work \
&& chown -R 1001:root /work
EXPOSE 8080
EXPOSE 9090
USER 1001
CMD ["./wrapper_script.sh"]<file_sep>quarkus.banner.enabled=false
quarkus.log.level=WARN
quarkus.ssl.native=true<file_sep><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>pix-kms-proxy-sync</artifactId>
<packaging>jar</packaging>
<name>Pix KMS Proxy Sync</name>
<parent>
<groupId>com.amazon.aws</groupId>
<artifactId>pix</artifactId>
<version>1.0.0</version>
</parent>
<properties>
<assembly-plugin.version>3.1.0</assembly-plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>com.amazon.aws</groupId>
<artifactId>pix-core</artifactId>
</dependency>
<!-- https://github.com/aws-samples/aws-kms-jce -->
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>kms-jce-provider</artifactId>
<version>1.0.0</version>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>secretsmanager</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>ssm</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>firehose</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-amazon-lambda</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-test-amazon-lambda</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
<version>${quarkus.version}</version>
<executions>
<execution>
<goals>
<goal>native-image</goal>
</goals>
<configuration>
<enableHttpUrlHandler>true</enableHttpUrlHandler>
<additionalBuildArgs>
<additionalBuildArg>-H:ReflectionConfigurationFiles=reflection-config.json</additionalBuildArg>
<additionalBuildArg>-H:ResourceConfigurationFiles=resources-config.json</additionalBuildArg>
<additionalBuildArg>-J-Djdk.internal.httpclient.disableHostnameVerification</additionalBuildArg>
</additionalBuildArgs>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>${assembly-plugin.version}</version>
<executions>
<execution>
<id>zip-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>function</finalName>
<descriptors>
<descriptor>src/assembly/zip.xml</descriptor>
</descriptors>
<attach>false</attach>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>copy-runner-to-bootstrap</id>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<copy file="${project.build.directory}/${artifactId}-${version}-runner" tofile="${project.build.directory}/bootstrap" />
<chmod file="${project.build.directory}/bootstrap" perm="755"/>
</target>
<exportAntProperties>true</exportAntProperties>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
<file_sep># AWS KMS and AWS Secrets Manager architecture to exemplify digital signature and secure message transmission to the Brazilian Instant Payment System
<p align="center">
<img src="/images/proxy-kms-arch.png">
</p>
This project contains source code and supporting files that includes the following folders:
- `proxy/kms` - Proxy that uses AWS KMS.
- `proxy/core` - Sign XML messages.
- `proxy/test` - BACEN simulator.
The main code of application uses several AWS resources, including AWS KMS and AWS Secrets Manager. The audit part of solution use other AWS resources, including [Amazon Kinesis Firehose](https://aws.amazon.com/kinesis/data-firehose/?nc1=h_ls), [Amazon Athena](https://aws.amazon.com/athena/?nc1=h_ls&whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc), [Amazon S3](https://aws.amazon.com/s3/?nc1=h_ls) and [AWS Glue](https://docs.aws.amazon.com/glue/latest/dg/components-overview.html).
## Following is the proposed architecture
The architecture presented here can be part of a more complete, [event-based solution](https://aws.amazon.com/en/event-driven-architecture/), which can cover the entire payment message transmission flow, from the banking core. For example, the complete solution of the Financial Institution (paying or receiving), could contain other complementary architectures such as **Authorization**, **Undo** (based on the [SAGA model](https://docs.aws.amazon.com/whitepapers/latest/microservices-on-aws/distributed-data-management.html)), **Effectiveness**, **Communication with on-premises** environment ([hybrid environment](https://aws.amazon.com/en/hybrid/)), etc., using other services such as [Amazon EventBridge](https://aws.amazon.com/en/eventbridge/), Amazon Simple Notification Service ([SNS](https://aws.amazon.com/en/sns/?whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc)), Amazon Simple Queue Service ([SQS](https://aws.amazon.com/en/sqs/)), [AWS Step Functions](https://aws.amazon.com/en/step-functions/), [Amazon ElastiCache](https://aws.amazon.com/en/elasticache/), [Amazon DynamoDB](https://aws.amazon.com/en/dynamodb/).
In the diagram of our architecture, the green box represents the Proxy of communication with Central Bank, considering the services AWS KMS, AWS Lambda, Amazon API Gateway and AWS Secrets Manager.
The idea of the Proxy is to be a direct and mandatory path for every transaction, with the following objectives:
1. Signature of XML messages.
2. Establishment of the TLS tunnel with mutual authentication (mTLS).
3. Sending the request log to the datastream.
Unlike [AWS CloudHSM architecture](https://aws.amazon.com/blogs/industries/supporting-digital-signature-and-message-transmissions-for-brazilian-instant-payment-system-with-aws-cloudhsm/), in which we use ELB to balance SPI and DICT messages, here [private APIs were used](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-private-apis.html), via AWS API Gateway, to distinguish between the 2 types of messages.
It is worth mentioning that to use AWS KMS, to sign documents with the requirements required by PIX, it is necessary to generate a Certificate Signing Request (CSR) and, subsequently, obtain a valid digital certificate. To learn how to generate a CSR for asymmetric keys managed by AWS KMS, see [here](xxx).
Optionally, the Financial Institution can view the transactions that this solution processes using [Amazon QuickSight](https://aws.amazon.com/quicksight/?nc1=h_ls). QuickSight's serverless architecture allows you to provide insights to everyone in your organization, and you can share interactive and sophisticated dashboards with all your users, allowing them to do detailed searches and explore data to answer questions and gain relevant insights.
<p align="center">
<img src="/images/proxy-kms-arch1.png" width="600" height="700">
</p>
1. Create the private key (for signature) in AWS KMS.
2. Create the [secret](https://docs.aws.amazon.com/secretsmanager/latest/apireference/API_CreateSecret.html) in [AWS Secrets Manager](https://aws.amazon.com/secrets-manager/?nc1=h_ls) with the content of the private key used for mTLS.
3. Store the 2 certificates in the [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html): generated key certificate for signature, certificate generated for the mTLS.
4. The Financial Institution Service/Application sends the request in XML format.
5. [Amazon API Gateway](https://aws.amazon.com/api-gateway/?nc1=h_ls) sends the XML message to the application running on [AWS Lambda](https://aws.amazon.com/lambda/?nc1=h_ls).
6. The application (AWS Lambda) uses AWS KMS for digital signature of XML.
7. The application (AWS Lambda) uses the private key stored in AWS Secrets Manager to establish the mTLS.
8. The application transmits the signed XML to BACEN in an encrypted tunnel (mTLS).
9. Application (AWS Lambda) receives the response from BACEN and, if necessary, validates the digital signature of the received XML.
10. Application (AWS Lambda) records the request log sending directly to [Amazon Kinesis Data Firehose](https://aws.amazon.com/kinesis/data-firehose/?nc1=h_ls&kinesis-blogs.sort-by=item.additionalFields.createdDate&kinesis-blogs.sort-order=desc).
11. The reply message is sent to the Amazon API Gateway.
12. The reply message is received by the Service / Application.
13. Amazon Kinesis Data Firehose uses the [AWS Glue Data Catalog](https://aws.amazon.com/glue/?nc1=h_ls&whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc) to convert the logs to parquet format.
14. Amazon Kinesis Data Firehose sends the logs to [Amazon S3](https://aws.amazon.com/s3/?nc1=h_ls), already partitioned into “folders” (/year/month/day/hour/).
15. Amazon Athena uses the [AWS Glue Data Catalog](https://docs.aws.amazon.com/athena/latest/ug/glue-athena.html) as a central place to store and retrieve table metadata.
16. [AWS Glue crawlers](https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html) automatically update new partitions in the metadata repository, every hour.
17. You can immediately query the data directly on Amazon S3 using serverless analysis services, such as [Amazon Athena](https://aws.amazon.com/athena/?nc1=h_ls&whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc) (ad hoc with standard SQL) and [Amazon QuickSight](https://aws.amazon.com/quicksight/?nc1=h_ls).
## How to deploy?
Here are the resources you’ll need in order to follow along with the architecture:
* An Amazon Virtual Private Cloud (Amazon VPC) with the following components:
* Private Subnet: AWS Lambda will run on private subnet
* VPC Endpoints: AWS KMS, AWS Secrets Manager, AWS Systems Manager, AWS API Gateway, Amazon Kinesis Firehose
* Private Key and Certificate for establish the mTLS.
### AWS KMS
1. [Create an asymmetric key](https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html#create-asymmetric-cmk):
1. **Key usage**: Sign and verify
2. **Key spec**: RSA 2048
2. Generate the Certificate:
1. Please, follow the instructions described in [aws-samples/aws-kms-jce](https://github.com/aws-samples/aws-kms-jce)
### AWS Secrets Manager
[Create](https://docs.aws.amazon.com/secretsmanager/latest/userguide/tutorials_basic.html) a secret with name `/pix/proxy/kms/MtlsPrivateKey` and value of Private Key in PKCS8 format :
```
-----BEGIN PRIVATE KEY-----
...
-----END PRIVATE KEY-----
```
To convert PKCS8 with OpenSSL (with necessary):
```
openssl pkcs8 -topk8 -inform PEM -in <MTLS.KEY> -out <MTLS_PKCS8.KEY> -nocrypt
```
### Register (log audit)
1. Before you can upload data to Amazon S3, you must [create a bucket](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/create-bucket.html) in one of the AWS Regions to store your data. After you create a bucket, you can upload an unlimited number of data objects to the bucket
2. The AWS Glue Data Catalog contains references to data that is used as sources and targets of your extract, transform, and load (ETL) jobs in AWS Glue. Information in the Data Catalog is stored as metadata tables, where each table specifies a [single data store](https://docs.aws.amazon.com/glue/latest/dg/populate-data-catalog.html).
3. [Define a database](https://docs.aws.amazon.com/glue/latest/dg/populate-data-catalog.html) in your Data Catalog.
4. [Define two tables](https://docs.aws.amazon.com/glue/latest/dg/tables-described.html): SPI and DICT. Both tables need to have the [Columns Structure](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-catalog-tables.html#aws-glue-api-catalog-tables-Column) and [Partition Keys](https://docs.aws.amazon.com/glue/latest/dg/tables-described.html#tables-partition), like example below:
```
columns: [
{name: 'request_date', type: glue.Schema.STRING},
{name: 'request_method', type: glue.Schema.STRING},
{name: 'request_path', type: glue.Schema.STRING},
{name: 'request_header', type: glue.Schema.STRING},
{name: 'request_body', type: glue.Schema.STRING},
{name: 'response_status_code', type: glue.Schema.INTEGER},
{name: 'response_signature_valid', type: glue.Schema.STRING},
{name: 'response_header', type: glue.Schema.STRING},
{name: 'response_body', type: glue.Schema.STRING}
],
partitionKeys: [
{name: 'year', type: glue.Schema.STRING},
{name: 'month', type: glue.Schema.STRING},
{name: 'day', type: glue.Schema.STRING},
{name: 'hour', type: glue.Schema.STRING}
]
```
The DICT table must be pointed to the S3 bucket that you created and must have the prefix `log/dict`.
<br/>
The SPI table must be pointed to the S3 bucket that you created and must have the prefix `log/spi`.
5. [Create a crawler](https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html) with target to the created tables (SPI and DICT).
6. Create two Amazon Kinesis Firehose delivery streams: (SPI and DICT) in the AWS Glue Data Catalog to make the conversion in parquet format. Thus, we have the following prefixes and the destination S3 bucket:
* DICT develivery stream:
* Deliver to S3 Bucket created
* Use the Glue DICT table to convert to PARQUET
* Specify:
```
prefix: log/dict/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/
errorOutputPrefix: error/dict/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/!{firehose:error-output-type}
```
* SPI develivery stream:
* Deliver to S3 Bucket created
* Use the Glue SPI table to convert to PARQUET
* Specify:
```
prefix: log/spi/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/
errorOutputPrefix: error/spi/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/!{firehose:error-output-type}
```
### AWS Systems Manager Parameter Store
1. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/SignatureKeyId` and value:
```
<KMS_SIGNATURE_KEY_ID>
```
2. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/SignatureCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
3. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/MtlsCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
4. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/DictAuditStream` and value:
```
<FIREHOSE_DICT_DELIVERY_STREAM_NAME>
```
5. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/SpiAuditStream` and value:
```
<FIREHOSE_SPI_DELIVERY_STREAM_NAME>
```
6. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/BcbDictEndpoint` and value:
```
<DICT_ENDPOINT>
```
TO USE THE TEST - SIMULATOR, use:
```
test.pi.rsfn.net.br:8181
```
7. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/BcbSpiEndpoint` and value:
```
<SPI_ENDPOINT>
```
TO USE THE TEST - SIMULATOR, use:
```
test.pi.rsfn.net.br:9191
```
8. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/BcbSignatureCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<BACEN_SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
TO USE THE TEST - SIMULATOR, use:
```
-----BEGIN CERTIFICATE-----
<KEY>3d+6w==
-----END CERTIFICATE-----
```
9. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/kms/BcbMtlsCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<BACEN_MTLS_CERTIFICATE>
-----END CERTIFICATE-----
```
TO USE THE TEST - SIMULATOR, use:
```
-----BEGIN CERTIFICATE-----
<KEY>
-----END CERTIFICATE-----
```
### AWS Lambda
1. Generate the deployment package (function.zip)
```
mvn -f proxy/pom.xml -pl core,kms clean package -DskipTests -Pnative -Dnative-image.docker-build=true
```
2. Create Lambda for SPI:
```
runtime: PROVIDED
handler: 'none'
code: function.zip
memorySize: 1024
timeout: 30 sec
vpc: <VPC>
environment variables:
- DISABLE_SIGNAL_HANDLERS: true
- PIX_SPI_PROXY: true
```
3. Create Lambda for DICT:
```
runtime: PROVIDED
handler: 'none'
code: function.zip
memorySize: 1024
timeout: 30 sec
vpc: <VPC>
environment variables:
- DISABLE_SIGNAL_HANDLERS: true
- PIX_SPI_PROXY: false
```
4. You also need configure the following [permissions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) to:
- Read the secret (AWS Secrets Manager).
- Read the parameters (AWS Systems Manager Parameter Store).
- Sign documents (AWS KMS).
- Put data (log) into deliver streams (Amazon Kinesis Data Firehose).
### AWS API Gateway
1. Create a **proxy internal** API for SPI. [Check here](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html).
2. Create a **proxy internal** API for DICT. [Check here](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html).
### AWS Fargate (TEST - SIMULATOR)
1. To configure the Amazon ECS using Fargate for testing, use this [procedure](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/getting-started-fargate.html). You can use the test dockerfile `/proxy/test/src/main/docker/Dockerfile`. You also need configure the following [permissions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) to:
- Read the parameters (AWS Systems Manager Parameter Store).
You have to expose the service using the **INTERNAL** [Network Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-network-load-balancer.html).
2. You have to configure a [private hosted zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zone-private-creating.html) with domain name `rsfn.net.br`. Also, use this [procedure](https://aws.amazon.com/premiumsupport/knowledge-center/route-53-create-alias-records/) to configure an A record for the name `test.pi.rsfn.net.br` and specify the alias for the TEST Network Load Balancer.
### Amazon Athena and Amazon QuickSight
1. Use this [procedure](https://docs.aws.amazon.com/athena/latest/ug/getting-started.html) to use Amazon Athena to query data in the S3 bucket created previously.
2. Optionally, you can use [Amazon QuickSight](https://docs.aws.amazon.com/quicksight/latest/user/setup-new-quicksight-account.html) that lets you easily create and publish interactive dashboards that include ML Insights. Dashboards can then be accessed from any device, and embedded into your applications, portals, and website.
<file_sep>package com.amazon.aws.pix.kms.proxy.sync;
import com.amazon.aws.pix.kms.proxy.service.Logger;
import com.amazon.aws.pix.kms.proxy.service.Sender;
import com.amazon.aws.pix.kms.proxy.service.Signer;
import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyRequestEvent;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyResponseEvent;
import lombok.AllArgsConstructor;
@AllArgsConstructor
public class ProxyHandler implements RequestHandler<APIGatewayProxyRequestEvent, APIGatewayProxyResponseEvent> {
private final Signer signer;
private final Sender sender;
private final Logger logger;
@Override
public APIGatewayProxyResponseEvent handleRequest(APIGatewayProxyRequestEvent request, Context context) {
signer.sign(request);
APIGatewayProxyResponseEvent response = sender.send(request);
signer.verify(response);
logger.log(request, response);
return response;
}
}
<file_sep>package com.amazon.aws.pix.proxy.test;
import com.amazon.aws.pix.core.util.KeyStoreUtil;
import com.amazon.aws.pix.core.xml.Iso20022XmlSigner;
import com.amazon.aws.pix.core.xml.XmlSigner;
import lombok.RequiredArgsConstructor;
import lombok.SneakyThrows;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.EndpointConsumerBuilder;
import org.apache.camel.builder.endpoint.EndpointRouteBuilder;
import org.apache.camel.support.jsse.KeyManagersParameters;
import org.apache.camel.support.jsse.KeyStoreParameters;
import org.apache.camel.support.jsse.SSLContextParameters;
import org.apache.camel.support.jsse.TrustManagersParameters;
import org.apache.commons.io.FileUtils;
import org.eclipse.microprofile.config.inject.ConfigProperty;
import software.amazon.awssdk.auth.credentials.EnvironmentVariableCredentialsProvider;
import software.amazon.awssdk.http.urlconnection.UrlConnectionHttpClient;
import software.amazon.awssdk.regions.Region;
import software.amazon.awssdk.services.ssm.SsmClient;
import software.amazon.awssdk.services.ssm.model.GetParametersByPathRequest;
import software.amazon.awssdk.services.ssm.model.GetParametersByPathResponse;
import software.amazon.awssdk.services.ssm.model.Parameter;
import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.net.ssl.TrustManagerFactory;
import java.io.File;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableEntryException;
import java.security.cert.X509Certificate;
import java.util.*;
import java.util.stream.Collectors;
@ApplicationScoped
public class PixProxyTestRouteBuilder extends EndpointRouteBuilder {
@ConfigProperty(name = "aws.default.region")
String awsDefaultRegion;
@ConfigProperty(name = "work.ssl.dir")
String workSslDir;
enum CloudHsmParam {
MtlsCertificate,
SignatureCertificate;
public String getParamName() {
return String.format("/pix/proxy/cloudhsm/%s", this.name());
}
}
enum KmsParam {
MtlsCertificate,
SignatureCertificate,
SignatureSelfSignedCertificate;
public String getParamName() {
return String.format("/pix/proxy/kms/%s", this.name());
}
}
private Map<String, String> parameters;
private XmlSigner xmlSigner;
private Iso20022XmlSigner iso20022XmlSigner;
@PostConstruct
void init() throws Exception {
loadParameters();
createXmlSigners();
}
@Override
public void configure() throws Exception {
createSslContext();
from(bcbEndpoint("0.0.0.0:8181"))
.transform(body().convertToString())
.process(new DictProcessor(xmlSigner, workSslDir));
from(bcbEndpoint("0.0.0.0:9191"))
.transform(body().convertToString())
.process(new SpiProcessor(iso20022XmlSigner));
from(checkEndpoint()).transform(constant("OK"));
}
private EndpointConsumerBuilder bcbEndpoint(String endpoint) {
return nettyHttp(endpoint)
.matchOnUriPrefix(true)
.ssl(true)
.enabledProtocols("TLSv1.2")
.needClientAuth(true)
.sslContextParameters("#sslContextParameters")
.advanced().nativeTransport(true);
}
private EndpointConsumerBuilder checkEndpoint() {
return netty("tcp://0.0.0.0:7171")
.advanced().nativeTransport(true);
}
private void loadParameters() {
SsmClient ssmClient = SsmClient.builder()
.region(Region.of(awsDefaultRegion))
.httpClientBuilder(UrlConnectionHttpClient.builder())
.build();
parameters = new HashMap<>();
String nextToken = null;
do {
GetParametersByPathResponse response = ssmClient.getParametersByPath(GetParametersByPathRequest.builder().nextToken(nextToken).path("/pix/proxy/").recursive(true).build());
parameters.putAll(response.parameters().stream().collect(Collectors.toMap(Parameter::name, Parameter::value)));
nextToken = response.nextToken();
} while (nextToken != null);
}
private void createSslContext() throws KeyStoreException, NoSuchAlgorithmException {
KeyStoreParameters ksp = new KeyStoreParameters();
ksp.setResource(workSslDir + "/mtls.jks");
ksp.setPassword("<PASSWORD>");
KeyManagersParameters kmp = new KeyManagersParameters();
kmp.setKeyPassword("secret");
kmp.setKeyStore(ksp);
List<X509Certificate> trustCertificates = new ArrayList<>();
Optional.ofNullable(parameters.get(CloudHsmParam.MtlsCertificate.getParamName()))
.ifPresent(cert -> trustCertificates.addAll(KeyStoreUtil.getCertificates(cert)));
Optional.ofNullable(parameters.get(KmsParam.MtlsCertificate.getParamName()))
.ifPresent(cert -> trustCertificates.addAll(KeyStoreUtil.getCertificates(cert)));
if (trustCertificates.isEmpty()) throw new IllegalStateException("mTLS (CloudHSM/KMS) Certificates not found!");
KeyStore trustStore = KeyStoreUtil.generateTrustStore("psp", trustCertificates);
TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
trustManagerFactory.init(trustStore);
TrustManagersParameters tmp = new TrustManagersParameters();
tmp.setTrustManager(trustManagerFactory.getTrustManagers()[0]);
SSLContextParameters sslContextParameters = new SSLContextParameters();
sslContextParameters.setKeyManagers(kmp);
sslContextParameters.setTrustManagers(tmp);
getContext().getRegistry().bind("sslContextParameters", sslContextParameters);
}
private void createXmlSigners() throws UnrecoverableEntryException, NoSuchAlgorithmException, KeyStoreException {
List<X509Certificate> trustCertificates = new ArrayList<>();
Optional.ofNullable(parameters.get(CloudHsmParam.SignatureCertificate.getParamName()))
.ifPresent(cert -> trustCertificates.addAll(KeyStoreUtil.getCertificates(cert)));
Optional.ofNullable(parameters.get(KmsParam.SignatureCertificate.getParamName()))
.ifPresent(cert -> trustCertificates.addAll(KeyStoreUtil.getCertificates(cert)));
Optional.ofNullable(parameters.get(KmsParam.SignatureSelfSignedCertificate.getParamName()))
.ifPresent(cert -> trustCertificates.addAll(KeyStoreUtil.getCertificates(cert)));
if (trustCertificates.isEmpty())
throw new IllegalStateException("Signature (CloudHSM/KMS) Certificates not found!");
KeyStore keyStore = KeyStoreUtil.getKeyStore(new File(workSslDir + "/sig.jks"), "secret");
KeyStore.PrivateKeyEntry privateKeyStoreEntry = (KeyStore.PrivateKeyEntry) keyStore.getEntry("sig", new KeyStore.PasswordProtection("secret".toCharArray()));
KeyStore trustStore = KeyStoreUtil.generateTrustStore("psp", trustCertificates);
this.xmlSigner = new XmlSigner(privateKeyStoreEntry.getPrivateKey(), (X509Certificate) privateKeyStoreEntry.getCertificate(), trustStore);
this.iso20022XmlSigner = new Iso20022XmlSigner(privateKeyStoreEntry.getPrivateKey(), (X509Certificate) privateKeyStoreEntry.getCertificate(), trustStore);
}
@RequiredArgsConstructor
public static class SpiProcessor implements Processor {
private final XmlSigner xmlSigner;
@Override
public void process(Exchange exchange) throws Exception {
final String body = exchange.getIn().getBody(String.class);
if (body != null && body.length() > 0 && !xmlSigner.verify(body)) {
exchange.getIn().setHeader("CamelHttpResponseCode", 403);
exchange.getIn().setBody("Signature invalid!");
return;
}
exchange.getIn().setHeader("CamelHttpResponseCode", 201);
exchange.getIn().setHeader("PI-ResourceId", UUID.randomUUID().toString());
exchange.getIn().setBody(null);
}
}
public static class DictProcessor implements Processor {
private final XmlSigner xmlSigner;
private final String xmlResponse;
@SneakyThrows
public DictProcessor(XmlSigner xmlSigner, String workSslDir) {
this.xmlSigner = xmlSigner;
this.xmlResponse = FileUtils.readFileToString(new File(workSslDir + "/dict-response.xml"), "UTF-8");
}
@Override
public void process(Exchange exchange) throws Exception {
final String body = exchange.getIn().getBody(String.class);
if (body != null && body.length() > 0 && !xmlSigner.verify(body)) {
exchange.getIn().setHeader("CamelHttpResponseCode", 403);
exchange.getIn().setBody("Signature invalid!");
return;
}
exchange.getIn().setHeader("CamelHttpResponseCode", 200);
exchange.getIn().setHeader("Content-Type", "application/xml;charset=utf-8");
exchange.getIn().setBody(xmlSigner.sign(xmlResponse));
}
}
}
<file_sep>package com.amazon.aws.pix.cloudhsm.proxy.processor;
import com.amazon.aws.pix.core.xml.XmlSigner;
import lombok.RequiredArgsConstructor;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import java.util.Map;
import java.util.stream.Collectors;
import static com.amazon.aws.pix.core.util.PixConstants.PIX_HEADERS;
import static com.amazon.aws.pix.core.util.PixConstants.PIX_HEADER_PREFIX;
@RequiredArgsConstructor
public class SignRequestProcessor implements Processor {
private final XmlSigner xmlSigner;
@Override
public final void process(Exchange exchange) throws Exception {
final String body = exchange.getIn().getBody(String.class);
if (body != null && body.length() > 0) {
final String bodySigned = xmlSigner.sign(body);
exchange.getIn().setBody(bodySigned);
}
exchange.setProperty(
PIX_HEADERS,
exchange.getIn().getHeaders().entrySet().stream()
.filter(e -> e.getKey().startsWith(PIX_HEADER_PREFIX))
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue))
);
}
}
<file_sep>FROM amazoncorretto:11
WORKDIR /work/
COPY proxy/test/src/main/docker/ssl /work/ssl
COPY proxy/test/target/*-runner.jar /work/application.jar
ENV WORK_SSL_DIR=/work/ssl
# set up permissions for user `1001`
RUN chmod 775 /work \
&& chown -R 1001 /work \
&& chmod -R "g+rwX" /work \
&& chown -R 1001:root /work
EXPOSE 8181
EXPOSE 9191
USER 1001
CMD ["java", "-jar", "application.jar"]<file_sep><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>pix-cloudhsm-cavium</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>CloudHSM Cavium JCE</name>
<parent>
<groupId>com.amazon.aws</groupId>
<artifactId>pix-cloudhsm</artifactId>
<version>1.0.0</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.5.1</version>
<executions>
<execution>
<id>cloudhsm-client-jce-latest-download</id>
<goals>
<goal>wget</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<skipCache>true</skipCache>
<url>https://s3.amazonaws.com/cloudhsmv2-software/CloudHsmClient/EL7/cloudhsm-client-jce-latest.el7.x86_64.rpm</url>
<outputDirectory>${project.build.directory}/cloudhsm-client-jce</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.2.0</version>
<executions>
<execution>
<id>cloudhsm-client-jce-latest-unpack</id>
<goals>
<goal>unpack</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<rpmFile>${project.build.directory}/cloudhsm-client-jce/cloudhsm-client-jce-latest.el7.x86_64.rpm</rpmFile>
<unpackDirectory>${project.build.directory}/cloudhsm-client-jce</unpackDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<id>export-cloudhsm-jce-version</id>
<phase>generate-resources</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<fileset id="cloudhsm-fileset" dir="${project.build.directory}/cloudhsm-client-jce/opt/cloudhsm/java/">
<include name="cloudhsm-*.jar" />
<exclude name="cloudhsm-test-*.jar" />
</fileset>
<pathconvert property="cloudhsm.version" refid="cloudhsm-fileset">
<regexpmapper from=".*-(.*)\.jar" to="\1"/>
</pathconvert>
<echo message="cloudhsm version: ${cloudhsm.version}"/>
</target>
<exportAntProperties>true</exportAntProperties>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-cloudhsm-jce</id>
<goals>
<goal>install-file</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<groupId>com.cavium</groupId>
<artifactId>cloudhsm</artifactId>
<version>${cloudhsm.version}</version>
<packaging>jar</packaging>
<file>${project.build.directory}/cloudhsm-client-jce/opt/cloudhsm/java/cloudhsm-${cloudhsm.version}.jar</file>
<generatePom>true</generatePom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<file_sep><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>pix-cloudhsm-proxy</artifactId>
<packaging>jar</packaging>
<name>PIX CloudHSM Proxy</name>
<parent>
<groupId>com.amazon.aws</groupId>
<artifactId>pix-cloudhsm</artifactId>
<version>1.0.0</version>
</parent>
<dependencies>
<dependency>
<groupId>com.amazon.aws</groupId>
<artifactId>pix-core</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>secretsmanager</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>ssm</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>firehose</artifactId>
<exclusions>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</exclusion>
<exclusion>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</dependency>
<dependency>
<groupId>com.cavium</groupId>
<artifactId>cloudhsm</artifactId>
<version>[3.0.0,)</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.13.2</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-netty-http</artifactId>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-epoll</artifactId>
<classifier>linux-x86_64</classifier>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-tcnative</artifactId>
<version>2.0.31.Final</version>
<classifier>linux-x86_64-fedora</classifier>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
<file_sep>package com.amazon.aws.pix.kms.proxy.service;
import com.amazon.aws.pix.core.util.KeyStoreUtil;
import com.amazon.aws.pix.core.xml.Iso20022XmlSigner;
import com.amazon.aws.pix.core.xml.XmlSigner;
import com.amazon.aws.pix.kms.proxy.config.Config;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyRequestEvent;
import com.amazonaws.services.lambda.runtime.events.APIGatewayProxyResponseEvent;
import io.quarkus.runtime.Startup;
import lombok.extern.slf4j.Slf4j;
import software.amazon.awssdk.auth.credentials.EnvironmentVariableCredentialsProvider;
import software.amazon.awssdk.http.urlconnection.UrlConnectionHttpClient;
import software.amazon.awssdk.services.kms.KmsClient;
import software.amazon.awssdk.services.kms.jce.provider.KmsProvider;
import software.amazon.awssdk.services.kms.jce.provider.rsa.KmsRSAKeyFactory;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.Security;
import java.security.cert.X509Certificate;
import static com.amazon.aws.pix.core.util.PixConstants.PIX_HEADER_SIGNATURE_VALID;
@Slf4j
@Startup
public class Signer {
private final XmlSigner xmlSigner;
public Signer(Config config) {
KmsClient kmsClient = KmsClient.builder()
.region(config.getRegion())
.credentialsProvider(EnvironmentVariableCredentialsProvider.create())
.httpClientBuilder(UrlConnectionHttpClient.builder())
.build();
Security.addProvider(new KmsProvider(kmsClient));
PrivateKey privateKey = KmsRSAKeyFactory.getPrivateKey(config.getSignatureKeyId());
X509Certificate certificate = KeyStoreUtil.getCertificate(config.getSignatureCertificate());
KeyStore trustStore = KeyStoreUtil.generateTrustStore("bcb", config.getBcbSignatureCertificate());
xmlSigner = config.isIso20022() ? new Iso20022XmlSigner(privateKey, certificate, trustStore) : new XmlSigner(privateKey, certificate, trustStore);
}
public void sign(APIGatewayProxyRequestEvent request) {
if (isNotBlank(request.getBody())) {
request.setBody(xmlSigner.sign(request.getBody()));
}
}
public void verify(APIGatewayProxyResponseEvent response) {
if (isSuccessfulResponse(response.getStatusCode()) && isNotBlank(response.getBody())) {
if (xmlSigner.verify(response.getBody())) {
response.getHeaders().put(PIX_HEADER_SIGNATURE_VALID, "true");
} else {
response.setStatusCode(500);
response.getHeaders().put(PIX_HEADER_SIGNATURE_VALID, "false");
}
}
}
private boolean isNotBlank(String value) {
return value != null && !value.trim().isEmpty();
}
private boolean isSuccessfulResponse(int statusCode) {
return 200 <= statusCode && statusCode < 300;
}
}
<file_sep># AWS CloudHSM architecture to exemplify digital signature and secure message transmission to the Brazilian Instant Payment System
<p align="center">
<img src="/images/proxy-cloudhsm.png">
</p>
This project contains source code and supporting files that includes the following folders:
- `proxy/cloudhsm` - Proxy that uses AWS CloudHSM.
- `proxy/core` - Sign XML messages.
- `proxy/test` - BACEN simulator.
The main code of application uses several AWS resources, including AWS CLoudHSM and an AWS Fargate. The audit part of solution use other AWS resources, including [Amazon Kinesis Firehose](https://aws.amazon.com/kinesis/data-firehose/?nc1=h_ls), [Amazon Athena](https://aws.amazon.com/athena/?nc1=h_ls&whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc), [Amazon S3](https://aws.amazon.com/s3/?nc1=h_ls) and [AWS Glue](https://docs.aws.amazon.com/glue/latest/dg/components-overview.html).
## Following is the proposed architecture
The architecture presented here can be part of a more complete, [event-based solution](https://aws.amazon.com/en/event-driven-architecture/), which can cover the entire payment message transmission flow, from the banking core. For example, the complete solution of the Financial Institution (paying or receiving), could contain other complementary architectures such as **Authorization**, **Undo** (based on the [SAGA model](https://docs.aws.amazon.com/whitepapers/latest/microservices-on-aws/distributed-data-management.html)), **Effectiveness**, **Communication with on-premises** environment ([hybrid environment](https://aws.amazon.com/en/hybrid/)), etc., using other services such as [Amazon EventBridge](https://aws.amazon.com/en/eventbridge/), Amazon Simple Notification Service ([SNS](https://aws.amazon.com/en/sns/?whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc)), Amazon Simple Queue Service ([SQS](https://aws.amazon.com/en/sqs/)), [AWS Step Functions](https://aws.amazon.com/en/step-functions/), [Amazon ElastiCache](https://aws.amazon.com/en/elasticache/), [Amazon DynamoDB](https://aws.amazon.com/en/dynamodb/).
<p align="center">
<img src="/images/proxy-cloudhsm-arch.png" width="600" height="600">
</p>
1. Store login and password in [AWS Secrets Manager](https://aws.amazon.com/en/secrets-manager/), to communicate with AWS CloudHSM.
2. Store or import the private key on [AWS CloudHSM](https://aws.amazon.com/cloudhsm/?nc1=h_ls).
3. Store the three certificates in the [AWS Systems Manager Parameter Store](https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html): generated key certificate for signature, certificate generated for mTLS, CloudHSM certificate (customer CA).
4. Service/Application sends transaction request in XML format.
5. [ELB](https://aws.amazon.com/en/elasticloadbalancing/) balances requests among [AWS Fargate containers](https://aws.amazon.com/en/fargate/).
6. Application (AWS Fargate) uses AWS CloudHSM for digital signature of XML.
7. Application (AWS Fargate) uses AWS CloudHSM to establish mTLS and transmit XML to [BACEN](https://www.bcb.gov.br/en/financialstability/instantpayments).
8. Application (AWS Fargate) receives the response from BACEN and, if necessary, validates the digital signature of the received XML.
9. Application (AWS Fargate) logs the request log by sending it directly to [Amazon Kinesis Data Firehose](https://aws.amazon.com/en/kinesis/data-firehose/).
10. The reply message is sent to the ELB.
11. The reply message is received by the Service/Application.
12. Amazon Kinesis Data Firehose uses the [AWS Glue Data Catalog](https://aws.amazon.com/en/glue/?whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc) to convert the logs to parquet format.
13. Amazon Kinesis Data Firehose sends the logs to [Amazon S3](https://aws.amazon.com/en/s3/), already partitioned into “folders” (/year/month/day/hour/).
14. [Amazon Athena](https://docs.aws.amazon.com/athena/latest/ug/glue-athena.html) uses the AWS Glue Data Catalog as a central place to store and retrieve table metadata.
15. [AWS Glue crawlers](https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html) automatically update the metadata repository every hour.
16. You can immediately query the data directly on Amazon S3 using serverless analytics services, such as [Amazon Athena](https://aws.amazon.com/en/athena/?whats-new-cards.sort-by=item.additionalFields.postDateTime&whats-new-cards.sort-order=desc) (ad hoc with standard SQL) and optionally the [Amazon QuickSight](https://aws.amazon.com/en/quicksight/).
## How to deploy?
### AWS CloudHSM
Here are the resources you’ll need in order to follow along with both architectures:
- An Amazon Virtual Private Cloud (Amazon VPC) with the following components:
Private subnet in Availability Zone to be used for the HSM’s elastic network interface (ENI).
A public subnet that contains a network address translation (NAT) gateway.
A private subnet with a route table that routes internet traffic (0.0.0.0/0) to the NAT gateway. You’ll use this subnet to run the AWS Fargate application. The NAT gateway allows you to connect to the AWS CloudHSM, [AWS Systems Manager](https://docs.aws.amazon.com/systems-manager/latest/userguide/setup-create-vpc.html), and [AWS Secrets Manager endpoints](https://docs.aws.amazon.com/secretsmanager/latest/userguide/vpc-endpoint-overview.html#vpc-endpoint).
**Note**: For high availability, you can add multiple instances of the public and private subnets. For more information about how to create an Amazon VPC with public and private subnets as well as a NAT gateway, refer to the [Amazon VPC user guide](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Scenarios.html).
- An **active AWS CloudHSM cluster** with at least one active HSM. The HSMs should be created in the private subnets. You can follow the Getting Started with [AWS CloudHSM guide](https://docs.aws.amazon.com/cloudhsm/latest/userguide/create-cluster.html) to create and initialize the CloudHSM cluster.
- The **AWS CloudHSM client** installed and configured to connect to the CloudHSM cluster. Optionally, you can use an Amazon Linux 2 EC2 instance with the CloudHSM client installed and configured. The client instance should be launched in the public subnet. You can again refer to [Getting Started With AWS CloudHSM](https://docs.aws.amazon.com/cloudhsm/latest/userguide/getting-started.html) to configure and connect the client instance. Also, install the [AWS CloudHSM Dynamic Engine for OpenSSL](https://docs.aws.amazon.com/cloudhsm/latest/userguide/openssl-library-install.html).
- The **CO** and **CU credentials** created: CO (crypto officer) and CU (crypto user) by following the steps in the [user guide](https://docs.aws.amazon.com/cloudhsm/latest/userguide/manage-hsm-users.html#create-user).
#### Generate keys and certificate to digital signature
You can generate or import a [private key using Open SSL](https://docs.aws.amazon.com/cloudhsm/latest/userguide/ssl-offload-import-or-generate-private-key-and-certificate.html).
We recommend that private key should be non-extractable.
- Generating a [NON-EXTRACTABLE](https://docs.aws.amazon.com/cloudhsm/latest/userguide/key_mgmt_util-genRSAKeyPair.html) private key:
Launch the key management util:
```
$ /opt/cloudhsm/bin/key_mgmt_util
```
Login:
```
Command: loginHSM -u CU -s <HSM_USER> -p <HSM_PASSWORD>
```
Generate the key pair:
```
Command: genRSAKeyPair -m 2048 -e 65541 -l <LABEL> -nex
Cfm3GenerateKeyPair: public key handle: <X> private key handle: <Y>
```
Exit
```
Command: exit
```
Launch the CloudHSM management util:
```
$ /opt/cloudhsm/bin/cloudhsm_mgmt_util /opt/cloudhsm/etc/cloudhsm_mgmt_util.cfg
```
Login:
```
aws-cloudhsm> loginHSM CU <HSM_USER> <HSM_PASSWORD>
```
Check that private key is not extractable:
```
aws-cloudhsm> getAttribute <Y> 354
OBJ_ATTR_EXTRACTABLE
0x00000000
```
Note that the public key is always extractable:
```
aws-cloudhsm> getAttribute <X> 354
OBJ_ATTR_EXTRACTABLE
0x00000001
```
Check the private key label:
```
aws-cloudhsm> getAttribute <Y> 3
OBJ_ATTR_LABEL
<LABEL>
```
Check the public key label:
```
aws-cloudhsm> getAttribute <X> 3
OBJ_ATTR_LABEL
<LABEL>
```
Change the public key label:
```
aws-cloudhsm> setAttribute <X> 3 <LABEL:PUBLIC>
```
Check the public key label:
```
aws-cloudhsm> getAttribute <X> 3
OBJ_ATTR_LABEL
<LABEL:PUBLIC>
```
Exit
```
aws-cloudhsm> quit
```
Launch the key management util:
```
$ /opt/cloudhsm/bin/key_mgmt_util
```
Login:
```
Command: loginHSM -u CU -s <HSM_USER> -p <HSM_PASSWORD>
```
Export the fake private key:
```
Command: getCaviumPrivKey -k <Y> -out <LABEL>.key
```
Exit
```
Command: exit
```
Export the HSM_USER and HSM_PASSWORD to use with OpenSSL:
```
$ export n3fips_password=<HSM_USER>:<HSM_PASSWORD>
```
Generate the CSR:
```
$ openssl req -engine cloudhsm -new -key <LABEL>.key -out <LABEL>.csr
```
Generate a self-signed certificate (ONLY FOR TEST):
```
$ openssl x509 -engine cloudhsm -req -days <DAYS> -in <LABEL>.csr -signkey <LABEL>.key -out <LABEL>.cer
```
#### Generate keys and certificate to mTLS
- Generating an extractable key for mTLS (Cavium has JCE, but not JSSE):
Launch the key management util:
```
$ /opt/cloudhsm/bin/key_mgmt_util
```
Login:
```
Command: loginHSM -u CU -s <HSM_USER> -p <HSM_PASSWORD>
```
Generate a key pair:
```
Command: genRSAKeyPair -m 2048 -e 65541 -l <LABEL>
Cfm3GenerateKeyPair: public key handle: <X> private key handle: <Y>
```
Exit
```
Command: exit
```
Launch the CloudHSM management util:
```
$ /opt/cloudhsm/bin/cloudhsm_mgmt_util /opt/cloudhsm/etc/cloudhsm_mgmt_util.cfg
```
Login:
```
aws-cloudhsm> loginHSM CU <HSM_USER> <HSM_PASSWORD>
```
Check that private key is extractable:
```
aws-cloudhsm> getAttribute <Y> 354
OBJ_ATTR_EXTRACTABLE
0x00000001
```
Public key is always extractable:
```
aws-cloudhsm> getAttribute <X> 354
OBJ_ATTR_EXTRACTABLE
0x00000001
```
Check the private key label:
```
aws-cloudhsm> getAttribute <Y> 3
OBJ_ATTR_LABEL
<LABEL>
```
Check the public key label:
```
aws-cloudhsm> getAttribute <X> 3
OBJ_ATTR_LABEL
<LABEL>
```
Change the public key label:
```
aws-cloudhsm> setAttribute <X> 3 <LABEL:PUBLIC>
```
Check again the public key label:
```
aws-cloudhsm> getAttribute <X> 3
OBJ_ATTR_LABEL
<LABEL:PUBLIC>
```
Exit
```
aws-cloudhsm> quit
```
Launch the key management util:
```
$ /opt/cloudhsm/bin/key_mgmt_util
```
Login:
```
Command: loginHSM -u CU -s <HSM_USER> -p <HSM_PASSWORD>
```
Export the fake private key:
```
Command: getCaviumPrivKey -k <Y> -out <LABEL>.key
```
Exit
```
Command: exit
```
Export the HSM_USER and HSM_PASSWORD to use with OpenSSL:
```
$ export n3fips_password=<HSM_USER>:<HSM_PASSWORD>
```
Generate the CSR:
```
$ openssl req -engine cloudhsm -new -key <LABEL>.key -out <LABEL>.csr
```
Generate a self-signed certificate (ONLY FOR TEST):
```
$ openssl x509 -engine cloudhsm -req -days <DAYS> -in <LABEL>.csr -signkey <LABEL>.key -out <LABEL>.cer
```
### AWS Secrets Manager
[Create](https://docs.aws.amazon.com/secretsmanager/latest/userguide/tutorials_basic.html) a secret with name `/pix/proxy/cloudhsm/CloudHSMSecret` and value:
```
{
"HSM_USER": "<HSM_USER>",
"HSM_PASSWORD": "<HSM_PASSWORD>"
}
```
### Register (log audit)
1. Before you can upload data to Amazon S3, you must [create a bucket](https://docs.aws.amazon.com/AmazonS3/latest/user-guide/create-bucket.html) in one of the AWS Regions to store your data. After you create a bucket, you can upload an unlimited number of data objects to the bucket
2. The AWS Glue Data Catalog contains references to data that is used as sources and targets of your extract, transform, and load (ETL) jobs in AWS Glue. Information in the Data Catalog is stored as metadata tables, where each table specifies a [single data store](https://docs.aws.amazon.com/glue/latest/dg/populate-data-catalog.html).
3. [Define a database](https://docs.aws.amazon.com/glue/latest/dg/populate-data-catalog.html) in your Data Catalog.
4. [Define two tables](https://docs.aws.amazon.com/glue/latest/dg/tables-described.html): SPI and DICT. Both tables need to have the [Columns Structure](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-catalog-tables.html#aws-glue-api-catalog-tables-Column) and [Partition Keys](https://docs.aws.amazon.com/glue/latest/dg/tables-described.html#tables-partition), like example below:
```
columns: [
{name: 'request_date', type: glue.Schema.STRING},
{name: 'request_method', type: glue.Schema.STRING},
{name: 'request_path', type: glue.Schema.STRING},
{name: 'request_header', type: glue.Schema.STRING},
{name: 'request_body', type: glue.Schema.STRING},
{name: 'response_status_code', type: glue.Schema.INTEGER},
{name: 'response_signature_valid', type: glue.Schema.STRING},
{name: 'response_header', type: glue.Schema.STRING},
{name: 'response_body', type: glue.Schema.STRING}
],
partitionKeys: [
{name: 'year', type: glue.Schema.STRING},
{name: 'month', type: glue.Schema.STRING},
{name: 'day', type: glue.Schema.STRING},
{name: 'hour', type: glue.Schema.STRING}
]
```
The DICT table must be pointed to the S3 bucket that you created and must have the prefix `log/dict`.
<br/>
The SPI table must be pointed to the S3 bucket that you created and must have the prefix `log/spi`.
5. [Create a crawler](https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html) with target to the created tables (SPI and DICT).
6. Create two Amazon Kinesis Firehose delivery streams: (SPI and DICT) in the AWS Glue Data Catalog to make the conversion in parquet format. Thus, we have the following prefixes and the destination S3 bucket:
* DICT develivery stream:
* Deliver to S3 Bucket created
* Use the Glue DICT table to convert to PARQUET
* Specify:
```
prefix: log/dict/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/
errorOutputPrefix: error/dict/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/!{firehose:error-output-type}
```
* SPI develivery stream:
* Deliver to S3 Bucket created
* Use the Glue SPI table to convert to PARQUET
* Specify:
```
prefix: log/spi/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/
errorOutputPrefix: error/spi/year=!{timestamp:yyyy}/month=!{timestamp:MM}/day=!{timestamp:dd}/hour=!{timestamp:HH}/!{firehose:error-output-type}
```
### AWS Systems Manager Parameter Store
1. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/CloudHSMClusterId` and value:
```
<CLOUDHSM_CLUSTER_ID>
```
To find out the CloudHSM Cluster Id is simple. In the AWS console, type CloudHSM and you will find your cluster. In the CloudHSM clusters list you will see the Cluster Id in the format "cluster-xxxxxxxxxxx".
<p align="center">
<img src="/images/cloudhsm-id.jpg">
</p>
2. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/CloudHSMCustomerCA` and value:
```
-----BEGIN CERTIFICATE-----
<CLOUDHSM_CUSTOMER_CA_CERTIFICATE>
-----END CERTIFICATE-----
```
3. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/SignatureKeyLabel` and value:
```
<SIGNATURE_LABEL>
```
4. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/SignatureCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
5. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/MtlsKeyLabel` and value:
```
<MTLS_KEY_LABEL>
```
6. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/MtlsCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
7. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/DictAuditStream` and value:
```
<FIREHOSE_DICT_DELIVERY_STREAM_NAME>
```
8. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/SpiAuditStream` and value:
```
<FIREHOSE_SPI_DELIVERY_STREAM_NAME>
```
9. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/BcbDictEndpoint` and value:
```
<DICT_ENDPOINT>
```
TO USE THE TEST - SIMULATOR, use:
```
test.pi.rsfn.net.br:8181
```
10. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/BcbSpiEndpoint` and value:
```
<SPI_ENDPOINT>
```
TO USE THE TEST - SIMULATOR, use:
```
test.pi.rsfn.net.br:9191
```
11. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/BcbSignatureCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<BACEN_SIGNATURE_CERTIFICATE>
-----END CERTIFICATE-----
```
TO USE THE TEST - SIMULATOR, use:
```
-----BEGIN CERTIFICATE-----
MIIDnDCCAoSgAwIBAgIEaLkRBjANBgkqhkiG9w0BAQsFADBkMQswCQYDVQQGEwJC
UjELMAkGA1UECBMCREYxETAPBgNVBAcTCEJyYXNpbGlhMQwwCgYDVQQKEwNCQ0Ix
DDAKBgNVBAsTA1BJWDEZMBcGA1UEAwwQKi<KEY>
-----END CERTIFICATE-----
```
12. [Create](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html) a parameter `/pix/proxy/cloudhsm/BcbMtlsCertificate` and value:
```
-----BEGIN CERTIFICATE-----
<BACEN_MTLS_CERTIFICATE>
-----END CERTIFICATE-----
```
TO USE THE TEST - SIMULATOR, use:
```
-----BEGIN CERTIFICATE-----
MI<KEY>
Uj<KEY>
Ew<KEY>
<KEY>
-----END CERTIFICATE-----
```
### AWS Fargate (PROXY)
1. To configure the Amazon ECS using Fargate, use this [procedure](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/getting-started-fargate.html). You can use the dockerfile `proxy/cloudhsm/proxy/src/main/docker/Dockerfile`. You also need configure the following [permissions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) to:
- Read the secret (AWS Secrets Manager).
- Read the parameters (AWS Systems Manager Parameter Store).
- Put data (log) into deliver streams (Amazon Kinesis Data Firehose).
- [Connect](https://docs.aws.amazon.com/cloudhsm/latest/userguide/configure-sg.html) to the AWS CloudHSM cluster.
You have to expose the service using **INTERNAL** [Application Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-application-load-balancer.html).
### AWS Fargate (TEST - SIMULATOR)
1. To configure the Amazon ECS using Fargate for testing, use this [procedure](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/getting-started-fargate.html). You can use the test dockerfile `/proxy/test/src/main/docker/Dockerfile`. You also need configure the following [permissions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-iam-roles.html) to:
- Read the parameters (AWS Systems Manager Parameter Store).
You have to expose the service using the **INTERNAL** [Network Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/network/create-network-load-balancer.html).
2. You have to configure a [private hosted zone](https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/hosted-zone-private-creating.html) with domain name `rsfn.net.br`. Also, use this [procedure](https://aws.amazon.com/premiumsupport/knowledge-center/route-53-create-alias-records/) to configure an A record for the name `test.pi.rsfn.net.br` and specify the alias for the TEST Network Load Balancer.
### Amazon Athena and Amazon QuickSight
1. Use this [procedure](https://docs.aws.amazon.com/athena/latest/ug/getting-started.html) to use Amazon Athena to query data in the S3 bucket created previously.
2. Optionally, you can use [Amazon QuickSight](https://docs.aws.amazon.com/quicksight/latest/user/setup-new-quicksight-account.html) that lets you easily create and publish interactive dashboards that include ML Insights. Dashboards can then be accessed from any device, and embedded into your applications, portals, and website.
<file_sep>package com.amazon.aws.pix.cloudhsm.proxy.processor;
import com.amazon.aws.pix.core.xml.XmlSigner;
import lombok.RequiredArgsConstructor;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import java.util.Map;
import static com.amazon.aws.pix.core.util.PixConstants.PIX_HEADERS;
import static com.amazon.aws.pix.core.util.PixConstants.PIX_HEADER_SIGNATURE_VALID;
@RequiredArgsConstructor
public class VerifyResponseProcessor implements Processor {
private final XmlSigner xmlSigner;
@Override
public void process(Exchange exchange) throws Exception {
Map<String, Object> headers = exchange.getIn().getHeaders();
headers.putAll(exchange.getProperty(PIX_HEADERS, Map.class));
final String body = exchange.getIn().getBody(String.class);
if (body != null && body.length() > 0) {
int statusCode = (int) exchange.getIn().getHeader("CamelHttpResponseCode");
if (200 <= statusCode && statusCode < 300) {
final Boolean valid = xmlSigner.verify(body);
headers.put(PIX_HEADER_SIGNATURE_VALID, valid.toString());
if (!valid) headers.put("CamelHttpResponseCode", 500);
}
}
}
}
<file_sep># Architectures to exemplify digital signature and secure message transmission to the Brazilian Instant Payment System (PIX)
### ***You can clone, change, execute it, but *it should not be used as a basis for building the final integration* of the Financial Institution with PIX (SPI and DICT).***
This project contains source code and supporting files to exemplify digital signature and secure message transmission to the Brazilian Instant Payment System (PIX). The architectures represent a **proxy** for communication with Brazilian Central Bank (BACEN). The idea of the proxy is to use **AWS CloudHSM** as a direct and mandatory path for every transaction, with the following objectives:
```bash
- Establish the TLS tunnel with mutual authentication (mTLS).
- Signature of XML messages.
- Sending the request log to the datastream.
```
AWS CloudHSM | AWS KMS |
:-:|:-:|
<img src="/images/hsm.jpg" width="100" height="100">|<img src="/images/kms.jpg" width="100" height="100">|
[Click here!](README-CloudHSM.md)|[Click here!](README-KMS.md)|
## Security
See [CONTRIBUTING](CONTRIBUTING.md#security-issue-notifications) for more information.
## License
This library is licensed under the MIT-0 License. See the LICENSE file.
<file_sep>quarkus.banner.enabled=false
quarkus.log.level=INFO
quarkus.camel.main.routes-discovery.enabled=false
camel.context.name=pix-proxy-test
quarkus.package.uber-jar=true<file_sep>package com.amazon.aws.pix.core.util;
public interface PixConstants {
String PIX_HEADERS = "pix-headers";
String PIX_HEADER_PREFIX = "pix-";
String PIX_HEADER_SIGNATURE_VALID = "pix-signature-valid";
}
| c784d8d38e5fd77967c2d661e32b7a7941f598e5 | [
"Markdown",
"Maven POM",
"INI",
"Java",
"Dockerfile",
"Shell"
] | 19 | Maven POM | INOS-soft/pix-proxy-samples | 2b03b2f9cb04dfa2e6ba620d487a215dcdf495e0 | 0e0bcb008825d7572287b48e7dce4379f3ccbb10 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.