drop database if exists av_ziya; create database av_ziya; use av_ziya; grant all on av_ziya.* to 'av_ziya'@'localhost' identified by 'av_ziya'; grant all on av_ziya.* to 'av_ziya'@'192.170.1.31' identified by 'av_ziya'; grant all on av_ziya.* to 'av_ziya'@'192.170.1.30' identified by 'av_ziya'; grant all on av_ziya.* to 'av_ziya'@'192.170.1.33' identified by 'av_ziya'; grant all on av_ziya.* to 'av_ziya'@'132.148.165.220' identified by 'av_ziya'; grant all on av_ziya.* to 'av_ziya'@'192.170.1.32' identified by 'av_ziya'; -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: av_ziya -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `all_users` -- DROP TABLE IF EXISTS `all_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `all_users` ( `uid_id` int(9) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `user_name` varchar(40) DEFAULT NULL, `del_password` varchar(256) DEFAULT NULL, `del_hashed_password` varchar(60) DEFAULT NULL, `encrypt_pswd` varchar(256) DEFAULT NULL, `pswd_hint` varchar(25) DEFAULT NULL, `status` varchar(10) DEFAULT 'Active' COMMENT 'Active, Deactive, Locked', `expire_hrs` varchar(2) DEFAULT NULL, `expire_min` varchar(2) DEFAULT NULL, `expire_tm` varchar(5) DEFAULT NULL, `idlook_menu_pvt1` int(5) DEFAULT NULL, `idlook_menu_pvt2` int(5) DEFAULT NULL, `last_clicked` datetime DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(5) DEFAULT NULL, PRIMARY KEY (`uid_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 MAX_ROWS=999999999 COMMENT='Used to store Apex User details'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `all_usr_login` -- DROP TABLE IF EXISTS `all_usr_login`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `all_usr_login` ( `idall_usr_login` int(10) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `idlook_ip_addr` int(11) DEFAULT NULL, `idlook_menu_pvt_lvl1` int(11) DEFAULT NULL, `idlook_menu_pvt_lvl2` int(11) DEFAULT NULL, `device_nm` varchar(15) DEFAULT NULL, `os_nm` varchar(15) DEFAULT NULL, `browser` varchar(45) DEFAULT NULL, `lastlogin` datetime DEFAULT NULL, `lastlogout` datetime DEFAULT NULL, `logouttype` char(1) DEFAULT NULL, `logged_in` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `select_edit_ids` text, `last_click` datetime DEFAULT NULL, PRIMARY KEY (`idall_usr_login`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `all_usr_login_wrk` -- DROP TABLE IF EXISTS `all_usr_login_wrk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `all_usr_login_wrk` ( `idall_usr_login_wrk` int(11) NOT NULL AUTO_INCREMENT, `idall_usr_login` int(11) DEFAULT NULL, `page_nm` varchar(45) DEFAULT NULL, `table_nm` varchar(25) DEFAULT NULL, `page_id` int(11) DEFAULT NULL, `wrk_ids` text, `last_clicked` datetime DEFAULT NULL, PRIMARY KEY (`idall_usr_login_wrk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_audit` -- DROP TABLE IF EXISTS `asset_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_audit` ( `idasset_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idasset_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_lk` -- DROP TABLE IF EXISTS `asset_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_lk` ( `idasset_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idasset_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_lk_flw` -- DROP TABLE IF EXISTS `asset_lk_flw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_lk_flw` ( `idasset_lk_flw` int(5) NOT NULL AUTO_INCREMENT, `wrk_flow_nm` varchar(25) DEFAULT NULL, `idasset_lk_val` int(5) DEFAULT NULL, `flw_desc` varchar(100) DEFAULT NULL, `idflow_par` int(5) DEFAULT NULL, `look_initial` char(1) DEFAULT NULL COMMENT 'Y or N', `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idasset_lk_flw`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_lk_tag` -- DROP TABLE IF EXISTS `asset_lk_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_lk_tag` ( `idiasset_lk_tag` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) DEFAULT NULL, `lk_tag` int(11) DEFAULT NULL, `lk_tag_desc` varchar(200) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_parent_tag_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idiasset_lk_tag`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_lk_val` -- DROP TABLE IF EXISTS `asset_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_lk_val` ( `idinvn_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idasset_lk` int(5) DEFAULT NULL, `lk_val` varchar(200) DEFAULT NULL, `lk_val_desc` varchar(250) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idinvn_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_prdt` -- DROP TABLE IF EXISTS `asset_prdt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_prdt` ( `idasset_prdt` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(11) DEFAULT NULL, `prdt_nm` varchar(45) DEFAULT NULL COMMENT 'Ipad, mac, maruti', `prod_num` varchar(45) DEFAULT NULL, `prod_ver` varchar(45) DEFAULT NULL, `prdt_family` varchar(45) DEFAULT NULL, `idasset_lk_flw` int(11) DEFAULT NULL, `stocking` char(1) DEFAULT NULL COMMENT 'Y or N, to show in inventory', `dscont_dt` date DEFAULT NULL COMMENT 'Date stopped manufacturing', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idasset_prdt`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_prdt_val` -- DROP TABLE IF EXISTS `asset_prdt_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_prdt_val` ( `idasset_prdt_val` int(11) NOT NULL AUTO_INCREMENT, `idasset_prdt` int(11) DEFAULT NULL COMMENT 'Selection, eg, ibm, apple, Microsoft ', `asset_serial_no` varchar(45) DEFAULT NULL, `tangible` char(1) DEFAULT NULL COMMENT 'Y or N', `prchse_dt` date DEFAULT NULL, `prchse_pr` varchar(45) DEFAULT NULL, `prchse_type` int(5) DEFAULT NULL COMMENT 'Lease, Purchase', `prchse_expy` date DEFAULT NULL COMMENT 'If purchase type lease, then mandatory', `depriciate_pcnt` int(2) DEFAULT NULL, `depriciate_calc` char(1) DEFAULT NULL COMMENT 'Y or N', `warranty` date DEFAULT NULL COMMENT 'User inputs year or date', `asset_desc` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idasset_prdt_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_prdt_val_decpt` -- DROP TABLE IF EXISTS `asset_prdt_val_decpt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_prdt_val_decpt` ( `idasset_prdt_val_decpt` int(11) NOT NULL AUTO_INCREMENT, `idasset_prdt_val` int(11) DEFAULT NULL, `as_of_dt` date DEFAULT NULL, `decpt_val` varchar(5) DEFAULT NULL, `as_of_val` varchar(9) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idasset_prdt_val_decpt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `asset_prdt_val_emp` -- DROP TABLE IF EXISTS `asset_prdt_val_emp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `asset_prdt_val_emp` ( `idasset_prdt_val_emp` int(11) NOT NULL AUTO_INCREMENT, `idasset_prdt_val` int(11) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `asset_frm_dt` date DEFAULT NULL, `asset_to_dt` date DEFAULT NULL, `asset_no_days` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idasset_prdt_val_emp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_acc` -- DROP TABLE IF EXISTS `bank_acc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_acc` ( `idbank_acc` int(11) NOT NULL AUTO_INCREMENT, `acc_owner` int(11) DEFAULT NULL, `acc_owner_tab` varchar(45) DEFAULT NULL COMMENT 'company id or emp_id', `comp_id` int(11) DEFAULT NULL COMMENT 'emp directly with company, company with comp_engage', `comp_acc` int(5) DEFAULT NULL, `acc_no` varchar(95) DEFAULT NULL, `open_curncy` varchar(10) DEFAULT NULL, `acc_open_dt` date DEFAULT NULL, `acc_type` int(5) DEFAULT NULL COMMENT 'Credit, Credit & Debit, Checking, Saving,', `acc_limit` varchar(25) DEFAULT NULL, `acc_close_dt` date DEFAULT NULL, `mature_dt` date DEFAULT NULL COMMENT 'For Bonds, Notes, ', `open_close_dt` int(11) DEFAULT NULL, `contact_info` varchar(200) DEFAULT NULL, `open_bal_dt` date DEFAULT NULL, `open_bal_amt` varchar(25) DEFAULT NULL, `cur_bal_amt` varchar(25) DEFAULT NULL, `close_bal_amt` varchar(25) DEFAULT NULL, `open_close_amt` varchar(25) DEFAULT NULL, `open_close_pcnt` varchar(6) DEFAULT NULL, `day_pcnt` varchar(6) DEFAULT NULL, `day_rate` varchar(6) DEFAULT NULL, `yr_rate` varchar(9) DEFAULT NULL, `yr_pcnt` varchar(6) DEFAULT NULL, `isu_bal_amt` varchar(25) DEFAULT NULL, `isu_bal_dt` date DEFAULT NULL, `clr_bal_amt` varchar(25) DEFAULT NULL, `clr_bal_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_isu_dt` date DEFAULT NULL, `old_clr_dt` date DEFAULT NULL, PRIMARY KEY (`idbank_acc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_acc_rec` -- DROP TABLE IF EXISTS `bank_acc_rec`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_acc_rec` ( `idbank_acc_rec` int(11) NOT NULL AUTO_INCREMENT, `hist` int(3) DEFAULT NULL, `idbank_acc` int(11) DEFAULT NULL, `issue_dt` date DEFAULT NULL, `clear_dt` date DEFAULT NULL, `isu_clr_dt` int(5) DEFAULT NULL, `check_no` varchar(45) DEFAULT NULL, `check_amt` float DEFAULT NULL, `rec_type` varchar(45) DEFAULT NULL COMMENT 'D = Deposit,W = Withdrawal', `check_type` varchar(45) DEFAULT NULL, `trans_ref_tab` varchar(10) DEFAULT NULL, `trans_ref_id` int(11) DEFAULT NULL, `record_for` int(5) DEFAULT NULL COMMENT 'E, Payroll, Tax', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `rec_smry` varchar(95) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idbank_acc_rec`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_acc_rec_bal_clr` -- DROP TABLE IF EXISTS `bank_acc_rec_bal_clr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_acc_rec_bal_clr` ( `idbk_acc_rec_bal_clr` int(11) NOT NULL AUTO_INCREMENT, `idbank_acc` int(11) DEFAULT NULL, `consol_dt` date DEFAULT NULL, `bank_depo` varchar(20) DEFAULT NULL, `bank_draw` varchar(20) DEFAULT NULL, `bank_bal` varchar(20) DEFAULT NULL, PRIMARY KEY (`idbk_acc_rec_bal_clr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_acc_rec_bal_isu` -- DROP TABLE IF EXISTS `bank_acc_rec_bal_isu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_acc_rec_bal_isu` ( `idbk_acc_rec_bal_isu` int(11) NOT NULL AUTO_INCREMENT, `idbank_acc` int(11) DEFAULT NULL, `consol_dt` date DEFAULT NULL, `bank_depo` varchar(20) DEFAULT NULL, `bank_draw` varchar(20) DEFAULT NULL, `bank_bal` varchar(20) DEFAULT NULL, PRIMARY KEY (`idbk_acc_rec_bal_isu`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_audit` -- DROP TABLE IF EXISTS `bank_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_audit` ( `idbank_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idbank_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_bud` -- DROP TABLE IF EXISTS `bank_bud`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_bud` ( `idbank_bud` int(11) NOT NULL AUTO_INCREMENT, `bud_for_tab` varchar(20) DEFAULT NULL, `bud_ref_id` int(11) DEFAULT NULL, `bud_open_dt` date DEFAULT NULL, `bud_close_dt` date DEFAULT NULL, `bud_limit` varchar(20) DEFAULT NULL, `bud_bal` varchar(20) DEFAULT NULL, `bud_bal_dt` date DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `old_bud_dt` date DEFAULT NULL, `bud_open_amt` int(1) DEFAULT '0', PRIMARY KEY (`idbank_bud`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_bud_rec` -- DROP TABLE IF EXISTS `bank_bud_rec`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_bud_rec` ( `idbank_bud_rec` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Bank Record', `idbank_bud` int(11) DEFAULT NULL, `trans_ref_tab` varchar(45) DEFAULT NULL, `trans_ref_id` int(11) DEFAULT NULL, `rec_dt` date DEFAULT NULL, `rec_amt` varchar(20) DEFAULT NULL, `rec_type` char(1) DEFAULT NULL COMMENT 'D =Deposit, W = Withdrawal', `record_for` int(5) DEFAULT NULL COMMENT 'Salary, Expense, etc', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, PRIMARY KEY (`idbank_bud_rec`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_bud_rec_bal` -- DROP TABLE IF EXISTS `bank_bud_rec_bal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_bud_rec_bal` ( `idbank_bud_rec_bal` int(11) NOT NULL AUTO_INCREMENT, `idbank_bud` int(11) DEFAULT NULL, `consol_dt` date DEFAULT NULL, `bank_depo` varchar(20) DEFAULT NULL, `bank_draw` varchar(20) DEFAULT NULL, `bank_bal` varchar(20) DEFAULT NULL, PRIMARY KEY (`idbank_bud_rec_bal`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_lk` -- DROP TABLE IF EXISTS `bank_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_lk` ( `idbank_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(45) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idbank_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_lk_flw` -- DROP TABLE IF EXISTS `bank_lk_flw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_lk_flw` ( `idbank_lk_flw` int(5) NOT NULL AUTO_INCREMENT, `wrk_flow_nm` varchar(25) DEFAULT NULL, `idbank_lk_val` int(5) DEFAULT NULL, `flw_desc` varchar(100) DEFAULT NULL, `idflow_par` int(5) DEFAULT NULL, `look_initial` char(1) DEFAULT NULL COMMENT 'Y or N', `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idbank_lk_flw`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_lk_val` -- DROP TABLE IF EXISTS `bank_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_lk_val` ( `idbank_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idbank_lk` int(5) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idbank_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_record_hist` -- DROP TABLE IF EXISTS `bank_record_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_record_hist` ( `idbank_record_hist` int(11) NOT NULL AUTO_INCREMENT, `idbank_acc` int(11) DEFAULT NULL, `trans_by` int(11) DEFAULT NULL, `issue_dt` date DEFAULT NULL, `clear_dt` date DEFAULT NULL, `check_amt` float DEFAULT NULL, `rec_type` varchar(45) DEFAULT NULL COMMENT 'D = Deposit,B = Bounce,C = Correction', `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idbank_record_hist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_trng` -- DROP TABLE IF EXISTS `bank_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_trng` ( `idbank_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idbank_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `bank_trng_doc` -- DROP TABLE IF EXISTS `bank_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `bank_trng_doc` ( `idbank_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idbank_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idbank_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_active` -- DROP TABLE IF EXISTS `comp_active`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_active` ( `idcomp_active` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `comp_background` text, `active_type` char(1) DEFAULT NULL COMMENT 'dispute or alliance', `publish` char(1) DEFAULT NULL, `manage_by` int(11) DEFAULT NULL, `client_since` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` int(11) DEFAULT NULL, PRIMARY KEY (`idcomp_active`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_address` -- DROP TABLE IF EXISTS `comp_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_address` ( `comp_add_id` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `look_street_no_id` int(11) DEFAULT NULL, `suite_no` varchar(45) DEFAULT NULL, `house_apt_type` int(5) DEFAULT NULL, `add_type` varchar(45) DEFAULT NULL COMMENT 'Primary, Branch', `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `from_to_dt` int(11) DEFAULT NULL, `no_days` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`comp_add_id`), KEY `fk_comp_add_id` (`comp_id`), KEY `fk_look_street_comp_branch_idx` (`look_street_no_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_attr_reg` -- DROP TABLE IF EXISTS `comp_attr_reg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_attr_reg` ( `idcomp_attr_reg` int(11) NOT NULL AUTO_INCREMENT, `comp_reg_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idcomp_attr_reg`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_audit` -- DROP TABLE IF EXISTS `comp_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_audit` ( `idcomp_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `col2` text, `col3` text, `col4` text, `col5` text, `col6` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idcomp_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_contact` -- DROP TABLE IF EXISTS `comp_contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_contact` ( `comp_contact_id` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `title` varchar(45) DEFAULT NULL COMMENT 'Sales, HR, etc', `all_contacts` varchar(500) DEFAULT NULL, `description` varchar(100) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`comp_contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_contact_no` -- DROP TABLE IF EXISTS `comp_contact_no`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_contact_no` ( `comp_contact_no_id` int(11) NOT NULL AUTO_INCREMENT, `comp_contact_id` int(11) DEFAULT NULL, `emp_contact_id` int(11) DEFAULT NULL COMMENT 'Phone, Cell, email', `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`comp_contact_no_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_doc` -- DROP TABLE IF EXISTS `comp_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_doc` ( `idcomp_doc` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idcomp_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_h_day` -- DROP TABLE IF EXISTS `comp_h_day`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_h_day` ( `idcomp_h_day` int(11) NOT NULL AUTO_INCREMENT, `idcomp_h_val` int(11) DEFAULT NULL, `comp_id` int(11) DEFAULT NULL, `holi_date` date DEFAULT NULL COMMENT 'For that year', `holi_type` char(1) DEFAULT NULL COMMENT 'Mandatory or Optional', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_h_day`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_h_val` -- DROP TABLE IF EXISTS `comp_h_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_h_val` ( `idcomp_h_val` int(11) NOT NULL AUTO_INCREMENT, `occation_day` varchar(30) DEFAULT NULL COMMENT 'New year\\\\\\\\n', `occation_dt` varchar(10) DEFAULT NULL COMMENT '01/01', `occation_flex` char(1) DEFAULT NULL COMMENT 'Day may change', `occation_desc` varchar(45) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_h_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_lk` -- DROP TABLE IF EXISTS `comp_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_lk` ( `idcomp_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idcomp_lk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_lk_val` -- DROP TABLE IF EXISTS `comp_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_lk_val` ( `idcomp_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idcomp_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_own` -- DROP TABLE IF EXISTS `comp_own`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_own` ( `idcomp_own` int(9) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `emp_id` int(9) DEFAULT NULL, `owner_share` int(9) DEFAULT NULL, `share_dt_from` date DEFAULT NULL, `share_dt_to` date DEFAULT NULL, PRIMARY KEY (`idcomp_own`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_trng` -- DROP TABLE IF EXISTS `comp_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_trng` ( `idcomp_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_trng_doc` -- DROP TABLE IF EXISTS `comp_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_trng_doc` ( `idcomp_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idcomp_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `comp_type` -- DROP TABLE IF EXISTS `comp_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `comp_type` ( `idcomp_type` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `comp_type` int(5) DEFAULT NULL COMMENT 'LLC, C - Corp, S-Corp', `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idcomp_type`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `company` -- DROP TABLE IF EXISTS `company`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `company` ( `comp_id` int(11) NOT NULL AUTO_INCREMENT, `idstorages` int(11) DEFAULT NULL, `companyname` varchar(65) DEFAULT NULL, `comp_tax_id` varchar(45) DEFAULT NULL, `company_info` varchar(500) DEFAULT NULL, `comp_website` varchar(95) DEFAULT NULL, `comp_phone` varchar(15) DEFAULT NULL, `comp_email` varchar(45) DEFAULT NULL, `all_contacts` text, `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`comp_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `contact_no` -- DROP TABLE IF EXISTS `contact_no`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `contact_no` ( `contact_id` int(11) NOT NULL AUTO_INCREMENT, `country_id` int(11) DEFAULT NULL, `contact_type` varchar(15) DEFAULT NULL, `contact_detail` varchar(95) DEFAULT NULL, `contact_cnt` int(5) DEFAULT NULL, `contact_smry` text, `contact_stat` varchar(45) DEFAULT NULL COMMENT 'Unsubscribe, DND, ', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_apps` -- DROP TABLE IF EXISTS `dev_apps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_apps` ( `iddev_apps` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `app_name` varchar(30) DEFAULT NULL, `app_skill_avg` varchar(4) DEFAULT NULL, `app_gap_avg` varchar(4) DEFAULT NULL, `app_st_dt` datetime DEFAULT NULL, `comp_id` int(10) DEFAULT NULL, `app_description` varchar(150) DEFAULT NULL, `app_e_dt` datetime DEFAULT NULL, `app_stat_tm` varchar(20) DEFAULT NULL, `app_lag_tm` varchar(20) DEFAULT NULL, `app_est_cnt` int(5) DEFAULT NULL, `app_est_tol` int(5) DEFAULT NULL, `app_est_pcnt` varchar(10) DEFAULT NULL, `app_est_req_cnt` int(5) DEFAULT NULL, `app_est_req_tol` int(5) DEFAULT NULL, `app_est_req_pcnt` varchar(10) DEFAULT NULL, `app_est_req_stat_cnt` int(5) DEFAULT NULL, `app_est_req_stat_tol` int(5) DEFAULT NULL, `app_est_req_stat_pcnt` varchar(10) DEFAULT NULL, `app_case_cnt` int(5) DEFAULT NULL, `app_case_tol` int(5) DEFAULT NULL, `app_case_pcnt` varchar(10) DEFAULT NULL, `app_case_atmpt` int(5) DEFAULT NULL, `app_bud_amt` varchar(45) DEFAULT NULL COMMENT 'Budget Amt', `app_use_amt` varchar(45) DEFAULT NULL, `app_use_pcnt` varchar(10) DEFAULT NULL, `app_bud_bal` varchar(45) DEFAULT NULL, `app_bud_pcnt` varchar(10) DEFAULT NULL, `app_pay_amt` varchar(45) DEFAULT NULL, `app_pay_pcnt` varchar(10) DEFAULT NULL, `app_bal_amt` varchar(45) DEFAULT NULL, `app_bal_pcnt` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_app_dt` date DEFAULT NULL, `run_func` varchar(45) DEFAULT NULL COMMENT 'Y', PRIMARY KEY (`iddev_apps`), KEY `lk_app_e_dt` (`app_e_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_apps_doc` -- DROP TABLE IF EXISTS `dev_apps_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_apps_doc` ( `iddev_app_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_apps` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_app_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_apps` -- DROP TABLE IF EXISTS `dev_attr_apps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_apps` ( `iddev_attr_apps` int(11) NOT NULL AUTO_INCREMENT, `dev_apps_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_apps`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_est` -- DROP TABLE IF EXISTS `dev_attr_est`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_est` ( `iddev_attr_est` int(11) NOT NULL AUTO_INCREMENT, `dev_est_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(11) DEFAULT NULL, `close` int(11) DEFAULT NULL, `total` int(11) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL COMMENT 'Emp or company', `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_est`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_est_reqs` -- DROP TABLE IF EXISTS `dev_attr_est_reqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_est_reqs` ( `iddev_attr_est_reqs` int(11) NOT NULL AUTO_INCREMENT, `dev_est_reqs_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL COMMENT '= close_req / total', `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_est_reqs`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_est_reqs_case` -- DROP TABLE IF EXISTS `dev_attr_est_reqs_case`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_est_reqs_case` ( `iddev_attr_est_reqs_case` int(11) NOT NULL AUTO_INCREMENT, `dev_est_reqs_case_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_est_reqs_case`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_est_reqs_stat` -- DROP TABLE IF EXISTS `dev_attr_est_reqs_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_est_reqs_stat` ( `iddev_attr_est_reqs_stat` int(11) NOT NULL AUTO_INCREMENT, `dev_est_reqs_stat_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_est_reqs_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_attr_est_reqs_stat_forcast` -- DROP TABLE IF EXISTS `dev_attr_est_reqs_stat_forcast`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_attr_est_reqs_stat_forcast` ( `iddev_attr_est_reqs_stat_forcast` int(11) NOT NULL AUTO_INCREMENT, `dev_est_reqs_stat_forcast_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_attr_est_reqs_stat_forcast`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_audit` -- DROP TABLE IF EXISTS `dev_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_audit` ( `iddev_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(10) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est` -- DROP TABLE IF EXISTS `dev_est`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est` ( `iddev_est` int(11) NOT NULL AUTO_INCREMENT, `iddev_apps` int(11) DEFAULT NULL, `dev_est_smry` varchar(150) DEFAULT NULL, `est_st_dt` datetime DEFAULT NULL, `est_e_dt` datetime DEFAULT NULL, `est_time` int(11) DEFAULT NULL, `est_lag_tm` int(11) DEFAULT NULL, `owner_ref_tab` varchar(45) DEFAULT NULL COMMENT 'Required', `owner_ref_id` int(11) DEFAULT NULL COMMENT 'Required', `est_ref_tab` varchar(45) DEFAULT NULL COMMENT 'Required', `est_ref_id` int(11) DEFAULT NULL COMMENT 'Required', `priority` int(5) DEFAULT NULL COMMENT 'Required (Value 1 thru 5)', `category` int(5) DEFAULT NULL COMMENT 'IT, Support, Hybrid', `est_skill` varchar(5) DEFAULT NULL COMMENT 'Not needed', `est_gap_lvl` varchar(5) DEFAULT NULL COMMENT 'Not Needed', `est_type` varchar(11) DEFAULT NULL, `est_req_cnt` int(5) DEFAULT NULL, `est_req_tol` int(5) DEFAULT NULL, `est_req_pcnt` varchar(20) DEFAULT NULL, `est_req_stat_cnt` int(5) DEFAULT NULL, `est_req_stat_tol` int(5) DEFAULT NULL, `est_req_stat_pcnt` varchar(10) DEFAULT NULL, `est_case_cnt` int(5) DEFAULT NULL, `est_case_tol` int(5) DEFAULT NULL, `est_case_pcnt` varchar(20) DEFAULT NULL, `est_case_atmpt` int(5) DEFAULT NULL, `est_bud_amt` varchar(25) DEFAULT NULL, `est_use_amt` varchar(25) DEFAULT NULL COMMENT 'Exists', `est_use_pcnt` varchar(10) DEFAULT NULL, `est_bud_bal` varchar(25) DEFAULT NULL, `est_bud_pcnt` varchar(10) DEFAULT NULL, `est_pay_amt` varchar(25) DEFAULT NULL COMMENT 'Exists', `est_pay_pcnt` varchar(10) DEFAULT NULL, `est_bal_amt` varchar(25) DEFAULT NULL COMMENT 'Exists', `est_bal_pcnt` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL COMMENT 'Not Needed', `last_updated` datetime DEFAULT NULL COMMENT 'Not Needed', `attach` char(1) DEFAULT NULL COMMENT 'Y or Null', `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(5) DEFAULT NULL, `old_est_dt` date DEFAULT NULL, `old_req_dt` date DEFAULT NULL COMMENT 'GUI not needed, use when multiple req entered in GUI to store single date', `run_func` char(1) DEFAULT NULL, PRIMARY KEY (`iddev_est`), KEY `lk_iddev_apps` (`iddev_apps`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_access` -- DROP TABLE IF EXISTS `dev_est_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_access` ( `iddev_est_access` int(11) NOT NULL AUTO_INCREMENT, `iddev_est` int(11) DEFAULT NULL, `dev_est_emp_id` int(11) DEFAULT NULL, `dev_app_access` varchar(15) DEFAULT NULL, `dev_est_access` varchar(15) DEFAULT NULL COMMENT '1 = View / 2 = edit ', `dev_est_req_access` varchar(15) DEFAULT NULL, `dev_est_reqs_case_access` varchar(15) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_est_access`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_doc` -- DROP TABLE IF EXISTS `dev_est_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_doc` ( `iddev_est_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_est` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs` -- DROP TABLE IF EXISTS `dev_est_reqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs` ( `iddev_est_reqs` int(11) NOT NULL AUTO_INCREMENT, `iddev_est` int(11) DEFAULT NULL, `req_st_dt` datetime DEFAULT NULL, `req_e_dt` datetime DEFAULT NULL, `req_time` int(11) DEFAULT NULL COMMENT 'Back-end script', `req_lag_tm` int(11) DEFAULT NULL COMMENT 'Back-end script', `disp_order` int(3) DEFAULT NULL, `req_desc` varchar(300) DEFAULT NULL, `skill_lvl` int(5) DEFAULT NULL, `req_type` int(5) DEFAULT NULL COMMENT 'Db, JS, web design, content, Analysis, presentation, document, programming, hybrid, network, server', `iddev_lk_wrk_flow` int(5) DEFAULT NULL, `req_status` int(5) DEFAULT NULL, `idlook_stat_order` int(5) DEFAULT NULL, `gap_lvl` int(5) DEFAULT NULL COMMENT '1=redo, 5 = perfect', `req_stat_st_dt` datetime DEFAULT NULL, `req_stat_e_dt` datetime DEFAULT NULL, `req_stat_time` int(11) DEFAULT NULL COMMENT 'Back-end script', `req_stat_time2` int(11) DEFAULT NULL, `req_stat_e_dt_pre` datetime DEFAULT NULL COMMENT 'Back-end script', `req_stat_lag_tm` int(11) DEFAULT NULL COMMENT 'Back-end script', `assigned_to` int(11) DEFAULT NULL, `req_stat_cnt` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_stat_tol` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_stat_pcnt` varchar(10) DEFAULT NULL COMMENT 'Back-end script', `req_case_cnt` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_case_tol` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_case_pcnt` varchar(10) DEFAULT NULL COMMENT 'Back-end script', `req_case_atmpt` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_cases` int(5) DEFAULT NULL COMMENT 'Back-end script', `req_bud_amt` varchar(25) DEFAULT NULL COMMENT 'Back-end script', `req_use_amt` varchar(25) DEFAULT NULL COMMENT 'Back-end script', `req_use_pcnt` varchar(10) DEFAULT NULL COMMENT 'Req_use_amt / req_bud_amt * 100', `req_bud_bal` varchar(25) DEFAULT NULL, `req_bud_pcnt` varchar(10) DEFAULT NULL, `req_pay_amt` varchar(25) DEFAULT NULL COMMENT 'Back-end script', `req_pay_pcnt` varchar(10) DEFAULT NULL COMMENT 'Back-end script', `req_bal_amt` varchar(25) DEFAULT NULL COMMENT 'Back-end script', `req_bal_pcnt` varchar(10) DEFAULT NULL COMMENT 'Back-end script', `updater` int(11) DEFAULT NULL COMMENT 'GUI session', `last_updated` datetime DEFAULT NULL COMMENT 'GUI session', `del_dt` datetime DEFAULT NULL COMMENT 'GUI session', `del_by` int(11) DEFAULT NULL COMMENT 'GUI session', `del_day` int(5) DEFAULT NULL COMMENT 'GUI session', `archv_dt` datetime DEFAULT NULL COMMENT 'GUI session', `archv_by` int(11) DEFAULT NULL COMMENT 'GUI session', `rpt_req_stat_by` text COMMENT 'Back-end script', `rpt_req_stat_by_nm` text COMMENT 'Back-end script', `rpt_req_stat_id` text COMMENT 'Back-end script', `rpt_req_stat_id_nm` text COMMENT 'Back-end script', `rpt_req_stat_lag_tm` text COMMENT 'Back-end script', `rpt_req_stat_time` text COMMENT 'Back-end script', `old_forcast_dt` date DEFAULT NULL COMMENT 'GUI, field not need, calling forecast function', `old_status_dt` date DEFAULT NULL COMMENT 'GUI, field not need, calling status function', `old_req_dt` date DEFAULT NULL COMMENT 'GUI, field not need, calling kundali cubes function', `run_func` char(1) DEFAULT NULL COMMENT 'GUI, field not need, Y or N, if req end entered then run agile_func_cnt to close child records.', `old_case_dt` date DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs`), KEY `lk_dev_est` (`iddev_est`), KEY `lk_del_dt` (`del_dt`), KEY `lk_archv_dt` (`archv_dt`), KEY `lk_req_e_dt` (`req_e_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_case` -- DROP TABLE IF EXISTS `dev_est_reqs_case`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_case` ( `iddev_est_reqs_case` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs` int(11) DEFAULT NULL, `created_by` int(11) DEFAULT NULL, `create_dt` date DEFAULT NULL, `create_end_dt` date DEFAULT NULL, `create_time` int(11) DEFAULT NULL, `disp_order` int(2) DEFAULT NULL, `reqs_cases` varchar(200) DEFAULT NULL, `case_data` varchar(200) DEFAULT NULL, `case_result_desc` varchar(200) DEFAULT NULL, `case_cnt` int(5) DEFAULT NULL, `case_status` int(5) DEFAULT NULL, `executed_by` int(11) DEFAULT NULL, `execute_dt` date DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(30) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_case_dt` date DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_case`), KEY `lk_est_reqs` (`iddev_est_reqs`), KEY `lk_del_by` (`del_by`), KEY `lk_archv_by` (`archv_by`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_case_doc` -- DROP TABLE IF EXISTS `dev_est_reqs_case_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_case_doc` ( `iddev_est_reqs_case_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_case` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_case_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_case_result` -- DROP TABLE IF EXISTS `dev_est_reqs_case_result`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_case_result` ( `iddev_est_reqs_case_result` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_case` int(11) DEFAULT NULL, `case_data` varchar(200) DEFAULT NULL, `case_result_desc` varchar(200) DEFAULT NULL, `case_status` int(11) DEFAULT NULL, `executed_by` int(11) DEFAULT NULL, `execute_dt` date DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` varchar(45) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_case_result`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_case_result_doc` -- DROP TABLE IF EXISTS `dev_est_reqs_case_result_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_case_result_doc` ( `iddev_est_reqs_case_result_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_case_result` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_case_result_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_doc` -- DROP TABLE IF EXISTS `dev_est_reqs_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_doc` ( `iddev_est_reqs_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_doc`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_stat_amt` -- DROP TABLE IF EXISTS `dev_est_reqs_stat_amt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_stat_amt` ( `iddev_est_reqs_stat_amt` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_status` int(11) DEFAULT NULL, `hist_cnt` int(5) DEFAULT NULL, `reqs_quote_by` int(11) DEFAULT NULL, `reqs_quote_dt` date DEFAULT NULL, `req_stat_amt` varchar(25) DEFAULT NULL, `req_action_by` int(11) DEFAULT NULL, `req_action` int(5) DEFAULT NULL, `req_stat_paid` varchar(25) DEFAULT NULL, `req_stat_paid_pcnt` varchar(10) DEFAULT NULL, `req_stat_bal` varchar(25) DEFAULT NULL, `req_stat_bal_pcnt` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_stat_amt`), KEY `lk_reqs_status` (`iddev_est_reqs_status`), KEY `lk_quote_by` (`reqs_quote_by`), KEY `lk_action_by` (`req_action_by`), KEY `lk_del_dt` (`del_dt`), KEY `lk_archv_dt` (`archv_dt`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_stat_amt_hist` -- DROP TABLE IF EXISTS `dev_est_reqs_stat_amt_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_stat_amt_hist` ( `iddev_est_reqs_stat_amt_hist` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_stat_amt` int(11) DEFAULT NULL, `req_amt_old` float DEFAULT NULL, `req_amt_smry` varchar(95) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_stat_amt_hist`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_status` -- DROP TABLE IF EXISTS `dev_est_reqs_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_status` ( `iddev_est_reqs_status` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs` int(11) DEFAULT NULL, `req_status` int(5) DEFAULT NULL, `idlook_stat_order` int(5) DEFAULT NULL, `stat_e_dt_pre` datetime DEFAULT NULL, `stat_lag_time` int(11) DEFAULT NULL, `stat_st_dt` datetime DEFAULT NULL, `stat_e_dt` datetime DEFAULT NULL, `stat_time` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `assigned_to` int(11) DEFAULT NULL, `gap_lvl` int(5) DEFAULT NULL, `req_stat_amt` varchar(25) DEFAULT NULL, `req_stat_paid` varchar(25) DEFAULT NULL, `req_stat_paid_pcnt` varchar(10) DEFAULT NULL, `req_stat_bal` varchar(25) DEFAULT NULL, `req_stat_bal_pcnt` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_status`), KEY `est_reqs` (`iddev_est_reqs`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_status_forcast` -- DROP TABLE IF EXISTS `dev_est_reqs_status_forcast`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_status_forcast` ( `iddev_est_reqs_status_forcast` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_status` int(11) DEFAULT NULL, `iddev_est_reqs` int(11) DEFAULT NULL, `req_status` int(5) DEFAULT NULL, `idlook_stat_order` int(5) DEFAULT NULL, `for_stat_e_dt_pre` datetime DEFAULT NULL, `for_stat_lag_time` int(11) DEFAULT NULL, `for_stat_st_dt` datetime DEFAULT NULL, `for_stat_e_dt` datetime DEFAULT NULL, `for_stat_time` int(11) DEFAULT NULL, `for_req_bud_amt` varchar(25) DEFAULT NULL, `for_amt_dt` datetime DEFAULT NULL, `for_amt_temp_dt` datetime DEFAULT NULL, `hist_cnt` int(5) DEFAULT NULL, `for_req_bud_amt_updater` int(11) DEFAULT NULL, `for_req_bud_amt_updated` datetime DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `assigned_to` int(11) DEFAULT NULL, `forecast_smry` varchar(95) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_status_forcast`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_status_forcast_hist` -- DROP TABLE IF EXISTS `dev_est_reqs_status_forcast_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_status_forcast_hist` ( `iddev_est_reqs_status_forcast_hist` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_status_forcast` int(11) DEFAULT NULL, `forecast_req_bud_amt_old` varchar(15) DEFAULT NULL, `forecast_smry_old` varchar(95) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_status_forcast_hist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_status_forcast_steps` -- DROP TABLE IF EXISTS `dev_est_reqs_status_forcast_steps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_status_forcast_steps` ( `iddev_est_reqs_status_forcast_steps` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs` int(11) DEFAULT NULL, `dev_steps_details` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_est_reqs_status_forcast_steps`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_est_reqs_status_steps` -- DROP TABLE IF EXISTS `dev_est_reqs_status_steps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_est_reqs_status_steps` ( `iddev_est_req_status_steps` int(11) NOT NULL AUTO_INCREMENT, `iddev_est_reqs_status` int(11) DEFAULT NULL, `dev_steps_details` varchar(100) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, PRIMARY KEY (`iddev_est_req_status_steps`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_lk_label` -- DROP TABLE IF EXISTS `dev_lk_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_lk_label` ( `iddev_lk_label` int(5) NOT NULL AUTO_INCREMENT, `display_size` varchar(45) DEFAULT NULL COMMENT '2px, 2 percent', `dev_label_nm` varchar(45) DEFAULT NULL, `hover_fields` varchar(255) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_parent_val_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_lk_label`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_lk_wrk_flow` -- DROP TABLE IF EXISTS `dev_lk_wrk_flow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_lk_wrk_flow` ( `iddev_lk_wrk_flow` int(11) NOT NULL AUTO_INCREMENT, `wrk_flow_nm` varchar(45) DEFAULT NULL, `id_wrk_flow` int(11) DEFAULT NULL, `wrk_flow_desc` varchar(100) DEFAULT NULL, `id_wrk_flow_parent` int(11) DEFAULT NULL, `look_initial` varchar(5) DEFAULT NULL, `look_restart` varchar(5) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_lk_wrk_flow`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_look` -- DROP TABLE IF EXISTS `dev_look`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_look` ( `iddev_look` int(11) NOT NULL AUTO_INCREMENT, `look_name` varchar(45) DEFAULT NULL, `look_name_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`iddev_look`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_look_value` -- DROP TABLE IF EXISTS `dev_look_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_look_value` ( `iddev_look_value` int(11) NOT NULL AUTO_INCREMENT, `iddev_look` int(11) DEFAULT NULL, `look_value` varchar(45) DEFAULT NULL, `look_value_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_look_value`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_trng` -- DROP TABLE IF EXISTS `dev_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_trng` ( `iddev_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `dev_trng_doc` -- DROP TABLE IF EXISTS `dev_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `dev_trng_doc` ( `iddev_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `iddev_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`iddev_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp` -- DROP TABLE IF EXISTS `emp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp` ( `emp_id` int(11) NOT NULL AUTO_INCREMENT, `idstorages` int(11) DEFAULT NULL, `firstname` varchar(20) DEFAULT NULL, `middlename` varchar(20) DEFAULT NULL, `lastname` varchar(20) DEFAULT NULL, `nickname` varchar(5) DEFAULT NULL, `all_contacts` varchar(200) DEFAULT NULL, `unique_id_type` int(5) DEFAULT NULL COMMENT 'SSN, PAN, etc', `ssn` varchar(20) DEFAULT NULL, `dob` date DEFAULT NULL, `gender` int(5) DEFAULT NULL, `all_features` text, `cnt_feature` int(4) DEFAULT NULL, `all_education` text, `education_cnt` int(5) DEFAULT NULL, `education_yrs` int(11) DEFAULT NULL, `all_emp_org` text, `all_addresses` text, `sto_limit` varchar(20) DEFAULT NULL, `sto_usage` varchar(20) DEFAULT NULL, `sto_remain` varchar(20) DEFAULT NULL, `taxid` varchar(45) DEFAULT NULL, `hrs_forecast` varchar(25) DEFAULT NULL, `hrs_actual` varchar(25) DEFAULT NULL, `fore_act_pcnt` varchar(10) DEFAULT NULL, `amt_forcast` varchar(25) DEFAULT NULL, `amt_actual` varchar(25) DEFAULT NULL, `amt_pcnt` varchar(10) DEFAULT NULL, `vac_earn` varchar(25) DEFAULT NULL, `vac_use` varchar(25) DEFAULT NULL, `vac_bal` varchar(15) DEFAULT NULL, `vac_pcnt` varchar(10) DEFAULT NULL, `login_id` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updater` int(9) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_org_dt` date DEFAULT NULL, `old_addr_dt` date DEFAULT NULL, PRIMARY KEY (`emp_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 MAX_ROWS=999999999 COMMENT='Used to store details of Apex employee details'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_access` -- DROP TABLE IF EXISTS `emp_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_access` ( `access_id` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(9) NOT NULL, `feature_id` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`access_id`), KEY `feature_id_fk1` (`feature_id`), KEY `uid_fk3` (`emp_id`), KEY `fk_emp_id_allusr_acc_idx` (`emp_id`), KEY `fk_fea_allusr_acc_idx` (`feature_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 MAX_ROWS=999999999 COMMENT='Used to store access details of employees'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_activity` -- DROP TABLE IF EXISTS `emp_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_activity` ( `idemp_activity` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `call_recv_dt` date DEFAULT NULL, `next_call_dt` date DEFAULT NULL, `call_note` text, `last_updated` datetime DEFAULT NULL, `emp_id_updated` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_address` -- DROP TABLE IF EXISTS `emp_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_address` ( `emp_add_id` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(9) DEFAULT NULL, `look_street_no_id` int(10) DEFAULT NULL, `house_apt_no` varchar(45) DEFAULT NULL, `house_apt_type` int(5) DEFAULT NULL, `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `no_of_days` int(10) DEFAULT NULL, `add_type` varchar(45) DEFAULT NULL COMMENT 'Mailing or Physical', `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`emp_add_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_att_org_hrs` -- DROP TABLE IF EXISTS `emp_att_org_hrs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_att_org_hrs` ( `idemp_att_org_hrs` int(11) NOT NULL AUTO_INCREMENT, `emp_org_hrs_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_att_org_hrs`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_att_org_hrs_days_cy` -- DROP TABLE IF EXISTS `emp_att_org_hrs_days_cy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_att_org_hrs_days_cy` ( `idemp_att_org_hrs_days_cy` int(11) NOT NULL AUTO_INCREMENT, `emp_org_hrs_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_att_org_hrs_days_cy`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_attr_address` -- DROP TABLE IF EXISTS `emp_attr_address`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_attr_address` ( `idemp_attr_address` int(11) NOT NULL AUTO_INCREMENT, `emp_address_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_attr_address`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_attr_org` -- DROP TABLE IF EXISTS `emp_attr_org`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_attr_org` ( `idemp_attr_org` int(11) NOT NULL AUTO_INCREMENT, `emp_org_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_attr_org`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_audit` -- DROP TABLE IF EXISTS `emp_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_audit` ( `idemp_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_contact` -- DROP TABLE IF EXISTS `emp_contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_contact` ( `emp_contact_id` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(9) DEFAULT NULL, `contact_id` int(11) DEFAULT NULL COMMENT 'email, cell, work, home', `emp_contact_type` varchar(10) DEFAULT NULL, `contact_vrifed` char(1) DEFAULT NULL, `summary` varchar(100) DEFAULT NULL, `contact_cnt` int(2) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, PRIMARY KEY (`emp_contact_id`), UNIQUE KEY `emp_contact_id` (`emp_contact_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_doc` -- DROP TABLE IF EXISTS `emp_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_doc` ( `idemp_doc` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `emp_doc_type` int(5) DEFAULT NULL, PRIMARY KEY (`idemp_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_education` -- DROP TABLE IF EXISTS `emp_education`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_education` ( `idemp_education` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `edu_name` int(5) DEFAULT NULL COMMENT 'School, college name', `edu_name_sub` int(5) DEFAULT NULL COMMENT 'campus_name', `edu_frm_dt` date DEFAULT NULL, `edu_to_dt` date DEFAULT NULL, `edu_frm_to_dt` int(5) DEFAULT NULL, `edu_subject` int(5) DEFAULT NULL COMMENT 'CSC, Civil', `edu_level` int(5) DEFAULT NULL COMMENT 'Bachelor, Master, PH.D, Drop Out,', `edu_smry` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_education`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_lk` -- DROP TABLE IF EXISTS `emp_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_lk` ( `idemp_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idemp_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_lk_tag` -- DROP TABLE IF EXISTS `emp_lk_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_lk_tag` ( `idemp_lk_tag` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) DEFAULT NULL, `lk_tag` varchar(200) DEFAULT NULL, `lk_tag_desc` varchar(200) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_parent_val_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_lk_tag`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_lk_val` -- DROP TABLE IF EXISTS `emp_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_lk_val` ( `idemp_lk_value` int(11) NOT NULL AUTO_INCREMENT, `idemp_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(1) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_lk_value`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org` -- DROP TABLE IF EXISTS `emp_org`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org` ( `emp_org_id` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `emp_id` int(9) DEFAULT NULL, `org_start_dt` date DEFAULT NULL, `org_end_dt` date DEFAULT NULL, `no_of_days` int(10) DEFAULT NULL, `tentative_en_dt` date DEFAULT NULL COMMENT 'Comes from emp_org_hrs table', `emp_type` int(5) DEFAULT NULL COMMENT '1099, w2, freelancer', `pay_cy` varchar(10) DEFAULT NULL COMMENT 'Monthly, weekly, if null (Not Fixed)', `org_forecast` decimal(11,2) DEFAULT NULL, `org_actual` decimal(11,2) DEFAULT NULL, `org_pcnt` varchar(10) DEFAULT NULL, `org_amt_forcast` varchar(15) DEFAULT NULL, `org_amt_actual` varchar(15) DEFAULT NULL, `org_amt_pcnt` varchar(10) DEFAULT NULL, `org_vac_earn` varchar(15) DEFAULT NULL, `org_vac_use` varchar(15) DEFAULT NULL, `org_vac_pcnt` varchar(10) DEFAULT NULL, `org_vac_bal` varchar(15) DEFAULT NULL, `run_script` char(1) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `old_org_hrs_dt` date DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`emp_org_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org_access` -- DROP TABLE IF EXISTS `emp_org_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org_access` ( `idemp_org_access` int(11) NOT NULL AUTO_INCREMENT, `emp_access_to` int(11) DEFAULT NULL, `emp_access_of` int(11) DEFAULT NULL, `acc_from_dt` date DEFAULT NULL, `acc_to_dt` date DEFAULT NULL, `acc_type` varchar(10) DEFAULT NULL COMMENT 'View (default), Edit, Archive, Delete, Toggle, Restore, Erase.', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_org_access`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org_hrs` -- DROP TABLE IF EXISTS `emp_org_hrs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org_hrs` ( `idemp_org_hrs` int(11) NOT NULL AUTO_INCREMENT, `emp_org_id` int(11) DEFAULT NULL, `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `frm_to_org_hrs_days` int(11) DEFAULT NULL, `tentative_en_dt` date DEFAULT NULL, `org_hrs_forecast` decimal(11,2) DEFAULT NULL COMMENT 'Get details from emp_hrs', `org_hrs_actual` decimal(11,2) DEFAULT NULL, `org_hrs_pcnt` varchar(10) DEFAULT NULL, `org_hrs_amt_forcast` varchar(15) DEFAULT NULL, `org_hrs_amt_actual` varchar(15) DEFAULT NULL, `org_hrs_amt_pcnt` varchar(10) DEFAULT NULL, `emp_hrs_title` int(5) DEFAULT NULL COMMENT 'Probation, Jr, Sr, etc', `org_hrs_vac_earn` varchar(15) DEFAULT NULL, `org_hrs_vac_use` varchar(15) DEFAULT NULL, `org_hrs_vac_bal` varchar(15) DEFAULT NULL, `org_hrs_vac_pcnt` varchar(15) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `hrs_cy_run` char(1) DEFAULT NULL COMMENT 'Y = All Run, N = Never ran, P = Partial ran', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_hrs_dt` date DEFAULT NULL, `cy_st_date` date DEFAULT NULL, PRIMARY KEY (`idemp_org_hrs`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org_hrs_days` -- DROP TABLE IF EXISTS `emp_org_hrs_days`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org_hrs_days` ( `idemp_org_hrs_days` int(11) NOT NULL AUTO_INCREMENT, `idemp_org_hrs` int(11) DEFAULT NULL, `tm_zn` varchar(10) DEFAULT NULL COMMENT 'Est, ist, ist', `start_tm` time DEFAULT NULL, `end_tm` time DEFAULT NULL, `hrs_tm` varchar(5) DEFAULT NULL, `hrs_tm_nm` varchar(5) DEFAULT NULL, `off_time` varchar(5) DEFAULT NULL, `off_time_nm` varchar(5) DEFAULT NULL, `days` varchar(2) DEFAULT NULL COMMENT '1 = Sunday\\\\n2 = Monday\\\\n3 = Tuesday\\\\n4 = Wednesday\\\\n5 = Thursday\\\\n6 = Friday\\\\n7 = Saturday\\\\n8 = Monday to Friday\\\\n9 = Monday to Saturday\\\\n10 = All Day\\\\n', `pay_amt` varchar(5) DEFAULT NULL, `look_street_no_id` int(11) DEFAULT NULL, `house_apt_type` int(5) DEFAULT NULL, `house_apt_no` varchar(15) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `cy_days_st_dt` date DEFAULT NULL, `hrs_day_cy_run` char(1) DEFAULT NULL COMMENT 'Y = All Run\\nN = Never ran\\nD = Will make previous records null and rerun.', PRIMARY KEY (`idemp_org_hrs_days`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org_hrs_days_cy` -- DROP TABLE IF EXISTS `emp_org_hrs_days_cy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org_hrs_days_cy` ( `idemp_org_hrs_days_cy` int(11) NOT NULL AUTO_INCREMENT, `idemp_org_hrs_days` int(11) DEFAULT NULL, `day_start_tm` datetime DEFAULT NULL, `day_end_tm` datetime DEFAULT NULL, `day_hrs_forcast_tm` varchar(5) DEFAULT NULL, `day_hrs_forcast_tm_nm` varchar(5) DEFAULT NULL, `day_off_forcast` varchar(5) DEFAULT NULL, `day_off_forcast_nm` varchar(5) DEFAULT NULL, `day_pay_forcast_amt` varchar(11) DEFAULT NULL, `day_hrs_actual_tm` varchar(5) DEFAULT NULL, `day_hrs_actual_tm_nm` varchar(5) DEFAULT NULL, `day_off_actual` varchar(5) DEFAULT NULL, `day_off_actual_nm` varchar(5) DEFAULT NULL, `day_pay_actual_amt` varchar(11) DEFAULT NULL, PRIMARY KEY (`idemp_org_hrs_days_cy`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_org_vac` -- DROP TABLE IF EXISTS `emp_org_vac`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_org_vac` ( `idemp_org_vac` int(11) NOT NULL AUTO_INCREMENT, `idemp_org_hrs` int(11) DEFAULT NULL, `vac_type` varchar(15) DEFAULT NULL COMMENT 'H = Holiday, V = vacation, Sick, Maternity, Compensate ', `off_tm_days` varchar(9) DEFAULT NULL, `off_tm_calc` varchar(9) DEFAULT NULL COMMENT 'Val 1, .5, 1.5 \\\\\\\\\\\\\\\\nCal = val * 160 hrs, eg 1 earned monthy ', `hrs_earn` varchar(7) DEFAULT NULL, `hrs_use` varchar(7) DEFAULT NULL, `hrs_bal` varchar(7) DEFAULT NULL, `hrs_pcnt` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idemp_org_vac`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_pay` -- DROP TABLE IF EXISTS `emp_pay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_pay` ( `idemp_pay` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `pay_cy` varchar(10) DEFAULT NULL COMMENT 'Hard cord values hourly, monthly, yearly', `pay_frm_dt` date DEFAULT NULL, `pay_to_dt` date DEFAULT NULL, `gross_earn` varchar(10) DEFAULT NULL, `deduct` varchar(10) DEFAULT NULL, `net_earn` varchar(10) DEFAULT NULL, `pay_dt` date DEFAULT NULL, `bank_chk_no` varchar(10) DEFAULT NULL, `idbank_acc` int(11) DEFAULT NULL, `show_hide` char(1) DEFAULT NULL COMMENT 'Y or N', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_pay`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_pay_list` -- DROP TABLE IF EXISTS `emp_pay_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_pay_list` ( `idemp_pay_list` int(11) NOT NULL AUTO_INCREMENT, `idemp_pay` int(11) DEFAULT NULL, `pkg_type` int(5) DEFAULT NULL, `pay_type` char(1) DEFAULT NULL COMMENT 'D or W', PRIMARY KEY (`idemp_pay_list`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_pkg` -- DROP TABLE IF EXISTS `emp_pkg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_pkg` ( `idemp_pkg` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `pkg_frm` date DEFAULT NULL, `pkg_to` date DEFAULT NULL, `pkg_from_to` int(9) DEFAULT NULL, `pkg_type` int(5) DEFAULT NULL COMMENT 'Val from tak_lk_val, eg Insurance, 401, etc', `pkg_calc` varchar(5) DEFAULT NULL COMMENT 'Percent of fix', `pkg_calc_val` varchar(10) DEFAULT NULL COMMENT '5%', `pkg_calc_amt` varchar(10) DEFAULT NULL COMMENT 'If fixed, ask for amt, i.e $1000.00 insurance.', `pkg_emp_split` varchar(5) DEFAULT NULL, `pkg_emp_max` varchar(10) DEFAULT NULL COMMENT '15000, max', `pkg_er_split` varchar(5) DEFAULT NULL, `pkg_er_max` varchar(45) DEFAULT NULL COMMENT '5000.00', `updater` int(11) DEFAULT NULL, `updated` date DEFAULT NULL, PRIMARY KEY (`idemp_pkg`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_tag` -- DROP TABLE IF EXISTS `emp_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_tag` ( `idemp_tag` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `emp_tags` int(5) DEFAULT NULL, PRIMARY KEY (`idemp_tag`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_tag_merger` -- DROP TABLE IF EXISTS `emp_tag_merger`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_tag_merger` ( `emp_id` int(9) NOT NULL DEFAULT '0', `firstname` varchar(45) DEFAULT NULL, `lastname` varchar(45) DEFAULT NULL, `nickname` varchar(5) DEFAULT NULL, `gender` int(5) DEFAULT NULL, `emp_assigned_id` int(1) NOT NULL DEFAULT '0', `mod_call_recv_dt` varchar(8) CHARACTER SET utf8 DEFAULT NULL, `call_recv_dt` datetime DEFAULT NULL, `mod_next_call_dt` varchar(8) CHARACTER SET utf8 DEFAULT NULL, `next_call_dt` datetime DEFAULT NULL, `call_note` text, `emp_smry` varchar(200) DEFAULT NULL, `last_updated_sale` datetime DEFAULT NULL, `mod_last_updated` varchar(116) DEFAULT NULL, `emp_level` int(5) DEFAULT NULL, `emp_lvl_desc` varchar(200) DEFAULT NULL, `contacts` longtext, `emp_tag` longtext, `file_group` longtext, `258` decimal(23,0) DEFAULT NULL, `1358` decimal(23,0) DEFAULT NULL, `1369` decimal(23,0) DEFAULT NULL, `1666` decimal(23,0) DEFAULT NULL, `259` decimal(23,0) DEFAULT NULL, `67` decimal(23,0) DEFAULT NULL, `1707` decimal(23,0) DEFAULT NULL, `262` decimal(23,0) DEFAULT NULL, `263` decimal(23,0) DEFAULT NULL, `1022` decimal(23,0) DEFAULT NULL, `260` decimal(23,0) DEFAULT NULL, `261` decimal(23,0) DEFAULT NULL, `289` decimal(23,0) DEFAULT NULL, `290` decimal(23,0) DEFAULT NULL, `291` decimal(23,0) DEFAULT NULL, `293` decimal(23,0) DEFAULT NULL, `297` decimal(23,0) DEFAULT NULL, `1405` decimal(23,0) DEFAULT NULL, `255` decimal(23,0) DEFAULT NULL, `256` decimal(23,0) DEFAULT NULL, `295` decimal(23,0) DEFAULT NULL, `296` decimal(23,0) DEFAULT NULL, `975` decimal(23,0) DEFAULT NULL, `974` decimal(23,0) DEFAULT NULL, `973` decimal(23,0) DEFAULT NULL, `1417` decimal(23,0) DEFAULT NULL, `1418` decimal(23,0) DEFAULT NULL, `1678` decimal(23,0) DEFAULT NULL, `1680` decimal(23,0) DEFAULT NULL, `1706` decimal(23,0) DEFAULT NULL, `1682` decimal(23,0) DEFAULT NULL, `1684` decimal(23,0) DEFAULT NULL, `1686` decimal(23,0) DEFAULT NULL, `1687` decimal(23,0) DEFAULT NULL, `1688` decimal(23,0) DEFAULT NULL, `121` int(1) NOT NULL DEFAULT '0', `3` int(1) NOT NULL DEFAULT '0', `32` int(1) NOT NULL DEFAULT '0', `33` int(1) NOT NULL DEFAULT '0', `288` int(1) NOT NULL DEFAULT '0', `253` int(1) NOT NULL DEFAULT '0', `294` int(1) NOT NULL DEFAULT '0', `972` int(1) NOT NULL DEFAULT '0', `1416` int(1) NOT NULL DEFAULT '0', `1677` int(1) NOT NULL DEFAULT '0', `1681` int(1) NOT NULL DEFAULT '0', `1685` int(1) NOT NULL DEFAULT '0', `Total_Missing` int(1) NOT NULL DEFAULT '0' ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_trng` -- DROP TABLE IF EXISTS `emp_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_trng` ( `idemp_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `emp_trng_doc` -- DROP TABLE IF EXISTS `emp_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `emp_trng_doc` ( `idemp_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idemp_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idemp_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage` -- DROP TABLE IF EXISTS `engage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage` ( `engage_id` int(11) NOT NULL AUTO_INCREMENT, `srv_client` int(10) DEFAULT NULL, `srv_client_add` text, `srv_client_con` text, `srv_vendor` int(10) DEFAULT NULL, `srv_ven_add` text, `srv_ven_con` text, `srv_st_dt` date DEFAULT NULL, `srv_e_dt` date DEFAULT NULL, `srv_st_e_dt` int(5) DEFAULT NULL, `eng_tentive_en_dt` date DEFAULT NULL, `eng_cnt` int(5) DEFAULT NULL, `eng_tol` int(5) DEFAULT NULL, `eng_cnt_pcnt` varchar(10) DEFAULT NULL, `eg_sumry` varchar(200) DEFAULT NULL, `cloud_drive` text, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `en_prv_smry` text, `access_name` varchar(45) DEFAULT NULL, `remind` int(3) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`engage_id`), UNIQUE KEY `access_name_UNIQUE` (`access_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_attr` -- DROP TABLE IF EXISTS `engage_attr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_attr` ( `idengage_attr` int(11) NOT NULL AUTO_INCREMENT, `enagage_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_attr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_attr_entity` -- DROP TABLE IF EXISTS `engage_attr_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_attr_entity` ( `idengage_attr_entity` int(11) NOT NULL AUTO_INCREMENT, `engage_entity_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_attr_entity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_audit` -- DROP TABLE IF EXISTS `engage_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_audit` ( `idengage_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `col2` text, `col3` text, `col4` text, `col5` text, `col6` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_comp` -- DROP TABLE IF EXISTS `engage_comp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_comp` ( `idengage_comp` int(11) NOT NULL AUTO_INCREMENT, `engage_id` int(11) DEFAULT NULL, `comp_id` int(10) DEFAULT NULL, PRIMARY KEY (`idengage_comp`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_comp_add` -- DROP TABLE IF EXISTS `engage_comp_add`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_comp_add` ( `idengage_comp_add` int(11) NOT NULL AUTO_INCREMENT, `idengage_comp` int(11) DEFAULT NULL, `comp_add_id` int(11) DEFAULT NULL, `add_type` int(5) DEFAULT NULL COMMENT 'Billing, Timesheet, etc', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idengage_comp_add`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_comp_con` -- DROP TABLE IF EXISTS `engage_comp_con`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_comp_con` ( `idengage_comp_con` int(11) NOT NULL AUTO_INCREMENT, `idengage_comp` int(11) DEFAULT NULL, `comp_contact_id` int(11) DEFAULT NULL COMMENT 'Drop engage_add_con', `contact_notes` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idengage_comp_con`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_doc` -- DROP TABLE IF EXISTS `engage_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_doc` ( `idengage_doc` int(11) NOT NULL AUTO_INCREMENT, `engage_id` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_entity` -- DROP TABLE IF EXISTS `engage_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_entity` ( `idengage_entity` int(11) NOT NULL AUTO_INCREMENT, `engage_id` int(11) DEFAULT NULL, `engage_ref_tab` varchar(45) DEFAULT NULL, `engage_ref_id` int(11) DEFAULT NULL, `bill_start_dt` date DEFAULT NULL, `bill_cycle` varchar(15) DEFAULT NULL, `bill_end_dt` date DEFAULT NULL, `bill_st_e_dt` int(5) DEFAULT NULL, `bill_fst_dt` date DEFAULT NULL, `bill_day` varchar(10) DEFAULT NULL, `bill_pay_type` varchar(10) DEFAULT NULL, `eng_ent_cnt` int(5) DEFAULT NULL, `eng_ent_tol` int(5) DEFAULT NULL, `eng_bud_pcnt` varchar(5) DEFAULT NULL, `bill_pay_cy` varchar(20) DEFAULT NULL, `bill_pay_rate` varchar(20) DEFAULT NULL, `bill_title` int(5) DEFAULT NULL COMMENT 'Process Analyst, Scrum Master, ', `bill_hrs_mon` varchar(45) DEFAULT NULL COMMENT '10 hrs month', `bill_pay_rate_xtra` varchar(20) DEFAULT NULL COMMENT 'If goes beyond monthly rate.', `ts_cycle` varchar(15) DEFAULT NULL, `ts_fst_dt` date DEFAULT NULL, `ts_fst_day` varchar(10) DEFAULT NULL, `netpay` int(5) DEFAULT NULL, `tentative_e_dt` date DEFAULT NULL, `access_name` varchar(20) DEFAULT NULL, `remind` int(3) DEFAULT NULL, `summary` varchar(100) DEFAULT NULL, `cloud_drive` text, `allow_inv` char(1) DEFAULT NULL COMMENT 'Value Yes or No, no need look_value', `show_emp` char(1) DEFAULT NULL, `bill_cycle_run_dt` date DEFAULT NULL, `ts_cycle_run_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `old_bc_dt` date DEFAULT NULL, `old_tc_dt` date DEFAULT NULL, PRIMARY KEY (`idengage_entity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_entity_bud` -- DROP TABLE IF EXISTS `engage_entity_bud`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_entity_bud` ( `idengage_entity_bud` int(11) NOT NULL AUTO_INCREMENT, `idengage_entity` int(11) NOT NULL, `engage_bud_ref_id` int(11) DEFAULT NULL, `engage_bud_ref_tab` varchar(20) DEFAULT NULL, `engage_calc` varchar(5) DEFAULT NULL COMMENT '.70 %, $,', `engage_amt` varchar(20) DEFAULT NULL, `show_emp` char(1) DEFAULT NULL COMMENT 'Y or N', `engage_st_dt` date DEFAULT NULL, `engage_e_dt` date DEFAULT NULL, `engage_st_e_dt` int(5) DEFAULT NULL, `limit_amt` varchar(45) DEFAULT NULL, `engage_smry` varchar(45) DEFAULT NULL, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_entity_bud`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `engage_entity_doc` -- DROP TABLE IF EXISTS `engage_entity_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engage_entity_doc` ( `idengage_entity_doc` int(11) NOT NULL AUTO_INCREMENT, `idengage_entity` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idengage_entity_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fam_spouse` -- DROP TABLE IF EXISTS `fam_spouse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fam_spouse` ( `idfam_spouse` int(11) NOT NULL AUTO_INCREMENT, `emp_id1` int(11) DEFAULT NULL, `emp_id2` int(11) DEFAULT NULL, `fam_stat` varchar(45) DEFAULT NULL COMMENT 'Separate, together,', `fam_stat_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idfam_spouse`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fam_spouse_child` -- DROP TABLE IF EXISTS `fam_spouse_child`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fam_spouse_child` ( `idfam_spouse_child` int(11) NOT NULL AUTO_INCREMENT, `idfam_spouse` int(11) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idfam_spouse_child`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `fam_spouse_stat` -- DROP TABLE IF EXISTS `fam_spouse_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `fam_spouse_stat` ( `idfam_spouse_stat` int(11) NOT NULL AUTO_INCREMENT, `idfam_spouse` int(11) DEFAULT NULL, `fam_stat` varchar(45) DEFAULT NULL, `fam_stat_dt` date DEFAULT NULL, `fam_spouse_notes` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idfam_spouse_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature` -- DROP TABLE IF EXISTS `feature`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature` ( `feature_no` int(11) NOT NULL AUTO_INCREMENT, `feature_id` int(11) DEFAULT NULL, `feature_name` varchar(45) DEFAULT NULL, `feature_desc` varchar(200) DEFAULT NULL, `disp_order` int(11) DEFAULT NULL, PRIMARY KEY (`feature_no`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_access` -- DROP TABLE IF EXISTS `feature_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_access` ( `idfeature_access` int(11) NOT NULL AUTO_INCREMENT, `feature_id` int(11) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL COMMENT 'Employee assignee limitation', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idfeature_access`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_grp` -- DROP TABLE IF EXISTS `feature_grp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_grp` ( `idfeature_grp` int(11) NOT NULL AUTO_INCREMENT, `group_name` varchar(45) DEFAULT NULL, `feature_cnt` int(5) DEFAULT NULL, `group_desc` varchar(200) DEFAULT NULL, `feature_ids` text, `feature_nm` text, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idfeature_grp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_grp_list` -- DROP TABLE IF EXISTS `feature_grp_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_grp_list` ( `idfeature_grp_list` int(11) NOT NULL AUTO_INCREMENT, `idfeature_grp` int(11) NOT NULL, `feature_id` int(11) NOT NULL, `disp_order` int(5) DEFAULT NULL, PRIMARY KEY (`idfeature_grp_list`), KEY `fk_feture_grp_name_feture_grp_id` (`idfeature_grp`), KEY `fk_feture_id_feture_grping_idx` (`feature_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_lk` -- DROP TABLE IF EXISTS `feature_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_lk` ( `idfeature_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idfeature_lk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_lk_val` -- DROP TABLE IF EXISTS `feature_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_lk_val` ( `idfeature_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idfeature_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idfeature_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `feature_menu` -- DROP TABLE IF EXISTS `feature_menu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `feature_menu` ( `idfeature_menu` int(11) NOT NULL AUTO_INCREMENT, `feature_id` int(11) DEFAULT NULL, `idlook_menu_pvt` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idfeature_menu`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `festival` -- DROP TABLE IF EXISTS `festival`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `festival` ( `idfestival` int(11) NOT NULL AUTO_INCREMENT, `look_values_id` int(5) DEFAULT NULL, `comp_id` int(11) DEFAULT NULL, `festival_yr` int(5) DEFAULT NULL, `festival_day` date DEFAULT NULL, `festival_name` varchar(50) DEFAULT NULL, `festival_type` char(5) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`idfestival`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours` -- DROP TABLE IF EXISTS `hours`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours` ( `hour_id` int(11) NOT NULL AUTO_INCREMENT, `idemp_org_hrs_days_cy` int(11) DEFAULT NULL, `emp_id` int(9) DEFAULT NULL, `idemp_org_hrs` int(11) DEFAULT NULL, `engage_ref_tab` varchar(10) DEFAULT NULL COMMENT 'comp or engage', `engage_ref_id` int(11) DEFAULT NULL, `idhours_cy_bc` int(11) DEFAULT NULL, `idinv` int(11) DEFAULT NULL, `idemp_pay` int(11) DEFAULT NULL, `hr_st_dt` datetime DEFAULT NULL, `hr_e_dt` datetime DEFAULT NULL, `off_time` varchar(5) DEFAULT NULL, `off_tm_nm` varchar(5) DEFAULT NULL, `hr_tol` varchar(5) DEFAULT NULL, `hr_tol_nm` varchar(5) DEFAULT NULL, `iddev_apps` int(11) DEFAULT NULL, `dev_est` int(11) DEFAULT NULL, `dev_est_reqs` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `hrs_type` varchar(20) DEFAULT NULL COMMENT 'B = Billable, N = Non Billable, OT = Extra, Comp = Compensation, R = Regular, Holiday, Vacation, Sick.', `updated` datetime DEFAULT NULL, `iplook_ip_addr` int(11) DEFAULT NULL, `approver` int(11) DEFAULT NULL COMMENT 'Approved, Denied', `approve_by` int(9) DEFAULT NULL, `approve_dt` date DEFAULT NULL, `approve_temp_dt` datetime DEFAULT NULL, `timecard_id` int(11) DEFAULT NULL, `summary` varchar(45) DEFAULT NULL, `hours_cnt` int(3) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`hour_id`), KEY `fkemp_hrs` (`emp_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_access` -- DROP TABLE IF EXISTS `hours_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_access` ( `idhours_access` int(11) NOT NULL AUTO_INCREMENT, `hrs_access_to` int(11) DEFAULT NULL, `hrs_access_of` int(11) DEFAULT NULL, `acc_from_dt` date DEFAULT NULL, `acc_to_dt` date DEFAULT NULL, `acc_type` varchar(10) DEFAULT NULL COMMENT 'View (default), Edit, Add, Approve, Archive, Delete, Restore, Erase.', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhours_access`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_attr` -- DROP TABLE IF EXISTS `hours_attr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_attr` ( `idhours_attr` int(11) NOT NULL AUTO_INCREMENT, `hours_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idhours_attr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_cy_bc` -- DROP TABLE IF EXISTS `hours_cy_bc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_cy_bc` ( `idhours_cy_bc` int(11) NOT NULL AUTO_INCREMENT, `idengage_entity` int(11) DEFAULT NULL, `bc_st_dt` date DEFAULT NULL, `bc_e_dt` date DEFAULT NULL, `bc_due_dt` date DEFAULT NULL, `bc_forcast_hr` varchar(10) DEFAULT NULL, `bc_forcast_inv` varchar(10) DEFAULT NULL, `hr_approved` char(1) DEFAULT NULL COMMENT 'Y / N ', `hr_inv` char(1) DEFAULT NULL COMMENT 'Invoiced Y or N', `bc_actual_hr` varchar(10) DEFAULT NULL, `bc_hrs_pcnt` varchar(10) DEFAULT NULL, `bc_actual_inv` varchar(10) DEFAULT NULL, `bc_inv_pcnt` varchar(10) DEFAULT NULL, `show_hide` char(1) DEFAULT NULL COMMENT 'Y or N', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhours_cy_bc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_cy_tc` -- DROP TABLE IF EXISTS `hours_cy_tc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_cy_tc` ( `idhours_cy_tc` int(11) NOT NULL AUTO_INCREMENT, `idengage_entity` int(11) DEFAULT NULL, `tc_st_dt` date DEFAULT NULL, `tc_e_dt` date DEFAULT NULL, `tc_due_dt` date DEFAULT NULL, `tc_forcast_hr` varchar(10) DEFAULT NULL, `tc_actual_hr` varchar(10) DEFAULT NULL, `tc_hrs_pcnt` varchar(10) DEFAULT NULL, `hr_approved` char(1) DEFAULT NULL, `show_hide` char(1) DEFAULT NULL COMMENT 'Y or N', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhours_cy_tc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_hist` -- DROP TABLE IF EXISTS `hours_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_hist` ( `idhour_hist` int(11) NOT NULL AUTO_INCREMENT, `hour_id` int(11) DEFAULT NULL, `hr_st_dt` datetime DEFAULT NULL, `hr_e_dt` datetime DEFAULT NULL, `off_time` varchar(5) DEFAULT NULL, `off_tm_nm` varchar(5) DEFAULT NULL, `hr_tol` varchar(5) DEFAULT NULL, `hr_tol_nm` varchar(5) DEFAULT NULL, `iddev_apps` int(11) DEFAULT NULL, `dev_est` int(11) DEFAULT NULL, `dev_est_reqs` int(11) DEFAULT NULL, `hrs_type` varchar(20) DEFAULT NULL COMMENT 'B = Billable, N = Non Billable', `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `iplook_ip_addr` int(11) DEFAULT NULL, `approver` int(11) DEFAULT NULL, `summary` varchar(45) DEFAULT NULL, PRIMARY KEY (`idhour_hist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_time` -- DROP TABLE IF EXISTS `hours_time`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_time` ( `timecard_id` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(9) NOT NULL, `comp_id` int(10) DEFAULT NULL, `timefrom_dt` date DEFAULT NULL, `timeto_dt` date DEFAULT NULL, `timefrom_to_day` int(5) DEFAULT NULL, `bill_hrs` decimal(5,2) DEFAULT NULL, `unbill_hrs` decimal(5,2) DEFAULT NULL, `total_hrs` decimal(5,2) DEFAULT NULL, `validate_dt` date DEFAULT NULL, `validate_by` varchar(10) DEFAULT NULL, `summary` varchar(150) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `last_updated` date DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`timecard_id`), KEY `fkempid_ts_valid` (`emp_id`), KEY `fk_ts_val_comp_engage` (`comp_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_trng` -- DROP TABLE IF EXISTS `hours_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_trng` ( `idhours_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhours_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hours_trng_doc` -- DROP TABLE IF EXISTS `hours_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hours_trng_doc` ( `idhours_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idhours_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhours_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_attr_recruit_activity` -- DROP TABLE IF EXISTS `hr_attr_recruit_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_attr_recruit_activity` ( `idhr_attr_recruit_activity` int(11) NOT NULL AUTO_INCREMENT, `recruite_act_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_attr_recruit_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_attr_recruite` -- DROP TABLE IF EXISTS `hr_attr_recruite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_attr_recruite` ( `idhr_attr_recruite` int(11) NOT NULL AUTO_INCREMENT, `recruite_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_attr_recruite`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_audit` -- DROP TABLE IF EXISTS `hr_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_audit` ( `idhr_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_meeting` -- DROP TABLE IF EXISTS `hr_meeting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_meeting` ( `idhr_meeting` int(5) NOT NULL AUTO_INCREMENT, `st_tm_est` time DEFAULT NULL, `e_tm_est` time DEFAULT NULL, `st_tm_ist` time DEFAULT NULL, `e_tm_ist` time DEFAULT NULL, `description` varchar(200) DEFAULT NULL, `attendances` varchar(200) DEFAULT NULL, `scrum_master` varchar(100) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_meeting`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_policy` -- DROP TABLE IF EXISTS `hr_policy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_policy` ( `idhr_policy` int(11) NOT NULL AUTO_INCREMENT, `lk_policy` varchar(30) DEFAULT NULL, `lk_policy_desc` varchar(500) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_paren_tag_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `lk_policy_text` text, PRIMARY KEY (`idhr_policy`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit` -- DROP TABLE IF EXISTS `hr_recruit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit` ( `idhr_recruit` int(11) NOT NULL AUTO_INCREMENT, `recruit_fst_nm` varchar(60) DEFAULT NULL, `recruit_last_nm` varchar(45) DEFAULT NULL, `recruit_open_dt` date DEFAULT NULL, `recruit_close_dt` date DEFAULT NULL, `recruit_level` int(1) DEFAULT NULL COMMENT '1 through 5 for priority', `recruit_smry` varchar(500) DEFAULT NULL, `recruite_dob` date DEFAULT NULL, `recruite_gender` int(5) DEFAULT NULL, `uniq_id_type` int(5) DEFAULT NULL, `uniq_id` varchar(20) DEFAULT NULL, `acc_mgr` int(11) DEFAULT NULL, `call_recv_dt` datetime DEFAULT NULL, `next_call_dt` datetime DEFAULT NULL, `call_note` varchar(100) DEFAULT NULL, `all_call_note` text, `recruit_attempt` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_recruit`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit_activity` -- DROP TABLE IF EXISTS `hr_recruit_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit_activity` ( `idhr_recruit_activity` int(11) NOT NULL AUTO_INCREMENT, `idhr_recruit` int(11) DEFAULT NULL, `call_recv_dt` date DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `next_call_dt` date DEFAULT NULL, `call_note` text, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_recruit_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit_con` -- DROP TABLE IF EXISTS `hr_recruit_con`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit_con` ( `idhr_recruit_con` int(11) NOT NULL AUTO_INCREMENT, `idhr_recruit` int(11) DEFAULT NULL, `contact_id` int(11) DEFAULT NULL COMMENT 'email, cell, work, home', `recruit_con_type` varchar(45) DEFAULT NULL, `summary` varchar(95) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_recruit_con`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit_lk` -- DROP TABLE IF EXISTS `hr_recruit_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit_lk` ( `idhr_recruit_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_recruit_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit_lk_tag` -- DROP TABLE IF EXISTS `hr_recruit_lk_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit_lk_tag` ( `idhr_recruit_lk_tag` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) DEFAULT NULL, `lk_tag` varchar(45) DEFAULT NULL, `lk_tag_desc` varchar(200) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_parent_tag_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_recruit_lk_tag`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_recruit_lk_val` -- DROP TABLE IF EXISTS `hr_recruit_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_recruit_lk_val` ( `idhr_recruit_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idhr_recruit_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(1) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_recruit_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_review_attr` -- DROP TABLE IF EXISTS `hr_review_attr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_review_attr` ( `idhr_review_attr` int(11) NOT NULL AUTO_INCREMENT, `review_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_review_attr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_review_attr_activity` -- DROP TABLE IF EXISTS `hr_review_attr_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_review_attr_activity` ( `idhr_recruite_attr_activity` int(11) NOT NULL AUTO_INCREMENT, `review_act_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idhr_recruite_attr_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_trng` -- DROP TABLE IF EXISTS `hr_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_trng` ( `idhr_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `hr_trng_doc` -- DROP TABLE IF EXISTS `hr_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `hr_trng_doc` ( `idhr_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idhr_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idhr_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_attr` -- DROP TABLE IF EXISTS `immi_attr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_attr` ( `idimmi_attr` int(11) NOT NULL AUTO_INCREMENT, `immi_attr_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_attr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_attr_stat` -- DROP TABLE IF EXISTS `immi_attr_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_attr_stat` ( `idimmi_attr_stat` int(11) NOT NULL AUTO_INCREMENT, `immi_attr__statdt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_attr_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_audit` -- DROP TABLE IF EXISTS `immi_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_audit` ( `idimmi_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_lk` -- DROP TABLE IF EXISTS `immi_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_lk` ( `idimmi_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idimmi_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_lk_val` -- DROP TABLE IF EXISTS `immi_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_lk_val` ( `idimmi_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idimmi_lk` int(11) DEFAULT NULL, `lk_val` varchar(100) DEFAULT NULL, `immi_form` char(1) DEFAULT NULL, `updater` varchar(100) DEFAULT NULL, `disp_order` int(11) DEFAULT NULL, `lk_parent_val_id` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, PRIMARY KEY (`idimmi_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_lk_wrk_flow` -- DROP TABLE IF EXISTS `immi_lk_wrk_flow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_lk_wrk_flow` ( `idimmi_lk_wrk_flow` int(11) NOT NULL AUTO_INCREMENT, `wrk_flow_nm` varchar(25) DEFAULT NULL, `id_wrk_flow` int(11) DEFAULT NULL, `wrk_flow_desc` varchar(100) DEFAULT NULL, `id_wrk_flow_parent` int(11) DEFAULT NULL, `look_initial` varchar(5) DEFAULT NULL, `look_restart` varchar(5) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idimmi_lk_wrk_flow`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_qry` -- DROP TABLE IF EXISTS `immi_qry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_qry` ( `idimmi_qry` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(5) DEFAULT NULL, `immi_desc` varchar(150) DEFAULT NULL, `immi_desc_detail` text, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(5) DEFAULT NULL, PRIMARY KEY (`idimmi_qry`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_qry_rcpt` -- DROP TABLE IF EXISTS `immi_qry_rcpt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_qry_rcpt` ( `idimmi_qry_rcpt` int(11) NOT NULL AUTO_INCREMENT, `idimmi_rcpt` int(11) DEFAULT NULL, `idimmi_qry` int(11) DEFAULT NULL, `rcpt_cnt` int(5) DEFAULT NULL, `rcpt_tol` int(5) DEFAULT NULL, `rcpt_pcnt` varchar(10) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `rcpt_qry_st_dt` datetime DEFAULT NULL, `rcpt_qry_e_dt` datetime DEFAULT NULL, `rcpt_qry_due_dt` datetime DEFAULT NULL, `rcpt_qry_st_e_dt` int(5) DEFAULT NULL, `rcpt_asignee` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_qry_rcpt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_qry_rcpt_doc` -- DROP TABLE IF EXISTS `immi_qry_rcpt_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_qry_rcpt_doc` ( `idimmi_qry_rcpt_doc` int(11) NOT NULL AUTO_INCREMENT COMMENT 'New table is immi_receipt_qry_list_doc', `idimmi_qry_rcpt` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `updater` int(11) NOT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idimmi_qry_rcpt_doc`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt` -- DROP TABLE IF EXISTS `immi_rcpt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt` ( `idimmi_rcpt` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `rcpt_no` varchar(45) DEFAULT NULL, `rcpt_par_cnt` int(2) DEFAULT NULL, `rcpt_ch_cnt` int(2) DEFAULT NULL, `rcpt_type` int(5) DEFAULT NULL COMMENT 'AD, h1, L1, I-140, 1-485', `rcpt_type_sub` int(5) DEFAULT NULL, `rcpt_loc_cnt` int(2) DEFAULT NULL, `rcpt_address` varchar(100) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `filed_dt` date DEFAULT NULL, `ad_title` int(5) DEFAULT NULL, `occ_code` int(5) DEFAULT NULL, `skill_level` int(5) DEFAULT NULL, `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `from_to_dt_days` int(5) DEFAULT NULL, `valid_days` int(5) DEFAULT NULL, `expire_dt` date DEFAULT NULL, `education` int(5) DEFAULT NULL, `exp_yr` int(5) DEFAULT NULL, `sal_type` varchar(10) DEFAULT NULL, `sal_amt` int(10) DEFAULT NULL, `assigned_to` int(11) DEFAULT NULL, `idimmi_lk_wrk_flow` int(5) DEFAULT NULL, `immi_stat_st_dt` date DEFAULT NULL, `immi_stat_e_est_dt` date DEFAULT NULL COMMENT 'Estimate end', `immi_stat_st_e_est_dt` int(5) DEFAULT NULL, `immi_stat_e_real_dt` date DEFAULT NULL, `immi_stat_st_e_real_dt` int(5) DEFAULT NULL, `rcpt_status` int(5) DEFAULT NULL, `immi_stat_cnt` int(3) DEFAULT NULL, `idlook_stat_order` int(11) DEFAULT NULL, `immi_summary` varchar(45) DEFAULT NULL, `all_receipt_smry` text, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_immi_dt` date DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt_addr` -- DROP TABLE IF EXISTS `immi_rcpt_addr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt_addr` ( `idimmi_rcpt_addr` int(11) NOT NULL AUTO_INCREMENT, `idimmi_rcpt` int(11) DEFAULT NULL, `look_street_no_id` int(11) DEFAULT NULL, `property_type` int(11) DEFAULT NULL, `suite_no` varchar(20) DEFAULT NULL, `tm_zn` varchar(10) DEFAULT NULL, `start_tm` time DEFAULT NULL, `end_tm` time DEFAULT NULL, `hrs_tm` varchar(5) DEFAULT NULL, `off_time` varchar(5) DEFAULT NULL, `days` int(2) DEFAULT NULL COMMENT '1 = Sunday 2.Monday3.Tuesday.4 = Wednesday.5 = Thursday.6 = Friday.7 = Saturday.8 = Monday to Friday.9 = Monday to Saturday.10 = All Day', `day_cy` varchar(6) DEFAULT NULL COMMENT 'Week, Month, Quater', `day_pcnt` varchar(6) DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt_addr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt_doc` -- DROP TABLE IF EXISTS `immi_rcpt_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt_doc` ( `idimmi_rcpt_doc` int(11) NOT NULL AUTO_INCREMENT, `idimmi_rcpt` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt_doc`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt_parent` -- DROP TABLE IF EXISTS `immi_rcpt_parent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt_parent` ( `idimmi_rcpt_parent` int(11) NOT NULL AUTO_INCREMENT, `rcpt_parent_id` int(11) DEFAULT NULL, `rcpt_child_id` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt_parent`), KEY `fk_immi_rcpt_child_id` (`rcpt_child_id`), KEY `fk_immi_rcpt_parent_id` (`rcpt_parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt_stat` -- DROP TABLE IF EXISTS `immi_rcpt_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt_stat` ( `idimmi_rcpt_stat` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Old id was status_id', `idimmi_rcpt` int(11) DEFAULT NULL, `rcpt_status` int(5) DEFAULT NULL COMMENT 'reg, ins, app, rvk, q, qs, den, wd', `stat_st_dt` datetime DEFAULT NULL, `stat_e_dt` datetime DEFAULT NULL, `stat_st_e_dt` int(5) DEFAULT NULL, `stat_smry` varchar(30) DEFAULT NULL, `idlook_stat_order` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_rcpt_stat_doc` -- DROP TABLE IF EXISTS `immi_rcpt_stat_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_rcpt_stat_doc` ( `idimmi_rcpt_stat_doc` int(11) NOT NULL AUTO_INCREMENT, `idimmi_rcpt_stat` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idimmi_rcpt_stat_doc`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_trng` -- DROP TABLE IF EXISTS `immi_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_trng` ( `idimmi_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idimmi_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `immi_trng_doc` -- DROP TABLE IF EXISTS `immi_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `immi_trng_doc` ( `idimmi_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idimmi_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idimmi_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv` -- DROP TABLE IF EXISTS `inv`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv` ( `idinv` int(11) NOT NULL AUTO_INCREMENT, `from_ref_tab` varchar(45) DEFAULT NULL, `from_ref_id` int(11) DEFAULT NULL, `all_contacts` text, `from_look_street_no_id` int(11) DEFAULT NULL, `from_suite_no` int(15) DEFAULT NULL, `from_address_type` int(11) DEFAULT NULL, `inv_phone` int(15) DEFAULT NULL, `inv_email` varchar(45) DEFAULT NULL, `inv_pre_no` varchar(45) DEFAULT NULL COMMENT 'ATS, ZK, KBC, etc', `invoice_no` int(11) DEFAULT NULL, `inv_post_no` varchar(45) DEFAULT NULL COMMENT 'A, B, A/B, etc', `to_ref_tab` varchar(45) DEFAULT NULL, `to_ref_id` int(11) DEFAULT NULL COMMENT 'emp or comp or prosp_consult', `to_look_street_no_id` int(11) DEFAULT NULL, `to_suite_no` int(11) DEFAULT NULL, `to_address_type` int(5) DEFAULT NULL, `from_dt` date DEFAULT NULL, `to_dt` date DEFAULT NULL, `from_to_dt` int(5) DEFAULT NULL, `billed_dt` date DEFAULT NULL, `due_dt` date DEFAULT NULL, `summary` varchar(500) DEFAULT NULL, `amt_sub` varchar(15) DEFAULT NULL, `amt_tax` varchar(15) DEFAULT NULL, `amt_tol` varchar(15) DEFAULT NULL, `amt_paid` varchar(15) DEFAULT NULL, `amt_paid_pcnt` varchar(10) DEFAULT NULL, `amt_bal` varchar(15) DEFAULT NULL, `visible` char(1) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idinv`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_atten` -- DROP TABLE IF EXISTS `inv_atten`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_atten` ( `idinv_atten` int(11) NOT NULL AUTO_INCREMENT, `idinv` int(11) DEFAULT NULL, `inv_attn_name` varchar(45) DEFAULT NULL, `inv_attn_contact_type` varchar(45) DEFAULT NULL, `inv_attn_contact` varchar(45) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, PRIMARY KEY (`idinv_atten`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_audit` -- DROP TABLE IF EXISTS `inv_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_audit` ( `idinv_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idinv_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_doc` -- DROP TABLE IF EXISTS `inv_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_doc` ( `idinv_doc` int(11) NOT NULL AUTO_INCREMENT, `idinv` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idinv_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_list` -- DROP TABLE IF EXISTS `inv_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_list` ( `idinv_list` int(11) NOT NULL AUTO_INCREMENT, `idinv` int(11) DEFAULT NULL, `inv_ref_id` varchar(45) DEFAULT NULL, `inv_ref_tab` varchar(5) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `inv_list_frm_dt` date DEFAULT NULL, `inv_list_to_dt` date DEFAULT NULL, `description` varchar(100) DEFAULT NULL, `qty` varchar(10) DEFAULT NULL, `rate` varchar(10) DEFAULT NULL, `amount` varchar(20) DEFAULT NULL, `tax_rate` varchar(20) DEFAULT NULL, `tax_amount` varchar(20) DEFAULT NULL, PRIMARY KEY (`idinv_list`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_pay` -- DROP TABLE IF EXISTS `inv_pay`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_pay` ( `inv_pay_id` int(11) NOT NULL AUTO_INCREMENT, `pay_frm_ref_tab` varchar(45) DEFAULT NULL, `pay_frm_ref_id` int(11) DEFAULT NULL, `pay_frm_acc_code` varchar(45) DEFAULT NULL, `pay_type` varchar(45) DEFAULT NULL, `pay_type_detail` varchar(45) DEFAULT NULL, `pay_net` float DEFAULT NULL COMMENT 'pay_amt - pay_fees\n', `pay_fee_percent` float DEFAULT NULL, `pay_fees_amt` float DEFAULT '0' COMMENT 'Default = 0 ', `pay_amt` float DEFAULT NULL, `pay_bal` float DEFAULT NULL COMMENT 'pay_net = pay_bal - inv_pay_apply.inv_amt_split', `visible` char(1) DEFAULT NULL, `smry` varchar(100) DEFAULT NULL, `pay_to_ref_tab` varchar(45) DEFAULT NULL, `pay_to_ref_id` int(11) DEFAULT NULL, `pay_to_acc_code` varchar(45) DEFAULT NULL, `pay_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`inv_pay_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_pay_apply` -- DROP TABLE IF EXISTS `inv_pay_apply`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_pay_apply` ( `idinv_pay_apply` int(11) NOT NULL AUTO_INCREMENT, `inv_pay_id` int(11) DEFAULT NULL, `idinv` int(11) DEFAULT NULL, `inv_net` varchar(20) DEFAULT NULL, `inv_fee_percent` varchar(20) DEFAULT NULL, `inv_fee_amt` varchar(20) DEFAULT NULL, `inv_amt_split` varchar(20) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idinv_pay_apply`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_pay_apply_amt` -- DROP TABLE IF EXISTS `inv_pay_apply_amt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_pay_apply_amt` ( `idinv_pay_apply_amt` int(11) NOT NULL AUTO_INCREMENT, `status_ref_id` int(11) DEFAULT NULL, `status_amt_ref_id` int(11) DEFAULT NULL, `status_ref_tab` varchar(45) DEFAULT NULL, `idinv_pay_apply` int(11) DEFAULT NULL, `req_paid_amt` varchar(20) DEFAULT NULL, `req_pay_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idinv_pay_apply_amt`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_trng` -- DROP TABLE IF EXISTS `inv_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_trng` ( `idinv_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idinv_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `inv_trng_doc` -- DROP TABLE IF EXISTS `inv_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `inv_trng_doc` ( `idinv_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idinv_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idinv_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con` -- DROP TABLE IF EXISTS `lk_con`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con` ( `country_id` int(11) NOT NULL AUTO_INCREMENT, `con_name` varchar(25) DEFAULT NULL, `con_full_name` varchar(25) DEFAULT NULL, `lk_design` varchar(25) DEFAULT NULL, `lk_design_hex` varchar(45) DEFAULT NULL, `con_code` int(5) DEFAULT NULL, `con_digit` int(3) DEFAULT NULL, PRIMARY KEY (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st` -- DROP TABLE IF EXISTS `lk_con_st`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st` ( `state_id` int(11) NOT NULL AUTO_INCREMENT, `country_id` int(11) DEFAULT NULL, `state_name` varchar(45) DEFAULT NULL, `state_full_name` varchar(100) DEFAULT NULL, PRIMARY KEY (`state_id`), KEY `fk_look_coun_state_idx` (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st_conty` -- DROP TABLE IF EXISTS `lk_con_st_conty`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st_conty` ( `idlook_county_district` int(11) NOT NULL AUTO_INCREMENT, `state_id` int(11) DEFAULT NULL, `county_district_city_nm` varchar(45) DEFAULT NULL COMMENT 'It could be county, district, or Main city', PRIMARY KEY (`idlook_county_district`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st_conty_ct` -- DROP TABLE IF EXISTS `lk_con_st_conty_ct`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st_conty_ct` ( `city_id` int(11) NOT NULL AUTO_INCREMENT, `idlook_county_district` int(11) DEFAULT NULL, `city_name` varchar(45) DEFAULT NULL, PRIMARY KEY (`city_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st_conty_ct_zip` -- DROP TABLE IF EXISTS `lk_con_st_conty_ct_zip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st_conty_ct_zip` ( `postal_id` int(11) NOT NULL AUTO_INCREMENT, `city_id` int(11) NOT NULL, `zip_code` varchar(45) DEFAULT NULL, PRIMARY KEY (`postal_id`), KEY `city_id` (`city_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st_conty_ct_zip_stret` -- DROP TABLE IF EXISTS `lk_con_st_conty_ct_zip_stret`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st_conty_ct_zip_stret` ( `look_street_id` int(11) NOT NULL AUTO_INCREMENT, `postal_id` int(11) DEFAULT NULL, `street_name` varchar(100) DEFAULT NULL, `street_type` int(11) DEFAULT NULL, PRIMARY KEY (`look_street_id`), KEY `lk_postal_id` (`postal_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `lk_con_st_conty_ct_zip_stret_no` -- DROP TABLE IF EXISTS `lk_con_st_conty_ct_zip_stret_no`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `lk_con_st_conty_ct_zip_stret_no` ( `look_street_no_id` int(11) NOT NULL AUTO_INCREMENT, `look_street_id` int(11) DEFAULT NULL, `look_street_no` varchar(25) DEFAULT NULL, PRIMARY KEY (`look_street_no_id`), KEY `lk_street_id` (`look_street_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `log_global` -- DROP TABLE IF EXISTS `log_global`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `log_global` ( `idglb_log` bigint(20) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `table_update` varchar(200) DEFAULT NULL, `action` varchar(10) DEFAULT NULL, `table_id` int(11) DEFAULT NULL, `col1` text, `idlook_menu_pvt_lvl1` int(5) DEFAULT NULL, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idglb_log`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_city` -- DROP TABLE IF EXISTS `look_city`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_city` ( `city_id` int(11) NOT NULL AUTO_INCREMENT, `idlook_county_district` int(11) DEFAULT NULL, `city_name` varchar(45) DEFAULT NULL, PRIMARY KEY (`city_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_city_bk` -- DROP TABLE IF EXISTS `look_city_bk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_city_bk` ( `city_id` int(11) NOT NULL AUTO_INCREMENT, `idlook_county_district` int(11) DEFAULT NULL, `state_id` int(11) DEFAULT NULL, `city_name` varchar(45) DEFAULT NULL, PRIMARY KEY (`city_id`), KEY `fk_look_state_city_idx` (`state_id`), KEY `lk_state_id` (`state_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_country` -- DROP TABLE IF EXISTS `look_country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_country` ( `country_id` int(11) NOT NULL AUTO_INCREMENT, `con_name` varchar(25) DEFAULT NULL, `con_full_name` varchar(25) DEFAULT NULL, `lk_design` varchar(25) DEFAULT NULL, `lk_design_hex` varchar(45) DEFAULT NULL, `con_code` int(5) DEFAULT NULL, `con_digit` int(3) DEFAULT NULL, PRIMARY KEY (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_county_district` -- DROP TABLE IF EXISTS `look_county_district`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_county_district` ( `idlook_county_district` int(11) NOT NULL AUTO_INCREMENT, `state_id` int(11) DEFAULT NULL, `county_district_city_nm` varchar(45) DEFAULT NULL COMMENT 'It could be county, district, or Main city', PRIMARY KEY (`idlook_county_district`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_ip_addr` -- DROP TABLE IF EXISTS `look_ip_addr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_ip_addr` ( `idlook_ip_addr` int(11) NOT NULL AUTO_INCREMENT, `ip_address` varchar(45) DEFAULT NULL, `domain_nm` text, `ip_contry` varchar(45) DEFAULT NULL, `ip_state` varchar(45) DEFAULT NULL, `ip_city` varchar(45) DEFAULT NULL, `ip_post_code` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL COMMENT 'If null the system', `updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_ip_addr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_menu_emp_log` -- DROP TABLE IF EXISTS `look_menu_emp_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_menu_emp_log` ( `idlook_menu_emp_log` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `idlook_menu_pvt_lvl1` int(11) DEFAULT NULL, `idlook_menu_pvt_lvl2` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idlook_menu_emp_log`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_menu_pub` -- DROP TABLE IF EXISTS `look_menu_pub`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_menu_pub` ( `idlook_menu_pub` int(11) NOT NULL AUTO_INCREMENT, `lk_menu` varchar(200) DEFAULT NULL, `lk_menu_title` varchar(250) DEFAULT NULL, `lk_menu_path` varchar(250) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_sub_val_id` int(11) DEFAULT NULL, `lk_menu_text` text, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_menu_pub`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_menu_pub_con` -- DROP TABLE IF EXISTS `look_menu_pub_con`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_menu_pub_con` ( `idlook_menu_pub_con` int(11) NOT NULL AUTO_INCREMENT, `lk_title` varchar(45) DEFAULT NULL, `lk_desc` varchar(500) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_show` char(1) DEFAULT NULL COMMENT 'Y or N', `lk_css` char(1) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_menu_pub_con`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_menu_pvt` -- DROP TABLE IF EXISTS `look_menu_pvt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_menu_pvt` ( `idlook_menu_pvt` int(11) NOT NULL AUTO_INCREMENT, `lk_values` varchar(200) DEFAULT NULL, `lk_design` varchar(45) DEFAULT NULL, `lk_value_desc` varchar(250) DEFAULT NULL, `lk_value_code` varchar(10) DEFAULT NULL, `lk_admin` varchar(3) DEFAULT NULL, `lk_display_id` int(5) DEFAULT NULL, `lk_sub_value_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_menu_pvt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_postal` -- DROP TABLE IF EXISTS `look_postal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_postal` ( `postal_id` int(11) NOT NULL AUTO_INCREMENT, `city_id` int(11) NOT NULL, `zip_code` varchar(45) DEFAULT NULL, PRIMARY KEY (`postal_id`), KEY `city_id` (`city_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_state` -- DROP TABLE IF EXISTS `look_state`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_state` ( `state_id` int(11) NOT NULL AUTO_INCREMENT, `country_id` int(11) DEFAULT NULL, `state_name` varchar(45) DEFAULT NULL, `state_full_name` varchar(100) DEFAULT NULL, PRIMARY KEY (`state_id`), KEY `fk_look_coun_state_idx` (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_street` -- DROP TABLE IF EXISTS `look_street`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_street` ( `look_street_id` int(11) NOT NULL AUTO_INCREMENT, `postal_id` int(11) DEFAULT NULL, `street_name` varchar(100) DEFAULT NULL, `street_type` int(11) DEFAULT NULL, PRIMARY KEY (`look_street_id`), KEY `lk_postal_id` (`postal_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_street_no` -- DROP TABLE IF EXISTS `look_street_no`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_street_no` ( `look_street_no_id` int(11) NOT NULL AUTO_INCREMENT, `look_street_id` int(11) DEFAULT NULL, `look_street_no` varchar(25) DEFAULT NULL, PRIMARY KEY (`look_street_no_id`), KEY `lk_street_id` (`look_street_id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_survey` -- DROP TABLE IF EXISTS `look_survey`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_survey` ( `idlook_survey` int(11) NOT NULL AUTO_INCREMENT, `lk_sec_ques_ans` text, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_survey`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `look_survey_flow` -- DROP TABLE IF EXISTS `look_survey_flow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `look_survey_flow` ( `idlook_survey_flow` int(11) NOT NULL AUTO_INCREMENT, `idlook_survey` int(11) DEFAULT NULL, `survey_name` varchar(45) DEFAULT NULL, `look_sub_survey_id` int(11) DEFAULT NULL, `survey_text` varchar(45) DEFAULT NULL, `survey_points` int(2) DEFAULT NULL, `survey_order` int(2) DEFAULT NULL, `survey_type` varchar(10) DEFAULT NULL COMMENT 'S = Section, Q = question, etc, later change it to int(5)', `updater` int(5) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idlook_survey_flow`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_assist_inc` -- DROP TABLE IF EXISTS `mkt_assist_inc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_assist_inc` ( `idmkt_assist_inc` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `idmkt_lk_val` int(11) DEFAULT NULL, `assist_from_dt` datetime DEFAULT NULL, `assist_to_dt` datetime DEFAULT NULL, `assist_amt` varchar(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_assist_inc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_assist_stat_amt` -- DROP TABLE IF EXISTS `mkt_assist_stat_amt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_assist_stat_amt` ( `idmkt_assist_stat_amt` int(11) NOT NULL AUTO_INCREMENT, `idmkt_assist_stat` int(11) DEFAULT NULL, `assist_amt` varchar(10) DEFAULT NULL, `assist_action` varchar(15) DEFAULT NULL COMMENT '(approve, denial, pending)', `assist_action_by` int(11) DEFAULT NULL, `assist_bal` varchar(10) DEFAULT NULL, `assist_paid` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_assist_stat_amt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_attr` -- DROP TABLE IF EXISTS `mkt_attr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_attr` ( `idmkt_attr` int(11) NOT NULL AUTO_INCREMENT, `immi_attr_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_attr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_attr_open` -- DROP TABLE IF EXISTS `mkt_attr_open`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_attr_open` ( `idmkt_attr_open` int(11) NOT NULL AUTO_INCREMENT, `immi_attr_open_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_attr_open`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_attr_stat` -- DROP TABLE IF EXISTS `mkt_attr_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_attr_stat` ( `idmkt_attr_stat` int(11) NOT NULL AUTO_INCREMENT, `immi_attr_stat_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_attr_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_audit` -- DROP TABLE IF EXISTS `mkt_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_audit` ( `idmkt_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_comp` -- DROP TABLE IF EXISTS `mkt_comp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_comp` ( `idmkt_comp` int(11) NOT NULL AUTO_INCREMENT, `companyname` varchar(100) DEFAULT NULL, `company_info` varchar(500) DEFAULT NULL, `comp_website` varchar(45) DEFAULT NULL, `comp_phone` varchar(45) DEFAULT NULL, `comp_email` varchar(45) DEFAULT NULL, `acc_mgr` int(11) DEFAULT NULL, `req_type` int(11) DEFAULT NULL, `track` varchar(10) DEFAULT NULL, `block` varchar(10) DEFAULT NULL, `block_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idmkt_comp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_comp_open` -- DROP TABLE IF EXISTS `mkt_comp_open`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_comp_open` ( `idmkt_comp_open` int(11) NOT NULL AUTO_INCREMENT, `idmkt_comp_ven` int(11) DEFAULT NULL, `idmkt_comp_client` int(11) DEFAULT NULL, `acc_mgr` int(11) DEFAULT NULL, `req_type` int(11) DEFAULT NULL, `open_dt` date DEFAULT NULL, `loc_state` int(11) DEFAULT NULL, `loc_city` int(11) DEFAULT NULL, `contact_info` varchar(100) DEFAULT NULL, `source` int(5) DEFAULT NULL, `open_details` varchar(1000) DEFAULT NULL, `close_dt` date DEFAULT NULL, `open_close_day` int(5) DEFAULT NULL COMMENT 'Delete this', `open_cnt` int(5) DEFAULT NULL, `open_tol` int(5) DEFAULT NULL, `open_pcnt` varchar(10) DEFAULT NULL, `assist_cnt` int(5) DEFAULT NULL, `summary` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` varchar(45) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_comp_dt` date DEFAULT NULL, PRIMARY KEY (`idmkt_comp_open`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_comp_open_assist` -- DROP TABLE IF EXISTS `mkt_comp_open_assist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_comp_open_assist` ( `idmkt_comp_open_assist` int(11) NOT NULL AUTO_INCREMENT, `idmkt_comp_open` int(11) DEFAULT NULL, `assist_id` int(11) DEFAULT NULL, `assist_st_dt` date DEFAULT NULL, `assist_e_dt` date DEFAULT NULL, `idmkt_wrk_flow` int(5) DEFAULT NULL, `assist_rate` varchar(10) DEFAULT NULL, `summary` varchar(100) DEFAULT NULL, `assist_status` int(5) DEFAULT NULL, `stat_e_dt_pre` date DEFAULT NULL, `stat_lag_tm` int(11) DEFAULT NULL, `stat_st_dt` date DEFAULT NULL, `stat_e_dt` date DEFAULT NULL, `no_days` int(5) DEFAULT NULL, `assist_stat_cnt` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `idlook_stat_order` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_assist_dt` date DEFAULT NULL, `old_stat_dt` date DEFAULT NULL, PRIMARY KEY (`idmkt_comp_open_assist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_comp_open_assist_stat` -- DROP TABLE IF EXISTS `mkt_comp_open_assist_stat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_comp_open_assist_stat` ( `idmkt_comp_open_assist_stat` int(11) NOT NULL AUTO_INCREMENT, `idmkt_comp_open_assist` int(11) DEFAULT NULL, `assist_status` int(5) DEFAULT NULL, `stat_e_dt_pre` date DEFAULT NULL, `stat_lag_tm` int(5) DEFAULT NULL, `stat_st_dt` date DEFAULT NULL, `stat_e_dt` date DEFAULT NULL, `no_days_stat` int(5) DEFAULT NULL, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `idlook_stat_order` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_comp_open_assist_stat`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_comp_open_assist_stat_step` -- DROP TABLE IF EXISTS `mkt_comp_open_assist_stat_step`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_comp_open_assist_stat_step` ( `idmkt_comp_open_assist_stat_step` int(11) NOT NULL AUTO_INCREMENT, `idmkt_comp_open_assist_stat` int(11) DEFAULT NULL, `mkt_step_detail` varchar(100) DEFAULT NULL, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, PRIMARY KEY (`idmkt_comp_open_assist_stat_step`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_lk` -- DROP TABLE IF EXISTS `mkt_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_lk` ( `idmkt_lk` int(11) NOT NULL AUTO_INCREMENT, `mkt_name` varchar(45) DEFAULT NULL, `mkt_name_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idmkt_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_lk_val` -- DROP TABLE IF EXISTS `mkt_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_lk_val` ( `idmkt_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idmkt_lk` int(11) DEFAULT NULL, `mkt_value` varchar(45) DEFAULT NULL, `mkt_value_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idmkt_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_lk_wrk_flow` -- DROP TABLE IF EXISTS `mkt_lk_wrk_flow`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_lk_wrk_flow` ( `idmkt_wrk_flow` int(11) NOT NULL AUTO_INCREMENT, `wrk_flow_nm` varchar(45) DEFAULT NULL, `id_wrk_flow` int(11) DEFAULT NULL, `wrk_flow_desc` varchar(100) DEFAULT NULL, `id_wrk_flow_parent` int(11) DEFAULT NULL, `look_initial` varchar(5) DEFAULT NULL, `look_restart` varchar(5) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idmkt_wrk_flow`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_trng` -- DROP TABLE IF EXISTS `mkt_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_trng` ( `idmkt_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idmkt_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `mkt_trng_doc` -- DROP TABLE IF EXISTS `mkt_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `mkt_trng_doc` ( `idmkt_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idmkt_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idmkt_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `msg` -- DROP TABLE IF EXISTS `msg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg` ( `idmsg` int(11) NOT NULL AUTO_INCREMENT, `msg_type` varchar(45) NOT NULL COMMENT 'Mail or Chat', `msg_subject` varchar(150) DEFAULT NULL, `msg_body` varchar(1000) DEFAULT NULL, `msg_size` varchar(10) DEFAULT NULL, `idmsg_parent` int(11) DEFAULT NULL, `msg_last` char(1) DEFAULT NULL, `idmsg_sender` int(11) DEFAULT NULL, `idmsg_recv` text, `msg_send_recv` text, `idmsg_recv_mn` text, `msg_dt` datetime DEFAULT NULL, `msg_dt_ms` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idmsg`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `msg_recver` -- DROP TABLE IF EXISTS `msg_recver`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg_recver` ( `idmsg_recver` int(11) NOT NULL AUTO_INCREMENT, `idmsg` int(11) DEFAULT NULL, `msg_recver` int(11) DEFAULT NULL, `msg_recver_dt` datetime DEFAULT NULL, `msg_flag` int(5) DEFAULT NULL COMMENT '1=High, 5=Low', `msg_folder` varchar(45) DEFAULT NULL COMMENT 'Inbox, Archive, Sent, Trash', PRIMARY KEY (`idmsg_recver`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `msg_sender` -- DROP TABLE IF EXISTS `msg_sender`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg_sender` ( `idmsg_sender` int(11) NOT NULL AUTO_INCREMENT, `idmsg` int(11) DEFAULT NULL, `msg_sender` int(11) DEFAULT NULL, `msg_sender_dt` datetime DEFAULT NULL, `msg_flag` int(5) DEFAULT NULL COMMENT '1=High, 5=Low', `msg_folder` varchar(45) DEFAULT NULL COMMENT 'Inbox, Archive, Sent, Trash', PRIMARY KEY (`idmsg_sender`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `msg_usr` -- DROP TABLE IF EXISTS `msg_usr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `msg_usr` ( `idmsg_usr` int(11) NOT NULL AUTO_INCREMENT, `idusr1` int(11) DEFAULT NULL, `idusr2` int(11) DEFAULT NULL, `idusr_contacts` text, `add_dt` date DEFAULT NULL, `action_dt` date DEFAULT NULL, `curr_stat` char(1) DEFAULT NULL COMMENT 'B=Blocked', PRIMARY KEY (`idmsg_usr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_acc_list` -- DROP TABLE IF EXISTS `net_acc_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_acc_list` ( `idnet_acc_list` int(11) NOT NULL AUTO_INCREMENT, `acc_nm` varchar(45) DEFAULT NULL, `acc_usr_nm` varchar(100) DEFAULT NULL, `acc_usr_pswd` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_acc_list`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_attr_dt` -- DROP TABLE IF EXISTS `net_attr_dt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_attr_dt` ( `idnet_attr_dt` int(11) NOT NULL AUTO_INCREMENT, `net_attr_tab` varchar(45) DEFAULT NULL, `net_attr_st_dt` varchar(45) DEFAULT NULL, `net_attr_till_dt` varchar(45) DEFAULT NULL, `net_att_cnt` int(5) DEFAULT NULL, `net_attr_reset_dt` varchar(45) DEFAULT NULL, `net_interim_dt` date DEFAULT NULL COMMENT 'Received while function running.', PRIMARY KEY (`idnet_attr_dt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_audit` -- DROP TABLE IF EXISTS `net_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_audit` ( `idnet_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_blk_dm` -- DROP TABLE IF EXISTS `net_blk_dm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_blk_dm` ( `idnet_blk_dm` int(11) NOT NULL AUTO_INCREMENT, `domain_nm` varchar(45) DEFAULT NULL, `domain_reason` varchar(100) DEFAULT NULL, `blk_rqtr` int(11) DEFAULT NULL, `blk_by` int(11) DEFAULT NULL, `blk_date` datetime DEFAULT NULL, `blk_type` varchar(45) DEFAULT NULL COMMENT 'Blocked / Unsubscribed', `updater` int(11) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, PRIMARY KEY (`idnet_blk_dm`), UNIQUE KEY `domain_nm_UNIQUE` (`domain_nm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_blk_ip` -- DROP TABLE IF EXISTS `net_blk_ip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_blk_ip` ( `idnet_blk_ip` int(11) NOT NULL AUTO_INCREMENT, `ip_address` varchar(45) DEFAULT NULL, `cnt_blk` int(11) DEFAULT NULL, `hostname` varchar(95) DEFAULT NULL, `city` varchar(45) DEFAULT NULL, `region` varchar(45) DEFAULT NULL, `country` varchar(45) DEFAULT NULL, `blk_by` varchar(15) DEFAULT NULL, `blk_dt` datetime DEFAULT NULL, `allow` char(1) DEFAULT NULL, PRIMARY KEY (`idnet_blk_ip`), UNIQUE KEY `ip_address_UNIQUE` (`ip_address`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_blk_ip_ser` -- DROP TABLE IF EXISTS `net_blk_ip_ser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_blk_ip_ser` ( `idnet_blk_ip_ser` int(11) NOT NULL AUTO_INCREMENT, `idnet_blk_ip` int(11) DEFAULT NULL, `idnet_ser` int(11) DEFAULT NULL, `blk_ser_by` varchar(15) DEFAULT NULL, `blk_ser_dt` datetime DEFAULT NULL, `allow` char(1) DEFAULT NULL COMMENT 'Y / N', PRIMARY KEY (`idnet_blk_ip_ser`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_data` -- DROP TABLE IF EXISTS `net_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_data` ( `idnet_data_exe` int(11) NOT NULL AUTO_INCREMENT, `net_script_nm` varchar(45) DEFAULT NULL, `script_st_tm` datetime DEFAULT NULL, `net_script_frm` varchar(45) DEFAULT NULL COMMENT 'Menu name', `is_running` char(1) DEFAULT NULL, `net_attr_tab` varchar(45) DEFAULT NULL, `net_attr_st_dt` text, `net_attr_till_dt` varchar(45) DEFAULT NULL, `net_att_cnt` int(5) DEFAULT NULL, `net_attr_reset_dt` varchar(45) DEFAULT NULL, `net_interim_dt` date DEFAULT NULL, PRIMARY KEY (`idnet_data_exe`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_demo_tbl` -- DROP TABLE IF EXISTS `net_demo_tbl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_demo_tbl` ( `idnet_demo_tbl` int(11) NOT NULL AUTO_INCREMENT, `table_name` varchar(45) DEFAULT NULL, `updater` varchar(45) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_demo_tbl`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_demo_tbl2` -- DROP TABLE IF EXISTS `net_demo_tbl2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_demo_tbl2` ( `idnet_demo_tbl2` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(5) DEFAULT NULL, `ins_stat` text, PRIMARY KEY (`idnet_demo_tbl2`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_domain_fwd` -- DROP TABLE IF EXISTS `net_domain_fwd`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_domain_fwd` ( `idnet_domain_fwd` int(11) NOT NULL AUTO_INCREMENT, `url_rcvd` text, `url_fwd` text, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_domain_fwd`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_email_alias` -- DROP TABLE IF EXISTS `net_email_alias`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_email_alias` ( `idnet_email_alias` int(11) NOT NULL AUTO_INCREMENT, `idnet_emails` int(11) DEFAULT NULL, `idnet_emails_alias` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_email_alias`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_email_fwd` -- DROP TABLE IF EXISTS `net_email_fwd`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_email_fwd` ( `idnet_email_fwd` int(11) NOT NULL AUTO_INCREMENT, `idnet_emails` int(11) DEFAULT NULL, `idnet_emails_fwd` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_email_fwd`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_emails` -- DROP TABLE IF EXISTS `net_emails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_emails` ( `idnet_emails` int(11) NOT NULL AUTO_INCREMENT, `nm_email` varchar(25) DEFAULT NULL, `email_type` varchar(10) DEFAULT NULL, `email_alias` varchar(100) DEFAULT NULL, `email_fwd` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `email_smry` varchar(100) DEFAULT NULL COMMENT 'assignee password, other info', PRIMARY KEY (`idnet_emails`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_entry` -- DROP TABLE IF EXISTS `net_entry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_entry` ( `idnet_entry` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `emp_pincode` varchar(10) DEFAULT NULL, `pin_smry` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_entry`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_entry2` -- DROP TABLE IF EXISTS `net_entry2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_entry2` ( `idnet_entry2` int(11) NOT NULL AUTO_INCREMENT, `net_key` varchar(45) DEFAULT NULL, PRIMARY KEY (`idnet_entry2`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_mail_rec` -- DROP TABLE IF EXISTS `net_mail_rec`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_mail_rec` ( `idnet_mail_rec` int(2) NOT NULL AUTO_INCREMENT, `rec_email_addr` varchar(45) DEFAULT NULL, `desc` varchar(200) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_mail_rec`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_mail_send` -- DROP TABLE IF EXISTS `net_mail_send`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_mail_send` ( `idnet_mail_send` int(3) NOT NULL AUTO_INCREMENT, `mail_server_port` int(11) DEFAULT NULL COMMENT 'Smtp, http, etc', `user_id` varchar(45) DEFAULT NULL, `pass_word` varchar(45) DEFAULT NULL, `encrypt_pswd` varchar(256) DEFAULT NULL, `send_stat` varchar(10) DEFAULT NULL COMMENT 'Y Or N', `usage_order` int(2) DEFAULT NULL COMMENT '1, 2, 3, 4, 5, 6 ……', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_mail_send`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 MAX_ROWS=999999999 COMMENT='Used to store Mail Server details'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_script` -- DROP TABLE IF EXISTS `net_script`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_script` ( `idnet_script` int(11) NOT NULL AUTO_INCREMENT, `script_nm` varchar(45) DEFAULT NULL, `script_typ` varchar(10) DEFAULT NULL, `script_desc` varchar(200) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `cnt_log` int(11) DEFAULT NULL, `script_field` char(1) DEFAULT NULL, `script_col_nm` text, PRIMARY KEY (`idnet_script`), UNIQUE KEY `script_nm_UNIQUE` (`script_nm`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_script_key` -- DROP TABLE IF EXISTS `net_script_key`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_script_key` ( `idnet_script_key` int(11) NOT NULL AUTO_INCREMENT, `idnet_script` int(11) DEFAULT NULL, `api_url_loc` varchar(95) DEFAULT NULL, `api_passkey` varchar(45) DEFAULT NULL, `api_disp_order` int(2) DEFAULT NULL, PRIMARY KEY (`idnet_script_key`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_script_run` -- DROP TABLE IF EXISTS `net_script_run`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_script_run` ( `idnet_script_run` int(11) NOT NULL AUTO_INCREMENT, `idnet_script` int(11) DEFAULT NULL, `idnet_ser` int(11) DEFAULT NULL, `run_tm` int(11) DEFAULT NULL COMMENT 'In min i.e 5 min, 60 etc', `start_dt` date DEFAULT NULL, `last_run_tm` datetime DEFAULT NULL, `run_result` varchar(45) DEFAULT NULL COMMENT 'Fail / Success', `script_end` datetime DEFAULT NULL, `cnt_log` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_script_run`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_script_run_log` -- DROP TABLE IF EXISTS `net_script_run_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_script_run_log` ( `idnet_script_run_log` int(11) NOT NULL AUTO_INCREMENT, `idnet_script` int(11) DEFAULT NULL, `idnet_script_run` int(11) DEFAULT NULL, `idnet_ser` int(11) DEFAULT NULL, `run_result` varchar(45) DEFAULT NULL COMMENT 'Fail / Success', `run_dt` datetime DEFAULT NULL, `run_by` varchar(45) DEFAULT NULL COMMENT 'Who am I', `updater` int(11) DEFAULT NULL COMMENT 'From php emp_id', `script_end` datetime DEFAULT NULL, PRIMARY KEY (`idnet_script_run_log`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_secure` -- DROP TABLE IF EXISTS `net_secure`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_secure` ( `idnet_secure` int(11) NOT NULL AUTO_INCREMENT, `access_fnm` varchar(45) DEFAULT NULL, `hostnm` varchar(45) DEFAULT NULL, `access_brsw` varchar(45) DEFAULT NULL, `access_by` int(11) DEFAULT NULL, `access_dt` datetime DEFAULT NULL, `menu_main` varchar(45) DEFAULT NULL, `menu_sub` varchar(45) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` varchar(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_secure`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_ser` -- DROP TABLE IF EXISTS `net_ser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_ser` ( `idnet_ser` int(11) NOT NULL AUTO_INCREMENT, `emp_id` int(11) DEFAULT NULL, `idasset_comp` int(11) DEFAULT NULL, `emp_use_frm_dt` date DEFAULT NULL, `emp_use_to` date DEFAULT NULL, `hostnm` varchar(10) DEFAULT NULL, `dep_usr` varchar(25) DEFAULT NULL, `host_conf` varchar(100) DEFAULT NULL, `hosted` varchar(100) DEFAULT NULL, `hostdm` varchar(25) DEFAULT NULL, `hostdm_multi` varchar(100) DEFAULT NULL, `host_type` varchar(45) DEFAULT NULL, `host_mst` varchar(10) DEFAULT NULL, `ip_lan` varchar(45) DEFAULT NULL, `ip_wan` varchar(45) DEFAULT NULL, `ip_usr` varchar(45) DEFAULT NULL, `gateway` varchar(10) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `cnt_ser_blk` int(5) DEFAULT NULL, `cnt_db_blk` int(5) DEFAULT NULL, `cnt_blk_updated` datetime DEFAULT NULL, `dis_tot` float DEFAULT NULL, `dis_use` float DEFAULT NULL, `dis_free` float DEFAULT NULL, `dis_pcnt` varchar(5) DEFAULT NULL, `cnt_dis` int(5) DEFAULT NULL, `dis_grp_ser_stat` char(1) DEFAULT NULL, `ser_stat_updated` datetime DEFAULT NULL, `disc_chk_access` char(1) DEFAULT NULL, `chk_access_updated` datetime DEFAULT NULL, `dis_tol_grp` float DEFAULT NULL, `dis_mir_lvl` int(2) DEFAULT NULL, `dis_free_grp` float DEFAULT NULL, `dis_updated` datetime DEFAULT NULL, `cpu_dt_tm` date DEFAULT NULL, `users_load` varchar(5) DEFAULT NULL, `sys_load` varchar(5) DEFAULT NULL, `io_wait` varchar(5) DEFAULT NULL, `idle_wait` varchar(5) DEFAULT NULL, `cnt_ser_stat` int(5) DEFAULT NULL COMMENT 'Will count value “restart” of ner_ser_cpu ', `cpu_updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_ser`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_ser_clone` -- DROP TABLE IF EXISTS `net_ser_clone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_ser_clone` ( `idnet_clone` int(11) NOT NULL AUTO_INCREMENT, `idnet_ser` int(11) DEFAULT NULL, `mst_app` varchar(45) DEFAULT NULL, `cloned_app` varchar(45) DEFAULT NULL, `code_bk` int(3) DEFAULT NULL, `db_bk` int(3) DEFAULT NULL, `valid_days` int(11) DEFAULT NULL, `validity` datetime DEFAULT NULL, `synced` datetime DEFAULT NULL, `devops` date DEFAULT NULL, `beta` date DEFAULT NULL, `live` date DEFAULT NULL, `old_code` date DEFAULT NULL, `alert_days` int(11) DEFAULT NULL, `app_url` varchar(45) DEFAULT NULL, `excluded` text, `deleted_on` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, PRIMARY KEY (`idnet_clone`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_ser_cpu` -- DROP TABLE IF EXISTS `net_ser_cpu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_ser_cpu` ( `idnet_ser_cpu` int(11) NOT NULL AUTO_INCREMENT, `idnet_ser` int(11) DEFAULT NULL, `cpu_dt` date DEFAULT NULL, `cpu_tm` varchar(25) DEFAULT NULL, `users_load` varchar(10) DEFAULT NULL, `sys_load` varchar(10) DEFAULT NULL, `io_wait` varchar(10) DEFAULT NULL, `idle_wait` varchar(10) DEFAULT NULL, `ser_stat` varchar(10) DEFAULT NULL, `del_dt` int(11) DEFAULT NULL, `del_day` int(3) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_ser_cpu`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_ser_dis` -- DROP TABLE IF EXISTS `net_ser_dis`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_ser_dis` ( `idnet_ser_dis` int(11) NOT NULL AUTO_INCREMENT, `idnet_ser` int(11) DEFAULT NULL, `dis_tot` float DEFAULT NULL, `dis_use` float DEFAULT NULL, `dis_free` float DEFAULT NULL, `dis_pcnt` varchar(45) DEFAULT NULL, `updater` varchar(45) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_ser_dis`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_ser_net` -- DROP TABLE IF EXISTS `net_ser_net`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_ser_net` ( `idnet_ser_net` int(11) NOT NULL AUTO_INCREMENT, `idnet_ser` int(11) DEFAULT NULL, `net_port_dt` date DEFAULT NULL, `net_port_tm` varchar(25) DEFAULT NULL, `net_port` varchar(10) DEFAULT NULL COMMENT 'Eth0', `recv_kBs` varchar(20) DEFAULT NULL COMMENT 'Packets received div by 1024 to get MB /s ', `sent_kBs` varchar(20) DEFAULT NULL COMMENT 'Packets received div by 1024 to get MB /s ', `tol_kBs` varchar(20) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` varchar(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_ser_net`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_tb_vw` -- DROP TABLE IF EXISTS `net_tb_vw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_tb_vw` ( `idnet_tb_vw` int(5) NOT NULL AUTO_INCREMENT, `deploy` char(1) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `qry` longtext, `updater` varchar(20) DEFAULT NULL, PRIMARY KEY (`idnet_tb_vw`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_tb_vw_ser` -- DROP TABLE IF EXISTS `net_tb_vw_ser`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_tb_vw_ser` ( `idnet_tb_vw_ser` int(11) NOT NULL AUTO_INCREMENT, `idnet_tb_vw` int(11) DEFAULT NULL, `idnet_clone` int(11) DEFAULT NULL COMMENT 'From live1 column', `cloned_app` varchar(15) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, PRIMARY KEY (`idnet_tb_vw_ser`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_tb_vw_ser_app` -- DROP TABLE IF EXISTS `net_tb_vw_ser_app`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_tb_vw_ser_app` ( `idnet_tb_vw_ser_app` int(11) NOT NULL AUTO_INCREMENT, `idnet_tb_vw_ser` int(11) DEFAULT NULL, `idnet_clone` int(11) DEFAULT NULL, `updated_on` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, PRIMARY KEY (`idnet_tb_vw_ser_app`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_trng` -- DROP TABLE IF EXISTS `net_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_trng` ( `idnet_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `net_trng_doc` -- DROP TABLE IF EXISTS `net_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `net_trng_doc` ( `idnet_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idnet_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idnet_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_attr_corp` -- DROP TABLE IF EXISTS `prosp_attr_corp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_attr_corp` ( `idprosp_attr_corp` int(11) NOT NULL AUTO_INCREMENT, `prosp_attr_corp_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_attr_corp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_attr_corp_act` -- DROP TABLE IF EXISTS `prosp_attr_corp_act`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_attr_corp_act` ( `idprosp_attr_corp_act` int(11) NOT NULL AUTO_INCREMENT, `prosp_attr_corp_act_dt` date DEFAULT NULL, `qry_dt` date DEFAULT NULL, `new` int(5) DEFAULT NULL, `close` int(5) DEFAULT NULL, `total` int(7) DEFAULT NULL, `new_pcnt` varchar(10) DEFAULT NULL, `close_pcnt` varchar(10) DEFAULT NULL, `change_pcnt` varchar(10) DEFAULT NULL, `category` varchar(45) DEFAULT NULL, `section1` varchar(45) DEFAULT NULL, `idparent` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_attr_corp_act`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_audit` -- DROP TABLE IF EXISTS `prosp_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_audit` ( `idprosp_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(10) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp` -- DROP TABLE IF EXISTS `prosp_corp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp` ( `idprosp_corp` int(11) NOT NULL AUTO_INCREMENT, `prosp_corp_type` int(5) DEFAULT NULL COMMENT 'Individual / company', `corp_entity_name` varchar(95) DEFAULT NULL, `corp_source` int(5) DEFAULT NULL, `corp_level` int(5) DEFAULT NULL, `corp_domain` int(5) DEFAULT NULL, `corp_domain_sub` int(5) DEFAULT NULL, `response` int(5) DEFAULT NULL, `corp_contacts` varchar(300) DEFAULT NULL, `corp_address` varchar(300) DEFAULT NULL, `register_yr` varchar(4) DEFAULT NULL, `register_state` varchar(2) DEFAULT NULL, `start_dt` date DEFAULT NULL, `acc_mgr` int(11) DEFAULT NULL, `end_dt` date DEFAULT NULL, `st_end_tm` int(11) DEFAULT NULL, `topic_discussed` varchar(300) DEFAULT NULL, `all_topic` text, `called_dt` date DEFAULT NULL, `call_nxt_dt` date DEFAULT NULL, `call_day_tm` int(5) DEFAULT NULL, `topic_count` int(5) DEFAULT NULL, `about_corp` varchar(300) DEFAULT NULL, `access_name` varchar(20) DEFAULT NULL, `tentative_en_dt` date DEFAULT NULL, `remind` int(3) DEFAULT NULL, `updated` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `old_corp_dt` date DEFAULT NULL, `old_corp_activity_dt` date DEFAULT NULL, PRIMARY KEY (`idprosp_corp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp_access` -- DROP TABLE IF EXISTS `prosp_corp_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp_access` ( `idprosp_corp_access` int(11) NOT NULL AUTO_INCREMENT, `corp_accessor` int(11) DEFAULT NULL, `corp_access_acc_mgr` int(11) DEFAULT NULL, `from_dt_acc` date DEFAULT NULL, `to_dt_acc` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idprosp_corp_access`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp_act_amt` -- DROP TABLE IF EXISTS `prosp_corp_act_amt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp_act_amt` ( `idprosp_corp_act_amt` int(11) NOT NULL AUTO_INCREMENT, `idprosp_corp_activity` int(11) DEFAULT NULL, `corp_lvl_amt` int(5) DEFAULT NULL, `corp_action` int(5) DEFAULT NULL, `corp_action_by` int(11) DEFAULT NULL, `corp_lvl_bal` float DEFAULT NULL, `corp_lvl_paid` float DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updater_on` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_corp_act_amt`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp_activity` -- DROP TABLE IF EXISTS `prosp_corp_activity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp_activity` ( `idprosp_corp_activity` int(11) NOT NULL AUTO_INCREMENT, `idprosp_corp` int(11) DEFAULT NULL, `topic_disussed` varchar(300) DEFAULT NULL, `corp_level` int(5) DEFAULT NULL, `response` int(5) DEFAULT NULL, `called_dt` date DEFAULT NULL, `acc_mgr` int(11) DEFAULT NULL, `call_nxt_dt` date DEFAULT NULL, `call_day_tm` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_corp_activity`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp_doc` -- DROP TABLE IF EXISTS `prosp_corp_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp_doc` ( `idprosp_corp_doc` int(11) NOT NULL AUTO_INCREMENT, `idprosp_corp` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_corp_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_corp_inc` -- DROP TABLE IF EXISTS `prosp_corp_inc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_corp_inc` ( `idprosp_corp_inc` int(11) NOT NULL AUTO_INCREMENT, `idprosp_lk_val` int(11) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `inc_frm` datetime DEFAULT NULL, `inc_to` datetime DEFAULT NULL, `inc_amt` float DEFAULT NULL, `approver_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idprosp_corp_inc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_lk` -- DROP TABLE IF EXISTS `prosp_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_lk` ( `idprosp_lk` int(11) NOT NULL AUTO_INCREMENT, `prosp_name` varchar(45) DEFAULT NULL, `lk_name_desc` varchar(100) DEFAULT NULL, `disp_order` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idprosp_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_lk_val` -- DROP TABLE IF EXISTS `prosp_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_lk_val` ( `idprosp_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idprosp_lk` int(11) DEFAULT NULL, `prosp_value` varchar(45) DEFAULT NULL, `prosp_value_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idprosp_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_lk_val3` -- DROP TABLE IF EXISTS `prosp_lk_val3`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_lk_val3` ( `idprosp_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idprosp_lk` int(11) DEFAULT NULL, `prosp_value` varchar(45) DEFAULT NULL, `prosp_value_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idprosp_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_trng` -- DROP TABLE IF EXISTS `prosp_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_trng` ( `idprosp_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idprosp_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `prosp_trng_doc` -- DROP TABLE IF EXISTS `prosp_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prosp_trng_doc` ( `idprosp_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idprosp_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idprosp_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr` -- DROP TABLE IF EXISTS `shr`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr` ( `idshr` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(11) DEFAULT NULL, `shr_no` int(11) DEFAULT NULL COMMENT '100K, etc. ', `hlding` int(3) DEFAULT NULL COMMENT 'If 60% then 40 to general public', `issued` int(3) DEFAULT NULL, `thr_hld` int(3) DEFAULT NULL COMMENT 'Holding - Issued', `shr_symbl` varchar(45) DEFAULT NULL, `shr_type` int(5) DEFAULT NULL COMMENT 'Class A = voting / Preferred , Class B = Non Voting / Common, etc', `shr_pr` varchar(10) DEFAULT NULL COMMENT 'Latest Price', `shr_smry` varchar(200) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idshr`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_doc` -- DROP TABLE IF EXISTS `shr_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_doc` ( `idshr_doc` int(11) NOT NULL AUTO_INCREMENT, `idshr` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, PRIMARY KEY (`idshr_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_hist` -- DROP TABLE IF EXISTS `shr_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_hist` ( `idshr_hist` int(11) NOT NULL AUTO_INCREMENT, `idshr` int(11) DEFAULT NULL, `shr_no` varchar(45) DEFAULT NULL, `raise_dt` date DEFAULT NULL, `raise_smry` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idshr_hist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_hld` -- DROP TABLE IF EXISTS `shr_hld`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_hld` ( `idshr_hld` int(11) NOT NULL AUTO_INCREMENT, `idshr` int(11) DEFAULT NULL, `own_ref_tab` varchar(45) DEFAULT NULL, `own_ref_id` int(11) DEFAULT NULL, `shr_no` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idshr_hld`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_hld_rec` -- DROP TABLE IF EXISTS `shr_hld_rec`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_hld_rec` ( `idshr_hld_rec` int(11) NOT NULL AUTO_INCREMENT, `idshr` int(11) DEFAULT NULL, `shr_fm` int(11) DEFAULT NULL, `shr_no` int(11) DEFAULT NULL, `shr_to` int(11) DEFAULT NULL, `trade_dt` datetime DEFAULT NULL, `strike_pr` varchar(10) DEFAULT NULL, `settle_dt` datetime DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idshr_hld_rec`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_hld_trd` -- DROP TABLE IF EXISTS `shr_hld_trd`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_hld_trd` ( `idshr_hld_trd` int(11) NOT NULL AUTO_INCREMENT, `idshr_hld` int(11) DEFAULT NULL, `trd_type` int(5) DEFAULT NULL COMMENT 'Buy / Sell', `shr_no_trd` int(11) DEFAULT NULL, `trd_pr` varchar(10) DEFAULT NULL, `trd_smry` varchar(45) DEFAULT NULL COMMENT 'Sell / Buy all or none', `trd_or_dt` datetime DEFAULT NULL, `trd_exp_day` int(5) DEFAULT NULL, `trd_exp_dt` datetime DEFAULT NULL COMMENT 'Y or N', `trd_exe_dt` datetime DEFAULT NULL, `trd_or_exe_dt` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idshr_hld_trd`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_lk` -- DROP TABLE IF EXISTS `shr_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_lk` ( `idshr_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idshr_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `shr_lk_val` -- DROP TABLE IF EXISTS `shr_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `shr_lk_val` ( `idshr_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idshr_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idshr_lk_val`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storage_lk_tag` -- DROP TABLE IF EXISTS `storage_lk_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storage_lk_tag` ( `idstorage_lk_tag` int(11) NOT NULL AUTO_INCREMENT, `owner_id` int(11) DEFAULT NULL, `lk_tag` varchar(20) DEFAULT NULL, `lk_tag_desc` varchar(200) DEFAULT NULL, `lk_disp_id` int(5) DEFAULT NULL, `lk_parent_tag_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorage_lk_tag`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storage_trng` -- DROP TABLE IF EXISTS `storage_trng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storage_trng` ( `idstorage_trng` int(11) NOT NULL AUTO_INCREMENT, `disp_order` int(3) DEFAULT NULL, `train_nm` varchar(45) DEFAULT NULL, `train_desc` varchar(200) DEFAULT NULL, `duration` int(5) DEFAULT NULL, `cnt` int(5) DEFAULT NULL, `practical` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorage_trng`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storage_trng_doc` -- DROP TABLE IF EXISTS `storage_trng_doc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storage_trng_doc` ( `idstorage_trng_doc` int(11) NOT NULL AUTO_INCREMENT, `idstorage_trng` int(11) DEFAULT NULL, `disp_order` int(3) DEFAULT NULL, `trng_desc` varchar(100) DEFAULT NULL, `duration` int(11) DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `cloud_link` varchar(100) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorage_trng_doc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages` -- DROP TABLE IF EXISTS `storages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages` ( `idstorages` int(11) NOT NULL AUTO_INCREMENT, `file_name` varchar(100) DEFAULT NULL, `file_ser_name` varchar(100) DEFAULT NULL, `sto_cloud_link` varchar(150) DEFAULT NULL COMMENT 'pub or pvt', `sto_cloud` int(5) DEFAULT NULL, `file_size` int(11) DEFAULT NULL, `file_cnv_size` int(11) DEFAULT NULL, `owner_id` int(11) DEFAULT NULL COMMENT 'C = (cabinet) F = file', `create_dt` datetime DEFAULT NULL, `expire_dt` date DEFAULT NULL, `ext_type` varchar(5) DEFAULT NULL COMMENT '.doc, .xls, etc', `public` char(1) DEFAULT 'N', `self_view` char(1) DEFAULT 'Y', `smry` varchar(95) DEFAULT NULL, `ref_emp_id` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `usage` int(5) DEFAULT NULL, `sto_tags` text, `sto_tag_cnt` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL COMMENT '30 / 60', `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, `chk_del` varchar(45) DEFAULT NULL, `file_cnvt` char(1) DEFAULT NULL, `dis_mir_lvl` int(2) DEFAULT NULL, `chk_sync` char(1) DEFAULT NULL, `chk_sync_date` datetime DEFAULT NULL, `show_list` char(1) DEFAULT NULL COMMENT 'Y or N value, to show in existing file listing for attachment', `1` varchar(45) DEFAULT NULL, `2` varchar(45) DEFAULT NULL, `3` varchar(45) DEFAULT NULL, `4` varchar(45) DEFAULT NULL, `5` varchar(45) DEFAULT NULL, `6` varchar(45) DEFAULT NULL, `8` varchar(45) DEFAULT NULL, `9` varchar(45) DEFAULT NULL, `11` varchar(45) DEFAULT NULL, `12` varchar(45) DEFAULT NULL, `13` varchar(45) DEFAULT NULL, `14` varchar(45) DEFAULT NULL, `15` varchar(45) DEFAULT NULL, `16` varchar(45) DEFAULT NULL, `17` varchar(45) DEFAULT NULL, `19` varchar(45) DEFAULT NULL, `20` varchar(45) DEFAULT NULL, `21` varchar(45) DEFAULT NULL, `22` varchar(45) DEFAULT NULL, `23` varchar(45) DEFAULT NULL, `24` varchar(45) DEFAULT NULL, `25` varchar(45) DEFAULT NULL, `26` varchar(45) DEFAULT NULL, `27` varchar(45) DEFAULT NULL, `28` varchar(45) DEFAULT NULL, `29` varchar(45) DEFAULT NULL, `32` varchar(45) DEFAULT NULL, `35` varchar(45) DEFAULT NULL, `36` varchar(45) DEFAULT NULL, `37` varchar(45) DEFAULT NULL, `38` varchar(45) DEFAULT NULL, `39` varchar(45) DEFAULT NULL, `41` varchar(45) DEFAULT NULL, `43` varchar(45) DEFAULT NULL, `44` varchar(45) DEFAULT NULL, `45` varchar(45) DEFAULT NULL, `46` varchar(45) DEFAULT NULL, `47` varchar(45) DEFAULT NULL, `48` varchar(45) DEFAULT NULL, `49` varchar(45) DEFAULT NULL, `50` varchar(45) DEFAULT NULL, `52` varchar(45) DEFAULT NULL, `53` varchar(45) DEFAULT NULL, `56` varchar(45) DEFAULT NULL, `58` varchar(45) DEFAULT NULL, `59` varchar(45) DEFAULT NULL, `60` varchar(45) DEFAULT NULL, `61` varchar(45) DEFAULT NULL, `62` varchar(45) DEFAULT NULL, `63` varchar(45) DEFAULT NULL, `64` varchar(45) DEFAULT NULL, `65` varchar(45) DEFAULT NULL, `66` varchar(45) DEFAULT NULL, `67` varchar(45) DEFAULT NULL, `68` varchar(45) DEFAULT NULL, `69` varchar(45) DEFAULT NULL, `70` varchar(45) DEFAULT NULL, `71` varchar(45) DEFAULT NULL, `72` varchar(45) DEFAULT NULL, `73` varchar(45) DEFAULT NULL, `74` varchar(45) DEFAULT NULL, `75` varchar(45) DEFAULT NULL, `76` varchar(45) DEFAULT NULL, `77` varchar(45) DEFAULT NULL, `78` varchar(45) DEFAULT NULL, `79` varchar(45) DEFAULT NULL, `80` varchar(45) DEFAULT NULL, PRIMARY KEY (`idstorages`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_access` -- DROP TABLE IF EXISTS `storages_access`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_access` ( `idstorages_access` int(11) NOT NULL AUTO_INCREMENT, `idstorages` int(11) DEFAULT NULL, `access_to` int(11) DEFAULT NULL, `access_type` varchar(10) DEFAULT NULL COMMENT 'View, Edit, Delete', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorages_access`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_audit` -- DROP TABLE IF EXISTS `storages_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_audit` ( `idstorages_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idstorages_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_hist` -- DROP TABLE IF EXISTS `storages_hist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_hist` ( `idstorages_hist` int(11) NOT NULL AUTO_INCREMENT, `idstorages` int(11) DEFAULT NULL, `expire_dt` date DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorages_hist`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_lk` -- DROP TABLE IF EXISTS `storages_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_lk` ( `idstorages_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idstorages_lk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_lk_val` -- DROP TABLE IF EXISTS `storages_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_lk_val` ( `idstorages_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idstorages_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstorages_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_order` -- DROP TABLE IF EXISTS `storages_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_order` ( `idstorages_order` int(11) NOT NULL AUTO_INCREMENT, `create_dt` date DEFAULT NULL, `create_grp` int(11) DEFAULT NULL, `idnet_ser` int(11) DEFAULT NULL, `stored_dt` date DEFAULT NULL, `idstorages` int(11) DEFAULT NULL, `create_stored_dt` int(5) DEFAULT NULL, PRIMARY KEY (`idstorages_order`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `storages_ref` -- DROP TABLE IF EXISTS `storages_ref`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `storages_ref` ( `idstorages_ref` int(11) NOT NULL AUTO_INCREMENT, `idstorages` int(11) DEFAULT NULL, `idlook_menu_pvt_lvl1` int(11) DEFAULT NULL COMMENT 'Agile, Asset, Employee.', `idlook_menu_pvt_lvl2` int(11) DEFAULT NULL COMMENT 'Req, Cube, etc, manage', `sto_tab_nm` varchar(45) DEFAULT NULL COMMENT 'emp_attach, ', `chk_del` varchar(45) DEFAULT NULL, PRIMARY KEY (`idstorages_ref`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `student` -- DROP TABLE IF EXISTS `student`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student` ( `idstudent` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(45) DEFAULT NULL, `last_name` varchar(45) DEFAULT NULL, `nick_name` varchar(45) DEFAULT NULL, `school_nm` int(5) DEFAULT NULL, `dob` date DEFAULT NULL, `gender` int(5) DEFAULT NULL, `idstudent_doc` int(11) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, PRIMARY KEY (`idstudent`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `student_class` -- DROP TABLE IF EXISTS `student_class`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student_class` ( `id_std_class` int(5) NOT NULL AUTO_INCREMENT, `idstudent` int(5) DEFAULT NULL, `std_class` varchar(45) DEFAULT NULL, `from` date DEFAULT NULL, `to` date DEFAULT NULL, PRIMARY KEY (`id_std_class`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `student_class_exam` -- DROP TABLE IF EXISTS `student_class_exam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student_class_exam` ( `id_std_class_exam` int(5) NOT NULL AUTO_INCREMENT, `id_std_class` int(5) DEFAULT NULL, `student_nm` varchar(45) DEFAULT NULL, `dob` varchar(45) DEFAULT NULL, `school_name` varchar(45) DEFAULT NULL, `gender_nm` varchar(45) DEFAULT NULL, `std_class` varchar(45) DEFAULT NULL, `subject` varchar(45) DEFAULT NULL, `marks` int(5) DEFAULT NULL, `result` varchar(45) DEFAULT NULL, `total` int(5) DEFAULT NULL, `percentage` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(5) DEFAULT NULL, PRIMARY KEY (`id_std_class_exam`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `student_lk` -- DROP TABLE IF EXISTS `student_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student_lk` ( `idstudent_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` varchar(45) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstudent_lk`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `student_lk_val` -- DROP TABLE IF EXISTS `student_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student_lk_val` ( `idstudent_lk_value` int(11) NOT NULL AUTO_INCREMENT, `idstudent_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(1) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idstudent_lk_value`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_audit` -- DROP TABLE IF EXISTS `tax_audit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_audit` ( `idtax_audit` int(19) NOT NULL AUTO_INCREMENT, `updated` datetime DEFAULT NULL, `updater` varchar(90) DEFAULT NULL, `table_update` varchar(90) DEFAULT NULL, `action` varchar(5) DEFAULT NULL, `table_id` text, `col1` text, `idlook_menu_pvt_lvl2` int(5) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(11) DEFAULT NULL, PRIMARY KEY (`idtax_audit`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_lk` -- DROP TABLE IF EXISTS `tax_lk`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_lk` ( `idtax_lk` int(11) NOT NULL AUTO_INCREMENT, `lk_nm` varchar(45) DEFAULT NULL, `lk_nm_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, `child_lvl` int(3) DEFAULT NULL, PRIMARY KEY (`idtax_lk`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_lk_val` -- DROP TABLE IF EXISTS `tax_lk_val`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_lk_val` ( `idtax_lk_val` int(11) NOT NULL AUTO_INCREMENT, `idtax_lk` int(11) DEFAULT NULL, `lk_val` varchar(45) DEFAULT NULL, `lk_val_desc` varchar(100) DEFAULT NULL, `disp_order` int(5) DEFAULT NULL, `lk_val_par` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idtax_lk_val`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_reg` -- DROP TABLE IF EXISTS `tax_reg`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_reg` ( `idtax_reg` int(11) NOT NULL AUTO_INCREMENT, `comp_id` int(10) DEFAULT NULL, `state_id` int(11) DEFAULT NULL, `city_id` int(11) DEFAULT NULL, `dept_id` int(11) DEFAULT NULL, `reg_number` varchar(45) DEFAULT NULL, `login_smry` varchar(100) DEFAULT NULL, `login_link` varchar(100) DEFAULT NULL, `comp_open_dt` date DEFAULT NULL, `comp_close_dt` date DEFAULT NULL, `comp_open_close_day` int(7) DEFAULT NULL, `last_updated` datetime DEFAULT NULL, `updated_by` int(11) DEFAULT NULL, `del_dt` datetime DEFAULT NULL, `del_by` int(11) DEFAULT NULL, `del_day` int(5) DEFAULT NULL, `archv_dt` datetime DEFAULT NULL, `archv_by` int(5) DEFAULT NULL, PRIMARY KEY (`idtax_reg`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_reg_alwc` -- DROP TABLE IF EXISTS `tax_reg_alwc`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_reg_alwc` ( `idtax_reg_alwc` int(11) NOT NULL AUTO_INCREMENT, `idtax_reg` int(11) DEFAULT NULL, `alwc_type` int(5) DEFAULT NULL COMMENT 'From tax_lk_val, eg insurance, 401, etc', `allowced` char(1) DEFAULT NULL COMMENT 'Y, N, C\\nY = deduct from gross and then calculate tax', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idtax_reg_alwc`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `tax_reg_rate` -- DROP TABLE IF EXISTS `tax_reg_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `tax_reg_rate` ( `idtax_reg_rate` int(11) NOT NULL AUTO_INCREMENT, `idtax_reg` int(11) DEFAULT NULL, `tax_for` varchar(15) DEFAULT NULL, `creditable` char(1) DEFAULT NULL, `tax_frm_dt` date DEFAULT NULL, `tax_to_dt` date DEFAULT NULL, `tax_frm_to_day` varchar(45) DEFAULT NULL, `tax_limit` varchar(20) DEFAULT NULL, `gender` int(2) DEFAULT NULL, `tax_amt` varchar(20) DEFAULT NULL, `parent_id` int(11) DEFAULT NULL, `tax_type` char(1) DEFAULT NULL COMMENT 'H = Hour, G = Gross', `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idtax_reg_rate`), KEY `fk_taxes_lk_state_idx` (`idtax_reg`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Temporary table structure for view `vw_addresses` -- DROP TABLE IF EXISTS `vw_addresses`; /*!50001 DROP VIEW IF EXISTS `vw_addresses`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_addresses` AS SELECT 1 AS `country_id`, 1 AS `con_name`, 1 AS `con_full_name`, 1 AS `con_code`, 1 AS `lk_design`, 1 AS `lk_design_hex`, 1 AS `con_digit`, 1 AS `state_id`, 1 AS `state_name`, 1 AS `state_full_name`, 1 AS `idlook_county_district`, 1 AS `county_district_city_nm`, 1 AS `city_id`, 1 AS `city_name`, 1 AS `postal_id`, 1 AS `zip_code`, 1 AS `look_street_id`, 1 AS `street_name`, 1 AS `look_street_no_id`, 1 AS `look_street_no`, 1 AS `street_type`, 1 AS `street_type_nm`, 1 AS `street_name_type`, 1 AS `addresses`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_addresses_old` -- DROP TABLE IF EXISTS `vw_addresses_old`; /*!50001 DROP VIEW IF EXISTS `vw_addresses_old`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_addresses_old` AS SELECT 1 AS `country_id`, 1 AS `con_name`, 1 AS `con_full_name`, 1 AS `con_code`, 1 AS `lk_design`, 1 AS `lk_design_hex`, 1 AS `con_digit`, 1 AS `state_id`, 1 AS `state_name`, 1 AS `state_full_name`, 1 AS `idlook_county_district`, 1 AS `county_district_city_nm`, 1 AS `city_id`, 1 AS `city_name`, 1 AS `postal_id`, 1 AS `zip_code`, 1 AS `look_street_id`, 1 AS `street_name`, 1 AS `look_street_no_id`, 1 AS `look_street_no`, 1 AS `street_type`, 1 AS `street_type_nm`, 1 AS `street_name_type`, 1 AS `addresses`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_all_users` -- DROP TABLE IF EXISTS `vw_all_users`; /*!50001 DROP VIEW IF EXISTS `vw_all_users`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_all_users` AS SELECT 1 AS `uid_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `user_name`, 1 AS `encrypt_pswd`, 1 AS `pswd_hint`, 1 AS `status`, 1 AS `expire_hrs`, 1 AS `expire_min`, 1 AS `expire_tm`, 1 AS `idlook_menu_pvt1`, 1 AS `idlook_menu_pvt1_nm`, 1 AS `idlook_menu_pvt2`, 1 AS `idlook_menu_pvt2_nm`, 1 AS `last_clicked`, 1 AS `last_clicked_fmt`, 1 AS `last_updated`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_all_usr_login` -- DROP TABLE IF EXISTS `vw_all_usr_login`; /*!50001 DROP VIEW IF EXISTS `vw_all_usr_login`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_all_usr_login` AS SELECT 1 AS `idall_usr_login`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `idlook_ip_addr`, 1 AS `ip_address`, 1 AS `domain_nm`, 1 AS `ip_country`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `idlook_menu_pvt_lvl1`, 1 AS `main_menu`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `sub_menu`, 1 AS `device_nm`, 1 AS `os_nm`, 1 AS `browser`, 1 AS `lastlogin`, 1 AS `lastlogin_fmt`, 1 AS `lastlogout`, 1 AS `lastlogout_fmt`, 1 AS `logouttype`, 1 AS `logged_in`, 1 AS `logged_in_tm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_all_usr_login_wrk` -- DROP TABLE IF EXISTS `vw_all_usr_login_wrk`; /*!50001 DROP VIEW IF EXISTS `vw_all_usr_login_wrk`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_all_usr_login_wrk` AS SELECT 1 AS `idall_usr_login_wrk`, 1 AS `idall_usr_login`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `idlook_ip_addr`, 1 AS `ip_address`, 1 AS `domain_nm`, 1 AS `ip_contry`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `device_nm`, 1 AS `os_nm`, 1 AS `browser`, 1 AS `lastlogin`, 1 AS `lastlogin_fmt`, 1 AS `lastlogout`, 1 AS `lastlogout_fmt`, 1 AS `logouttype`, 1 AS `page_nm`, 1 AS `table_nm`, 1 AS `page_id`, 1 AS `wrk_ids`, 1 AS `last_clicked`, 1 AS `last_clicked_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_asset_audit` -- DROP TABLE IF EXISTS `vw_asset_audit`; /*!50001 DROP VIEW IF EXISTS `vw_asset_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_asset_audit` AS SELECT 1 AS `idasset_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_acc` -- DROP TABLE IF EXISTS `vw_bank_acc`; /*!50001 DROP VIEW IF EXISTS `vw_bank_acc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_acc` AS SELECT 1 AS `idbank_acc`, 1 AS `acc_owner`, 1 AS `acc_owner_fnm`, 1 AS `acc_owner_nm`, 1 AS `acc_owner_tab`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `comp_acc`, 1 AS `comp_acc_nm`, 1 AS `acc_no`, 1 AS `open_curncy`, 1 AS `acc_open_dt`, 1 AS `acc_open_dt_fmt`, 1 AS `acc_open_dt_yr`, 1 AS `acc_open_dt_mon`, 1 AS `acc_type`, 1 AS `acc_type_nm`, 1 AS `acc_limit`, 1 AS `acc_close_dt`, 1 AS `acc_close_dt_fmt`, 1 AS `acc_close_dt_yr`, 1 AS `acc_close_dt_mon`, 1 AS `mature_dt`, 1 AS `mature_dt_fmt`, 1 AS `mature_dt_yr`, 1 AS `mature_dt_mon`, 1 AS `open_close_dt`, 1 AS `open_close_dt_vir`, 1 AS `contact_info`, 1 AS `open_bal_dt`, 1 AS `open_bal_dt_fmt`, 1 AS `open_bal_amt`, 1 AS `cur_bal_amt`, 1 AS `close_bal_amt`, 1 AS `open_close_amt`, 1 AS `open_close_pcnt`, 1 AS `day_pcnt`, 1 AS `day_rate`, 1 AS `yr_rate`, 1 AS `yr_pcnt`, 1 AS `isu_bal_amt`, 1 AS `isu_bal_dt`, 1 AS `isu_bal_dt_fmt`, 1 AS `clr_bal_amt`, 1 AS `clr_bal_dt`, 1 AS `clr_bal_dt_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `old_isu_dt`, 1 AS `old_clr_dt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_acc_rec` -- DROP TABLE IF EXISTS `vw_bank_acc_rec`; /*!50001 DROP VIEW IF EXISTS `vw_bank_acc_rec`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_acc_rec` AS SELECT 1 AS `idbank_acc_rec`, 1 AS `hist`, 1 AS `idbank_acc`, 1 AS `acc_owner_tab`, 1 AS `acc_owner`, 1 AS `acc_owner_fnm`, 1 AS `acc_owner_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `acc_no`, 1 AS `acc_open_dt`, 1 AS `acc_open_dt_fmt`, 1 AS `acc_close_dt`, 1 AS `acc_close_dt_fmt`, 1 AS `open_close_dt`, 1 AS `open_close_dt_vir`, 1 AS `acc_type`, 1 AS `acc_type_nm`, 1 AS `acc_limit`, 1 AS `isu_bal_amt`, 1 AS `isu_bal_dt`, 1 AS `isu_bal_dt_fmt`, 1 AS `isu_bal_days`, 1 AS `clr_bal_amt`, 1 AS `clr_bal_dt`, 1 AS `clr_bal_dt_fmt`, 1 AS `clr_bal_days`, 1 AS `issue_dt`, 1 AS `issue_dt_fmt`, 1 AS `issue_dt_yr`, 1 AS `issue_dt_mon`, 1 AS `clear_dt`, 1 AS `clear_dt_fmt`, 1 AS `clear_dt_yr`, 1 AS `clear_dt_mon`, 1 AS `isu_clr_dt`, 1 AS `isu_clr_dt_vir`, 1 AS `check_no`, 1 AS `check_amt`, 1 AS `check_amt_fmt`, 1 AS `rec_type`, 1 AS `check_type`, 1 AS `check_type_nm`, 1 AS `trans_ref_tab`, 1 AS `trans_ref_id`, 1 AS `trans_fnm`, 1 AS `trans_nm`, 1 AS `record_for`, 1 AS `lvl1`, 1 AS `wrk_flow_nm`, 1 AS `idbank_lk_val_lvl1`, 1 AS `bank_lk_val_lvl1_nm`, 1 AS `lvl2`, 1 AS `idbank_lk_val_lvl2`, 1 AS `bank_lk_val_lvl2_nm`, 1 AS `lvl3`, 1 AS `idbank_lk_val_lvl3`, 1 AS `idbank_lk_val_lvl3_nm`, 1 AS `rec_smry`, 1 AS `record_for_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_audit` -- DROP TABLE IF EXISTS `vw_bank_audit`; /*!50001 DROP VIEW IF EXISTS `vw_bank_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_audit` AS SELECT 1 AS `idbank_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_bud` -- DROP TABLE IF EXISTS `vw_bank_bud`; /*!50001 DROP VIEW IF EXISTS `vw_bank_bud`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_bud` AS SELECT 1 AS `idbank_bud`, 1 AS `bud_for_tab`, 1 AS `bud_ref_id`, 1 AS `bud_ref_fnm`, 1 AS `bud_ref_nm`, 1 AS `bud_open_dt`, 1 AS `bud_open_dt_fmt`, 1 AS `bud_open_yr`, 1 AS `bud_open_mon`, 1 AS `bud_close_dt`, 1 AS `bud_close_dt_fmt`, 1 AS `bud_close_yr`, 1 AS `bud_close_mon`, 1 AS `bud_limit`, 1 AS `bud_limit_fmt`, 1 AS `bud_bal`, 1 AS `bud_bal_fmt`, 1 AS `bud_bal_dt`, 1 AS `bud_bal_dt_fmt`, 1 AS `bud_bal_yr`, 1 AS `bud_bal_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `old_bud_dt`, 1 AS `old_bud_dt_fmt`, 1 AS `old_bud_dt_yr`, 1 AS `old_bud_dt_mon`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_bud_rec` -- DROP TABLE IF EXISTS `vw_bank_bud_rec`; /*!50001 DROP VIEW IF EXISTS `vw_bank_bud_rec`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_bud_rec` AS SELECT 1 AS `idbank_bud_rec`, 1 AS `idbank_bud`, 1 AS `bud_for_tab`, 1 AS `bud_ref_id`, 1 AS `bud_ref_fnm`, 1 AS `bud_ref_nm`, 1 AS `bud_open_dt`, 1 AS `bud_open_dt_fmt`, 1 AS `bud_close_dt`, 1 AS `bud_close_dt_fmt`, 1 AS `bud_limit`, 1 AS `bud_limit_fmt`, 1 AS `bud_bal`, 1 AS `bud_bal_fmt`, 1 AS `bud_bal_dt`, 1 AS `bud_bal_dt_fmt`, 1 AS `trans_ref_tab`, 1 AS `trans_ref_id`, 1 AS `trans_ref_fnm`, 1 AS `trans_ref_nm`, 1 AS `rec_dt`, 1 AS `rec_dt_fmt`, 1 AS `rec_dt_yr`, 1 AS `rec_dt_mon`, 1 AS `rec_amt`, 1 AS `rec_amt_fmt`, 1 AS `rec_type`, 1 AS `rec_type_nm`, 1 AS `record_for`, 1 AS `record_for_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_bud_rec_bal` -- DROP TABLE IF EXISTS `vw_bank_bud_rec_bal`; /*!50001 DROP VIEW IF EXISTS `vw_bank_bud_rec_bal`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_bud_rec_bal` AS SELECT 1 AS `idbank_bud_rec_bal`, 1 AS `idbank_bud`, 1 AS `bud_for_tab`, 1 AS `bud_ref_id`, 1 AS `bud_ref_fnm`, 1 AS `bud_ref_nm`, 1 AS `bud_open_dt`, 1 AS `bud_open_dt_fmt`, 1 AS `bud_close_dt`, 1 AS `bud_close_dt_fmt`, 1 AS `bud_limit`, 1 AS `bud_limit_fmt`, 1 AS `bud_bal`, 1 AS `bud_bal_fmt`, 1 AS `bud_bal_dt`, 1 AS `bud_bal_dt_fmt`, 1 AS `old_bud_dt`, 1 AS `old_bud_dt_fmt`, 1 AS `consol_dt`, 1 AS `consol_dt_fmt`, 1 AS `bank_depo`, 1 AS `bank_depo_fmt`, 1 AS `bank_draw`, 1 AS `bank_draw_fmt`, 1 AS `bank_bal`, 1 AS `bank_bal_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_lk_flw` -- DROP TABLE IF EXISTS `vw_bank_lk_flw`; /*!50001 DROP VIEW IF EXISTS `vw_bank_lk_flw`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_lk_flw` AS SELECT 1 AS `idbank_lk_flw`, 1 AS `wrk_flow_nm`, 1 AS `idbank_lk_val`, 1 AS `look_value`, 1 AS `flw_desc`, 1 AS `idflow_par`, 1 AS `look_initial`, 1 AS `disp_order`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_bank_lk_flw2` -- DROP TABLE IF EXISTS `vw_bank_lk_flw2`; /*!50001 DROP VIEW IF EXISTS `vw_bank_lk_flw2`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_bank_lk_flw2` AS SELECT 1 AS `lvl1`, 1 AS `wrk_flow_nm`, 1 AS `idbank_lk_val_lvl1`, 1 AS `idbank_lk_val_lvl1_nm`, 1 AS `idflow_par`, 1 AS `look_initial`, 1 AS `disp_order`, 1 AS `lvl2`, 1 AS `idbank_lk_val_lvl2`, 1 AS `bank_lk_val_lvl2_nm`, 1 AS `lvl3`, 1 AS `idbank_lk_val_lvl3`, 1 AS `bank_lk_val_lvl3_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_active` -- DROP TABLE IF EXISTS `vw_comp_active`; /*!50001 DROP VIEW IF EXISTS `vw_comp_active`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_active` AS SELECT 1 AS `idcomp_active`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `comp_website`, 1 AS `comp_background`, 1 AS `active_type`, 1 AS `publish`, 1 AS `manage_by`, 1 AS `manage_by_fnm`, 1 AS `manage_by_nm`, 1 AS `client_since`, 1 AS `client_since_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_address` -- DROP TABLE IF EXISTS `vw_comp_address`; /*!50001 DROP VIEW IF EXISTS `vw_comp_address`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_address` AS SELECT 1 AS `comp_add_id`, 1 AS `comp_id`, 1 AS `comp_logo`, 1 AS `companyname`, 1 AS `look_street_no_id`, 1 AS `addresses`, 1 AS `suite_no`, 1 AS `house_apt_type`, 1 AS `house_apt_nm`, 1 AS `add_type`, 1 AS `from_dt`, 1 AS `from_dt_yr`, 1 AS `from_dt_mon`, 1 AS `from_dt_fmt`, 1 AS `to_dt`, 1 AS `to_dt_yr`, 1 AS `to_dt_mon`, 1 AS `to_dt_fmt`, 1 AS `from_to_dt`, 1 AS `from_to_dt_vir`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_audit` -- DROP TABLE IF EXISTS `vw_comp_audit`; /*!50001 DROP VIEW IF EXISTS `vw_comp_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_audit` AS SELECT 1 AS `idcomp_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_contact` -- DROP TABLE IF EXISTS `vw_comp_contact`; /*!50001 DROP VIEW IF EXISTS `vw_comp_contact`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_contact` AS SELECT 1 AS `comp_contact_id`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `title`, 1 AS `all_contacts`, 1 AS `description`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_contact_no` -- DROP TABLE IF EXISTS `vw_comp_contact_no`; /*!50001 DROP VIEW IF EXISTS `vw_comp_contact_no`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_contact_no` AS SELECT 1 AS `comp_contact_no_id`, 1 AS `comp_contact_id`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `title`, 1 AS `emp_contact_id`, 1 AS `contact_id`, 1 AS `emp_contact_type`, 1 AS `emp_contact_type_nm`, 1 AS `contact_detail`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_doc` -- DROP TABLE IF EXISTS `vw_comp_doc`; /*!50001 DROP VIEW IF EXISTS `vw_comp_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_doc` AS SELECT 1 AS `idcomp_doc`, 1 AS `comp_id`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_lk_val` -- DROP TABLE IF EXISTS `vw_comp_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_comp_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_lk_val` AS SELECT 1 AS `idcomp_lk_val`, 1 AS `idcomp_lk`, 1 AS `lk_val_par`, 1 AS `lk_val`, 1 AS `child_lvl`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_trng` -- DROP TABLE IF EXISTS `vw_comp_trng`; /*!50001 DROP VIEW IF EXISTS `vw_comp_trng`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_trng` AS SELECT 1 AS `idcomp_trng`, 1 AS `disp_order`, 1 AS `train_nm`, 1 AS `train_desc`, 1 AS `duration`, 1 AS `cnt`, 1 AS `practical`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_comp_trng_doc` -- DROP TABLE IF EXISTS `vw_comp_trng_doc`; /*!50001 DROP VIEW IF EXISTS `vw_comp_trng_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_comp_trng_doc` AS SELECT 1 AS `idcomp_trng_doc`, 1 AS `idcomp_trng`, 1 AS `train_nm`, 1 AS `train_desc`, 1 AS `disp_order`, 1 AS `trng_desc`, 1 AS `duration`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `cloud_link`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_company` -- DROP TABLE IF EXISTS `vw_company`; /*!50001 DROP VIEW IF EXISTS `vw_company`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_company` AS SELECT 1 AS `comp_id`, 1 AS `idstorages`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `comp_tax_id`, 1 AS `company_info`, 1 AS `comp_website`, 1 AS `comp_phone`, 1 AS `comp_email`, 1 AS `all_contacts`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_contact_no` -- DROP TABLE IF EXISTS `vw_contact_no`; /*!50001 DROP VIEW IF EXISTS `vw_contact_no`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_contact_no` AS SELECT 1 AS `contact_id`, 1 AS `country_id`, 1 AS `con_name`, 1 AS `con_full_name`, 1 AS `lk_design`, 1 AS `con_code`, 1 AS `con_digit`, 1 AS `contact_type`, 1 AS `contact_detail`, 1 AS `contact_cnt`, 1 AS `contact_smry`, 1 AS `contact_stat`, 1 AS `contact_stat_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_apps` -- DROP TABLE IF EXISTS `vw_dev_apps`; /*!50001 DROP VIEW IF EXISTS `vw_dev_apps`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_apps` AS SELECT 1 AS `iddev_apps`, 1 AS `disp_order`, 1 AS `app_name`, 1 AS `app_skill_avg`, 1 AS `app_gap_avg`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_st_dt_yr`, 1 AS `app_st_dt_mon`, 1 AS `comp_id`, 1 AS `companyname`, 1 AS `comp_fnm`, 1 AS `app_description`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `dev_apps_cur_stat`, 1 AS `app_e_dt_yr`, 1 AS `app_e_dt_mon`, 1 AS `app_stat_tm`, 1 AS `app_stat_tm_vir`, 1 AS `app_lag_tm`, 1 AS `app_lag_tm_vir`, 1 AS `app_est_cnt`, 1 AS `app_est_tol`, 1 AS `app_est_cnt_tol`, 1 AS `app_est_pcnt`, 1 AS `app_est_req_cnt`, 1 AS `app_est_req_tol`, 1 AS `app_est_req_cnt_tol`, 1 AS `app_est_req_pcnt`, 1 AS `app_est_req_stat_cnt`, 1 AS `app_est_req_stat_tol`, 1 AS `app_est_req_stat_cnt_tol`, 1 AS `app_est_req_stat_pcnt`, 1 AS `app_case_cnt`, 1 AS `app_case_tol`, 1 AS `app_case_cnt_tol`, 1 AS `app_case_pcnt`, 1 AS `app_case_atmpt`, 1 AS `app_bud_amt`, 1 AS `app_use_amt`, 1 AS `app_bud_use_amt`, 1 AS `app_use_pcnt`, 1 AS `app_bud_bal`, 1 AS `app_bud_pcnt`, 1 AS `app_pay_amt`, 1 AS `app_pay_bal`, 1 AS `app_pay_pcnt`, 1 AS `app_bal_amt`, 1 AS `app_bal_pcnt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_yr`, 1 AS `last_updated_mon`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_apps_doc` -- DROP TABLE IF EXISTS `vw_dev_apps_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_apps_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_apps_doc` AS SELECT 1 AS `iddev_app_doc`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_audit` -- DROP TABLE IF EXISTS `vw_dev_audit`; /*!50001 DROP VIEW IF EXISTS `vw_dev_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_audit` AS SELECT 1 AS `iddev_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est` -- DROP TABLE IF EXISTS `vw_dev_est`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est` AS SELECT 1 AS `iddev_est`, 1 AS `attach`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `dev_apps_cur_stat`, 1 AS `comp_id`, 1 AS `comp_logo`, 1 AS `companyname`, 1 AS `app_est_cnt_tol`, 1 AS `app_est_pcnt`, 1 AS `app_bud_amt`, 1 AS `app_use_amt`, 1 AS `app_bud_use_amt`, 1 AS `app_use_pcnt`, 1 AS `app_bud_bal`, 1 AS `app_bud_pcnt`, 1 AS `app_pay_amt`, 1 AS `app_pay_bal`, 1 AS `app_pay_pcnt`, 1 AS `app_bal_amt`, 1 AS `app_bal_pcnt`, 1 AS `est_st_dt`, 1 AS `est_st_dt_fmt`, 1 AS `est_st_dt_yr`, 1 AS `est_st_dt_mon`, 1 AS `dev_est_smry`, 1 AS `est_e_dt`, 1 AS `est_e_dt_fmt`, 1 AS `dev_est_cur_stat`, 1 AS `est_e_dt_yr`, 1 AS `est_e_dt_mon`, 1 AS `est_time`, 1 AS `est_time_vir`, 1 AS `est_lag_tm`, 1 AS `est_lag_tm_vir`, 1 AS `owner_ref_tab`, 1 AS `owner_ref_id`, 1 AS `owner_fnm`, 1 AS `owner_ref_nm`, 1 AS `est_ref_tab`, 1 AS `est_ref_id`, 1 AS `est_fnm`, 1 AS `est_ref_nm`, 1 AS `priority`, 1 AS `priority_nm`, 1 AS `category`, 1 AS `category_nm`, 1 AS `est_skill`, 1 AS `est_gap_lvl`, 1 AS `est_type`, 1 AS `est_req_cnt`, 1 AS `est_req_tol`, 1 AS `est_req_cnt_tol`, 1 AS `est_req_pcnt`, 1 AS `est_req_stat_cnt`, 1 AS `est_req_stat_tol`, 1 AS `est_req_stat_cnt_tol`, 1 AS `est_req_stat_pcnt`, 1 AS `est_case_cnt`, 1 AS `est_case_tol`, 1 AS `est_case_cnt_tol`, 1 AS `est_case_pcnt`, 1 AS `est_case_atmpt`, 1 AS `est_bud_amt`, 1 AS `est_use_amt`, 1 AS `est_bud_use_amt`, 1 AS `est_use_pcnt`, 1 AS `est_bud_bal`, 1 AS `est_bud_pcnt`, 1 AS `est_pay_amt`, 1 AS `est_pay_bal`, 1 AS `est_pay_pcnt`, 1 AS `est_bal_amt`, 1 AS `est_bal_pcnt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_yr`, 1 AS `last_updated_mon`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `old_est_dt`, 1 AS `old_req_dt`, 1 AS `run_func`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_access` -- DROP TABLE IF EXISTS `vw_dev_est_access`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_access` AS SELECT 1 AS `iddev_est_access`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `iddev_apps_name`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `app_stat_tm`, 1 AS `app_stat_tm_vir`, 1 AS `app_lag_tm`, 1 AS `app_lag_tm_vir`, 1 AS `app_cur_stat`, 1 AS `companyname`, 1 AS `comp_logo`, 1 AS `app_description`, 1 AS `app_case_atmpt`, 1 AS `iddev_est`, 1 AS `dev_est_smry`, 1 AS `iddev_est_smry`, 1 AS `est_st_dt`, 1 AS `est_st_dt_fmt`, 1 AS `est_e_dt`, 1 AS `est_e_dt_fmt`, 1 AS `est_cur_stat`, 1 AS `est_time`, 1 AS `est_time_vir`, 1 AS `est_lag_tm`, 1 AS `owner_ref_tab`, 1 AS `owner_ref_id`, 1 AS `owner_fnm`, 1 AS `owner_ref_nm`, 1 AS `est_ref_tab`, 1 AS `est_ref_id`, 1 AS `est_fnm`, 1 AS `est_ref_nm`, 1 AS `dev_est_emp_id`, 1 AS `access_to_fnm`, 1 AS `dev_est_emp_id_nm`, 1 AS `nickname`, 1 AS `dev_app_access`, 1 AS `dev_est_access`, 1 AS `dev_est_req_access`, 1 AS `dev_est_reqs_case_access`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `dev_est_del_dt`, 1 AS `dev_est_del_dt_fmt`, 1 AS `dev_est_del_by`, 1 AS `dev_est_del_by_fnm`, 1 AS `dev_est_del_by_nm`, 1 AS `dev_est_del_stat`, 1 AS `dev_est_archv_dt`, 1 AS `dev_est_archv_dt_fmt`, 1 AS `dev_est_archv_by`, 1 AS `dev_est_archv_by_fnm`, 1 AS `dev_est_archv_by_nm`, 1 AS `dev_est_archv_stat`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_doc` -- DROP TABLE IF EXISTS `vw_dev_est_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_doc` AS SELECT 1 AS `iddev_est_doc`, 1 AS `iddev_est`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs` -- DROP TABLE IF EXISTS `vw_dev_est_reqs`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs` AS SELECT 1 AS `iddev_est_reqs`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `dev_apps_cur_stat`, 1 AS `iddev_est`, 1 AS `dev_est_smry`, 1 AS `est_st_dt`, 1 AS `est_st_dt_fmt`, 1 AS `est_e_dt`, 1 AS `est_e_dt_fmt`, 1 AS `dev_est_cur_stat`, 1 AS `est_time`, 1 AS `est_time_vir`, 1 AS `owner_ref_tab`, 1 AS `owner_ref_id`, 1 AS `owner_fnm`, 1 AS `owner_ref_nm`, 1 AS `est_ref_tab`, 1 AS `est_ref_id`, 1 AS `est_fnm`, 1 AS `est_ref_nm`, 1 AS `est_type`, 1 AS `priority`, 1 AS `priority_nm`, 1 AS `category`, 1 AS `category_nm`, 1 AS `est_req_cnt`, 1 AS `est_req_tol`, 1 AS `est_req_cnt_tol`, 1 AS `est_req_pcnt`, 1 AS `req_st_dt`, 1 AS `req_st_dt_fmt`, 1 AS `req_st_dt_yr`, 1 AS `req_st_dt_mon`, 1 AS `req_e_dt`, 1 AS `req_e_dt_fmt`, 1 AS `dev_est_reqs_cur_stat`, 1 AS `req_e_dt_yr`, 1 AS `req_e_dt_mon`, 1 AS `req_time`, 1 AS `req_time_vir`, 1 AS `req_lag_tm`, 1 AS `req_lag_tm_vir`, 1 AS `disp_order`, 1 AS `req_desc`, 1 AS `skill_lvl`, 1 AS `skill_lvl_nm`, 1 AS `gap_lvl`, 1 AS `gap_lvl_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `iddev_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `wrk_flow_desc`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `idlook_stat_order`, 1 AS `req_stat_st_dt`, 1 AS `req_stat_st_dt_fmt`, 1 AS `req_stat_e_dt`, 1 AS `req_stat_e_dt_fmt`, 1 AS `req_stat_time`, 1 AS `req_stat_time_vir`, 1 AS `req_stat_e_dt_pre`, 1 AS `req_stat_e_dt_pre_fmt`, 1 AS `req_stat_lag_tm`, 1 AS `req_stat_lag_tm_vir`, 1 AS `assigned_to`, 1 AS `assigned_to_fnm`, 1 AS `assigned_to_nm`, 1 AS `req_stat_cnt`, 1 AS `req_stat_tol`, 1 AS `req_stat_cnt_tol`, 1 AS `req_stat_pcnt`, 1 AS `req_case_cnt`, 1 AS `req_case_tol`, 1 AS `req_case_cnt_tol`, 1 AS `req_case_pcnt`, 1 AS `req_cases`, 1 AS `req_case_atmpt`, 1 AS `req_bud_amt`, 1 AS `req_use_amt`, 1 AS `req_bud_use_amt`, 1 AS `req_use_pcnt`, 1 AS `req_bud_bal`, 1 AS `req_bud_pcnt`, 1 AS `req_pay_amt`, 1 AS `req_pay_bal`, 1 AS `req_pay_pcnt`, 1 AS `req_bal_amt`, 1 AS `req_bal_pcnt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `rpt_req_stat_by`, 1 AS `rpt_req_stat_by_nm`, 1 AS `rpt_req_stat_id`, 1 AS `rpt_req_stat_id_nm`, 1 AS `rpt_req_stat_lag_tm`, 1 AS `rpt_req_stat_time`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_case` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_case`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_case` AS SELECT 1 AS `iddev_est_reqs_case`, 1 AS `iddev_est_reqs`, 1 AS `iddev_est`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `est_st_dt_fmt`, 1 AS `est_e_dt_fmt`, 1 AS `est_time_vir`, 1 AS `req_st_dt`, 1 AS `req_st_dt_fmt`, 1 AS `req_e_dt`, 1 AS `req_e_dt_fmt`, 1 AS `req_time_vir`, 1 AS `priority_nm`, 1 AS `category_nm`, 1 AS `skill_lvl_nm`, 1 AS `gap_lvl_nm`, 1 AS `req_type_nm`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `req_desc`, 1 AS `dev_est_smry`, 1 AS `created_by_fnm`, 1 AS `created_by`, 1 AS `created_by_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `create_dt_yr`, 1 AS `create_dt_mon`, 1 AS `create_end_dt`, 1 AS `create_end_dt_fmt`, 1 AS `create_end_dt_yr`, 1 AS `create_end_dt_mon`, 1 AS `create_time`, 1 AS `create_time_vir`, 1 AS `disp_order`, 1 AS `reqs_cases`, 1 AS `case_data`, 1 AS `case_result_desc`, 1 AS `case_cnt`, 1 AS `case_status`, 1 AS `case_status_name`, 1 AS `executed_by`, 1 AS `executed_by_fnm`, 1 AS `executed_by_nm`, 1 AS `execute_dt`, 1 AS `execute_dt_fmt`, 1 AS `req_stat_cnt_tol`, 1 AS `req_stat_pcnt`, 1 AS `req_case_cnt_tol`, 1 AS `req_case_pcnt`, 1 AS `updated_by`, 1 AS `updater_fnm`, 1 AS `updated_by_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `est_ref_nm`, 1 AS `est_fnm`, 1 AS `owner_ref_nm`, 1 AS `owner_fnm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_case_doc` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_case_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_case_doc` AS SELECT 1 AS `iddev_est_reqs_case_doc`, 1 AS `iddev_est_reqs_case`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_case_result` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_case_result`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_result`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_case_result` AS SELECT 1 AS `iddev_est_reqs_case_result`, 1 AS `iddev_est_reqs_case`, 1 AS `iddev_est_reqs`, 1 AS `req_desc`, 1 AS `iddev_est`, 1 AS `iddev_apps`, 1 AS `case_result_desc_cases`, 1 AS `case_data`, 1 AS `case_result_desc`, 1 AS `case_status`, 1 AS `case_status_nm`, 1 AS `executed_by`, 1 AS `executed_by_fnm`, 1 AS `executed_by_nm`, 1 AS `execute_dt`, 1 AS `execute_dt_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_case_result_doc` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_case_result_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_result_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_case_result_doc` AS SELECT 1 AS `iddev_est_reqs_case_result_doc`, 1 AS `iddev_est_reqs_case_result`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_doc` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_doc` AS SELECT 1 AS `iddev_est_reqs_doc`, 1 AS `iddev_est_reqs`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_stat_amt` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_stat_amt`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_stat_amt`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_stat_amt` AS SELECT 1 AS `iddev_est_reqs_stat_amt`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `iddev_est`, 1 AS `dev_est_smry`, 1 AS `owner_ref_tab`, 1 AS `owner_ref_id`, 1 AS `owner_ref_fnm`, 1 AS `owner_ref_nm`, 1 AS `est_ref_tab`, 1 AS `est_ref_id`, 1 AS `est_ref_fnm`, 1 AS `est_ref_nm`, 1 AS `category`, 1 AS `category_nm`, 1 AS `iddev_est_reqs`, 1 AS `req_st_dt`, 1 AS `req_st_dt_fmt`, 1 AS `req_e_dt`, 1 AS `req_e_dt_fmt`, 1 AS `req_desc`, 1 AS `iddev_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `iddev_est_reqs_status`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `stat_st_dt`, 1 AS `stat_st_dt_fmt`, 1 AS `stat_st_yr`, 1 AS `stat_st_mon`, 1 AS `stat_e_dt`, 1 AS `stat_e_dt_fmt`, 1 AS `stat_e_yr`, 1 AS `stat_e_mon`, 1 AS `stat_time`, 1 AS `stat_time_vir`, 1 AS `stat_lag_time`, 1 AS `stat_lag_time_vir`, 1 AS `stat_e_dt_pre`, 1 AS `stat_e_dt_pre_fmt`, 1 AS `assigned_to`, 1 AS `assigned_to_fnm`, 1 AS `assigned_to_nm`, 1 AS `hist_cnt`, 1 AS `reqs_quote_by`, 1 AS `reqs_quote_by_fnm`, 1 AS `reqs_quote_by_nm`, 1 AS `reqs_quote_dt`, 1 AS `reqs_quote_dt_fmt`, 1 AS `reqs_quote_dt_yr`, 1 AS `reqs_quote_dt_mon`, 1 AS `req_stat_amt`, 1 AS `req_action_by`, 1 AS `req_action_by_fnm`, 1 AS `req_action_by_nm`, 1 AS `req_action`, 1 AS `req_action_nm`, 1 AS `req_stat_paid`, 1 AS `req_stat_bal`, 1 AS `cur_stat`, 1 AS `cur_stat_nm`, 1 AS `cur_assigned_to`, 1 AS `cur_assigned_to_fnm`, 1 AS `cur_assigned_to_nm`, 1 AS `cur_stat_st_dt`, 1 AS `cur_stat_st_dt_fmt`, 1 AS `cur_stat_e_dt`, 1 AS `cur_stat_e_dt_fmt`, 1 AS `cur_stat_tm`, 1 AS `cur_stat_tm_vir`, 1 AS `cur_stat_lag_tm`, 1 AS `cur_stat_lag_tm_vir`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `skill_lvl`, 1 AS `skill_lvl_nm`, 1 AS `gap_lvl`, 1 AS `gap_lvl_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_stat_amt_hist` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_stat_amt_hist`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_stat_amt_hist`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_stat_amt_hist` AS SELECT 1 AS `iddev_est_reqs_stat_amt_hist`, 1 AS `iddev_est_reqs_stat_amt`, 1 AS `req_amt_old`, 1 AS `req_amt_smry`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_status` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_status`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_status` AS SELECT 1 AS `iddev_est_reqs_status`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `dev_apps_cur_stat`, 1 AS `iddev_est`, 1 AS `dev_est_smry`, 1 AS `est_st_dt`, 1 AS `est_st_dt_fmt`, 1 AS `est_e_dt`, 1 AS `est_e_dt_fmt`, 1 AS `dev_est_cur_stat`, 1 AS `owner_ref_tab`, 1 AS `owner_ref_id`, 1 AS `owner_fnm`, 1 AS `owner_ref_nm`, 1 AS `est_ref_tab`, 1 AS `est_ref_id`, 1 AS `est_fnm`, 1 AS `est_ref_nm`, 1 AS `category`, 1 AS `category_nm`, 1 AS `est_type`, 1 AS `iddev_est_reqs`, 1 AS `req_st_dt`, 1 AS `req_st_dt_fmt`, 1 AS `req_st_dt_yr`, 1 AS `req_st_dt_mon`, 1 AS `req_e_dt`, 1 AS `req_e_dt_fmt`, 1 AS `dev_est_reqs_cur_stat`, 1 AS `iddev_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `req_e_dt_yr`, 1 AS `req_e_dt_mon`, 1 AS `req_time`, 1 AS `req_time_vir`, 1 AS `req_desc`, 1 AS `skill_lvl`, 1 AS `skill_lvl_nm`, 1 AS `gap_lvl`, 1 AS `gap_lvl_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `idlook_stat_order`, 1 AS `stat_e_dt_pre`, 1 AS `stat_e_dt_pre_fmt`, 1 AS `stat_lag_time`, 1 AS `stat_lag_time_vir`, 1 AS `stat_st_dt`, 1 AS `stat_st_dt_fmt`, 1 AS `stat_st_dt_yr`, 1 AS `stat_st_dt_mon`, 1 AS `stat_e_dt`, 1 AS `stat_e_dt_fmt`, 1 AS `stat_time`, 1 AS `stat_time_vir`, 1 AS `dev_est_reqs_status_cur_stat`, 1 AS `assigned_to`, 1 AS `assigned_to_fnm`, 1 AS `assigned_to_nm`, 1 AS `req_stat_amt`, 1 AS `req_stat_paid`, 1 AS `req_stat_paid_amt`, 1 AS `req_stat_paid_pcnt`, 1 AS `req_stat_bal`, 1 AS `req_stat_bal_amt`, 1 AS `req_stat_bal_pcnt`, 1 AS `nickname`, 1 AS `cur_stat`, 1 AS `cur_stat_nm`, 1 AS `cur_req_stat_e_dt_pre`, 1 AS `cur_req_stat_e_dt_pre_fmt`, 1 AS `cur_stat_lag_tm`, 1 AS `cur_stat_lag_tm_vir`, 1 AS `cur_req_stat_st_dt`, 1 AS `cur_stat_st_dt_fmt`, 1 AS `cur_req_stat_e_dt`, 1 AS `cur_stat_e_dt_fmt`, 1 AS `cur_stat_tm`, 1 AS `cur_stat_tm_vir`, 1 AS `req_stat_cnt`, 1 AS `req_stat_tol`, 1 AS `req_stat_cnt_tol`, 1 AS `req_stat_pcnt`, 1 AS `req_case_cnt`, 1 AS `req_case_tol`, 1 AS `req_case_cnt_tol`, 1 AS `req_case_pcnt`, 1 AS `req_cases`, 1 AS `req_case_atmpt`, 1 AS `cur_assigned_to`, 1 AS `cur_assigned_to_fnm`, 1 AS `cur_assigned_to_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_status_forcast` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_status_forcast`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_status_forcast` AS SELECT 1 AS `iddev_est_reqs_status_forcast`, 1 AS `iddev_apps`, 1 AS `app_name`, 1 AS `app_st_dt`, 1 AS `app_st_dt_fmt`, 1 AS `app_e_dt`, 1 AS `app_e_dt_fmt`, 1 AS `dev_apps_cur_stat`, 1 AS `iddev_est`, 1 AS `est_st_dt`, 1 AS `est_st_dt_fmt`, 1 AS `est_e_dt`, 1 AS `est_e_dt_fmt`, 1 AS `dev_est_cur_stat`, 1 AS `est_type`, 1 AS `category`, 1 AS `category_nm`, 1 AS `est_ref_id`, 1 AS `est_ref_tab`, 1 AS `est_fnm`, 1 AS `est_ref_nm`, 1 AS `owner_ref_id`, 1 AS `owner_ref_tab`, 1 AS `owner_fnm`, 1 AS `owner_ref_nm`, 1 AS `dev_est_smry`, 1 AS `iddev_est_reqs`, 1 AS `req_desc`, 1 AS `req_st_dt`, 1 AS `req_st_dt_fmt`, 1 AS `req_e_dt`, 1 AS `req_e_dt_fmt`, 1 AS `dev_est_reqs_cur_stat`, 1 AS `iddev_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `req_time`, 1 AS `req_time_vir`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `skill_lvl`, 1 AS `skill_lvl_nm`, 1 AS `gap_lvl`, 1 AS `gap_lvl_nm`, 1 AS `iddev_est_reqs_status`, 1 AS `stat_e_dt_act_pre`, 1 AS `stat_e_dt_act_pre_fmt`, 1 AS `stat_lag_time`, 1 AS `stat_lag_time_vir`, 1 AS `stat_st_dt_act`, 1 AS `stat_st_dt_act_fmt`, 1 AS `stat_e_dt_act`, 1 AS `stat_e_dt_act_fmt`, 1 AS `req_stat_time`, 1 AS `req_stat_time_vir`, 1 AS `assigned_to_act`, 1 AS `assigned_to_act_fnm`, 1 AS `assigned_to_act_nm`, 1 AS `iddev_est_reqs_status_nm`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `idlook_stat_order`, 1 AS `for_stat_e_dt_pre`, 1 AS `for_stat_e_dt_pre_fmt`, 1 AS `for_lag_time`, 1 AS `for_lag_time_vir`, 1 AS `for_stat_st_dt`, 1 AS `for_stat_st_dt_fmt`, 1 AS `for_stat_st_yr`, 1 AS `for_stat_st_mon`, 1 AS `for_stat_e_dt`, 1 AS `for_stat_e_dt_fmt`, 1 AS `dev_est_reqs_status_forcast_cur_stat`, 1 AS `for_stat_e_yr`, 1 AS `for_stat_e_mon`, 1 AS `for_stat_time`, 1 AS `for_stat_time_vir`, 1 AS `for_req_bud_amt`, 1 AS `for_req_bud_amt_nm`, 1 AS `for_amt_dt`, 1 AS `for_amt_dt_fmt`, 1 AS `for_amt_temp_dt`, 1 AS `req_stat_amt`, 1 AS `req_stat_amt_nm`, 1 AS `for_req_bud_stat_amt`, 1 AS `for_req_bud_stat_amt_pcnt`, 1 AS `req_stat_paid`, 1 AS `req_stat_paid_nm`, 1 AS `req_stat_paid_amt`, 1 AS `req_stat_paid_amt_pcnt`, 1 AS `req_stat_bal`, 1 AS `req_stat_bal_nm`, 1 AS `req_stat_bal_amt`, 1 AS `req_stat_bal_amt_pcnt`, 1 AS `hist_cnt`, 1 AS `for_req_bud_amt_updater`, 1 AS `for_req_bud_amt_updater_fnm`, 1 AS `for_req_bud_amt_updater_nm`, 1 AS `for_req_bud_amt_updated`, 1 AS `for_req_bud_amt_updated_fmt`, 1 AS `assigned_to`, 1 AS `assigned_to_fnm`, 1 AS `assigned_to_nm`, 1 AS `forecast_smry`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_status_forcast_hist` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_status_forcast_hist`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast_hist`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_status_forcast_hist` AS SELECT 1 AS `iddev_est_reqs_status_forcast_hist`, 1 AS `iddev_est_reqs_status_forcast`, 1 AS `forecast_req_bud_amt_old`, 1 AS `forecast_smry_old`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_status_forcast_steps` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_status_forcast_steps`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast_steps`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_status_forcast_steps` AS SELECT 1 AS `iddev_est_reqs_status_forcast_steps`, 1 AS `iddev_est_reqs`, 1 AS `dev_steps_details`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_est_reqs_status_steps` -- DROP TABLE IF EXISTS `vw_dev_est_reqs_status_steps`; /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_steps`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_est_reqs_status_steps` AS SELECT 1 AS `iddev_est_req_status_steps`, 1 AS `iddev_est_reqs_status`, 1 AS `iddev_est_reqs`, 1 AS `req_status`, 1 AS `req_status_nm`, 1 AS `dev_steps_details`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_lk_label` -- DROP TABLE IF EXISTS `vw_dev_lk_label`; /*!50001 DROP VIEW IF EXISTS `vw_dev_lk_label`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_lk_label` AS SELECT 1 AS `iddev_lk_label`, 1 AS `display_size`, 1 AS `dev_label_nm`, 1 AS `hover_fields`, 1 AS `disp_order`, 1 AS `lk_parent_val_id`, 1 AS `updater_id`, 1 AS `updater`, 1 AS `updater_file_name`, 1 AS `last_updated`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_lk_wrk_flow` -- DROP TABLE IF EXISTS `vw_dev_lk_wrk_flow`; /*!50001 DROP VIEW IF EXISTS `vw_dev_lk_wrk_flow`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_lk_wrk_flow` AS SELECT 1 AS `iddev_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `id_wrk_flow`, 1 AS `wrk_flow_desc`, 1 AS `id_wrk_flow_parent`, 1 AS `look_initial`, 1 AS `look_restart`, 1 AS `disp_order`, 1 AS `updater`, 1 AS `updater_fmt`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_by`, 1 AS `look_value`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_look_value` -- DROP TABLE IF EXISTS `vw_dev_look_value`; /*!50001 DROP VIEW IF EXISTS `vw_dev_look_value`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_look_value` AS SELECT 1 AS `iddev_look_value`, 1 AS `iddev_look`, 1 AS `lk_val_par`, 1 AS `look_value`, 1 AS `child_lvl`, 1 AS `look_value_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_trng` -- DROP TABLE IF EXISTS `vw_dev_trng`; /*!50001 DROP VIEW IF EXISTS `vw_dev_trng`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_trng` AS SELECT 1 AS `iddev_trng`, 1 AS `disp_order`, 1 AS `train_nm`, 1 AS `train_desc`, 1 AS `duration`, 1 AS `cnt`, 1 AS `practical`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_dev_trng_doc` -- DROP TABLE IF EXISTS `vw_dev_trng_doc`; /*!50001 DROP VIEW IF EXISTS `vw_dev_trng_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_dev_trng_doc` AS SELECT 1 AS `iddev_trng_doc`, 1 AS `iddev_trng`, 1 AS `disp_order`, 1 AS `trng_desc`, 1 AS `duration`, 1 AS `idstorages`, 1 AS `cloud_link`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp` -- DROP TABLE IF EXISTS `vw_emp`; /*!50001 DROP VIEW IF EXISTS `vw_emp`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp` AS SELECT 1 AS `emp_id`, 1 AS `idstorages`, 1 AS `emp_fnm`, 1 AS `emp_fnm_ser`, 1 AS `idstorages_stat`, 1 AS `firstname`, 1 AS `middlename`, 1 AS `lastname`, 1 AS `fullname`, 1 AS `nickname`, 1 AS `user_name`, 1 AS `user_name_nm`, 1 AS `user_name_cur_stat`, 1 AS `status`, 1 AS `expire_tm`, 1 AS `last_clicked`, 1 AS `last_clicked_tm`, 1 AS `all_contacts`, 1 AS `all_contacts_nm`, 1 AS `emp_nm_all_contacts`, 1 AS `unique_id_type`, 1 AS `unique_id_nm`, 1 AS `ssn`, 1 AS `ssn_nm`, 1 AS `dob`, 1 AS `dob_fmt`, 1 AS `age`, 1 AS `gender_id`, 1 AS `gender_nm`, 1 AS `all_features`, 1 AS `cnt_feature`, 1 AS `all_education`, 1 AS `all_education_nm`, 1 AS `education_cnt`, 1 AS `education_yrs`, 1 AS `education_yrs_nm`, 1 AS `all_education_yrs_nm`, 1 AS `all_emp_org`, 1 AS `all_emp_org_nm`, 1 AS `all_addresses`, 1 AS `sto_limit`, 1 AS `sto_limit_fmt`, 1 AS `sto_usage`, 1 AS `sto_usage_fmt`, 1 AS `sto_remain`, 1 AS `sto_remain_fmt`, 1 AS `sto_usage_nm`, 1 AS `sto_remaining`, 1 AS `sto_usage_nm_pcnt`, 1 AS `sto_remain_nm_pcnt`, 1 AS `taxid`, 1 AS `taxid_nm`, 1 AS `hrs_forecast`, 1 AS `hrs_actual`, 1 AS `hrs_actual_forecast`, 1 AS `fore_act_pcnt`, 1 AS `amt_forcast`, 1 AS `amt_actual`, 1 AS `amt_actual_forcast`, 1 AS `amt_pcnt`, 1 AS `vac_earned`, 1 AS `vac_used`, 1 AS `vac_used_earned`, 1 AS `vac_pcnt`, 1 AS `vac_bal`, 1 AS `login_id`, 1 AS `domain_name`, 1 AS `contry`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `lastlogin`, 1 AS `lastlogin_fmt`, 1 AS `lastlogout`, 1 AS `lastlogout_fmt`, 1 AS `from_fmt`, 1 AS `loggged_out`, 1 AS `logged_in`, 1 AS `logged_in_tm`, 1 AS `idlook_menu_pvt_lvl1`, 1 AS `main_menu`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `sub_menu`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_fnm_ser`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_fnm_ser`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_fnm_ser`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_access` -- DROP TABLE IF EXISTS `vw_emp_access`; /*!50001 DROP VIEW IF EXISTS `vw_emp_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_access` AS SELECT 1 AS `access_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_name`, 1 AS `user_name`, 1 AS `feature_id`, 1 AS `feature_name`, 1 AS `feature_desc`, 1 AS `disp_order`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_activity` -- DROP TABLE IF EXISTS `vw_emp_activity`; /*!50001 DROP VIEW IF EXISTS `vw_emp_activity`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_activity` AS SELECT 1 AS `idemp_activity`, 1 AS `empd_id`, 1 AS `call_recv_dt`, 1 AS `emp_id`, 1 AS `updater`, 1 AS `next_call_dt`, 1 AS `call_note`, 1 AS `last_updated`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_address` -- DROP TABLE IF EXISTS `vw_emp_address`; /*!50001 DROP VIEW IF EXISTS `vw_emp_address`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_address` AS SELECT 1 AS `emp_add_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `look_street_no_id`, 1 AS `look_street_id`, 1 AS `look_street_no`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `street_type_name`, 1 AS `street_name_type`, 1 AS `postal_id`, 1 AS `zip_code`, 1 AS `city_id`, 1 AS `city_name`, 1 AS `idlook_county_district`, 1 AS `county_district_city_nm`, 1 AS `state_id`, 1 AS `state_name`, 1 AS `state_full_name`, 1 AS `country_id`, 1 AS `con_name`, 1 AS `con_full_name`, 1 AS `lk_design`, 1 AS `con_code`, 1 AS `con_digit`, 1 AS `house_apt_no`, 1 AS `house_apt_type`, 1 AS `house_apt_type_nm`, 1 AS `addresses`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `from_dt_yr`, 1 AS `from_dt_mon`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `to_dt_yr`, 1 AS `to_dt_mon`, 1 AS `no_of_days`, 1 AS `no_of_days_vir`, 1 AS `add_type`, 1 AS `add_type_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_audit` -- DROP TABLE IF EXISTS `vw_emp_audit`; /*!50001 DROP VIEW IF EXISTS `vw_emp_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_audit` AS SELECT 1 AS `idemp_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_bench` -- DROP TABLE IF EXISTS `vw_emp_bench`; /*!50001 DROP VIEW IF EXISTS `vw_emp_bench`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_bench` AS SELECT 1 AS `value`, 1 AS `emp_org_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `companyname`, 1 AS `comp_fnm`, 1 AS `start_dt`, 1 AS `start_dt_fmt`, 1 AS `bill_cycle`, 1 AS `end_dt`, 1 AS `end_dt_fmt`, 1 AS `no_of_days`, 1 AS `no_of_days_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_contact` -- DROP TABLE IF EXISTS `vw_emp_contact`; /*!50001 DROP VIEW IF EXISTS `vw_emp_contact`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_contact` AS SELECT 1 AS `emp_contact_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `contact_id`, 1 AS `country_id`, 1 AS `con_name`, 1 AS `con_code`, 1 AS `con_name_code`, 1 AS `contact_type`, 1 AS `emp_contact_type`, 1 AS `emp_contact_type_nm`, 1 AS `contact_detail`, 1 AS `emp_contact_type_detail`, 1 AS `contact_vrifed`, 1 AS `summary`, 1 AS `contact_cnt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_doc` -- DROP TABLE IF EXISTS `vw_emp_doc`; /*!50001 DROP VIEW IF EXISTS `vw_emp_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_doc` AS SELECT 1 AS `idemp_doc`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `file_ser_name`, 1 AS `sto_cloud_link`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_cnv_size`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `expire_dt_fmt2`, 1 AS `expire_dt_no_days`, 1 AS `expire_dt_cur_stat`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `emp_doc_type`, 1 AS `emp_doc_type_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_education` -- DROP TABLE IF EXISTS `vw_emp_education`; /*!50001 DROP VIEW IF EXISTS `vw_emp_education`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_education` AS SELECT 1 AS `idemp_education`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `edu_name`, 1 AS `edu_nm`, 1 AS `edu_name_sub`, 1 AS `edu_name_sub_nm`, 1 AS `edu_frm_dt`, 1 AS `edu_frm_dt_fmt`, 1 AS `edu_frm_dt_yr`, 1 AS `edu_frm_dt_mon`, 1 AS `edu_to_dt`, 1 AS `edu_to_dt_fmt`, 1 AS `edu_to_dt_yr`, 1 AS `edu_to_dt_mon`, 1 AS `edu_frm_to_dt`, 1 AS `edu_frm_to_dt_vir`, 1 AS `edu_cur_stat`, 1 AS `edu_subject`, 1 AS `edu_subject_nm`, 1 AS `edu_level`, 1 AS `edu_level_nm`, 1 AS `edu_smry`, 1 AS `edu_smry_vir`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_lk_val` -- DROP TABLE IF EXISTS `vw_emp_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_emp_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_lk_val` AS SELECT 1 AS `idemp_lk_value`, 1 AS `idemp_lk`, 1 AS `lk_val_par`, 1 AS `lk_val`, 1 AS `child_lvl`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_fmt`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org` -- DROP TABLE IF EXISTS `vw_emp_org`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org` AS SELECT 1 AS `emp_org_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `companyname`, 1 AS `comp_fnm`, 1 AS `org_start_dt`, 1 AS `org_start_dt_yr`, 1 AS `org_start_dt_mon`, 1 AS `org_start_dt_fmt`, 1 AS `org_end_dt`, 1 AS `org_end_dt_yr`, 1 AS `org_end_dt_mon`, 1 AS `org_end_dt_fmt`, 1 AS `org_start_end_dt_cur_stat`, 1 AS `no_of_days`, 1 AS `no_of_days_fmt`, 1 AS `emp_type`, 1 AS `emp_type_nm`, 1 AS `org_forecast`, 1 AS `org_actual`, 1 AS `org_actual_forecast`, 1 AS `org_pcnt`, 1 AS `org_amt_forcast`, 1 AS `org_amt_actual`, 1 AS `org_amt_actual_forcast`, 1 AS `org_amt_pcnt`, 1 AS `org_vac_used`, 1 AS `org_vac_earned`, 1 AS `org_vac_used_earned`, 1 AS `org_vac_pcnt`, 1 AS `org_vac_bal`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `old_org_hrs_dt`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org_access` -- DROP TABLE IF EXISTS `vw_emp_org_access`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org_access` AS SELECT 1 AS `idemp_org_access`, 1 AS `emp_access_to`, 1 AS `emp_access_to_fnm`, 1 AS `emp_access_to_nm`, 1 AS `emp_access_of`, 1 AS `emp_access_of_fnm`, 1 AS `emp_access_of_nm`, 1 AS `acc_from_dt`, 1 AS `acc_from_dt_fmt`, 1 AS `acc_from_dt_yr`, 1 AS `acc_from_dt_mon`, 1 AS `acc_to_dt`, 1 AS `acc_to_dt_fmt`, 1 AS `acc_to_dt_yr`, 1 AS `acc_to_dt_mon`, 1 AS `acc_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org_hrs` -- DROP TABLE IF EXISTS `vw_emp_org_hrs`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org_hrs` AS SELECT 1 AS `idemp_org_hrs`, 1 AS `emp_org_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `org_start_dt`, 1 AS `org_start_dt_fmt`, 1 AS `org_start_dt_yr`, 1 AS `org_start_dt_mon`, 1 AS `org_end_dt`, 1 AS `org_end_dt_fmt`, 1 AS `org_end_dt_yr`, 1 AS `org_end_dt_mon`, 1 AS `org_start_end_dt_cur_stat`, 1 AS `emp_type`, 1 AS `emp_type_nm`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `from_yr`, 1 AS `from_mon`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `to_yr`, 1 AS `to_mon`, 1 AS `duration`, 1 AS `comp_fnm_nm_title_duration`, 1 AS `from_to_dt_cur_stat`, 1 AS `frm_to_org_hrs_days`, 1 AS `frm_to_org_hrs_days_fmt`, 1 AS `tentative_en_dt`, 1 AS `tentative_en_dt_fmt`, 1 AS `tentative_en_dt_fmt_no`, 1 AS `tentative_en_dt_fmt2`, 1 AS `org_hrs_forecast`, 1 AS `org_hrs_actual`, 1 AS `org_hrs_actual_forecast`, 1 AS `org_hrs_pcnt`, 1 AS `org_hrs_amt_forcast`, 1 AS `org_hrs_amt_actual`, 1 AS `org_hrs_amt_actual_forcast`, 1 AS `org_hrs_amt_pcnt`, 1 AS `emp_hrs_title`, 1 AS `emp_hrs_title_nm`, 1 AS `org_hrs_vac_earn`, 1 AS `org_hrs_vac_use`, 1 AS `org_hrs_vac_use_earn`, 1 AS `org_hrs_vac_bal`, 1 AS `org_hrs_vac_pcnt`, 1 AS `idstorages`, 1 AS `hrs_cy_run`, 1 AS `hrs_cy_run_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `old_hrs_dt`, 1 AS `cy_st_date`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org_hrs_days` -- DROP TABLE IF EXISTS `vw_emp_org_hrs_days`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs_days`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org_hrs_days` AS SELECT 1 AS `idemp_org_hrs_days`, 1 AS `emp_org_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `org_start_dt`, 1 AS `org_start_dt_fmt`, 1 AS `org_start_dt_yr`, 1 AS `org_start_dt_mon`, 1 AS `org_end_dt`, 1 AS `org_end_dt_fmt`, 1 AS `org_end_dt_yr`, 1 AS `org_end_dt_mon`, 1 AS `no_of_days`, 1 AS `no_of_days_vir`, 1 AS `emp_type`, 1 AS `emp_type_nm`, 1 AS `run_script`, 1 AS `idemp_org_hrs`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `from_yr`, 1 AS `from_mon`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `to_yr`, 1 AS `to_mon`, 1 AS `frm_to_org_hrs_days`, 1 AS `frm_to_org_hrs_days_fmt`, 1 AS `tentative_en_dt`, 1 AS `tentative_en_dt_fmt`, 1 AS `org_hrs_forecast`, 1 AS `org_hrs_actual`, 1 AS `org_hrs_pcnt`, 1 AS `emp_hrs_title`, 1 AS `emp_hrs_title_nm`, 1 AS `tm_zn`, 1 AS `start_tm`, 1 AS `start_tm_fmt`, 1 AS `end_tm`, 1 AS `end_tm_fmt`, 1 AS `hrs_tm`, 1 AS `hrs_tm_nm`, 1 AS `off_time`, 1 AS `off_time_nm`, 1 AS `days`, 1 AS `days_nm`, 1 AS `pay_amt`, 1 AS `look_street_no_id`, 1 AS `country_id`, 1 AS `con_name`, 1 AS `state_id`, 1 AS `state_name`, 1 AS `idlook_county_district`, 1 AS `county_district_city_nm`, 1 AS `city_id`, 1 AS `city_name`, 1 AS `postal_id`, 1 AS `zip_code`, 1 AS `look_street_id`, 1 AS `look_street_no`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `street_type_nm`, 1 AS `house_apt_type`, 1 AS `house_apt_type_nm`, 1 AS `house_apt_no`, 1 AS `addresses`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `cy_days_st_dt`, 1 AS `hrs_day_cy_run`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org_hrs_days_cy` -- DROP TABLE IF EXISTS `vw_emp_org_hrs_days_cy`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs_days_cy`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org_hrs_days_cy` AS SELECT 1 AS `idemp_org_hrs_days_cy`, 1 AS `emp_org_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `org_start_dt`, 1 AS `org_start_dt_fmt`, 1 AS `org_end_dt`, 1 AS `org_end_dt_fmt`, 1 AS `no_of_days`, 1 AS `no_of_days_fmt`, 1 AS `emp_type`, 1 AS `emp_type_nm`, 1 AS `idemp_org_hrs`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `frm_to_org_hrs_days`, 1 AS `frm_to_org_hrs_days_fmt`, 1 AS `tentative_en_dt`, 1 AS `tentative_en_dt_fmt`, 1 AS `org_hrs_forecast`, 1 AS `org_hrs_actual`, 1 AS `org_hrs_pcnt`, 1 AS `emp_hrs_title`, 1 AS `emp_hrs_title_nm`, 1 AS `idemp_org_hrs_days`, 1 AS `start_tm`, 1 AS `start_tm_fmt`, 1 AS `end_tm`, 1 AS `end_tm_fmt`, 1 AS `hrs_tm`, 1 AS `off_time`, 1 AS `off_time_nm`, 1 AS `days`, 1 AS `pay_amt`, 1 AS `look_street_no_id`, 1 AS `country_id`, 1 AS `con_name`, 1 AS `state_id`, 1 AS `state_name`, 1 AS `idlook_county_district`, 1 AS `county_district_city_nm`, 1 AS `city_id`, 1 AS `city_name`, 1 AS `postal_id`, 1 AS `zip_code`, 1 AS `look_street_id`, 1 AS `look_street_no`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `street_type_nm`, 1 AS `house_apt_type`, 1 AS `house_apt_type_nm`, 1 AS `house_apt_no`, 1 AS `addresses`, 1 AS `day_start_tm`, 1 AS `day_start_tm_fmt`, 1 AS `day_start_tm_dt`, 1 AS `day_start_tm_dt_tm`, 1 AS `day_start_tm_day`, 1 AS `day_start_tm_vir`, 1 AS `day_start_tm_yr`, 1 AS `day_start_tm_mon`, 1 AS `day_end_tm`, 1 AS `day_end_tm_fmt`, 1 AS `day_end_tm_fmt_tm`, 1 AS `day_end_tm_day`, 1 AS `day_end_tm_yr`, 1 AS `day_end_tm_mon`, 1 AS `day_hrs_forcast_tm`, 1 AS `day_hrs_forcast_tm_nm`, 1 AS `day_off_forcast`, 1 AS `day_off_forcast_nm`, 1 AS `day_pay_forcast_amt`, 1 AS `day_hrs_actual_tm`, 1 AS `day_hrs_actual_tm_nm`, 1 AS `day_off_actual`, 1 AS `day_off_actual_nm`, 1 AS `day_pay_actual_amt`, 1 AS `days_schedule`, 1 AS `days_actual`, 1 AS `day_start_yr_mon`, 1 AS `hrs_days_updater`, 1 AS `hrs_days_updater_fnm`, 1 AS `hrs_days_updater_nm`, 1 AS `hrs_days_updated`, 1 AS `hrs_days_updated_fmt`, 1 AS `hrs_del_dt`, 1 AS `hrs_del_dt_fmt`, 1 AS `hrs_del_by`, 1 AS `hrs_del_by_fnm`, 1 AS `hrs_del_by_nm`, 1 AS `hrs_del_day`, 1 AS `hrs_del_day_vir`, 1 AS `hrs_archv_dt`, 1 AS `hrs_archv_dt_fmt`, 1 AS `hrs_archv_by`, 1 AS `hrs_archv_by_fnm`, 1 AS `hrs_archv_by_nm`, 1 AS `hrs_day_cy_run`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_emp_org_vac` -- DROP TABLE IF EXISTS `vw_emp_org_vac`; /*!50001 DROP VIEW IF EXISTS `vw_emp_org_vac`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_emp_org_vac` AS SELECT 1 AS `idemp_org_vac`, 1 AS `emp_org_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `org_start_dt`, 1 AS `org_start_dt_fmt`, 1 AS `org_end_dt`, 1 AS `org_end_dt_fmt`, 1 AS `org_st_e_dt_fmt`, 1 AS `no_of_days`, 1 AS `no_of_days_vir`, 1 AS `org_tentative_en_dt`, 1 AS `org_tentative_en_dt_fmt`, 1 AS `emp_type`, 1 AS `emp_type_fmt`, 1 AS `idemp_org_hrs`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `from_to_dt_fmt`, 1 AS `comp_fnm_nm_title_duration`, 1 AS `frm_to_org_hrs_days`, 1 AS `frm_to_org_hrs_days_vir`, 1 AS `tentative_en_dt`, 1 AS `tentative_en_dt_fmt`, 1 AS `emp_hrs_title`, 1 AS `emp_hrs_title_nm`, 1 AS `vac_type`, 1 AS `off_tm_days`, 1 AS `off_tm_calc`, 1 AS `hrs_earn`, 1 AS `hrs_use`, 1 AS `hrs_use_earn`, 1 AS `hrs_bal`, 1 AS `hrs_pcnt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage` -- DROP TABLE IF EXISTS `vw_engage`; /*!50001 DROP VIEW IF EXISTS `vw_engage`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage` AS SELECT 1 AS `engage_id`, 1 AS `srv_client`, 1 AS `srv_client_fnm`, 1 AS `srv_client_nm`, 1 AS `srv_client_add`, 1 AS `srv_client_con`, 1 AS `srv_vendor`, 1 AS `srv_vendor_fnm`, 1 AS `srv_vendor_nm`, 1 AS `srv_ven_add`, 1 AS `srv_ven_con`, 1 AS `srv_st_dt`, 1 AS `srv_st_dt_fmt`, 1 AS `srv_st_yr`, 1 AS `srv_st_mon`, 1 AS `srv_e_dt`, 1 AS `srv_e_dt_fmt`, 1 AS `srv_e_yr`, 1 AS `srv_e_mon`, 1 AS `engage_cur_stat`, 1 AS `eng_tentive_en_dt`, 1 AS `eng_tentive_en_dt_fmt`, 1 AS `eng_tentive_en_yr_mon`, 1 AS `srv_st_e_dt`, 1 AS `srv_st_e_dt_fmt`, 1 AS `eng_cnt`, 1 AS `eng_tol`, 1 AS `eng_cnt_tol`, 1 AS `eng_cnt_pcnt`, 1 AS `eg_sumry`, 1 AS `cloud_drive`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_comp_add` -- DROP TABLE IF EXISTS `vw_engage_comp_add`; /*!50001 DROP VIEW IF EXISTS `vw_engage_comp_add`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_comp_add` AS SELECT 1 AS `idengage_comp_add`, 1 AS `idengage_comp`, 1 AS `comp_add_id`, 1 AS `engage_id`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `look_street_no_id`, 1 AS `look_street_no`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `house_apt_type_nm`, 1 AS `suite_no`, 1 AS `city_name`, 1 AS `state_name`, 1 AS `county_district_city_nm`, 1 AS `zip_code`, 1 AS `con_name`, 1 AS `comp_address_full`, 1 AS `add_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_comp_con` -- DROP TABLE IF EXISTS `vw_engage_comp_con`; /*!50001 DROP VIEW IF EXISTS `vw_engage_comp_con`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_comp_con` AS SELECT 1 AS `idengage_comp_con`, 1 AS `idengage_comp`, 1 AS `engage_id`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `comp_contact_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `title`, 1 AS `all_contacts`, 1 AS `comp_contact_all_details`, 1 AS `contact_notes`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_doc` -- DROP TABLE IF EXISTS `vw_engage_doc`; /*!50001 DROP VIEW IF EXISTS `vw_engage_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_doc` AS SELECT 1 AS `idengage_doc`, 1 AS `engage_id`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_entity` -- DROP TABLE IF EXISTS `vw_engage_entity`; /*!50001 DROP VIEW IF EXISTS `vw_engage_entity`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_entity` AS SELECT 1 AS `idengage_entity`, 1 AS `engage_id`, 1 AS `srv_client`, 1 AS `srv_client_fnm`, 1 AS `srv_client_nm`, 1 AS `srv_client_add`, 1 AS `srv_client_con`, 1 AS `srv_vendor`, 1 AS `srv_vendor_fnm`, 1 AS `srv_vendor_nm`, 1 AS `srv_ven_add`, 1 AS `srv_ven_con`, 1 AS `srv_st_dt`, 1 AS `srv_e_dt`, 1 AS `engage_cur_stat`, 1 AS `srv_st_e_dt`, 1 AS `eng_cnt`, 1 AS `eng_tol`, 1 AS `eng_cnt_tol`, 1 AS `eng_cnt_tol_pcnt`, 1 AS `engage_ref_tab`, 1 AS `engage_ref_id`, 1 AS `engage_ref_fnm`, 1 AS `engage_ref_nm`, 1 AS `engage_ref_tab_fnm_nm`, 1 AS `bill_start_dt`, 1 AS `bill_start_dt_fmt`, 1 AS `bill_start_yr`, 1 AS `bill_start_mon`, 1 AS `bill_cycle`, 1 AS `bill_end_dt`, 1 AS `bill_end_dt_fmt`, 1 AS `bill_end_yr`, 1 AS `bill_end_mon`, 1 AS `engage_entity_cur_stat`, 1 AS `bill_st_e_dt`, 1 AS `bill_st_e_dt_vir`, 1 AS `bill_fst_dt`, 1 AS `bill_fst_dt_fmt`, 1 AS `bill_day`, 1 AS `bill_pay_type`, 1 AS `bill_pay_type_nm`, 1 AS `bill_pay_cy`, 1 AS `bill_pay_rate`, 1 AS `bill_title`, 1 AS `bill_title_nm`, 1 AS `bill_hrs_mon`, 1 AS `bill_pay_rate_xtra`, 1 AS `ts_cycle`, 1 AS `ts_fst_dt`, 1 AS `ts_fst_dt_fmt`, 1 AS `netpay`, 1 AS `tentative_e_dt`, 1 AS `tentative_e_dt_fmt`, 1 AS `tentative_e_mon_yr`, 1 AS `access_name`, 1 AS `remind`, 1 AS `summary`, 1 AS `cloud_drive`, 1 AS `allow_inv`, 1 AS `show_emp`, 1 AS `bill_cycle_run_dt`, 1 AS `bill_cycle_run_dt_fmt`, 1 AS `bill_cycle_ran`, 1 AS `ts_cycle_run_dt`, 1 AS `ts_cycle_run_dt_fmt`, 1 AS `ts_cycle_ran`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `old_bc_dt`, 1 AS `old_tc_dt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_entity_bud` -- DROP TABLE IF EXISTS `vw_engage_entity_bud`; /*!50001 DROP VIEW IF EXISTS `vw_engage_entity_bud`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_entity_bud` AS SELECT 1 AS `idengage_entity_bud`, 1 AS `engage_id`, 1 AS `srv_client`, 1 AS `srv_client_fnm`, 1 AS `srv_client_nm`, 1 AS `srv_client_add`, 1 AS `srv_client_con`, 1 AS `srv_vendor`, 1 AS `srv_vendor_fnm`, 1 AS `srv_vendor_nm`, 1 AS `srv_ven_add`, 1 AS `srv_ven_con`, 1 AS `srv_st_dt`, 1 AS `srv_st_dt_fmt`, 1 AS `srv_e_dt`, 1 AS `srv_e_dt_fmt`, 1 AS `srv_st_e_dt`, 1 AS `srv_st_e_dt_fmt`, 1 AS `eng_tentive_en_dt`, 1 AS `eng_tentive_en_dt_fmt`, 1 AS `eng_cnt`, 1 AS `eng_tol`, 1 AS `eng_cnt_tol`, 1 AS `eng_cnt_tol_pcnt`, 1 AS `eg_sumry`, 1 AS `cloud_drive`, 1 AS `idengage_entity`, 1 AS `engage_ref_tab`, 1 AS `engage_ref_id`, 1 AS `engage_ref_fnm`, 1 AS `engage_ref_nm`, 1 AS `engage_ref_tab_fnm_nm`, 1 AS `bill_start_dt`, 1 AS `bill_start_dt_fmt`, 1 AS `bill_cycle`, 1 AS `bill_end_dt`, 1 AS `bill_end_dt_fmt`, 1 AS `bill_st_e_dt`, 1 AS `bill_st_e_dt_vir`, 1 AS `bill_fst_dt`, 1 AS `bill_fst_dt_fmt`, 1 AS `bill_day`, 1 AS `bill_pay_type`, 1 AS `bill_pay_type_nm`, 1 AS `eng_ent_cnt`, 1 AS `eng_ent_tol`, 1 AS `eng_bud_pcnt`, 1 AS `bill_pay_rate`, 1 AS `bill_title`, 1 AS `bill_title_nm`, 1 AS `bill_hrs_mon`, 1 AS `bill_pay_rate_xtra`, 1 AS `ts_cycle`, 1 AS `ts_fst_dt`, 1 AS `ts_fst_dt_fmt`, 1 AS `ts_fst_day`, 1 AS `netpay`, 1 AS `tentative_e_dt`, 1 AS `tentative_e_dt_fmt`, 1 AS `engage_bud_ref_id`, 1 AS `engage_bud_ref_tab`, 1 AS `engage_bud_ref_tab_fnm`, 1 AS `engage_bud_ref_tab_nm`, 1 AS `engage_bud_ref_tab_fnm_nm`, 1 AS `engage_calc`, 1 AS `engage_amt`, 1 AS `show_emp`, 1 AS `engage_st_dt`, 1 AS `engage_st_dt_fmt`, 1 AS `engage_st_dt_yr`, 1 AS `engage_st_dt_mon`, 1 AS `engage_e_dt`, 1 AS `engage_e_dt_fmt`, 1 AS `engage_e_dt_yr`, 1 AS `engage_e_dt_mon`, 1 AS `engage_st_e_dt`, 1 AS `engage_st_e_dt_vir`, 1 AS `limit_amt`, 1 AS `engage_smry`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_engage_entity_doc` -- DROP TABLE IF EXISTS `vw_engage_entity_doc`; /*!50001 DROP VIEW IF EXISTS `vw_engage_entity_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_engage_entity_doc` AS SELECT 1 AS `idengage_entity_doc`, 1 AS `idengage_entity`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_feature` -- DROP TABLE IF EXISTS `vw_feature`; /*!50001 DROP VIEW IF EXISTS `vw_feature`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_feature` AS SELECT 1 AS `feature_no`, 1 AS `feature_id`, 1 AS `feature_name`, 1 AS `feature_desc`, 1 AS `disp_order`, 1 AS `assigned`, 1 AS `groups`, 1 AS `menus`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_feature_grp` -- DROP TABLE IF EXISTS `vw_feature_grp`; /*!50001 DROP VIEW IF EXISTS `vw_feature_grp`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_feature_grp` AS SELECT 1 AS `idfeature_grp`, 1 AS `group_name`, 1 AS `feature_cnt`, 1 AS `group_desc`, 1 AS `feature_ids`, 1 AS `feature_nm`, 1 AS `updater`, 1 AS `emp_fnm`, 1 AS `fullname`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_feature_grp_list` -- DROP TABLE IF EXISTS `vw_feature_grp_list`; /*!50001 DROP VIEW IF EXISTS `vw_feature_grp_list`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_feature_grp_list` AS SELECT 1 AS `idfeature_grp_list`, 1 AS `idfeature_grp`, 1 AS `group_name`, 1 AS `group_desc`, 1 AS `updater`, 1 AS `emp_fnm`, 1 AS `fullname`, 1 AS `last_updated_fmt`, 1 AS `feature_id`, 1 AS `feature_name`, 1 AS `feature_desc`, 1 AS `disp_order`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_feature_lk_val` -- DROP TABLE IF EXISTS `vw_feature_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_feature_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_feature_lk_val` AS SELECT 1 AS `idfeature_lk_val`, 1 AS `idfeature_lk`, 1 AS `lk_val_par`, 1 AS `lk_val`, 1 AS `child_lvl`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_festival` -- DROP TABLE IF EXISTS `vw_festival`; /*!50001 DROP VIEW IF EXISTS `vw_festival`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_festival` AS SELECT 1 AS `idfestival`, 1 AS `look_values_id`, 1 AS `comp_id`, 1 AS `festival_yr`, 1 AS `festival_day`, 1 AS `day`, 1 AS `festival_name`, 1 AS `festival_type`, 1 AS `last_updated`, 1 AS `updated_by`, 1 AS `mod_last_updated`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_festival_company` -- DROP TABLE IF EXISTS `vw_festival_company`; /*!50001 DROP VIEW IF EXISTS `vw_festival_company`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_festival_company` AS SELECT 1 AS `idfestival`, 1 AS `look_values_id`, 1 AS `comp_id`, 1 AS `companyname`, 1 AS `festival_yr`, 1 AS `festival_day`, 1 AS `day`, 1 AS `festival_name`, 1 AS `festival_type`, 1 AS `last_updated`, 1 AS `updated_by`, 1 AS `mod_last_updated`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours` -- DROP TABLE IF EXISTS `vw_hours`; /*!50001 DROP VIEW IF EXISTS `vw_hours`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours` AS SELECT 1 AS `hour_id`, 1 AS `idemp_org_hrs_days_cy`, 1 AS `idemp_org_hrs_days_cy_nm`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `idemp_org_hrs`, 1 AS `emp_org_hrs_comp_id`, 1 AS `emp_org_hrs_comp_fnm`, 1 AS `emp_org_hrs_comp_nm`, 1 AS `engage_ref_tab`, 1 AS `engage_ref_id`, 1 AS `engage_ref_fnm`, 1 AS `engage_ref_nm`, 1 AS `engage_ref_nm2`, 1 AS `comp_id`, 1 AS `companyname`, 1 AS `comp_fnm`, 1 AS `idhours_cy_bc`, 1 AS `idhours_cy_bc_nm`, 1 AS `idinv`, 1 AS `idinv_nm`, 1 AS `idemp_pay`, 1 AS `idemp_pay_nm`, 1 AS `hr_st_dt`, 1 AS `hr_st_dt_fmt`, 1 AS `hr_st_day`, 1 AS `hr_st_dt_yr`, 1 AS `hr_st_dt_mon`, 1 AS `hr_st_dt_yr_mon`, 1 AS `hr_st_dt_tm_fmt`, 1 AS `hr_e_dt`, 1 AS `hr_e_dt_fmt`, 1 AS `hr_e_day`, 1 AS `hr_e_day_no`, 1 AS `hr_e_dt_yr`, 1 AS `hr_e_dt_mon`, 1 AS `hr_e_dt_yr_mon`, 1 AS `hr_e_dt_yr_mon_no`, 1 AS `hr_e_dt_tm_fmt`, 1 AS `hr_st_e_dt_tm_fmt`, 1 AS `off_time`, 1 AS `off_tm_nm`, 1 AS `hr_tol`, 1 AS `hr_tol_nm`, 1 AS `iddev_apps`, 1 AS `app_nm`, 1 AS `dev_est`, 1 AS `dev_est_nm`, 1 AS `dev_est_smry`, 1 AS `dev_est_reqs`, 1 AS `dev_est_reqs_nm`, 1 AS `req_desc`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `hrs_type`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `iplook_ip_addr`, 1 AS `ip_address`, 1 AS `domain_nm`, 1 AS `ip_contry`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `approver`, 1 AS `approver_fnm`, 1 AS `approver_nm`, 1 AS `approve_by`, 1 AS `approve_by_fnm`, 1 AS `approve_by_nm`, 1 AS `approve_dt`, 1 AS `approve_dt_fmt_up`, 1 AS `approve_temp_dt`, 1 AS `timecard_id`, 1 AS `summary`, 1 AS `hours_cnt`, 1 AS `hours_cnt_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours_access` -- DROP TABLE IF EXISTS `vw_hours_access`; /*!50001 DROP VIEW IF EXISTS `vw_hours_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours_access` AS SELECT 1 AS `idhours_access`, 1 AS `hrs_access_to`, 1 AS `hrs_access_to_fnm`, 1 AS `hrs_access_to_nm`, 1 AS `hrs_access_of`, 1 AS `hrs_access_fnm`, 1 AS `hrs_access_of_nm`, 1 AS `acc_from_dt`, 1 AS `acc_from_dt_fmt`, 1 AS `acc_from_yr`, 1 AS `acc_from_mon`, 1 AS `acc_to_dt`, 1 AS `acc_to_dt_fmt`, 1 AS `acc_to_yr`, 1 AS `acc_to_mon`, 1 AS `acc_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours_cy_bc` -- DROP TABLE IF EXISTS `vw_hours_cy_bc`; /*!50001 DROP VIEW IF EXISTS `vw_hours_cy_bc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours_cy_bc` AS SELECT 1 AS `idhours_cy_bc`, 1 AS `idengage_entity`, 1 AS `engage_id`, 1 AS `srv_client`, 1 AS `srv_client_fnm`, 1 AS `srv_client_nm`, 1 AS `srv_client_add`, 1 AS `srv_client_con`, 1 AS `srv_vendor`, 1 AS `srv_vendor_fnm`, 1 AS `srv_vendor_nm`, 1 AS `srv_ven_add`, 1 AS `srv_ven_con`, 1 AS `srv_st_dt`, 1 AS `srv_st_dt_fmt`, 1 AS `srv_e_dt`, 1 AS `srv_e_dt_fmt`, 1 AS `engage_ref_tab`, 1 AS `engage_ref_id`, 1 AS `engage_ref_fnm`, 1 AS `engage_ref_nm`, 1 AS `bill_start_dt`, 1 AS `bill_start_dt_fmt`, 1 AS `bill_cycle`, 1 AS `bill_end_dt`, 1 AS `bill_end_dt_fmt`, 1 AS `bill_st_e_dt`, 1 AS `bill_st_e_dt_vir`, 1 AS `tentative_e_dt`, 1 AS `tentative_e_dt_fmt`, 1 AS `bill_pay_type`, 1 AS `bill_pay_cy`, 1 AS `bill_pay_rate`, 1 AS `bill_title`, 1 AS `bill_title_nm`, 1 AS `bill_hrs_mon`, 1 AS `bill_pay_rate_xtra`, 1 AS `ts_cycle`, 1 AS `netpay`, 1 AS `allow_inv`, 1 AS `show_emp`, 1 AS `bc_st_dt`, 1 AS `bc_st_dt_fmt`, 1 AS `bc_e_dt`, 1 AS `bc_e_dt_fmt`, 1 AS `bc_due_dt`, 1 AS `bc_due_dt_fmt`, 1 AS `bc_forcast_hr`, 1 AS `bc_actual_hr`, 1 AS `bc_actual_hr_forcast_hr`, 1 AS `bc_hrs_pcnt`, 1 AS `hr_approved`, 1 AS `hr_inv`, 1 AS `bc_forcast_inv`, 1 AS `bc_actual_inv`, 1 AS `bc_actual_inv_forcast_inv`, 1 AS `bc_inv_pcnt`, 1 AS `show_hide`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours_cy_tc` -- DROP TABLE IF EXISTS `vw_hours_cy_tc`; /*!50001 DROP VIEW IF EXISTS `vw_hours_cy_tc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours_cy_tc` AS SELECT 1 AS `idhours_cy_tc`, 1 AS `idengage_entity`, 1 AS `engage_id`, 1 AS `srv_client`, 1 AS `srv_client_fnm`, 1 AS `srv_client_nm`, 1 AS `srv_client_add`, 1 AS `srv_client_con`, 1 AS `srv_vendor`, 1 AS `srv_vendor_fnm`, 1 AS `srv_vendor_nm`, 1 AS `srv_ven_add`, 1 AS `srv_ven_con`, 1 AS `srv_st_dt`, 1 AS `srv_st_dt_fmt`, 1 AS `srv_e_dt`, 1 AS `srv_e_dt_fmt`, 1 AS `engage_ref_tab`, 1 AS `engage_ref_id`, 1 AS `engage_ref_fnm`, 1 AS `engage_ref_nm`, 1 AS `bill_start_dt`, 1 AS `bill_start_dt_fmt`, 1 AS `bill_cycle`, 1 AS `bill_end_dt`, 1 AS `bill_end_dt_fmt`, 1 AS `bill_st_e_dt`, 1 AS `bill_st_e_dt_vir`, 1 AS `tentative_e_dt`, 1 AS `tentative_e_dt_fmt`, 1 AS `bill_pay_type`, 1 AS `bill_pay_cy`, 1 AS `bill_pay_rate`, 1 AS `bill_title`, 1 AS `bill_title_nm`, 1 AS `bill_hrs_mon`, 1 AS `bill_pay_rate_xtra`, 1 AS `ts_cycle`, 1 AS `netpay`, 1 AS `allow_inv`, 1 AS `show_emp`, 1 AS `tc_st_dt`, 1 AS `tc_st_dt_fmt`, 1 AS `tc_e_dt`, 1 AS `tc_e_dt_fmt`, 1 AS `tc_due_dt`, 1 AS `tc_due_dt_fmt`, 1 AS `tc_forcast_hr`, 1 AS `tc_actual_hr`, 1 AS `tc_actual_hr_forcast_hr`, 1 AS `tc_hrs_pcnt`, 1 AS `hr_approved`, 1 AS `show_hide`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours_hist` -- DROP TABLE IF EXISTS `vw_hours_hist`; /*!50001 DROP VIEW IF EXISTS `vw_hours_hist`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours_hist` AS SELECT 1 AS `idhour_hist`, 1 AS `hour_id`, 1 AS `hr_st_dt`, 1 AS `hr_st_dt_fmt`, 1 AS `hr_st_day`, 1 AS `hr_st_dt_tm_fmt`, 1 AS `hr_e_dt`, 1 AS `hr_e_dt_fmt`, 1 AS `hr_e_day`, 1 AS `hr_e_dt_tm_fmt`, 1 AS `hr_st_e_dt_tm_fmt`, 1 AS `off_time`, 1 AS `off_tm_nm`, 1 AS `hr_tol`, 1 AS `hr_tol_nm`, 1 AS `iddev_apps`, 1 AS `app_nm`, 1 AS `dev_est`, 1 AS `dev_est_nm`, 1 AS `dev_est_smry`, 1 AS `dev_est_reqs`, 1 AS `dev_est_reqs_nm`, 1 AS `req_desc`, 1 AS `agile_details`, 1 AS `hrs_type`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `iplook_ip_addr`, 1 AS `ip_address`, 1 AS `domain_nm`, 1 AS `ip_contry`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `approver`, 1 AS `approver_fnm`, 1 AS `approver_nm`, 1 AS `summary`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hours_time` -- DROP TABLE IF EXISTS `vw_hours_time`; /*!50001 DROP VIEW IF EXISTS `vw_hours_time`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hours_time` AS SELECT 1 AS `timecard_id`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `timefrom_dt`, 1 AS `timefrom_dt_fmt`, 1 AS `timefrom_dt_yr`, 1 AS `timefrom_dt_mon`, 1 AS `timeto_dt`, 1 AS `timeto_dt_fmt`, 1 AS `timefrom_to_day`, 1 AS `bill_hrs`, 1 AS `unbill_hrs`, 1 AS `total_hrs`, 1 AS `validate_dt`, 1 AS `validate_dt_fmt`, 1 AS `validate_dt_cur_stat`, 1 AS `validate_by`, 1 AS `validate_by_fnm`, 1 AS `validate_by_nm`, 1 AS `summary`, 1 AS `idstorages`, 1 AS `idstorages_cur_stat`, 1 AS `file_name`, 1 AS `file_ser_name`, 1 AS `file_size`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_audit` -- DROP TABLE IF EXISTS `vw_hr_audit`; /*!50001 DROP VIEW IF EXISTS `vw_hr_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_audit` AS SELECT 1 AS `idhr_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_meeting` -- DROP TABLE IF EXISTS `vw_hr_meeting`; /*!50001 DROP VIEW IF EXISTS `vw_hr_meeting`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_meeting` AS SELECT 1 AS `idhr_meeting`, 1 AS `st_tm_est`, 1 AS `e_tm_est`, 1 AS `est_meeting_time`, 1 AS `st_tm_ist`, 1 AS `e_tm_ist`, 1 AS `ist_meeting_time`, 1 AS `description`, 1 AS `attendants`, 1 AS `scrum_master`, 1 AS `last_updated`, 1 AS `updater`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_policy` -- DROP TABLE IF EXISTS `vw_hr_policy`; /*!50001 DROP VIEW IF EXISTS `vw_hr_policy`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_policy` AS SELECT 1 AS `idhr_policy`, 1 AS `lk_policy`, 1 AS `lk_policy_desc`, 1 AS `lk_disp_id`, 1 AS `lk_paren_tag_id`, 1 AS `updater`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_by`, 1 AS `lk_policy_text`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_recruit_lk` -- DROP TABLE IF EXISTS `vw_hr_recruit_lk`; /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_recruit_lk` AS SELECT 1 AS `idhr_recruit_lk_val`, 1 AS `idhr_recruit_lk`, 1 AS `hr_val`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_recruit_lk_tag` -- DROP TABLE IF EXISTS `vw_hr_recruit_lk_tag`; /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk_tag`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_recruit_lk_tag` AS SELECT 1 AS `idhr_recruit_lk_tag`, 1 AS `lk_tag`, 1 AS `lk_tag_desc`, 1 AS `lk_disp_id`, 1 AS `lk_parent_tag_id`, 1 AS `updater`, 1 AS `updater_fmt`, 1 AS `updater_file_name`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_hr_recruit_lk_val` -- DROP TABLE IF EXISTS `vw_hr_recruit_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_hr_recruit_lk_val` AS SELECT 1 AS `idhr_recruit_lk_val`, 1 AS `idhr_recruit_lk`, 1 AS `lk_val_par`, 1 AS `hr_val`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_audit` -- DROP TABLE IF EXISTS `vw_immi_audit`; /*!50001 DROP VIEW IF EXISTS `vw_immi_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_audit` AS SELECT 1 AS `idimmi_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_lk_val` -- DROP TABLE IF EXISTS `vw_immi_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_immi_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_lk_val` AS SELECT 1 AS `idimmi_lk_val`, 1 AS `idimmi_lk`, 1 AS `lk_val`, 1 AS `lk_val_desc`, 1 AS `immi_form`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `lk_parent_val_id`, 1 AS `parent_lk_val`, 1 AS `parent_lk_val_desc`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_lk_wrk_flow` -- DROP TABLE IF EXISTS `vw_immi_lk_wrk_flow`; /*!50001 DROP VIEW IF EXISTS `vw_immi_lk_wrk_flow`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_lk_wrk_flow` AS SELECT 1 AS `idimmi_lk_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `id_wrk_flow`, 1 AS `wrk_flow_desc`, 1 AS `id_wrk_flow_parent`, 1 AS `look_restart`, 1 AS `look_initial`, 1 AS `disp_order`, 1 AS `updater`, 1 AS `updater_fmt`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `last_updated_by`, 1 AS `lk_val`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_qry` -- DROP TABLE IF EXISTS `vw_immi_qry`; /*!50001 DROP VIEW IF EXISTS `vw_immi_qry`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_qry` AS SELECT 1 AS `idimmi_qry`, 1 AS `disp_order`, 1 AS `immi_desc`, 1 AS `immi_desc_detail`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt` -- DROP TABLE IF EXISTS `vw_immi_rcpt`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt` AS SELECT 1 AS `idimmi_rcpt`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `rcpt_no`, 1 AS `rcpt_par_cnt`, 1 AS `rcpt_par_cnt_nm`, 1 AS `rcpt_ch_cnt`, 1 AS `rcpt_ch_cnt_nm`, 1 AS `rcpt_type`, 1 AS `rcpt_type_nm`, 1 AS `rcpt_type_sub`, 1 AS `rcpt_type_sub_nm`, 1 AS `rcpt_loc_cnt`, 1 AS `rcpt_loc_cnt_nm`, 1 AS `rcpt_address`, 1 AS `rcpt_address_nm`, 1 AS `emp_id`, 1 AS `emp_fnm`, 1 AS `emp_nm`, 1 AS `filed_dt`, 1 AS `filed_dt_fmt`, 1 AS `filed_dt_yr`, 1 AS `filed_dt_mon`, 1 AS `ad_title`, 1 AS `ad_title_nm`, 1 AS `occ_code`, 1 AS `occ_code_nm`, 1 AS `skill_level`, 1 AS `skill_level_nm`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `from_dt_yr`, 1 AS `from_dt_mon`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `to_dt_yr`, 1 AS `to_dt_mon`, 1 AS `from_to_dt_days`, 1 AS `from_to_dt_days_vir`, 1 AS `from_to_dt_days_combo`, 1 AS `valid_days`, 1 AS `valid_days_nm`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `expire_dt_fmt2`, 1 AS `expire_dt_no_days`, 1 AS `expire_dt_cur_stat`, 1 AS `education`, 1 AS `education_nm`, 1 AS `exp_yr`, 1 AS `exp_yr_nm`, 1 AS `sal_type`, 1 AS `sal_type_nm`, 1 AS `sal_amt`, 1 AS `sal_amt_nm`, 1 AS `assigned_to`, 1 AS `assigned_to_fnm`, 1 AS `assigned_to_nm`, 1 AS `idimmi_lk_wrk_flow`, 1 AS `idimmi_lk_wrk_flow_nm`, 1 AS `immi_stat_st_dt`, 1 AS `immi_stat_st_dt_fmt`, 1 AS `immi_stat_e_est_dt`, 1 AS `immi_stat_e_est_dt_fmt`, 1 AS `immi_stat_st_e_est_dt`, 1 AS `immi_stat_st_e_est_dt_vir`, 1 AS `immi_stat_e_real_dt`, 1 AS `immi_stat_e_real_dt_fmt`, 1 AS `immi_stat_st_e_real_dt`, 1 AS `immi_stat_st_e_real_dt_vir`, 1 AS `immi_stat_st_e_real_dt_cur_stat`, 1 AS `immi_stat_st_e_dt_cur_est`, 1 AS `rcpt_status`, 1 AS `rcpt_status_nm`, 1 AS `immi_stat_cnt`, 1 AS `immi_summary`, 1 AS `idlook_stat_order`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt_addr` -- DROP TABLE IF EXISTS `vw_immi_rcpt_addr`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_addr`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt_addr` AS SELECT 1 AS `idimmi_rcpt_addr`, 1 AS `idimmi_rcpt`, 1 AS `look_street_no_id`, 1 AS `look_street_id`, 1 AS `look_street_no`, 1 AS `postal_id`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `street_type_nm`, 1 AS `city_id`, 1 AS `zip_code`, 1 AS `state_id`, 1 AS `city_name`, 1 AS `county_district_city_nm`, 1 AS `country_id`, 1 AS `state_name`, 1 AS `con_name`, 1 AS `property_type`, 1 AS `property_type_nm`, 1 AS `suite_no`, 1 AS `addresses`, 1 AS `tm_zn`, 1 AS `start_tm`, 1 AS `start_tm_fmt`, 1 AS `end_tm`, 1 AS `end_tm_fmt`, 1 AS `hrs_tm`, 1 AS `hrs_tm_nm`, 1 AS `off_time`, 1 AS `off_time_nm`, 1 AS `days_schedule`, 1 AS `days`, 1 AS `day_cy`, 1 AS `day_cy_nm`, 1 AS `day_pcnt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt_doc` -- DROP TABLE IF EXISTS `vw_immi_rcpt_doc`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt_doc` AS SELECT 1 AS `idimmi_rcpt_doc`, 1 AS `idimmi_rcpt`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `rcpt_type`, 1 AS `rcpt_type_nm`, 1 AS `rcpt_no`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt_parent` -- DROP TABLE IF EXISTS `vw_immi_rcpt_parent`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_parent`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt_parent` AS SELECT 1 AS `idimmi_rcpt_parent`, 1 AS `rcpt_parent_id`, 1 AS `comp_id_par`, 1 AS `comp_fnm_par`, 1 AS `comp_nm_par`, 1 AS `rcpt_loc_cnt_par`, 1 AS `rcpt_loc_cnt_nm_par`, 1 AS `rcpt_address_par`, 1 AS `rcpt_address_nm_par`, 1 AS `rcpt_type_par`, 1 AS `rcpt_type_nm_par`, 1 AS `rcpt_type_sub_par`, 1 AS `rcpt_type_sub_nm_par`, 1 AS `rcpt_no_par`, 1 AS `emp_id_par`, 1 AS `emp_fnm_par`, 1 AS `emp_nm_par`, 1 AS `filled_dt_par`, 1 AS `filled_dt_fmt_par`, 1 AS `ad_title_par`, 1 AS `ad_title_nm_par`, 1 AS `occ_code_par`, 1 AS `occ_code_nm_par`, 1 AS `skill_level_par`, 1 AS `skill_level_nm_par`, 1 AS `from_dt_par`, 1 AS `from_dt_fmt_par`, 1 AS `to_dt_par`, 1 AS `to_dt_fmt_par`, 1 AS `from_to_dt_days_par`, 1 AS `from_to_dt_days_vir_par`, 1 AS `valid_days_par`, 1 AS `valid_days_nm_par`, 1 AS `expire_dt_par`, 1 AS `expire_dt_fmt_par`, 1 AS `education_par`, 1 AS `education_nm_par`, 1 AS `exp_yr_par`, 1 AS `exp_yr_nm_par`, 1 AS `sal_type_par`, 1 AS `sal_type_nm_par`, 1 AS `sal_amt_par`, 1 AS `sal_amt_nm_par`, 1 AS `rcpt_child_id`, 1 AS `comp_id_ch`, 1 AS `comp_fnm_ch`, 1 AS `comp_nm_ch`, 1 AS `rcpt_type_ch`, 1 AS `rcpt_type_nm_ch`, 1 AS `rcpt_type_sub_ch`, 1 AS `rcpt_type_sub_nm_ch`, 1 AS `rcpt_loc_cnt_ch`, 1 AS `rcpt_loc_cnt_nm_ch`, 1 AS `rcpt_address_ch`, 1 AS `rcpt_address_nm_ch`, 1 AS `rcpt_no_ch`, 1 AS `emp_id_ch`, 1 AS `emp_fnm_ch`, 1 AS `emp_nm_ch`, 1 AS `filled_dt_ch`, 1 AS `filled_dt_fmt_ch`, 1 AS `ad_title_ch`, 1 AS `ad_title_nm_ch`, 1 AS `occ_code_ch`, 1 AS `occ_code_nm_ch`, 1 AS `skill_level_ch`, 1 AS `skill_level_nm_ch`, 1 AS `from_dt_ch`, 1 AS `from_dt_fmt_ch`, 1 AS `to_dt_ch`, 1 AS `to_dt_fmt_ch`, 1 AS `from_to_dt_days_ch`, 1 AS `from_to_dt_days_vir_ch`, 1 AS `valid_days_ch`, 1 AS `valid_days_nm_ch`, 1 AS `expire_dt_ch`, 1 AS `expire_dt_fmt_ch`, 1 AS `education_ch`, 1 AS `education_nm_ch`, 1 AS `exp_yr_ch`, 1 AS `exp_yr_nm_ch`, 1 AS `sal_type_ch`, 1 AS `sal_type_nm_ch`, 1 AS `sal_amt_ch`, 1 AS `sal_amt_nm_ch`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt_stat` -- DROP TABLE IF EXISTS `vw_immi_rcpt_stat`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_stat`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt_stat` AS SELECT 1 AS `idimmi_rcpt_stat`, 1 AS `idimmi_rcpt`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `rcpt_type`, 1 AS `rcpt_type_nm`, 1 AS `rcpt_no`, 1 AS `rcpt_status`, 1 AS `rcpt_status_nm`, 1 AS `stat_st_dt`, 1 AS `stat_st_dt_fmt`, 1 AS `stat_st_dt_yr`, 1 AS `stat_st_dt_mon`, 1 AS `stat_e_dt`, 1 AS `stat_e_dt_fmt`, 1 AS `stat_e_dt_yr`, 1 AS `stat_e_dt_mon`, 1 AS `stat_st_e_dt`, 1 AS `stat_st_e_dt_vir`, 1 AS `cur_stat`, 1 AS `cur_stat_nm`, 1 AS `cur_stat_st_dt`, 1 AS `cur_stat_st_dt_fmt`, 1 AS `cur_stat_e_real_dt`, 1 AS `cur_stat_e_real_dt_fmt`, 1 AS `cur_stat_st_e_real_dt`, 1 AS `cur_stat_st_e_real_dt_vir`, 1 AS `stat_smry`, 1 AS `idlook_stat_order`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_immi_rcpt_stat_doc` -- DROP TABLE IF EXISTS `vw_immi_rcpt_stat_doc`; /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_stat_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_immi_rcpt_stat_doc` AS SELECT 1 AS `idimmi_rcpt_stat_doc`, 1 AS `idimmi_rcpt_stat`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_inv` -- DROP TABLE IF EXISTS `vw_inv`; /*!50001 DROP VIEW IF EXISTS `vw_inv`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_inv` AS SELECT 1 AS `idinv`, 1 AS `from_ref_tab`, 1 AS `from_ref_id`, 1 AS `from_nm`, 1 AS `from_fnm`, 1 AS `all_contacts`, 1 AS `from_look_street_no_id`, 1 AS `from_address`, 1 AS `from_suite_no`, 1 AS `from_address_type`, 1 AS `from_address_type_nm`, 1 AS `inv_phone`, 1 AS `inv_email`, 1 AS `inv_pre_no`, 1 AS `invoice_no`, 1 AS `inv_post_no`, 1 AS `to_ref_tab`, 1 AS `to_ref_id`, 1 AS `to_nm`, 1 AS `to_fnm`, 1 AS `to_look_street_no_id`, 1 AS `to_address`, 1 AS `to_suite_no`, 1 AS `to_address_type`, 1 AS `to_address_type_nm`, 1 AS `from_dt`, 1 AS `from_dt_fmt`, 1 AS `to_dt`, 1 AS `to_dt_fmt`, 1 AS `billed_dt`, 1 AS `billed_dt_fmt`, 1 AS `due_dt`, 1 AS `due_dt_fmt`, 1 AS `summary`, 1 AS `amt_sub`, 1 AS `amt_tax`, 1 AS `amt_tol`, 1 AS `amt_paid`, 1 AS `amt_bal`, 1 AS `visible`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_inv_audit` -- DROP TABLE IF EXISTS `vw_inv_audit`; /*!50001 DROP VIEW IF EXISTS `vw_inv_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_inv_audit` AS SELECT 1 AS `idinv_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_inv_doc` -- DROP TABLE IF EXISTS `vw_inv_doc`; /*!50001 DROP VIEW IF EXISTS `vw_inv_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_inv_doc` AS SELECT 1 AS `idinv_doc`, 1 AS `idinv`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_log_global` -- DROP TABLE IF EXISTS `vw_log_global`; /*!50001 DROP VIEW IF EXISTS `vw_log_global`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_log_global` AS SELECT 1 AS `idglb_log`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_yr`, 1 AS `updated_mon`, 1 AS `updated_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `tab_nm_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl1`, 1 AS `idlook_menu_pvt_lvl1_fmt`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_fmt`, 1 AS `menu_main_sub`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_look_address2` -- DROP TABLE IF EXISTS `vw_look_address2`; /*!50001 DROP VIEW IF EXISTS `vw_look_address2`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_look_address2` AS SELECT 1 AS `comp_emp`, 1 AS `comp_emp_add_id`, 1 AS `comp_emp_id`, 1 AS `comp_logo_emp_fnm`, 1 AS `companyname_emp_nm`, 1 AS `look_street_no_id`, 1 AS `addresses`, 1 AS `house_apt_type`, 1 AS `house_apt_nm`, 1 AS `add_type`, 1 AS `from_dt`, 1 AS `from_dt_yr`, 1 AS `from_dt_mon`, 1 AS `from_dt_fmt`, 1 AS `to_dt`, 1 AS `to_dt_yr`, 1 AS `to_dt_mon`, 1 AS `to_dt_fmt`, 1 AS `from_to_dt`, 1 AS `from_to_dt_vir`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_look_menu_pvt` -- DROP TABLE IF EXISTS `vw_look_menu_pvt`; /*!50001 DROP VIEW IF EXISTS `vw_look_menu_pvt`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_look_menu_pvt` AS SELECT 1 AS `idlook_menu_pvt`, 1 AS `lk_values`, 1 AS `lk_design`, 1 AS `lk_value_desc`, 1 AS `lk_value_code`, 1 AS `lk_admin`, 1 AS `lk_display_id`, 1 AS `lk_sub_value_id`, 1 AS `updater`, 1 AS `updater_nm`, 1 AS `updater_file_name`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_look_street` -- DROP TABLE IF EXISTS `vw_look_street`; /*!50001 DROP VIEW IF EXISTS `vw_look_street`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_look_street` AS SELECT 1 AS `look_street_id`, 1 AS `postal_id`, 1 AS `street_name`, 1 AS `street_type`, 1 AS `street_type_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mk_lk_val` -- DROP TABLE IF EXISTS `vw_mk_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_mk_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mk_lk_val` AS SELECT 1 AS `idmkt_lk_val`, 1 AS `idmkt_lk`, 1 AS `lk_val_par`, 1 AS `mkt_value`, 1 AS `child_lvl`, 1 AS `mkt_value_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_audit` -- DROP TABLE IF EXISTS `vw_mkt_audit`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_audit` AS SELECT 1 AS `idmkt_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_comp` -- DROP TABLE IF EXISTS `vw_mkt_comp`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_comp` AS SELECT 1 AS `idmkt_comp`, 1 AS `companyname`, 1 AS `company_info`, 1 AS `comp_website`, 1 AS `comp_phone`, 1 AS `comp_email`, 1 AS `comp_all_detail`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `track`, 1 AS `block`, 1 AS `block_dt`, 1 AS `block_dt_fmt`, 1 AS `block_dt_yr`, 1 AS `block_dt_mon`, 1 AS `block_dt_yr_mon`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_comp_open` -- DROP TABLE IF EXISTS `vw_mkt_comp_open`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_comp_open` AS SELECT 1 AS `idmkt_comp_open`, 1 AS `idmkt_comp_ven`, 1 AS `mkt_comp_ven_nm`, 1 AS `mkt_comp_ven_nm_contact`, 1 AS `ven_acc_mgr`, 1 AS `ven_acc_mgr_fnm`, 1 AS `ven_acc_mgr_nm`, 1 AS `ven_req_type`, 1 AS `ven_req_type_nm`, 1 AS `ven_track`, 1 AS `ven_block`, 1 AS `ven_block_dt`, 1 AS `ven_block_dt_fmt`, 1 AS `idmkt_comp_client`, 1 AS `mkt_comp_client_nm`, 1 AS `client_acc_mgr`, 1 AS `client_acc_mgr_fnm`, 1 AS `client_acc_mgr_nm`, 1 AS `client_req_type`, 1 AS `client_req_type_nm`, 1 AS `client_track`, 1 AS `client_block`, 1 AS `client_block_dt`, 1 AS `client_block_dt_fmt`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `open_dt`, 1 AS `open_dt_fmt`, 1 AS `open_dt_yr`, 1 AS `open_dt_mon`, 1 AS `loc_state`, 1 AS `state_nm`, 1 AS `loc_city`, 1 AS `city_nm`, 1 AS `state_city_nm`, 1 AS `contact_info`, 1 AS `source`, 1 AS `source_nm`, 1 AS `open_details`, 1 AS `close_dt`, 1 AS `close_dt_fmt`, 1 AS `close_dt_yr`, 1 AS `close_dt_mon`, 1 AS `mkt_comp_open_cur_stat`, 1 AS `open_close_day`, 1 AS `open_close_day_fmt`, 1 AS `open_cnt`, 1 AS `open_tol`, 1 AS `open_cnt_tol`, 1 AS `open_pcnt`, 1 AS `summary`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `old_comp_dt`, 1 AS `old_comp_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_comp_open_assist` -- DROP TABLE IF EXISTS `vw_mkt_comp_open_assist`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_comp_open_assist` AS SELECT 1 AS `idmkt_comp_open_assist`, 1 AS `idmkt_comp_open`, 1 AS `idmkt_comp_ven`, 1 AS `mkt_comp_ven_nm`, 1 AS `idmkt_comp_client`, 1 AS `mkt_comp_client_nm`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `open_dt`, 1 AS `open_dt_fmt`, 1 AS `loc_city`, 1 AS `state_nm`, 1 AS `location_nm`, 1 AS `contact_info`, 1 AS `source`, 1 AS `source_nm`, 1 AS `open_details`, 1 AS `close_dt`, 1 AS `close_dt_fmt`, 1 AS `mkt_comp_open_cur_stat`, 1 AS `open_close_day`, 1 AS `open_close_day_fmt`, 1 AS `open_cnt`, 1 AS `open_tol`, 1 AS `open_pcnt`, 1 AS `open_cnt_tol`, 1 AS `assist_id`, 1 AS `assist_fnm`, 1 AS `assist_nm`, 1 AS `assist_st_dt`, 1 AS `assist_st_dt_fmt`, 1 AS `assist_st_dt_yr`, 1 AS `assist_st_dt_mon`, 1 AS `assist_e_dt`, 1 AS `assist_e_dt_fmt`, 1 AS `assist_e_dt_yr`, 1 AS `assist_e_dt_mon`, 1 AS `assist_cur_stat`, 1 AS `idmkt_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `assist_rate`, 1 AS `summary`, 1 AS `assist_status`, 1 AS `assist_status_nm`, 1 AS `stat_e_dt_pre`, 1 AS `stat_e_dt_pre_fmt`, 1 AS `stat_lag_tm`, 1 AS `stat_st_dt`, 1 AS `stat_st_dt_fmt`, 1 AS `stat_st_dt_yr`, 1 AS `stat_st_dt_mon`, 1 AS `stat_e_dt`, 1 AS `stat_e_dt_fmt`, 1 AS `stat_e_dt_yr`, 1 AS `stat_e_dt_mon`, 1 AS `mkt_comp_open_assist_cur_stat`, 1 AS `no_days`, 1 AS `no_days_vir`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `idlook_stat_order`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_comp_open_assist_stat` -- DROP TABLE IF EXISTS `vw_mkt_comp_open_assist_stat`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist_stat`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_comp_open_assist_stat` AS SELECT 1 AS `idmkt_comp_open_assist_stat`, 1 AS `idmkt_comp_open_assist`, 1 AS `idmkt_comp_open`, 1 AS `idmkt_comp_ven`, 1 AS `idmkt_comp_ven_nm`, 1 AS `idmkt_comp_client`, 1 AS `idmkt_comp_client_nm`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `req_type`, 1 AS `req_type_nm`, 1 AS `open_dt`, 1 AS `open_dt_fmt`, 1 AS `loc_city`, 1 AS `state_nm`, 1 AS `location_nm`, 1 AS `contact_info`, 1 AS `source`, 1 AS `source_nm`, 1 AS `open_details`, 1 AS `close_dt`, 1 AS `close_dt_fmt`, 1 AS `mkt_comp_open_cur_stat`, 1 AS `open_close_day`, 1 AS `open_close_day_fmt`, 1 AS `open_cnt`, 1 AS `open_tol`, 1 AS `open_cnt_tol`, 1 AS `open_pcnt`, 1 AS `assist_id`, 1 AS `assist_fnm`, 1 AS `assist_nm`, 1 AS `assist_rate`, 1 AS `summary`, 1 AS `cur_assist_status`, 1 AS `cur_assist_status_nm`, 1 AS `cur_stat_st_dt`, 1 AS `cur_stat_st_dt_fmt`, 1 AS `cur_stat_e_dt`, 1 AS `cur_stat_e_dt_fmt`, 1 AS `no_days`, 1 AS `no_days_vir`, 1 AS `assist_status`, 1 AS `assist_status_nm`, 1 AS `stat_st_dt`, 1 AS `stat_st_dt_fmt`, 1 AS `stat_e_dt`, 1 AS `stat_e_dt_fmt`, 1 AS `mkt_comp_open_assist_cur_stat`, 1 AS `no_days_stat`, 1 AS `no_days_stat_vir`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `idlook_stat_order`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_comp_open_assist_stat_step` -- DROP TABLE IF EXISTS `vw_mkt_comp_open_assist_stat_step`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist_stat_step`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_comp_open_assist_stat_step` AS SELECT 1 AS `idmkt_comp_open_assist_stat_step`, 1 AS `idmkt_comp_open_assist_stat`, 1 AS `mkt_step_detail`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_lk_val` -- DROP TABLE IF EXISTS `vw_mkt_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_lk_val` AS SELECT 1 AS `idmkt_lk_val`, 1 AS `idmkt_lk`, 1 AS `lk_val_par`, 1 AS `mkt_value`, 1 AS `child_lvl`, 1 AS `mkt_value_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_mkt_lk_wrk_flow` -- DROP TABLE IF EXISTS `vw_mkt_lk_wrk_flow`; /*!50001 DROP VIEW IF EXISTS `vw_mkt_lk_wrk_flow`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_mkt_lk_wrk_flow` AS SELECT 1 AS `idmkt_wrk_flow`, 1 AS `wrk_flow_nm`, 1 AS `id_wrk_flow`, 1 AS `wrk_flow_desc`, 1 AS `id_wrk_flow_parent`, 1 AS `look_initial`, 1 AS `look_restart`, 1 AS `disp_order`, 1 AS `updater`, 1 AS `updater_fmt`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_by`, 1 AS `mkt_value`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_audit` -- DROP TABLE IF EXISTS `vw_net_audit`; /*!50001 DROP VIEW IF EXISTS `vw_net_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_audit` AS SELECT 1 AS `idnet_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_blk_dm` -- DROP TABLE IF EXISTS `vw_net_blk_dm`; /*!50001 DROP VIEW IF EXISTS `vw_net_blk_dm`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_blk_dm` AS SELECT 1 AS `idnet_blk_dm`, 1 AS `domain_nm`, 1 AS `domain_reason`, 1 AS `blk_rqtr`, 1 AS `blk_rqtr_fnm`, 1 AS `blk_rqtr_nm`, 1 AS `blk_by`, 1 AS `blk_by_fnm`, 1 AS `blk_by_nm`, 1 AS `blk_date`, 1 AS `blk_date_fmt`, 1 AS `blk_yr`, 1 AS `blk_mon`, 1 AS `blk_day`, 1 AS `blk_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_blk_ip_ser` -- DROP TABLE IF EXISTS `vw_net_blk_ip_ser`; /*!50001 DROP VIEW IF EXISTS `vw_net_blk_ip_ser`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_blk_ip_ser` AS SELECT 1 AS `idnet_blk_ip_ser`, 1 AS `idnet_blk_ip`, 1 AS `idnet_ser`, 1 AS `blk_ser_by`, 1 AS `blk_ser_dt`, 1 AS `blk_ser_dt_fmt`, 1 AS `allow_ip_ser`, 1 AS `ip_address`, 1 AS `cnt_blk`, 1 AS `hostname`, 1 AS `city`, 1 AS `region`, 1 AS `country`, 1 AS `blk_by`, 1 AS `blk_dt`, 1 AS `blk_dt_fmt`, 1 AS `allow_ip`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_script` -- DROP TABLE IF EXISTS `vw_net_script`; /*!50001 DROP VIEW IF EXISTS `vw_net_script`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_script` AS SELECT 1 AS `idnet_script`, 1 AS `script_nm`, 1 AS `script_typ`, 1 AS `script_desc`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `cnt_log`, 1 AS `script_field`, 1 AS `script_col_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_script_run` -- DROP TABLE IF EXISTS `vw_net_script_run`; /*!50001 DROP VIEW IF EXISTS `vw_net_script_run`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_script_run` AS SELECT 1 AS `run`, 1 AS `next_run_min`, 1 AS `next_run_tm`, 1 AS `script_nm`, 1 AS `hostnm`, 1 AS `run_tm`, 1 AS `last_run_tm_fmt`, 1 AS `script_end_fmt`, 1 AS `exe_tm`, 1 AS `idnet_script_run`, 1 AS `idnet_script`, 1 AS `script_desc`, 1 AS `idnet_ser`, 1 AS `hosted`, 1 AS `hostdm`, 1 AS `host_type`, 1 AS `host_mst`, 1 AS `start_dt`, 1 AS `last_run_tm`, 1 AS `script_end`, 1 AS `cnt_log`, 1 AS `run_result`, 1 AS `min_since`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_script_run_log` -- DROP TABLE IF EXISTS `vw_net_script_run_log`; /*!50001 DROP VIEW IF EXISTS `vw_net_script_run_log`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_script_run_log` AS SELECT 1 AS `idnet_script_run_log`, 1 AS `idnet_script`, 1 AS `idnet_script_run`, 1 AS `idnet_ser`, 1 AS `run_result`, 1 AS `run_dt`, 1 AS `run_dt_fmt`, 1 AS `run_by`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `script_end`, 1 AS `script_end_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_secure` -- DROP TABLE IF EXISTS `vw_net_secure`; /*!50001 DROP VIEW IF EXISTS `vw_net_secure`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_secure` AS SELECT 1 AS `idnet_secure`, 1 AS `access_fnm`, 1 AS `hostnm`, 1 AS `access_brsw`, 1 AS `access_by`, 1 AS `access_by_fnm`, 1 AS `access_by_nm`, 1 AS `access_dt`, 1 AS `access_dt_fmt`, 1 AS `access_dt_yr`, 1 AS `access_dt_mon`, 1 AS `menu_main`, 1 AS `menu_main_nm`, 1 AS `menu_sub`, 1 AS `menu_sub_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_ser` -- DROP TABLE IF EXISTS `vw_net_ser`; /*!50001 DROP VIEW IF EXISTS `vw_net_ser`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_ser` AS SELECT 1 AS `idnet_ser`, 1 AS `hostnm`, 1 AS `hosted`, 1 AS `hostdm`, 1 AS `hostdm_multi`, 1 AS `host_type`, 1 AS `host_mst`, 1 AS `ip_lan`, 1 AS `ip_wan`, 1 AS `ip_usr`, 1 AS `gateway`, 1 AS `ips`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated_on`, 1 AS `updated_on_fmt`, 1 AS `mst_hostnm`, 1 AS `mst_hostdm`, 1 AS `mst_ip_lan`, 1 AS `mst_ip_wan`, 1 AS `cnt_ser_blk`, 1 AS `cnt_db_blk`, 1 AS `blocks`, 1 AS `cnt_blk_updated`, 1 AS `cnt_blk_updated_fmt`, 1 AS `dis_tot`, 1 AS `dis_tot_fmt`, 1 AS `dis_use`, 1 AS `dis_use_fmt`, 1 AS `dis_use_tot`, 1 AS `dis_free`, 1 AS `dis_free_fmt`, 1 AS `dis_free_tot`, 1 AS `dis_pcnt`, 1 AS `cnt_dis`, 1 AS `dis_grp_ser_stat`, 1 AS `ser_stat_updated`, 1 AS `ser_stat_updated_fmt`, 1 AS `disc_chk_access`, 1 AS `dis_tol_grp`, 1 AS `dis_mir_lvl`, 1 AS `dis_free_grp`, 1 AS `dis_updated`, 1 AS `dis_updated_fmt`, 1 AS `cpu_dt_tm`, 1 AS `cpu_dt_tm_fmt`, 1 AS `users_load`, 1 AS `sys_load`, 1 AS `io_wait`, 1 AS `idle_wait`, 1 AS `cnt_ser_stat`, 1 AS `cpu_updated`, 1 AS `cpu_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_ser_clone` -- DROP TABLE IF EXISTS `vw_net_ser_clone`; /*!50001 DROP VIEW IF EXISTS `vw_net_ser_clone`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_ser_clone` AS SELECT 1 AS `idnet_clone`, 1 AS `idnet_ser`, 1 AS `hostnm`, 1 AS `hostdm`, 1 AS `host_mst`, 1 AS `ip_lan`, 1 AS `ip_wan`, 1 AS `ip_usr`, 1 AS `gateway`, 1 AS `mst_app`, 1 AS `cloned_app`, 1 AS `code_bk`, 1 AS `db_bk`, 1 AS `valid_days`, 1 AS `validity`, 1 AS `synced`, 1 AS `alert_days`, 1 AS `app_url`, 1 AS `deleted_on`, 1 AS `updater`, 1 AS `updated_on`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_tb_vw_ser` -- DROP TABLE IF EXISTS `vw_net_tb_vw_ser`; /*!50001 DROP VIEW IF EXISTS `vw_net_tb_vw_ser`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_tb_vw_ser` AS SELECT 1 AS `idnet_tb_vw_ser`, 1 AS `idnet_tb_vw`, 1 AS `idnet_clone`, 1 AS `net_tb_vw_ser_updt`, 1 AS `net_tb_vw_updt`, 1 AS `qry`, 1 AS `updater`, 1 AS `idnet_ser`, 1 AS `hostnm`, 1 AS `hostdm`, 1 AS `host_mst`, 1 AS `ip_lan`, 1 AS `ip_wan`, 1 AS `mst_app`, 1 AS `cloned_app`, 1 AS `validity`, 1 AS `deleted_on`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_net_tb_vw_ser_app` -- DROP TABLE IF EXISTS `vw_net_tb_vw_ser_app`; /*!50001 DROP VIEW IF EXISTS `vw_net_tb_vw_ser_app`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_net_tb_vw_ser_app` AS SELECT 1 AS `idnet_tb_vw_ser_app`, 1 AS `idnet_tb_vw_ser`, 1 AS `idnet_clone`, 1 AS `updated_on`, 1 AS `updated_by`, 1 AS `idnet_ser`, 1 AS `host_mst`, 1 AS `ip_lan`, 1 AS `ip_wan`, 1 AS `gateway`, 1 AS `mst_app`, 1 AS `cloned_app`, 1 AS `validity`, 1 AS `deleted_on`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_audit` -- DROP TABLE IF EXISTS `vw_prosp_audit`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_audit` AS SELECT 1 AS `idprosp_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_corp` -- DROP TABLE IF EXISTS `vw_prosp_corp`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_corp` AS SELECT 1 AS `idprosp_corp`, 1 AS `prosp_corp_type`, 1 AS `prosp_corp_type_nm`, 1 AS `corp_entity_name`, 1 AS `corp_name_contact`, 1 AS `corp_source`, 1 AS `corp_source_nm`, 1 AS `corp_level`, 1 AS `corp_level_nm`, 1 AS `corp_domain`, 1 AS `corp_domain_nm`, 1 AS `corp_domain_sub`, 1 AS `corp_domain_sub_nm`, 1 AS `response`, 1 AS `response_nm`, 1 AS `corp_contacts`, 1 AS `corp_address`, 1 AS `corp_address_nm`, 1 AS `register_yr`, 1 AS `register_yr_fmt`, 1 AS `register_state`, 1 AS `register_state_fmt`, 1 AS `start_dt`, 1 AS `start_dt_fmt`, 1 AS `start_dt_yr`, 1 AS `start_dt_mon`, 1 AS `end_dt`, 1 AS `end_dt_fmt`, 1 AS `end_dt_yr`, 1 AS `end_dt_mon`, 1 AS `prosp_corp_cur_stat`, 1 AS `st_end_tm`, 1 AS `st_end_tm_vir`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `topic_discussed`, 1 AS `all_topic`, 1 AS `called_dt`, 1 AS `called_dt_fmt`, 1 AS `call_nxt_dt`, 1 AS `call_nxt_dt_fmt`, 1 AS `call_day_tm`, 1 AS `call_day_tm_vir`, 1 AS `topic_count`, 1 AS `about_corp`, 1 AS `about_corp_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `arch_by_fnm`, 1 AS `arch_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_corp_access` -- DROP TABLE IF EXISTS `vw_prosp_corp_access`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_corp_access` AS SELECT 1 AS `idprosp_corp_access`, 1 AS `corp_accessor`, 1 AS `corp_accessor_fnm`, 1 AS `corp_accessor_nm`, 1 AS `corp_access_acc_mgr`, 1 AS `corp_access_acc_mgr_fnm`, 1 AS `corp_access_acc_mgr_nm`, 1 AS `from_dt_acc`, 1 AS `from_dt_acc_fmt`, 1 AS `to_dt_acc`, 1 AS `to_dt_acc_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_corp_activity` -- DROP TABLE IF EXISTS `vw_prosp_corp_activity`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_activity`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_corp_activity` AS SELECT 1 AS `idprosp_corp_activity`, 1 AS `idprosp_corp`, 1 AS `prosp_corp_type`, 1 AS `prosp_corp_type_nm`, 1 AS `corp_entity_name`, 1 AS `corp_source`, 1 AS `corp_source_nm`, 1 AS `corp_domain`, 1 AS `corp_domain_nm`, 1 AS `corp_domain_sub`, 1 AS `corp_domain_sub_nm`, 1 AS `corp_contacts`, 1 AS `corp_address`, 1 AS `corp_address_nm`, 1 AS `register_yr`, 1 AS `register_yr_fmt`, 1 AS `register_state`, 1 AS `register_state_fmt`, 1 AS `start_dt`, 1 AS `start_dt_fmt`, 1 AS `end_dt`, 1 AS `end_dt_fmt`, 1 AS `prosp_corp_cur_stat`, 1 AS `st_end_tm`, 1 AS `st_end_tm_vir`, 1 AS `about_corp`, 1 AS `topic_disussed`, 1 AS `corp_level`, 1 AS `corp_level_nm`, 1 AS `response`, 1 AS `response_nm`, 1 AS `called_dt`, 1 AS `called_dt_fmt`, 1 AS `called_dt_yr`, 1 AS `called_dt_mon`, 1 AS `acc_mgr`, 1 AS `acc_mgr_fnm`, 1 AS `acc_mgr_nm`, 1 AS `call_nxt_dt`, 1 AS `call_nxt_dt_fmt`, 1 AS `call_nxt_dt_yr`, 1 AS `call_nxt_dt_mon`, 1 AS `prosp_corp_activity_cur_stat`, 1 AS `call_day_tm`, 1 AS `call_day_tm_vir`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `arch_by_fnm`, 1 AS `arch_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_corp_doc` -- DROP TABLE IF EXISTS `vw_prosp_corp_doc`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_corp_doc` AS SELECT 1 AS `idprosp_corp_doc`, 1 AS `idprosp_corp`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_prosp_lk_val` -- DROP TABLE IF EXISTS `vw_prosp_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_prosp_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_prosp_lk_val` AS SELECT 1 AS `idprosp_lk_val`, 1 AS `idprosp_lk`, 1 AS `lk_val_par`, 1 AS `prosp_value`, 1 AS `child_lvl`, 1 AS `prosp_value_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr` -- DROP TABLE IF EXISTS `vw_shr`; /*!50001 DROP VIEW IF EXISTS `vw_shr`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr` AS SELECT 1 AS `idshr`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `shr_no`, 1 AS `shr_no_fmt`, 1 AS `hlding`, 1 AS `hlding_pcnt`, 1 AS `hlding_amt`, 1 AS `hlding_amt_fmt`, 1 AS `issued`, 1 AS `issued_pcnt`, 1 AS `issued_amt`, 1 AS `issued_amt_fmt`, 1 AS `thr_hld`, 1 AS `thr_hld_pcnt`, 1 AS `thr_hld_amt`, 1 AS `thr_hld_amt_fmt`, 1 AS `shr_symbl`, 1 AS `shr_type`, 1 AS `shr_type_nm`, 1 AS `shr_type_desc`, 1 AS `shr_pr`, 1 AS `shr_pr_fmt`, 1 AS `market_cap`, 1 AS `market_cap_fmt`, 1 AS `shr_smry`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr_doc` -- DROP TABLE IF EXISTS `vw_shr_doc`; /*!50001 DROP VIEW IF EXISTS `vw_shr_doc`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr_doc` AS SELECT 1 AS `idshr_doc`, 1 AS `idshr`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_size_fmt`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_fnm`, 1 AS `ref_emp_nm`, 1 AS `usage`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr_hld` -- DROP TABLE IF EXISTS `vw_shr_hld`; /*!50001 DROP VIEW IF EXISTS `vw_shr_hld`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr_hld` AS SELECT 1 AS `idshr_hld`, 1 AS `idshr`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `own_ref_tab`, 1 AS `own_ref_fnm`, 1 AS `own_ref_nm`, 1 AS `own_ref_id`, 1 AS `shr_no`, 1 AS `shr_no_fmt`, 1 AS `total_shares`, 1 AS `total_shares_fmt`, 1 AS `share_amt`, 1 AS `share_amt_fmt`, 1 AS `shr_no_pcnt`, 1 AS `shr_pr`, 1 AS `shr_pr_fmt`, 1 AS `shr_amt_pr`, 1 AS `shr_amt_pr_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr_hld_rec` -- DROP TABLE IF EXISTS `vw_shr_hld_rec`; /*!50001 DROP VIEW IF EXISTS `vw_shr_hld_rec`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr_hld_rec` AS SELECT 1 AS `idshr_hld_rec`, 1 AS `idshr`, 1 AS `companyname`, 1 AS `comp_fnm`, 1 AS `shr_fm`, 1 AS `shr_fm_nm`, 1 AS `shr_no`, 1 AS `shr_pcnt`, 1 AS `shr_to`, 1 AS `shr_to_nm`, 1 AS `trade_dt`, 1 AS `trade_dt_fmt`, 1 AS `strike_pr`, 1 AS `strike_pr_fmt`, 1 AS `settle_dt`, 1 AS `settle_dt_fmt`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr_hld_trd` -- DROP TABLE IF EXISTS `vw_shr_hld_trd`; /*!50001 DROP VIEW IF EXISTS `vw_shr_hld_trd`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr_hld_trd` AS SELECT 1 AS `idshr_hld_trd`, 1 AS `idshr_hld`, 1 AS `own_ref_tab`, 1 AS `own_ref_id`, 1 AS `own_ref_fnm`, 1 AS `own_ref_nm`, 1 AS `comp_fnm`, 1 AS `companyname`, 1 AS `trd_type`, 1 AS `trd_type_nm`, 1 AS `shr_type`, 1 AS `shr_symbl`, 1 AS `shr_type_nm`, 1 AS `shr_type_desc`, 1 AS `shr_hld_shr_no`, 1 AS `shr_hld_shr_no_fmt`, 1 AS `total_shares`, 1 AS `total_shares_fmt`, 1 AS `share_amt`, 1 AS `share_amt_fmt`, 1 AS `shr_no_pcnt`, 1 AS `shr_amt_pr`, 1 AS `shr_amt_pr_fmt`, 1 AS `shr_pr`, 1 AS `shr_pr_fmt`, 1 AS `shr_no_trd`, 1 AS `trd_pr`, 1 AS `trd_smry`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `trd_or_dt`, 1 AS `trd_or_dt_fmt`, 1 AS `trd_exp_day`, 1 AS `trd_exp_dt`, 1 AS `trd_exp_dt_fmt`, 1 AS `trd_exe_dt`, 1 AS `trd_exe_dt_fmt`, 1 AS `trd_or_exe_dt`, 1 AS `trd_or_exe_dt_vir`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_shr_lk_val` -- DROP TABLE IF EXISTS `vw_shr_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_shr_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_shr_lk_val` AS SELECT 1 AS `idshr_lk_val`, 1 AS `idshr_lk`, 1 AS `lk_val_par`, 1 AS `lk_val`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storage_lk_tag` -- DROP TABLE IF EXISTS `vw_storage_lk_tag`; /*!50001 DROP VIEW IF EXISTS `vw_storage_lk_tag`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storage_lk_tag` AS SELECT 1 AS `idstorage_lk_tag`, 1 AS `lk_tag`, 1 AS `lk_tag_desc`, 1 AS `lk_disp_id`, 1 AS `lk_parent_tag_id`, 1 AS `updater`, 1 AS `updater_fmt`, 1 AS `updater_file_name`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `last_updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storages` -- DROP TABLE IF EXISTS `vw_storages`; /*!50001 DROP VIEW IF EXISTS `vw_storages`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storages` AS SELECT 1 AS `idstorages`, 1 AS `file_name`, 1 AS `file_ser_name`, 1 AS `sto_cloud_link`, 1 AS `sto_cloud_link_nm`, 1 AS `sto_cloud`, 1 AS `sto_cloud_nm`, 1 AS `file_size`, 1 AS `file_cnv_size`, 1 AS `actual_size`, 1 AS `owner_id`, 1 AS `owner_fnm`, 1 AS `owner_nm`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `create_dt_yr`, 1 AS `create_dt_mon`, 1 AS `expire_dt`, 1 AS `expire_dt_fmt`, 1 AS `expire_dt_fmt2`, 1 AS `expire_dt_no_days`, 1 AS `expire_dt_cur_stat`, 1 AS `ext_type`, 1 AS `public`, 1 AS `self_view`, 1 AS `smry`, 1 AS `ref_emp_id`, 1 AS `ref_emp_id_fnm`, 1 AS `ref_emp_id_nm`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_dt_fmt`, 1 AS `usage`, 1 AS `sto_tags`, 1 AS `sto_tags_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`, 1 AS `chk_del`, 1 AS `file_cnvt`, 1 AS `dis_mir_lvl`, 1 AS `chk_sync`, 1 AS `chk_sync_date`, 1 AS `show_list`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storages_access` -- DROP TABLE IF EXISTS `vw_storages_access`; /*!50001 DROP VIEW IF EXISTS `vw_storages_access`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storages_access` AS SELECT 1 AS `idstorages_access`, 1 AS `idstorages`, 1 AS `access_to`, 1 AS `access_to_fnm`, 1 AS `access_to_nm`, 1 AS `access_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storages_audit` -- DROP TABLE IF EXISTS `vw_storages_audit`; /*!50001 DROP VIEW IF EXISTS `vw_storages_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storages_audit` AS SELECT 1 AS `idstorages_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storages_order` -- DROP TABLE IF EXISTS `vw_storages_order`; /*!50001 DROP VIEW IF EXISTS `vw_storages_order`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storages_order` AS SELECT 1 AS `idstorages_order`, 1 AS `create_dt`, 1 AS `create_dt_fmt`, 1 AS `create_dt_yr`, 1 AS `create_dt_mon`, 1 AS `create_grp`, 1 AS `idnet_ser`, 1 AS `hostnm`, 1 AS `hostdm`, 1 AS `ip_lan`, 1 AS `ip_wan`, 1 AS `server`, 1 AS `stored_dt`, 1 AS `stored_dt_fmt`, 1 AS `stored_dt_yr`, 1 AS `stored_dt_mon`, 1 AS `stored_dt_cur_stat`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `file_ser_name`, 1 AS `file_size`, 1 AS `ext_type`, 1 AS `public`, 1 AS `chk_sync`, 1 AS `create_stored_dt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_storages_ref` -- DROP TABLE IF EXISTS `vw_storages_ref`; /*!50001 DROP VIEW IF EXISTS `vw_storages_ref`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_storages_ref` AS SELECT 1 AS `idstorages_ref`, 1 AS `idstorages`, 1 AS `file_name`, 1 AS `idlook_menu_pvt_lvl1`, 1 AS `idlook_menu_pvt_lvl1_nm`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `sto_tab_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_student` -- DROP TABLE IF EXISTS `vw_student`; /*!50001 DROP VIEW IF EXISTS `vw_student`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_student` AS SELECT 1 AS `Idstudent`, 1 AS `first_name`, 1 AS `last_name`, 1 AS `nick_name`, 1 AS `school_nm`, 1 AS `school_name`, 1 AS `dob`, 1 AS `dob_fmt`, 1 AS `gender`, 1 AS `gender_nm`, 1 AS `idstudent_doc`, 1 AS `updater`, 1 AS `updater_nm`, 1 AS `last_updated`, 1 AS `last_updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_student_class` -- DROP TABLE IF EXISTS `vw_student_class`; /*!50001 DROP VIEW IF EXISTS `vw_student_class`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_student_class` AS SELECT 1 AS `id_std_class`, 1 AS `idstudent`, 1 AS `student_nm`, 1 AS `school_name`, 1 AS `nick_name`, 1 AS `school_nm`, 1 AS `dob`, 1 AS `dob_fmt`, 1 AS `gender`, 1 AS `gender_nm`, 1 AS `std_class`, 1 AS `from`, 1 AS `from_fmt`, 1 AS `to`, 1 AS `to_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_student_class_exam` -- DROP TABLE IF EXISTS `vw_student_class_exam`; /*!50001 DROP VIEW IF EXISTS `vw_student_class_exam`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_student_class_exam` AS SELECT 1 AS `id_std_class_exam`, 1 AS `idstudent`, 1 AS `student_nm`, 1 AS `nick_name`, 1 AS `school_nm`, 1 AS `school_name`, 1 AS `gender`, 1 AS `gender_nm`, 1 AS `dob`, 1 AS `dob_fmt`, 1 AS `id_std_class`, 1 AS `std_class`, 1 AS `from`, 1 AS `from_fmt`, 1 AS `to`, 1 AS `to_fmt`, 1 AS `subject`, 1 AS `marks`, 1 AS `total`, 1 AS `percentage`, 1 AS `result`, 1 AS `updater`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_tax_audit` -- DROP TABLE IF EXISTS `vw_tax_audit`; /*!50001 DROP VIEW IF EXISTS `vw_tax_audit`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_tax_audit` AS SELECT 1 AS `idtax_audit`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_fmt_yr`, 1 AS `updated_fmt_mon`, 1 AS `updated_fmt_day`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `table_update`, 1 AS `action`, 1 AS `table_id`, 1 AS `col1`, 1 AS `idlook_menu_pvt_lvl2`, 1 AS `idlook_menu_pvt_lvl2_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_dt_yr`, 1 AS `del_dt_mon`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_dt_yr`, 1 AS `archv_dt_mon`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_tax_lk_val` -- DROP TABLE IF EXISTS `vw_tax_lk_val`; /*!50001 DROP VIEW IF EXISTS `vw_tax_lk_val`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_tax_lk_val` AS SELECT 1 AS `idtax_lk_val`, 1 AS `idtax_lk`, 1 AS `lk_val_par`, 1 AS `lk_val`, 1 AS `lk_val_desc`, 1 AS `disp_order`, 1 AS `parent_id`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`, 1 AS `updated_by`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_tax_reg` -- DROP TABLE IF EXISTS `vw_tax_reg`; /*!50001 DROP VIEW IF EXISTS `vw_tax_reg`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_tax_reg` AS SELECT 1 AS `idtax_reg`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `state_id`, 1 AS `state_nm`, 1 AS `city_id`, 1 AS `city_nm`, 1 AS `dept_id`, 1 AS `dept_nm`, 1 AS `reg_number`, 1 AS `login_smry`, 1 AS `login_link`, 1 AS `comp_open_dt`, 1 AS `comp_open_dt_fmt`, 1 AS `comp_close_dt`, 1 AS `comp_close_dt_fmt`, 1 AS `comp_open_close_cur_stat`, 1 AS `comp_open_close_day`, 1 AS `comp_open_close_day_vir`, 1 AS `last_updated`, 1 AS `last_updated_fmt`, 1 AS `updated_by`, 1 AS `updated_by_fnm`, 1 AS `updated_by_nm`, 1 AS `del_dt`, 1 AS `del_dt_fmt`, 1 AS `del_by`, 1 AS `del_by_fnm`, 1 AS `del_by_nm`, 1 AS `del_day`, 1 AS `del_day_vir`, 1 AS `archv_dt`, 1 AS `archv_dt_fmt`, 1 AS `archv_by`, 1 AS `archv_by_fnm`, 1 AS `archv_by_nm`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_tax_reg_rate` -- DROP TABLE IF EXISTS `vw_tax_reg_rate`; /*!50001 DROP VIEW IF EXISTS `vw_tax_reg_rate`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_tax_reg_rate` AS SELECT 1 AS `idtax_reg_rate`, 1 AS `idtax_reg`, 1 AS `comp_id`, 1 AS `comp_fnm`, 1 AS `comp_nm`, 1 AS `state_id`, 1 AS `state_nm`, 1 AS `city_id`, 1 AS `city_nm`, 1 AS `dept_id`, 1 AS `dept_nm`, 1 AS `reg_number`, 1 AS `comp_open_dt`, 1 AS `comp_open_dt_fmt`, 1 AS `comp_close_dt`, 1 AS `comp_close_dt_fmt`, 1 AS `comp_open_close_day`, 1 AS `comp_open_close_day_vir`, 1 AS `tax_for`, 1 AS `creditable`, 1 AS `tax_frm_dt`, 1 AS `tax_frm_dt_fmt`, 1 AS `tax_to_dt`, 1 AS `tax_to_dt_fmt`, 1 AS `tax_frm_to_cur_stat`, 1 AS `tax_frm_to_day`, 1 AS `tax_frm_to_day_vir`, 1 AS `tax_limit`, 1 AS `gender`, 1 AS `gender_nm`, 1 AS `tax_amt`, 1 AS `parent_id`, 1 AS `tax_type`, 1 AS `updater`, 1 AS `updater_fnm`, 1 AS `updater_nm`, 1 AS `updated`, 1 AS `updated_fmt`*/; SET character_set_client = @saved_cs_client; -- -- Temporary table structure for view `vw_web_mail` -- DROP TABLE IF EXISTS `vw_web_mail`; /*!50001 DROP VIEW IF EXISTS `vw_web_mail`*/; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; /*!50001 CREATE VIEW `vw_web_mail` AS SELECT 1 AS `idweb_mail`, 1 AS `email_sender`, 1 AS `idlook_ip_addr`, 1 AS `ip_address`, 1 AS `domain_nm`, 1 AS `ip_contry`, 1 AS `ip_state`, 1 AS `ip_city`, 1 AS `ip_post_code`, 1 AS `idnet_mail_send`, 1 AS `mail_server_port`, 1 AS `user_id`, 1 AS `pass_word`, 1 AS `send_stat`, 1 AS `usage_order`, 1 AS `os_nm`, 1 AS `browser_nm`, 1 AS `device_nm`, 1 AS `msg_sent`, 1 AS `sent_dt`, 1 AS `sent_dt_fmt`, 1 AS `sent_dt_yr`, 1 AS `sent_dt_mon`, 1 AS `sent_dt_yr_mon`, 1 AS `action_by`, 1 AS `action_by_fnm`, 1 AS `action_by_nm`, 1 AS `action_dt`, 1 AS `action_dt_fmt`, 1 AS `sent_act_day`, 1 AS `sent_act_day_vir`*/; SET character_set_client = @saved_cs_client; -- -- Table structure for table `web_mail` -- DROP TABLE IF EXISTS `web_mail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `web_mail` ( `idweb_mail` int(11) NOT NULL AUTO_INCREMENT, `email_sender` varchar(45) DEFAULT NULL, `ph_sender` varchar(45) DEFAULT NULL, `idlook_ip_addr` int(11) DEFAULT NULL, `idnet_mail_send` int(11) DEFAULT NULL, `os_nm` varchar(15) DEFAULT NULL COMMENT 'Mac, Windows, Linux', `browser_nm` varchar(45) DEFAULT NULL, `device_nm` varchar(45) DEFAULT NULL, `msg_sent` varchar(250) DEFAULT NULL, `sent_dt` datetime DEFAULT NULL, `action_by` int(11) DEFAULT NULL, `action_dt` datetime DEFAULT NULL, `sent_act_day` int(5) DEFAULT NULL, `updater` int(11) DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`idweb_mail`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `web_otp` -- DROP TABLE IF EXISTS `web_otp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `web_otp` ( `idweb_otp` int(11) NOT NULL AUTO_INCREMENT, `contact_type` varchar(10) DEFAULT NULL COMMENT 'Phone Or Email', `contact_id` int(11) DEFAULT NULL, `otp_code` varchar(10) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `session_id` varchar(80) DEFAULT NULL, `idlook_ip_addr` int(11) DEFAULT NULL, `otp_sent_dt` datetime DEFAULT NULL, `expire_tm` datetime DEFAULT NULL, `attempts` int(3) DEFAULT NULL, `otp_enter_dt` datetime DEFAULT NULL, `otp_day_tm` int(3) DEFAULT NULL COMMENT 'Value to store in seconds', `otp_stat` varchar(45) DEFAULT NULL, PRIMARY KEY (`idweb_otp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `web_otp2` -- DROP TABLE IF EXISTS `web_otp2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `web_otp2` ( `idweb_otp` int(11) NOT NULL AUTO_INCREMENT, `contact_type` varchar(10) DEFAULT NULL COMMENT 'Phone Or Email', `contact_id` varchar(45) DEFAULT NULL, `otp_code` varchar(10) DEFAULT NULL, `emp_id` int(11) DEFAULT NULL, `session_id` varchar(80) DEFAULT NULL, `idlook_ip_addr` int(11) DEFAULT NULL, `otp_sent_dt` datetime DEFAULT NULL, `expire_tm` datetime DEFAULT NULL, `attempts` int(3) DEFAULT NULL, `otp_enter_dt` datetime DEFAULT NULL, `otp_day_tm` int(3) DEFAULT NULL COMMENT 'Value to store in seconds', `status` enum('pending','verified','expired','max_attempts') DEFAULT 'pending', PRIMARY KEY (`idweb_otp`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Final view structure for view `vw_addresses` -- /*!50001 DROP VIEW IF EXISTS `vw_addresses`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_addresses` AS select `a`.`country_id` AS `country_id`,ifnull(`a`.`con_name`,'No Country') AS `con_name`,`a`.`con_full_name` AS `con_full_name`,`a`.`con_code` AS `con_code`,`a`.`lk_design` AS `lk_design`,`a`.`lk_design_hex` AS `lk_design_hex`,`a`.`con_digit` AS `con_digit`,`b`.`state_id` AS `state_id`,ifnull(`b`.`state_name`,'No State') AS `state_name`,ifnull(`b`.`state_full_name`,'No State Full Name') AS `state_full_name`,`h`.`idlook_county_district` AS `idlook_county_district`,ifnull(`h`.`county_district_city_nm`,'No County') AS `county_district_city_nm`,`c`.`city_id` AS `city_id`,ifnull(`c`.`city_name`,'No City') AS `city_name`,ifnull(`d`.`postal_id`,'No Postal Id') AS `postal_id`,ifnull(`d`.`zip_code`,'No Zip Code') AS `zip_code`,`e`.`look_street_id` AS `look_street_id`,ifnull(`e`.`street_name`,'No Street Name') AS `street_name`,`f`.`look_street_no_id` AS `look_street_no_id`,ifnull(`f`.`look_street_no`,'No Street') AS `look_street_no`,ifnull(`e`.`street_type`,'No Street Type') AS `street_type`,ifnull(`g`.`lk_val`,'No Street Type') AS `street_type_nm`,concat(ifnull(`e`.`street_name`,'No Street Name'),' ',ifnull(`g`.`lk_val`,'No Street Type')) AS `street_name_type`,concat(ifnull(`f`.`look_street_no`,'No Street '),' ',ifnull(`e`.`street_name`,'No Street, '),' ',ifnull(`g`.`lk_val`,'No Street Type'),' ',ifnull(`c`.`city_name`,'No City, '),' (',ifnull(`h`.`county_district_city_nm`,'No County'),'), ',ifnull(`b`.`state_name`,'No State, '),' ',ifnull(`d`.`zip_code`,'No Zip Code, '),' ','(',ifnull(`a`.`con_name`,'No Country'),')') AS `addresses` from (((((((`look_country` `a` left join `look_state` `b` on((`a`.`country_id` = `b`.`country_id`))) left join `look_county_district` `h` on((`b`.`state_id` = `h`.`state_id`))) left join `look_city` `c` on((`h`.`idlook_county_district` = `c`.`idlook_county_district`))) left join `look_postal` `d` on((`c`.`city_id` = `d`.`city_id`))) left join `look_street` `e` on((`d`.`postal_id` = `e`.`postal_id`))) left join `look_street_no` `f` on((`e`.`look_street_id` = `f`.`look_street_id`))) left join `feature_lk_val` `g` on((`e`.`street_type` = `g`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_addresses_old` -- /*!50001 DROP VIEW IF EXISTS `vw_addresses_old`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_addresses_old` AS select `a`.`country_id` AS `country_id`,ifnull(`a`.`con_name`,'No Country') AS `con_name`,`a`.`con_full_name` AS `con_full_name`,`a`.`con_code` AS `con_code`,`a`.`lk_design` AS `lk_design`,`a`.`lk_design_hex` AS `lk_design_hex`,`a`.`con_digit` AS `con_digit`,`b`.`state_id` AS `state_id`,ifnull(`b`.`state_name`,'No State') AS `state_name`,`b`.`state_full_name` AS `state_full_name`,`h`.`idlook_county_district` AS `idlook_county_district`,ifnull(`h`.`county_district_city_nm`,'No County') AS `county_district_city_nm`,`c`.`city_id` AS `city_id`,ifnull(`c`.`city_name`,'No City') AS `city_name`,ifnull(`d`.`postal_id`,'No Postal Id') AS `postal_id`,ifnull(`d`.`zip_code`,'No Zip Code') AS `zip_code`,`e`.`look_street_id` AS `look_street_id`,ifnull(`e`.`street_name`,'No Street Name') AS `street_name`,`f`.`look_street_no_id` AS `look_street_no_id`,ifnull(`f`.`look_street_no`,'No Street') AS `look_street_no`,ifnull(`e`.`street_type`,'No Street Type') AS `street_type`,ifnull(`g`.`lk_val`,'No Street Type') AS `street_type_nm`,concat(ifnull(`e`.`street_name`,'No Street Name'),' ',ifnull(`g`.`lk_val`,'No Street Type')) AS `street_name_type`,concat(ifnull(`f`.`look_street_no`,'No Street '),' ',ifnull(`e`.`street_name`,'No Street, '),' ',ifnull(`g`.`lk_val`,'No Street Type'),', ',ifnull(`c`.`city_name`,'No City, '),' ',ifnull(`h`.`county_district_city_nm`,'No County'),' ',', ',ifnull(`b`.`state_name`,'No State, '),' ',ifnull(`d`.`zip_code`,'No Zip Code, '),' ','(',ifnull(`a`.`con_name`,'No Country'),')') AS `addresses` from (((((((`look_country` `a` left join `look_state` `b` on((`a`.`country_id` = `b`.`country_id`))) left join `look_county_district` `h` on((`b`.`state_id` = `h`.`state_id`))) left join `look_city` `c` on((`c`.`idlook_county_district` = `h`.`idlook_county_district`))) left join `look_postal` `d` on((`c`.`city_id` = `d`.`city_id`))) left join `look_street` `e` on((`d`.`postal_id` = `e`.`postal_id`))) left join `look_street_no` `f` on((`e`.`look_street_id` = `f`.`look_street_id`))) left join `feature_lk_val` `g` on((`e`.`street_type` = `g`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_all_users` -- /*!50001 DROP VIEW IF EXISTS `vw_all_users`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_all_users` AS select `a`.`uid_id` AS `uid_id`,`a`.`emp_id` AS `emp_id`,`f`.`file_name` AS `emp_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `emp_nm`,`a`.`user_name` AS `user_name`,`a`.`encrypt_pswd` AS `encrypt_pswd`,`a`.`pswd_hint` AS `pswd_hint`,`a`.`status` AS `status`,`a`.`expire_hrs` AS `expire_hrs`,`a`.`expire_min` AS `expire_min`,`a`.`expire_tm` AS `expire_tm`,`a`.`idlook_menu_pvt1` AS `idlook_menu_pvt1`,`k`.`lk_values` AS `idlook_menu_pvt1_nm`,`a`.`idlook_menu_pvt2` AS `idlook_menu_pvt2`,`l`.`lk_value_desc` AS `idlook_menu_pvt2_nm`,`a`.`last_clicked` AS `last_clicked`,date_format(`a`.`last_clicked`,'%m-%d-%y %h:%i %p') AS `last_clicked_fmt`,`a`.`last_updated` AS `last_updated`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`last_updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`last_updated` is not null)) then 'Admin' when ((`a`.`last_updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y') AS `del_dt_fmt`,date_format(`a`.`del_dt`,'%Y') AS `del_dt_yr`,date_format(`a`.`del_dt`,'%M') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`h`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y') AS `archv_dt_fmt`,date_format(`a`.`archv_dt`,'%Y') AS `archv_dt_yr`,date_format(`a`.`archv_dt`,'%M') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`i`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `archv_by_nm` from ((((((((((`all_users` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`emp_id`))) left join `storages` `f` on((`f`.`idstorages` = `b`.`idstorages`))) left join `emp` `c` on((`c`.`emp_id` = `a`.`updater`))) left join `storages` `g` on((`g`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`del_by`))) left join `storages` `h` on((`h`.`idstorages` = `d`.`idstorages`))) left join `emp` `e` on((`e`.`emp_id` = `a`.`archv_by`))) left join `storages` `i` on((`i`.`idstorages` = `e`.`idstorages`))) left join `look_menu_pvt` `k` on((`a`.`idlook_menu_pvt1` = `k`.`idlook_menu_pvt`))) left join `look_menu_pvt` `l` on((`a`.`idlook_menu_pvt2` = `l`.`idlook_menu_pvt`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_all_usr_login` -- /*!50001 DROP VIEW IF EXISTS `vw_all_usr_login`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_all_usr_login` AS select `a`.`idall_usr_login` AS `idall_usr_login`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `emp_nm`,`a`.`idlook_ip_addr` AS `idlook_ip_addr`,`d`.`ip_address` AS `ip_address`,`d`.`domain_nm` AS `domain_nm`,`d`.`ip_contry` AS `ip_country`,`d`.`ip_state` AS `ip_state`,`d`.`ip_city` AS `ip_city`,`d`.`ip_post_code` AS `ip_post_code`,`a`.`idlook_menu_pvt_lvl1` AS `idlook_menu_pvt_lvl1`,`e`.`lk_values` AS `main_menu`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,ifnull(`f`.`lk_values`,'Main Menu') AS `sub_menu`,`a`.`device_nm` AS `device_nm`,`a`.`os_nm` AS `os_nm`,`a`.`browser` AS `browser`,`a`.`lastlogin` AS `lastlogin`,date_format(`a`.`lastlogin`,'%m-%d-%y %h:%i %p') AS `lastlogin_fmt`,`a`.`lastlogout` AS `lastlogout`,if(isnull(`a`.`lastlogout`),'Active',date_format(`a`.`lastlogout`,'%m-%d-%y %h:%i %p')) AS `lastlogout_fmt`,`a`.`logouttype` AS `logouttype`,`a`.`logged_in` AS `logged_in`,timestampdiff(MINUTE,`a`.`lastlogin`,`a`.`lastlogout`) AS `logged_in_tm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,date_format(`a`.`del_dt`,'%Y') AS `del_dt_yr`,date_format(`a`.`del_dt`,'%M') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`h`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,date_format(`a`.`archv_dt`,'%Y') AS `archv_dt_yr`,date_format(`a`.`archv_dt`,'%M') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`j`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`i`.`firstname`,' ',`i`.`lastname`) end) AS `archv_by_nm` from (((((((((`all_usr_login` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`emp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `look_ip_addr` `d` on((`d`.`idlook_ip_addr` = `a`.`idlook_ip_addr`))) left join `look_menu_pvt` `e` on((`e`.`idlook_menu_pvt` = `a`.`idlook_menu_pvt_lvl1`))) left join `look_menu_pvt` `f` on((`f`.`idlook_menu_pvt` = `a`.`idlook_menu_pvt_lvl2`))) left join `emp` `g` on((`g`.`emp_id` = `a`.`del_by`))) left join `storages` `h` on((`h`.`idstorages` = `g`.`idstorages`))) left join `emp` `i` on((`i`.`emp_id` = `a`.`archv_by`))) left join `storages` `j` on((`j`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_all_usr_login_wrk` -- /*!50001 DROP VIEW IF EXISTS `vw_all_usr_login_wrk`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_all_usr_login_wrk` AS select `a`.`idall_usr_login_wrk` AS `idall_usr_login_wrk`,`b`.`idall_usr_login` AS `idall_usr_login`,`b`.`emp_id` AS `emp_id`,`d`.`file_name` AS `emp_fnm`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `emp_nm`,`b`.`idlook_ip_addr` AS `idlook_ip_addr`,`e`.`ip_address` AS `ip_address`,`e`.`domain_nm` AS `domain_nm`,`e`.`ip_contry` AS `ip_contry`,`e`.`ip_state` AS `ip_state`,`e`.`ip_city` AS `ip_city`,`e`.`ip_post_code` AS `ip_post_code`,`b`.`device_nm` AS `device_nm`,`b`.`os_nm` AS `os_nm`,`b`.`browser` AS `browser`,`b`.`lastlogin` AS `lastlogin`,date_format(`b`.`lastlogin`,'%m-%d-%y %h:%i %p') AS `lastlogin_fmt`,`b`.`lastlogout` AS `lastlogout`,date_format(`b`.`lastlogout`,'%m-%d-%y %h:%i %p') AS `lastlogout_fmt`,`b`.`logouttype` AS `logouttype`,`a`.`page_nm` AS `page_nm`,`a`.`table_nm` AS `table_nm`,`a`.`page_id` AS `page_id`,`a`.`wrk_ids` AS `wrk_ids`,`a`.`last_clicked` AS `last_clicked`,date_format(`a`.`last_clicked`,'%m-%d-%y %h:%i %p') AS `last_clicked_fmt` from ((((`all_usr_login_wrk` `a` left join `all_usr_login` `b` on((`a`.`idall_usr_login` = `b`.`idall_usr_login`))) left join `emp` `c` on((`b`.`emp_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `look_ip_addr` `e` on((`b`.`idlook_ip_addr` = `e`.`idlook_ip_addr`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_asset_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_asset_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_asset_audit` AS select `a`.`idasset_audit` AS `idasset_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`asset_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_acc` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_acc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_acc` AS select `a`.`idbank_acc` AS `idbank_acc`,`a`.`acc_owner` AS `acc_owner`,(case when (`a`.`acc_owner_tab` like 'emp') then `c`.`file_name` when (`a`.`acc_owner_tab` like 'comp') then `e`.`file_name` end) AS `acc_owner_fnm`,(case when (`a`.`acc_owner_tab` like 'emp') then concat(`b`.`firstname`,' ',`b`.`lastname`) when (`a`.`acc_owner_tab` like 'comp') then `d`.`companyname` end) AS `acc_owner_nm`,`a`.`acc_owner_tab` AS `acc_owner_tab`,`a`.`comp_id` AS `comp_id`,`g`.`file_name` AS `comp_fnm`,`f`.`companyname` AS `comp_nm`,`a`.`comp_acc` AS `comp_acc`,`o`.`lk_val` AS `comp_acc_nm`,`a`.`acc_no` AS `acc_no`,`a`.`open_curncy` AS `open_curncy`,`a`.`acc_open_dt` AS `acc_open_dt`,date_format(`a`.`acc_open_dt`,'%m-%d-%y') AS `acc_open_dt_fmt`,date_format(`a`.`acc_open_dt`,'%Y') AS `acc_open_dt_yr`,date_format(`a`.`acc_open_dt`,'%M') AS `acc_open_dt_mon`,`a`.`acc_type` AS `acc_type`,`n`.`lk_val` AS `acc_type_nm`,`a`.`acc_limit` AS `acc_limit`,`a`.`acc_close_dt` AS `acc_close_dt`,date_format(`a`.`acc_close_dt`,'%m-%d-%y') AS `acc_close_dt_fmt`,date_format(`a`.`acc_close_dt`,'%Y') AS `acc_close_dt_yr`,date_format(`a`.`acc_close_dt`,'%M') AS `acc_close_dt_mon`,`a`.`mature_dt` AS `mature_dt`,date_format(`a`.`mature_dt`,'%m-%d-%y') AS `mature_dt_fmt`,date_format(`a`.`mature_dt`,'%Y') AS `mature_dt_yr`,date_format(`a`.`mature_dt`,'%M') AS `mature_dt_mon`,`a`.`open_close_dt` AS `open_close_dt`,ifnull(`a`.`open_close_dt`,timestampdiff(DAY,`a`.`acc_open_dt`,now())) AS `open_close_dt_vir`,`a`.`contact_info` AS `contact_info`,`a`.`open_bal_dt` AS `open_bal_dt`,date_format(`a`.`open_bal_dt`,'%m-%d-%y') AS `open_bal_dt_fmt`,`a`.`open_bal_amt` AS `open_bal_amt`,`a`.`cur_bal_amt` AS `cur_bal_amt`,`a`.`close_bal_amt` AS `close_bal_amt`,`a`.`open_close_amt` AS `open_close_amt`,`a`.`open_close_pcnt` AS `open_close_pcnt`,`a`.`day_pcnt` AS `day_pcnt`,`a`.`day_rate` AS `day_rate`,`a`.`yr_rate` AS `yr_rate`,`a`.`yr_pcnt` AS `yr_pcnt`,`a`.`isu_bal_amt` AS `isu_bal_amt`,`a`.`isu_bal_dt` AS `isu_bal_dt`,date_format(`a`.`isu_bal_dt`,'%m-%d-%y') AS `isu_bal_dt_fmt`,`a`.`clr_bal_amt` AS `clr_bal_amt`,`a`.`clr_bal_dt` AS `clr_bal_dt`,date_format(`a`.`clr_bal_dt`,'%m-%d-%y') AS `clr_bal_dt_fmt`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`j`.`firstname`,' ',`j`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`m`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`l`.`firstname`,' ',`l`.`lastname`) end) AS `archv_by_nm`,`a`.`old_isu_dt` AS `old_isu_dt`,`a`.`old_clr_dt` AS `old_clr_dt` from ((((((((((((((`bank_acc` `a` left join `emp` `b` on((`a`.`acc_owner` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `company` `d` on((`a`.`acc_owner` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`a`.`comp_id` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`archv_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `bank_lk_val` `n` on((`a`.`acc_type` = `n`.`idbank_lk_val`))) left join `bank_lk_val` `o` on((`a`.`comp_acc` = `o`.`idbank_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_acc_rec` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_acc_rec`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_acc_rec` AS select `a`.`idbank_acc_rec` AS `idbank_acc_rec`,`a`.`hist` AS `hist`,`a`.`idbank_acc` AS `idbank_acc`,`b`.`acc_owner_tab` AS `acc_owner_tab`,`b`.`acc_owner` AS `acc_owner`,(case when (`b`.`acc_owner_tab` like 'emp') then `d`.`file_name` when (`b`.`acc_owner_tab` like 'comp') then `f`.`file_name` end) AS `acc_owner_fnm`,(case when (`b`.`acc_owner_tab` = 'emp') then concat(`c`.`firstname`,' ',`c`.`lastname`) when (`b`.`acc_owner_tab` = 'comp') then `e`.`companyname` end) AS `acc_owner_nm`,`b`.`comp_id` AS `comp_id`,`h`.`file_name` AS `comp_fnm`,`g`.`companyname` AS `comp_nm`,`b`.`acc_no` AS `acc_no`,`b`.`acc_open_dt` AS `acc_open_dt`,date_format(`b`.`acc_open_dt`,'%m-%d-%y') AS `acc_open_dt_fmt`,`b`.`acc_close_dt` AS `acc_close_dt`,date_format(`b`.`acc_close_dt`,'%m-%d-%y') AS `acc_close_dt_fmt`,`b`.`open_close_dt` AS `open_close_dt`,ifnull(`b`.`open_close_dt`,timestampdiff(DAY,`b`.`acc_open_dt`,now())) AS `open_close_dt_vir`,`b`.`acc_type` AS `acc_type`,`i`.`lk_val` AS `acc_type_nm`,`b`.`acc_limit` AS `acc_limit`,`b`.`isu_bal_amt` AS `isu_bal_amt`,`b`.`isu_bal_dt` AS `isu_bal_dt`,date_format(`b`.`isu_bal_dt`,'%m-%d-%y') AS `isu_bal_dt_fmt`,timestampdiff(DAY,`b`.`isu_bal_dt`,now()) AS `isu_bal_days`,`b`.`clr_bal_amt` AS `clr_bal_amt`,`b`.`clr_bal_dt` AS `clr_bal_dt`,date_format(`b`.`clr_bal_dt`,'%m-%d-%y') AS `clr_bal_dt_fmt`,timestampdiff(DAY,`b`.`clr_bal_dt`,now()) AS `clr_bal_days`,`a`.`issue_dt` AS `issue_dt`,date_format(`a`.`issue_dt`,'%m-%d-%y') AS `issue_dt_fmt`,date_format(`a`.`issue_dt`,'%Y') AS `issue_dt_yr`,date_format(`a`.`issue_dt`,'%M') AS `issue_dt_mon`,`a`.`clear_dt` AS `clear_dt`,date_format(`a`.`clear_dt`,'%m-%d-%y') AS `clear_dt_fmt`,date_format(`a`.`clear_dt`,'%Y') AS `clear_dt_yr`,date_format(`a`.`clear_dt`,'%M') AS `clear_dt_mon`,`a`.`isu_clr_dt` AS `isu_clr_dt`,ifnull(`a`.`isu_clr_dt`,timestampdiff(DAY,`a`.`issue_dt`,now())) AS `isu_clr_dt_vir`,`a`.`check_no` AS `check_no`,`a`.`check_amt` AS `check_amt`,round(`a`.`check_amt`,2) AS `check_amt_fmt`,`a`.`rec_type` AS `rec_type`,`a`.`check_type` AS `check_type`,ifnull(`y`.`lk_val`,'No check Type') AS `check_type_nm`,`a`.`trans_ref_tab` AS `trans_ref_tab`,`a`.`trans_ref_id` AS `trans_ref_id`,(case when (`a`.`trans_ref_tab` like 'emp') then `k`.`file_name` when (`a`.`trans_ref_tab` like 'comp') then `m`.`file_name` when (`a`.`trans_ref_tab` like 'tax') then 'NA' end) AS `trans_fnm`,(case when (`a`.`trans_ref_tab` like 'emp') then concat(`j`.`firstname`,' ',`j`.`lastname`) when (`a`.`trans_ref_tab` like 'comp') then `l`.`companyname` when (`a`.`trans_ref_tab` like 'tax') then concat(`x`.`state_name`,' - ',`v`.`lk_val`) end) AS `trans_nm`,`a`.`record_for` AS `record_for`,`ae`.`idbank_lk_flw` AS `lvl1`,`ae`.`wrk_flow_nm` AS `wrk_flow_nm`,`ae`.`idbank_lk_val` AS `idbank_lk_val_lvl1`,`af`.`lk_val` AS `bank_lk_val_lvl1_nm`,`ac`.`idbank_lk_flw` AS `lvl2`,`ac`.`idbank_lk_val` AS `idbank_lk_val_lvl2`,`ad`.`lk_val` AS `bank_lk_val_lvl2_nm`,`aa`.`idbank_lk_flw` AS `lvl3`,`aa`.`idbank_lk_val` AS `idbank_lk_val_lvl3`,`ab`.`lk_val` AS `idbank_lk_val_lvl3_nm`,`a`.`rec_smry` AS `rec_smry`,concat(`af`.`lk_val`,' > ',`ad`.`lk_val`,' > ',`ab`.`lk_val`,' ') AS `record_for_nm`,`a`.`updater` AS `updater`,`p`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`o`.`firstname`,' ',`o`.`lastname`) end) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`r`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`q`.`firstname`,' ',`q`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`t`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`s`.`firstname`,' ',`s`.`lastname`) end) AS `archv_by_nm` from (((((((((((((((((((((((((((((`bank_acc_rec` `a` left join `bank_acc` `b` on((`a`.`idbank_acc` = `b`.`idbank_acc`))) left join `emp` `c` on((`b`.`acc_owner` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `company` `e` on((`b`.`acc_owner` = `e`.`comp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `company` `g` on((`b`.`comp_id` = `g`.`comp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `bank_lk_val` `i` on((`b`.`acc_type` = `i`.`idbank_lk_val`))) left join `bank_lk_val` `y` on((`a`.`check_type` = `y`.`idbank_lk_val`))) left join `emp` `j` on((`a`.`trans_ref_id` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `company` `l` on((`a`.`trans_ref_id` = `l`.`comp_id`))) left join `tax_reg` `u` on((`a`.`trans_ref_id` = `u`.`idtax_reg`))) left join `look_state` `x` on((`u`.`state_id` = `x`.`state_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `bank_lk_val` `n` on((`a`.`record_for` = `n`.`idbank_lk_val`))) left join `emp` `o` on((`a`.`updater` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `emp` `q` on((`a`.`del_by` = `q`.`emp_id`))) left join `storages` `r` on((`q`.`idstorages` = `r`.`idstorages`))) left join `emp` `s` on((`a`.`archv_by` = `s`.`emp_id`))) left join `storages` `t` on((`s`.`idstorages` = `t`.`idstorages`))) left join `bank_lk_flw` `aa` on((`a`.`record_for` = `aa`.`idbank_lk_flw`))) left join `bank_lk_val` `ab` on((`aa`.`idbank_lk_val` = `ab`.`idbank_lk_val`))) left join `bank_lk_flw` `ac` on((`aa`.`idflow_par` = `ac`.`idbank_lk_flw`))) left join `bank_lk_val` `ad` on((`ac`.`idbank_lk_val` = `ad`.`idbank_lk_val`))) left join `bank_lk_flw` `ae` on((`ac`.`idflow_par` = `ae`.`idbank_lk_flw`))) left join `bank_lk_val` `af` on((`ae`.`idbank_lk_val` = `af`.`idbank_lk_val`))) left join `tax_lk_val` `v` on((`u`.`dept_id` = `v`.`idtax_lk_val`))) order by `a`.`idbank_acc`,`a`.`issue_dt` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_audit` AS select `a`.`idbank_audit` AS `idbank_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`bank_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_bud` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_bud`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_bud` AS select `a`.`idbank_bud` AS `idbank_bud`,`a`.`bud_for_tab` AS `bud_for_tab`,`a`.`bud_ref_id` AS `bud_ref_id`,(case when (`a`.`bud_for_tab` = 'emp') then `c`.`file_name` when (`a`.`bud_for_tab` = 'comp') then `e`.`file_name` end) AS `bud_ref_fnm`,(case when (`a`.`bud_for_tab` = 'emp') then concat(`b`.`firstname`,' ',`b`.`lastname`) when (`a`.`bud_for_tab` = 'comp') then `d`.`companyname` end) AS `bud_ref_nm`,`a`.`bud_open_dt` AS `bud_open_dt`,date_format(`a`.`bud_open_dt`,'%m-%d-%y') AS `bud_open_dt_fmt`,date_format(`a`.`bud_open_dt`,'%Y') AS `bud_open_yr`,date_format(`a`.`bud_open_dt`,'%M') AS `bud_open_mon`,`a`.`bud_close_dt` AS `bud_close_dt`,date_format(`a`.`bud_close_dt`,'%m-%d-%y') AS `bud_close_dt_fmt`,date_format(`a`.`bud_close_dt`,'%Y') AS `bud_close_yr`,date_format(`a`.`bud_close_dt`,'%M') AS `bud_close_mon`,`a`.`bud_limit` AS `bud_limit`,round(`a`.`bud_limit`,2) AS `bud_limit_fmt`,`a`.`bud_bal` AS `bud_bal`,round(`a`.`bud_bal`,2) AS `bud_bal_fmt`,`a`.`bud_bal_dt` AS `bud_bal_dt`,date_format(`a`.`bud_bal_dt`,'%m-%d-%y') AS `bud_bal_dt_fmt`,date_format(`a`.`bud_bal_dt`,'%Y') AS `bud_bal_yr`,date_format(`a`.`bud_bal_dt`,'%M') AS `bud_bal_mon`,`a`.`del_by` AS `del_by`,`g`.`file_name` AS `del_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`i`.`file_name` AS `archv_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`old_bud_dt` AS `old_bud_dt`,date_format(`a`.`old_bud_dt`,'%m-%d-%y') AS `old_bud_dt_fmt`,date_format(`a`.`old_bud_dt`,'%Y') AS `old_bud_dt_yr`,date_format(`a`.`old_bud_dt`,'%M') AS `old_bud_dt_mon` from ((((((((`bank_bud` `a` left join `emp` `b` on((`a`.`bud_ref_id` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `company` `d` on((`a`.`bud_ref_id` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`del_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`archv_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_bud_rec` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_bud_rec`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_bud_rec` AS select `a`.`idbank_bud_rec` AS `idbank_bud_rec`,`a`.`idbank_bud` AS `idbank_bud`,`b`.`bud_for_tab` AS `bud_for_tab`,`b`.`bud_ref_id` AS `bud_ref_id`,(case when (`b`.`bud_for_tab` = 'emp') then `d`.`file_name` when (`b`.`bud_for_tab` = 'comp') then `f`.`file_name` end) AS `bud_ref_fnm`,(case when (`b`.`bud_for_tab` = 'emp') then concat(`c`.`firstname`,' ',`c`.`lastname`) when (`b`.`bud_for_tab` = 'comp') then `e`.`companyname` end) AS `bud_ref_nm`,`b`.`bud_open_dt` AS `bud_open_dt`,date_format(`b`.`bud_open_dt`,'%m-%d-%y') AS `bud_open_dt_fmt`,`b`.`bud_close_dt` AS `bud_close_dt`,date_format(`b`.`bud_close_dt`,'%m-%d-%y') AS `bud_close_dt_fmt`,`b`.`bud_limit` AS `bud_limit`,round(`b`.`bud_limit`,2) AS `bud_limit_fmt`,`b`.`bud_bal` AS `bud_bal`,round(`b`.`bud_bal`,2) AS `bud_bal_fmt`,`b`.`bud_bal_dt` AS `bud_bal_dt`,date_format(`b`.`bud_bal_dt`,'%m-%d-%y') AS `bud_bal_dt_fmt`,`a`.`trans_ref_tab` AS `trans_ref_tab`,`a`.`trans_ref_id` AS `trans_ref_id`,(case when (`a`.`trans_ref_tab` like 'emp') then `h`.`file_name` when (`a`.`trans_ref_tab` like 'comp') then `j`.`file_name` end) AS `trans_ref_fnm`,ifnull((case when (`a`.`trans_ref_tab` like 'emp') then concat(`g`.`firstname`,' ',`g`.`lastname`) when (`a`.`trans_ref_tab` like 'comp') then `i`.`companyname` end),'No From Name') AS `trans_ref_nm`,`a`.`rec_dt` AS `rec_dt`,date_format(`a`.`rec_dt`,'%m-%d-%y') AS `rec_dt_fmt`,date_format(`a`.`rec_dt`,'%Y') AS `rec_dt_yr`,date_format(`a`.`rec_dt`,'%M') AS `rec_dt_mon`,`a`.`rec_amt` AS `rec_amt`,round(`a`.`rec_amt`,2) AS `rec_amt_fmt`,`a`.`rec_type` AS `rec_type`,ifnull((case when (`a`.`rec_type` = 'D') then 'Deposit' when (`a`.`rec_type` = 'W') then 'Withdrawal' end),'No Rec Type') AS `rec_type_nm`,`a`.`record_for` AS `record_for`,ifnull(`o`.`lk_val`,'NO Record For') AS `record_for_nm`,`a`.`updater` AS `updater`,`q`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`p`.`firstname`,' ',`p`.`lastname`) end) AS `updater_nm`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_by` AS `del_by`,`s`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`r`.`firstname`,' ',`r`.`lastname`) end) AS `del_by_nm`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`u`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`t`.`firstname`,' ',`t`.`lastname`) end) AS `archv_by_nm` from ((((((((((((((((`bank_bud_rec` `a` left join `bank_bud` `b` on((`a`.`idbank_bud` = `b`.`idbank_bud`))) left join `emp` `c` on((`b`.`bud_ref_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `company` `e` on((`b`.`bud_ref_id` = `e`.`comp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`trans_ref_id` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `company` `i` on((`a`.`trans_ref_id` = `i`.`comp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) left join `bank_lk_val` `o` on((`a`.`record_for` = `o`.`idbank_lk_val`))) left join `emp` `p` on((`a`.`updater` = `p`.`emp_id`))) left join `storages` `q` on((`p`.`idstorages` = `q`.`idstorages`))) left join `emp` `r` on((`a`.`del_by` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`a`.`archv_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) order by `a`.`idbank_bud` desc,`a`.`rec_dt` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_bud_rec_bal` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_bud_rec_bal`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_bud_rec_bal` AS select `a`.`idbank_bud_rec_bal` AS `idbank_bud_rec_bal`,`a`.`idbank_bud` AS `idbank_bud`,`b`.`bud_for_tab` AS `bud_for_tab`,`b`.`bud_ref_id` AS `bud_ref_id`,(case when (`b`.`bud_for_tab` = 'emp') then `d`.`file_name` when (`b`.`bud_for_tab` = 'comp') then `f`.`file_name` end) AS `bud_ref_fnm`,(case when (`b`.`bud_for_tab` = 'emp') then concat(`c`.`firstname`,' ',`c`.`lastname`) when (`b`.`bud_for_tab` = 'comp') then `e`.`companyname` end) AS `bud_ref_nm`,`b`.`bud_open_dt` AS `bud_open_dt`,date_format(`b`.`bud_open_dt`,'%m-%d-%y') AS `bud_open_dt_fmt`,`b`.`bud_close_dt` AS `bud_close_dt`,date_format(`b`.`bud_close_dt`,'%m-%d-%y') AS `bud_close_dt_fmt`,`b`.`bud_limit` AS `bud_limit`,round(`b`.`bud_limit`,2) AS `bud_limit_fmt`,`b`.`bud_bal` AS `bud_bal`,round(`b`.`bud_bal`,2) AS `bud_bal_fmt`,`b`.`bud_bal_dt` AS `bud_bal_dt`,date_format(`b`.`bud_bal_dt`,'%m-%d-%y') AS `bud_bal_dt_fmt`,`b`.`old_bud_dt` AS `old_bud_dt`,date_format(`b`.`old_bud_dt`,'%m-%d-%y') AS `old_bud_dt_fmt`,`a`.`consol_dt` AS `consol_dt`,date_format(`a`.`consol_dt`,'%m-%d-%y') AS `consol_dt_fmt`,`a`.`bank_depo` AS `bank_depo`,round(`a`.`bank_depo`,2) AS `bank_depo_fmt`,`a`.`bank_draw` AS `bank_draw`,round(`a`.`bank_draw`,2) AS `bank_draw_fmt`,`a`.`bank_bal` AS `bank_bal`,round(`a`.`bank_bal`,2) AS `bank_bal_fmt` from (((((`bank_bud_rec_bal` `a` left join `bank_bud` `b` on((`a`.`idbank_bud` = `b`.`idbank_bud`))) left join `emp` `c` on((`b`.`bud_ref_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `company` `e` on((`b`.`bud_ref_id` = `e`.`comp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_lk_flw` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_lk_flw`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_lk_flw` AS select `a`.`idbank_lk_flw` AS `idbank_lk_flw`,`a`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`idbank_lk_val` AS `idbank_lk_val`,`b`.`lk_val` AS `look_value`,`a`.`flw_desc` AS `flw_desc`,`a`.`idflow_par` AS `idflow_par`,`a`.`look_initial` AS `look_initial`,`a`.`disp_order` AS `disp_order`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`c`.`firstname`,' ',`c`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((`bank_lk_flw` `a` left join `bank_lk_val` `b` on((`a`.`idbank_lk_val` = `b`.`idbank_lk_val`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_bank_lk_flw2` -- /*!50001 DROP VIEW IF EXISTS `vw_bank_lk_flw2`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_bank_lk_flw2` AS select `a`.`idbank_lk_flw` AS `lvl1`,`a`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`idbank_lk_val` AS `idbank_lk_val_lvl1`,`h`.`lk_val` AS `idbank_lk_val_lvl1_nm`,`a`.`idflow_par` AS `idflow_par`,`a`.`look_initial` AS `look_initial`,`a`.`disp_order` AS `disp_order`,`b`.`idbank_lk_flw` AS `lvl2`,`b`.`idbank_lk_val` AS `idbank_lk_val_lvl2`,`c`.`lk_val` AS `bank_lk_val_lvl2_nm`,`d`.`idbank_lk_flw` AS `lvl3`,`d`.`idbank_lk_val` AS `idbank_lk_val_lvl3`,`e`.`lk_val` AS `bank_lk_val_lvl3_nm`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((`bank_lk_flw` `d` left join ((`bank_lk_flw` `b` left join (`bank_lk_flw` `a` left join `bank_lk_val` `h` on((`a`.`idbank_lk_val` = `h`.`idbank_lk_val`))) on((`a`.`idbank_lk_flw` = `b`.`idflow_par`))) left join `bank_lk_val` `c` on((`b`.`idbank_lk_val` = `c`.`idbank_lk_val`))) on((`b`.`idbank_lk_flw` = `d`.`idflow_par`))) left join `bank_lk_val` `e` on((`d`.`idbank_lk_val` = `e`.`idbank_lk_val`))) left join `emp` `f` on((`a`.`updater` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) where (`a`.`idbank_lk_flw` is not null) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_active` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_active`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_active` AS select `a`.`idcomp_active` AS `idcomp_active`,`a`.`comp_id` AS `comp_id`,`e`.`file_name` AS `comp_fnm`,`b`.`companyname` AS `companyname`,`b`.`comp_website` AS `comp_website`,`a`.`comp_background` AS `comp_background`,`a`.`active_type` AS `active_type`,`a`.`publish` AS `publish`,`a`.`manage_by` AS `manage_by`,`f`.`file_name` AS `manage_by_fnm`,concat(trim(ifnull(`c`.`firstname`,'')),' ',trim(ifnull(nullif(`c`.`middlename`,''),'')),convert((case when ((`c`.`middlename` is not null) and (`c`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`c`.`lastname`,''))) AS `manage_by_nm`,`a`.`client_since` AS `client_since`,date_format(`a`.`client_since`,'%m-%d-%y') AS `client_since_fmt`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,concat(trim(ifnull(`d`.`firstname`,'')),' ',trim(ifnull(nullif(`d`.`middlename`,''),'')),convert((case when ((`d`.`middlename` is not null) and (`d`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`d`.`lastname`,''))) AS `updater_nm`,`a`.`updated` AS `updated` from ((((((`comp_active` `a` left join `company` `b` on((`b`.`comp_id` = `a`.`comp_id`))) left join `storages` `e` on((`b`.`idstorages` = `e`.`idstorages`))) left join `emp` `c` on((`c`.`emp_id` = `a`.`manage_by`))) left join `storages` `f` on((`c`.`idstorages` = `f`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`updater`))) left join `storages` `g` on((`d`.`idstorages` = `g`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_address` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_address`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_address` AS select `a`.`comp_add_id` AS `comp_add_id`,`a`.`comp_id` AS `comp_id`,`g`.`file_name` AS `comp_logo`,`b`.`companyname` AS `companyname`,`a`.`look_street_no_id` AS `look_street_no_id`,`c`.`addresses` AS `addresses`,`a`.`suite_no` AS `suite_no`,`a`.`house_apt_type` AS `house_apt_type`,`d`.`lk_val` AS `house_apt_nm`,`a`.`add_type` AS `add_type`,`a`.`from_dt` AS `from_dt`,date_format(`a`.`from_dt`,'%Y') AS `from_dt_yr`,date_format(`a`.`from_dt`,'%M') AS `from_dt_mon`,date_format(`a`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,`a`.`to_dt` AS `to_dt`,date_format(`a`.`to_dt`,'%Y') AS `to_dt_yr`,date_format(`a`.`to_dt`,'%M') AS `to_dt_mon`,date_format(`a`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,`a`.`from_to_dt` AS `from_to_dt`,timestampdiff(DAY,`a`.`from_dt`,ifnull(`a`.`to_dt`,now())) AS `from_to_dt_vir`,`a`.`updater` AS `updater`,`f`.`file_name` AS `updater_fnm`,concat(`e`.`firstname`,' ',`e`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,_utf8'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updated_by` AS `updated_by`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4),'Not Archived') AS `archv_dt_yr`,ifnull(convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`i`.`firstname`,' ',`i`.`lastname`)) AS `archv_by_nm` from ((((((((((`comp_address` `a` left join `company` `b` on((`b`.`comp_id` = `a`.`comp_id`))) left join `storages` `g` on((`g`.`idstorages` = `b`.`idstorages`))) left join `vw_addresses` `c` on((`c`.`look_street_no_id` = `a`.`look_street_no_id`))) left join `feature_lk_val` `d` on((`d`.`idfeature_lk_val` = `a`.`house_apt_type`))) left join `emp` `e` on((`e`.`emp_id` = `a`.`updater`))) left join `storages` `f` on((`f`.`idstorages` = `e`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`k`.`idstorages` = `j`.`idstorages`))) left join `emp` `i` on((`a`.`archv_by` = `i`.`emp_id`))) left join `storages` `h` on((`h`.`idstorages` = `e`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_audit` AS select `a`.`idcomp_audit` AS `idcomp_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`comp_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_contact` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_contact`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_contact` AS select `a`.`comp_contact_id` AS `comp_contact_id`,`a`.`comp_id` AS `comp_id`,`c`.`file_name` AS `comp_fnm`,`b`.`companyname` AS `companyname`,`a`.`emp_id` AS `emp_id`,`e`.`file_name` AS `emp_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `emp_nm`,`a`.`title` AS `title`,`a`.`all_contacts` AS `all_contacts`,`a`.`description` AS `description`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updated_by` AS `updated_by`,`g`.`file_name` AS `updated_by_fnm`,concat(`f`.`firstname`,' ',`f`.`lastname`) AS `updated_by_nm` from ((((((`comp_contact` `a` left join `company` `b` on((`b`.`comp_id` = `a`.`comp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`emp_id`))) left join `storages` `e` on((`e`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`f`.`emp_id` = `a`.`updated_by`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_contact_no` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_contact_no`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_contact_no` AS select `a`.`comp_contact_no_id` AS `comp_contact_no_id`,`a`.`comp_contact_id` AS `comp_contact_id`,`b`.`comp_id` AS `comp_id`,`k`.`file_name` AS `comp_fnm`,`j`.`companyname` AS `comp_nm`,`b`.`emp_id` AS `emp_id`,`d`.`file_name` AS `emp_fnm`,concat(`c`.`firstname`,' ',`c`.`lastname`) AS `emp_nm`,`b`.`title` AS `title`,`a`.`emp_contact_id` AS `emp_contact_id`,`e`.`contact_id` AS `contact_id`,`e`.`emp_contact_type` AS `emp_contact_type`,`f`.`lk_val` AS `emp_contact_type_nm`,`i`.`contact_detail` AS `contact_detail`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updated_by` AS `updated_by`,`h`.`file_name` AS `updated_by_fnm`,ifnull(concat(`g`.`firstname`,' ',`g`.`lastname`),'Admin') AS `updated_by_nm` from ((((((((((`comp_contact_no` `a` left join `comp_contact` `b` on((`a`.`comp_contact_id` = `b`.`comp_contact_id`))) left join `emp` `c` on((`b`.`emp_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `emp_contact` `e` on((`a`.`emp_contact_id` = `e`.`emp_contact_id`))) left join `emp_lk_val` `f` on((`e`.`emp_contact_type` = `f`.`idemp_lk_value`))) left join `contact_no` `i` on((`e`.`contact_id` = `i`.`contact_id`))) left join `emp` `g` on((`a`.`updated_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `company` `j` on((`b`.`comp_id` = `j`.`comp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_doc` AS select `a`.`idcomp_doc` AS `idcomp_doc`,`a`.`comp_id` AS `comp_id`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`comp_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_lk_val` AS select `a`.`idcomp_lk_val` AS `idcomp_lk_val`,NULL AS `idcomp_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `lk_val`,NULL AS `child_lvl`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idcomp_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt` from ((`comp_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `idcomp_lk_val`,`a`.`idcomp_lk` AS `idcomp_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'System',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt` from ((`comp_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_trng` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_trng`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_trng` AS select `a`.`idcomp_trng` AS `idcomp_trng`,`a`.`disp_order` AS `disp_order`,`a`.`train_nm` AS `train_nm`,`a`.`train_desc` AS `train_desc`,`a`.`duration` AS `duration`,`a`.`cnt` AS `cnt`,`a`.`practical` AS `practical`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`comp_trng` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_comp_trng_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_comp_trng_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_comp_trng_doc` AS select `a`.`idcomp_trng_doc` AS `idcomp_trng_doc`,`a`.`idcomp_trng` AS `idcomp_trng`,`j`.`train_nm` AS `train_nm`,`j`.`train_desc` AS `train_desc`,`a`.`disp_order` AS `disp_order`,`a`.`trng_desc` AS `trng_desc`,`a`.`duration` AS `duration`,`a`.`idstorages` AS `idstorages`,`b`.`file_name` AS `file_name`,`b`.`sto_cloud` AS `sto_cloud`,ifnull(`c`.`lk_val`,'Local') AS `sto_cloud_nm`,`b`.`file_size` AS `file_size`,(case when (`b`.`file_size` < 1024) then concat(`b`.`file_size`,' B') when ((`b`.`file_size` > 1024) and (`b`.`file_size` < 1048576)) then concat(round((`b`.`file_size` / 1024),2),' KB') when ((`b`.`file_size` > 1048576) and (`b`.`file_size` < 1073741824)) then concat(round(((`b`.`file_size` / 1024) / 1024),2),' MB') when (`b`.`file_size` > 1073741824) then concat(round((((`b`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`b`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`b`.`create_dt` AS `create_dt`,date_format(`b`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`b`.`expire_dt` AS `expire_dt`,date_format(`b`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`b`.`ext_type` AS `ext_type`,`b`.`public` AS `public`,`b`.`self_view` AS `self_view`,`b`.`smry` AS `smry`,`b`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,concat(`f`.`firstname`,' ',`f`.`lastname`) AS `ref_emp_nm`,`a`.`cloud_link` AS `cloud_link`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((((((`comp_trng_doc` `a` left join `storages` `b` on((`a`.`idstorages` = `b`.`idstorages`))) left join `feature_lk_val` `c` on((`b`.`sto_cloud` = `c`.`idfeature_lk_val`))) left join `emp` `d` on((`b`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`b`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `comp_trng` `j` on((`a`.`idcomp_trng` = `j`.`idcomp_trng`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_company` -- /*!50001 DROP VIEW IF EXISTS `vw_company`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_company` AS select `a`.`comp_id` AS `comp_id`,`a`.`idstorages` AS `idstorages`,`b`.`file_name` AS `comp_fnm`,`a`.`companyname` AS `companyname`,`a`.`comp_tax_id` AS `comp_tax_id`,`a`.`company_info` AS `company_info`,`a`.`comp_website` AS `comp_website`,`a`.`comp_phone` AS `comp_phone`,`a`.`comp_email` AS `comp_email`,`a`.`all_contacts` AS `all_contacts`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,ifnull(concat(`e`.`firstname`,' ',`e`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4),'Not Archived') AS `archv_dt_yr`,ifnull(convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,ifnull(concat(`g`.`firstname`,' ',`g`.`lastname`),'Admin') AS `archv_by_nm` from (((((((`company` `a` left join `storages` `b` on((`a`.`idstorages` = `b`.`idstorages`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) order by `a`.`last_updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_contact_no` -- /*!50001 DROP VIEW IF EXISTS `vw_contact_no`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_contact_no` AS select `a`.`contact_id` AS `contact_id`,`a`.`country_id` AS `country_id`,`b`.`con_name` AS `con_name`,`b`.`con_full_name` AS `con_full_name`,`b`.`lk_design` AS `lk_design`,`b`.`con_code` AS `con_code`,`b`.`con_digit` AS `con_digit`,`a`.`contact_type` AS `contact_type`,`a`.`contact_detail` AS `contact_detail`,`a`.`contact_cnt` AS `contact_cnt`,`a`.`contact_smry` AS `contact_smry`,`a`.`contact_stat` AS `contact_stat`,ifnull(`a`.`contact_stat`,'Yes') AS `contact_stat_nm`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`c`.`firstname`,'')),' ',trim(ifnull(nullif(`c`.`middlename`,''),'')),convert((case when ((`c`.`middlename` is not null) and (`c`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`c`.`lastname`,'')))) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((`contact_no` `a` left join `look_country` `b` on((`a`.`country_id` = `b`.`country_id`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_apps` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_apps`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_apps` AS select `a`.`iddev_apps` AS `iddev_apps`,`a`.`disp_order` AS `disp_order`,`a`.`app_name` AS `app_name`,ifnull(`a`.`app_skill_avg`,'0.0') AS `app_skill_avg`,ifnull(`a`.`app_gap_avg`,'0.0') AS `app_gap_avg`,`a`.`app_st_dt` AS `app_st_dt`,if(isnull(`a`.`app_st_dt`),'Not Started',date_format(`a`.`app_st_dt`,'%m-%d-%y %h:%i %p')) AS `app_st_dt_fmt`,ifnull(date_format(`a`.`app_st_dt`,'%Y'),'Not Started') AS `app_st_dt_yr`,ifnull(date_format(`a`.`app_st_dt`,'%M'),'Not Started') AS `app_st_dt_mon`,`a`.`comp_id` AS `comp_id`,ifnull(`d`.`companyname`,'No Company') AS `companyname`,`i`.`file_name` AS `comp_fnm`,`a`.`app_description` AS `app_description`,`a`.`app_e_dt` AS `app_e_dt`,(case when (`a`.`app_e_dt` is not null) then date_format(`a`.`app_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`app_e_dt`) and isnull(`a`.`app_st_dt`)) then 'Not Started' when (isnull(`a`.`app_e_dt`) and (`a`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,if(isnull(`a`.`app_e_dt`),'Open','Closed') AS `dev_apps_cur_stat`,(case when (`a`.`app_e_dt` is not null) then date_format(`a`.`app_e_dt`,'%Y') when (isnull(`a`.`app_e_dt`) and isnull(`a`.`app_st_dt`)) then 'Not Started' when (isnull(`a`.`app_e_dt`) and (`a`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_yr`,(case when (`a`.`app_e_dt` is not null) then date_format(`a`.`app_e_dt`,'%M') when (isnull(`a`.`app_e_dt`) and isnull(`a`.`app_st_dt`)) then 'Not Started' when (isnull(`a`.`app_e_dt`) and (`a`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_mon`,`a`.`app_stat_tm` AS `app_stat_tm`,ifnull(`a`.`app_stat_tm`,timestampdiff(MINUTE,`a`.`app_st_dt`,now())) AS `app_stat_tm_vir`,`a`.`app_lag_tm` AS `app_lag_tm`,`a`.`app_lag_tm` AS `app_lag_tm_vir`,`a`.`app_est_cnt` AS `app_est_cnt`,`a`.`app_est_tol` AS `app_est_tol`,concat((case when (`a`.`app_est_cnt` > 999) then concat((trim(round((`a`.`app_est_cnt` / 1000),2)) + 0),'K') when (`a`.`app_est_cnt` < 1000) then `a`.`app_est_cnt` end),' of ',(case when (`a`.`app_est_tol` > 999) then concat((trim(round((`a`.`app_est_tol` / 1000),2)) + 0),'K') when (`a`.`app_est_tol` < 1000) then `a`.`app_est_tol` end)) AS `app_est_cnt_tol`,ifnull(`a`.`app_est_pcnt`,'0%') AS `app_est_pcnt`,`a`.`app_est_req_cnt` AS `app_est_req_cnt`,`a`.`app_est_req_tol` AS `app_est_req_tol`,concat((case when (`a`.`app_est_req_cnt` > 999) then concat((trim(round((`a`.`app_est_req_cnt` / 1000),2)) + 0),'K') when (`a`.`app_est_req_cnt` < 1000) then `a`.`app_est_req_cnt` end),' of ',(case when (`a`.`app_est_req_tol` > 999) then concat((trim(round((`a`.`app_est_req_tol` / 1000),2)) + 0),'K') when (`a`.`app_est_req_tol` < 1000) then `a`.`app_est_req_tol` end)) AS `app_est_req_cnt_tol`,ifnull(`a`.`app_est_req_pcnt`,'0%') AS `app_est_req_pcnt`,`a`.`app_est_req_stat_cnt` AS `app_est_req_stat_cnt`,`a`.`app_est_req_stat_tol` AS `app_est_req_stat_tol`,concat((case when (`a`.`app_est_req_stat_cnt` > 999) then concat((trim(round((`a`.`app_est_req_stat_cnt` / 1000),2)) + 0),'K') when (`a`.`app_est_req_stat_cnt` < 1000) then `a`.`app_est_req_stat_cnt` end),' of ',(case when (`a`.`app_est_req_stat_tol` > 999) then concat((trim(round((`a`.`app_est_req_stat_tol` / 1000),2)) + 0),'K') when (`a`.`app_est_req_stat_tol` < 1000) then `a`.`app_est_req_stat_tol` end)) AS `app_est_req_stat_cnt_tol`,ifnull(`a`.`app_est_req_stat_pcnt`,'0%') AS `app_est_req_stat_pcnt`,`a`.`app_case_cnt` AS `app_case_cnt`,`a`.`app_case_tol` AS `app_case_tol`,concat((case when (`a`.`app_case_cnt` > 999) then concat((trim(round((`a`.`app_case_cnt` / 1000),2)) + 0),'K') when (`a`.`app_case_cnt` < 1000) then `a`.`app_case_cnt` end),' of ',(case when (`a`.`app_case_tol` > 999) then concat((trim(round((`a`.`app_case_tol` / 1000),2)) + 0),'K') when (`a`.`app_case_tol` < 1000) then `a`.`app_case_tol` end)) AS `app_case_cnt_tol`,`a`.`app_case_pcnt` AS `app_case_pcnt`,`a`.`app_case_atmpt` AS `app_case_atmpt`,`a`.`app_bud_amt` AS `app_bud_amt`,`a`.`app_use_amt` AS `app_use_amt`,concat((case when ((`a`.`app_use_amt` > 999) and (`a`.`app_use_amt` < 1000000)) then convert(concat((trim(round((`a`.`app_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`app_use_amt` < 1000) then `a`.`app_use_amt` when ((`a`.`app_use_amt` > 999999) and (`a`.`app_use_amt` < 1000000000)) then convert(concat((trim(round((`a`.`app_use_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`app_use_amt` > 999999999) then convert(concat((trim(round((`a`.`app_use_amt` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`a`.`app_bud_amt` > 999) and (`a`.`app_bud_amt` < 1000000)) then convert(concat((trim(round((`a`.`app_bud_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`app_bud_amt` < 1000) then `a`.`app_bud_amt` when ((`a`.`app_bud_amt` > 999999) and (`a`.`app_bud_amt` < 1000000000)) then convert(concat((trim(round((`a`.`app_bud_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`app_bud_amt` > 999999999) then convert(concat((trim(round((`a`.`app_bud_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `app_bud_use_amt`,`a`.`app_use_pcnt` AS `app_use_pcnt`,`a`.`app_bud_bal` AS `app_bud_bal`,`a`.`app_bud_pcnt` AS `app_bud_pcnt`,`a`.`app_pay_amt` AS `app_pay_amt`,concat((case when ((`a`.`app_pay_amt` > 999) and (`a`.`app_pay_amt` < 1000000)) then convert(concat((trim(round((`a`.`app_pay_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`app_pay_amt` < 1000) then `a`.`app_pay_amt` when ((`a`.`app_pay_amt` > 999999) and (`a`.`app_pay_amt` < 1000000000)) then convert(concat((trim(round((`a`.`app_pay_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`app_pay_amt` > 999999999) then convert(concat((trim(round((`a`.`app_pay_amt` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`a`.`app_use_amt` > 999) and (`a`.`app_use_amt` < 1000000)) then convert(concat((trim(round((`a`.`app_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`app_use_amt` < 1000) then `a`.`app_use_amt` when ((`a`.`app_use_amt` > 999999) and (`a`.`app_use_amt` < 1000000000)) then convert(concat((trim(round((`a`.`app_use_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`app_use_amt` > 999999999) then convert(concat((trim(round((`a`.`app_use_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `app_pay_bal`,`a`.`app_pay_pcnt` AS `app_pay_pcnt`,`a`.`app_bal_amt` AS `app_bal_amt`,`a`.`app_bal_pcnt` AS `app_bal_pcnt`,`a`.`updater` AS `updater`,`f`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,'',`e`.`lastname`)) AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,ifnull(date_format(`a`.`last_updated`,'%Y'),'Never') AS `last_updated_yr`,ifnull(date_format(`a`.`last_updated`,'%M'),'Never') AS `last_updated_mon`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`g`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`b`.`firstname`,'',`b`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Not Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`c`.`firstname`,'',`c`.`lastname`)) AS `archv_by_nm` from ((((((((`dev_apps` `a` left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `f` on((`f`.`idstorages` = `e`.`idstorages`))) left join `emp` `b` on((`a`.`del_by` = `b`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `b`.`idstorages`))) left join `emp` `c` on((`a`.`archv_by` = `c`.`emp_id`))) left join `storages` `h` on((`h`.`idstorages` = `c`.`idstorages`))) left join `company` `d` on((`a`.`comp_id` = `d`.`comp_id`))) left join `storages` `i` on((`i`.`idstorages` = `d`.`idstorages`))) order by `a`.`last_updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_apps_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_apps_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_apps_doc` AS select `a`.`iddev_app_doc` AS `iddev_app_doc`,`a`.`iddev_apps` AS `iddev_apps`,`b`.`app_name` AS `app_name`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((((((`dev_apps_doc` `a` left join `dev_apps` `b` on((`a`.`iddev_apps` = `b`.`iddev_apps`))) left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_audit` AS select `a`.`iddev_audit` AS `iddev_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`dev_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est` AS select `a`.`iddev_est` AS `iddev_est`,`a`.`attach` AS `attach`,`a`.`iddev_apps` AS `iddev_apps`,`b`.`app_name` AS `app_name`,`b`.`app_st_dt` AS `app_st_dt`,if(isnull(`b`.`app_st_dt`),'Not Started',date_format(`b`.`app_st_dt`,'%m-%d-%y %h:%i %p')) AS `app_st_dt_fmt`,`b`.`app_e_dt` AS `app_e_dt`,(case when (`b`.`app_e_dt` is not null) then date_format(`b`.`app_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`b`.`app_e_dt`) and isnull(`b`.`app_st_dt`)) then 'Not Started' when (isnull(`b`.`app_e_dt`) and (`b`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,if(isnull(`b`.`app_e_dt`),'Open','Closed') AS `dev_apps_cur_stat`,`b`.`comp_id` AS `comp_id`,`d`.`file_name` AS `comp_logo`,ifnull(`c`.`companyname`,'No Company') AS `companyname`,concat((case when (`b`.`app_est_cnt` > 999) then concat((trim(round((`b`.`app_est_cnt` / 1000),2)) + 0),'K') when (`b`.`app_est_cnt` < 1000) then `b`.`app_est_cnt` end),' of ',(case when (`b`.`app_est_tol` > 999) then concat((trim(round((`b`.`app_est_tol` / 1000),2)) + 0),'K') when (`b`.`app_est_tol` < 1000) then `b`.`app_est_tol` end)) AS `app_est_cnt_tol`,ifnull(`b`.`app_est_pcnt`,'0%') AS `app_est_pcnt`,`b`.`app_bud_amt` AS `app_bud_amt`,`b`.`app_use_amt` AS `app_use_amt`,concat((case when ((`b`.`app_use_amt` > 999) and (`b`.`app_use_amt` < 1000000)) then convert(concat((trim(round((`b`.`app_use_amt` / 1000),2)) + 0),'K') using latin1) when (`b`.`app_use_amt` < 1000) then `b`.`app_use_amt` when ((`b`.`app_use_amt` > 999999) and (`b`.`app_use_amt` < 1000000000)) then convert(concat((trim(round((`b`.`app_use_amt` / 1000000),2)) + 0),'M') using latin1) when (`b`.`app_use_amt` > 999999999) then convert(concat((trim(round((`b`.`app_use_amt` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`b`.`app_bud_amt` > 999) and (`b`.`app_bud_amt` < 1000000)) then convert(concat((trim(round((`b`.`app_bud_amt` / 1000),2)) + 0),'K') using latin1) when (`b`.`app_bud_amt` < 1000) then `b`.`app_bud_amt` when ((`b`.`app_bud_amt` > 999999) and (`b`.`app_bud_amt` < 1000000000)) then convert(concat((trim(round((`b`.`app_bud_amt` / 1000000),2)) + 0),'M') using latin1) when (`b`.`app_bud_amt` > 999999999) then convert(concat((trim(round((`b`.`app_bud_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `app_bud_use_amt`,`b`.`app_use_pcnt` AS `app_use_pcnt`,`b`.`app_bud_bal` AS `app_bud_bal`,`b`.`app_bud_pcnt` AS `app_bud_pcnt`,`b`.`app_pay_amt` AS `app_pay_amt`,concat((case when ((`b`.`app_pay_amt` > 999) and (`b`.`app_pay_amt` < 1000000)) then convert(concat((trim(round((`b`.`app_pay_amt` / 1000),2)) + 0),'K') using latin1) when (`b`.`app_pay_amt` < 1000) then `b`.`app_pay_amt` when ((`b`.`app_pay_amt` > 999999) and (`b`.`app_pay_amt` < 1000000000)) then convert(concat((trim(round((`b`.`app_pay_amt` / 1000000),2)) + 0),'M') using latin1) when (`b`.`app_pay_amt` > 999999999) then convert(concat((trim(round((`b`.`app_pay_amt` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`b`.`app_use_amt` > 999) and (`b`.`app_use_amt` < 1000000)) then convert(concat((trim(round((`b`.`app_use_amt` / 1000),2)) + 0),'K') using latin1) when (`b`.`app_use_amt` < 1000) then `b`.`app_use_amt` when ((`b`.`app_use_amt` > 999999) and (`b`.`app_use_amt` < 1000000000)) then convert(concat((trim(round((`b`.`app_use_amt` / 1000000),2)) + 0),'M') using latin1) when (`b`.`app_use_amt` > 999999999) then convert(concat((trim(round((`b`.`app_use_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `app_pay_bal`,`b`.`app_pay_pcnt` AS `app_pay_pcnt`,`b`.`app_bal_amt` AS `app_bal_amt`,`b`.`app_bal_pcnt` AS `app_bal_pcnt`,`a`.`est_st_dt` AS `est_st_dt`,if(isnull(`a`.`est_st_dt`),'Not Started',date_format(`a`.`est_st_dt`,'%m-%d-%y %h:%i %p')) AS `est_st_dt_fmt`,ifnull(date_format(`a`.`est_st_dt`,'%Y'),'Not Started') AS `est_st_dt_yr`,ifnull(date_format(`a`.`est_st_dt`,'%M'),'Not Started') AS `est_st_dt_mon`,`a`.`dev_est_smry` AS `dev_est_smry`,`a`.`est_e_dt` AS `est_e_dt`,(case when (`a`.`est_e_dt` is not null) then date_format(`a`.`est_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`est_e_dt`) and isnull(`a`.`est_st_dt`)) then 'Not Started' when (isnull(`a`.`est_e_dt`) and (`a`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_fmt`,if(isnull(`a`.`est_e_dt`),'Open','Closed') AS `dev_est_cur_stat`,(case when (`a`.`est_e_dt` is not null) then date_format(`a`.`est_e_dt`,'%Y') when (isnull(`a`.`est_e_dt`) and isnull(`a`.`est_st_dt`)) then 'Not Started' when (isnull(`a`.`est_e_dt`) and (`a`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_yr`,(case when (`a`.`est_e_dt` is not null) then date_format(`a`.`est_e_dt`,'%M') when (isnull(`a`.`est_e_dt`) and isnull(`a`.`est_st_dt`)) then 'Not Started' when (isnull(`a`.`est_e_dt`) and (`a`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_mon`,`a`.`est_time` AS `est_time`,(case when isnull(`a`.`est_e_dt`) then round(((unix_timestamp(now()) - unix_timestamp(`a`.`est_st_dt`)) / 60),0) else round(((unix_timestamp(`a`.`est_e_dt`) - unix_timestamp(`a`.`est_st_dt`)) / 60),0) end) AS `est_time_vir`,`a`.`est_lag_tm` AS `est_lag_tm`,ifnull(`a`.`est_lag_tm`,'0') AS `est_lag_tm_vir`,`a`.`owner_ref_tab` AS `owner_ref_tab`,`a`.`owner_ref_id` AS `owner_ref_id`,(case when (`a`.`owner_ref_tab` like 'emp') then `f`.`file_name` when (`a`.`owner_ref_tab` like 'comp') then `h`.`file_name` end) AS `owner_fnm`,ifnull((case when (`a`.`owner_ref_tab` like 'emp') then concat(`e`.`firstname`,' ',`e`.`lastname`) when (`a`.`owner_ref_tab` like 'comp') then `g`.`companyname` end),'No Owner') AS `owner_ref_nm`,`a`.`est_ref_tab` AS `est_ref_tab`,`a`.`est_ref_id` AS `est_ref_id`,(case when (`a`.`est_ref_tab` like 'emp') then `j`.`file_name` when (`a`.`est_ref_id` like 'comp') then `l`.`file_name` end) AS `est_fnm`,ifnull((case when (`a`.`est_ref_tab` like 'emp') then concat(`i`.`firstname`,' ',`i`.`lastname`) when (`a`.`est_ref_tab` like 'comp') then `k`.`companyname` end),'No Estimater') AS `est_ref_nm`,`a`.`priority` AS `priority`,ifnull(`m`.`look_value`,'No Section') AS `priority_nm`,`a`.`category` AS `category`,ifnull(`n`.`look_value`,'No Category') AS `category_nm`,ifnull(`a`.`est_skill`,'0.0') AS `est_skill`,ifnull(`a`.`est_gap_lvl`,'0.0') AS `est_gap_lvl`,ifnull(`a`.`est_type`,'Flex') AS `est_type`,`a`.`est_req_cnt` AS `est_req_cnt`,`a`.`est_req_tol` AS `est_req_tol`,concat((case when (`a`.`est_req_cnt` > 999) then concat((trim(round((`a`.`est_req_cnt` / 1000),2)) + 0),'K') when (`a`.`est_req_cnt` < 1000) then `a`.`est_req_cnt` end),' of ',(case when (`a`.`est_req_tol` > 999) then concat((trim(round((`a`.`est_req_tol` / 1000),2)) + 0),'K') when (`a`.`est_req_tol` < 1000) then `a`.`est_req_tol` end)) AS `est_req_cnt_tol`,`a`.`est_req_pcnt` AS `est_req_pcnt`,`a`.`est_req_stat_cnt` AS `est_req_stat_cnt`,`a`.`est_req_stat_tol` AS `est_req_stat_tol`,concat((case when (`a`.`est_req_stat_cnt` > 999) then concat((trim(round((`a`.`est_req_stat_cnt` / 1000),2)) + 0),'K') when (`a`.`est_req_stat_cnt` < 1000) then `a`.`est_req_stat_cnt` end),' of ',(case when (`a`.`est_req_stat_tol` > 999) then concat((trim(round((`a`.`est_req_stat_tol` / 1000),2)) + 0),'K') when (`a`.`est_req_stat_tol` < 1000) then `a`.`est_req_stat_tol` end)) AS `est_req_stat_cnt_tol`,`a`.`est_req_stat_pcnt` AS `est_req_stat_pcnt`,`a`.`est_case_cnt` AS `est_case_cnt`,`a`.`est_case_tol` AS `est_case_tol`,concat((case when (`a`.`est_case_cnt` > 999) then concat((trim(round((`a`.`est_case_cnt` / 1000),2)) + 0),'K') when (`a`.`est_case_cnt` < 1000) then `a`.`est_case_cnt` end),' of ',(case when (`a`.`est_case_tol` > 999) then concat((trim(round((`a`.`est_case_tol` / 1000),2)) + 0),'K') when (`a`.`est_case_tol` < 1000) then `a`.`est_case_tol` end)) AS `est_case_cnt_tol`,`a`.`est_case_pcnt` AS `est_case_pcnt`,`a`.`est_case_atmpt` AS `est_case_atmpt`,`a`.`est_bud_amt` AS `est_bud_amt`,`a`.`est_use_amt` AS `est_use_amt`,concat((case when ((`a`.`est_use_amt` > 999) and (`a`.`est_use_amt` < 1000000)) then convert(concat((trim(round((`a`.`est_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`est_use_amt` < 1000) then `a`.`est_use_amt` when (`a`.`est_use_amt` > 999999) then convert(concat((trim(round((`a`.`est_use_amt` / 1000000),2)) + 0),'M') using latin1) end),' of ',(case when ((`a`.`est_bud_amt` > 999) and (`a`.`est_bud_amt` < 1000000)) then convert(concat((trim(round((`a`.`est_bud_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`est_bud_amt` < 1000) then `a`.`est_bud_amt` when (`a`.`est_bud_amt` > 999999) then convert(concat((trim(round((`a`.`est_bud_amt` / 1000000),2)) + 0),'M') using latin1) end)) AS `est_bud_use_amt`,`a`.`est_use_pcnt` AS `est_use_pcnt`,`a`.`est_bud_bal` AS `est_bud_bal`,`a`.`est_bud_pcnt` AS `est_bud_pcnt`,`a`.`est_pay_amt` AS `est_pay_amt`,concat((case when ((`a`.`est_pay_amt` > 999) and (`a`.`est_pay_amt` < 1000000)) then convert(concat((trim(round((`a`.`est_pay_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`est_pay_amt` < 1000) then `a`.`est_pay_amt` when (`a`.`est_pay_amt` > 999999) then convert(concat((trim(round((`a`.`est_pay_amt` / 1000000),2)) + 0),'M') using latin1) end),' of ',(case when ((`a`.`est_use_amt` > 999) and (`a`.`est_use_amt` < 1000000)) then convert(concat((trim(round((`a`.`est_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`est_use_amt` < 1000) then `a`.`est_use_amt` when (`a`.`est_use_amt` > 999999) then convert(concat((trim(round((`a`.`est_use_amt` / 1000000),2)) + 0),'M') using latin1) end)) AS `est_pay_bal`,`a`.`est_pay_pcnt` AS `est_pay_pcnt`,`a`.`est_bal_amt` AS `est_bal_amt`,`a`.`est_bal_pcnt` AS `est_bal_pcnt`,`a`.`updater` AS `updater`,`p`.`file_name` AS `updater_fnm`,ifnull(concat(`o`.`firstname`,' ',`o`.`lastname`),'Admin') AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,ifnull(date_format(`a`.`last_updated`,'%Y'),'Never') AS `last_updated_yr`,ifnull(date_format(`a`.`last_updated`,'%M'),'Never') AS `last_updated_mon`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`r`.`file_name` AS `del_by_fnm`,ifnull(concat(`q`.`firstname`,' ',`q`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Not Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`t`.`file_name` AS `archv_by_fnm`,ifnull(concat(`s`.`firstname`,' ',`s`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`old_est_dt` AS `old_est_dt`,`a`.`old_req_dt` AS `old_req_dt`,`a`.`run_func` AS `run_func` from (((((((((((((((((((`dev_est` `a` left join `dev_apps` `b` on((`a`.`iddev_apps` = `b`.`iddev_apps`))) left join `company` `c` on((`b`.`comp_id` = `c`.`comp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `emp` `e` on((`a`.`owner_ref_id` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `company` `g` on((`a`.`owner_ref_id` = `g`.`comp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`a`.`est_ref_id` = `i`.`emp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) left join `company` `k` on((`a`.`est_ref_id` = `k`.`comp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) left join `dev_look_value` `m` on((`a`.`priority` = `m`.`iddev_look_value`))) left join `dev_look_value` `n` on((`a`.`category` = `n`.`iddev_look_value`))) left join `emp` `o` on((`a`.`updater` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `emp` `q` on((`a`.`del_by` = `q`.`emp_id`))) left join `storages` `r` on((`q`.`idstorages` = `r`.`idstorages`))) left join `emp` `s` on((`a`.`archv_by` = `s`.`emp_id`))) left join `storages` `t` on((`s`.`idstorages` = `t`.`idstorages`))) order by date_format(`a`.`last_updated`,'%Y-%m-%d %h:%i %p') desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_access` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_access` AS select `a`.`iddev_est_access` AS `iddev_est_access`,`b`.`iddev_apps` AS `iddev_apps`,`c`.`app_name` AS `app_name`,concat('ID: ',convert(ifnull(`b`.`iddev_apps`,'No App ID') using latin1),', ','App Name: ',ifnull(`c`.`app_name`,'No App Name')) AS `iddev_apps_name`,`c`.`app_st_dt` AS `app_st_dt`,if(isnull(`c`.`app_st_dt`),'Not Started',convert(date_format(`c`.`app_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `app_st_dt_fmt`,`c`.`app_e_dt` AS `app_e_dt`,(case when (`c`.`app_e_dt` is not null) then convert(date_format(`c`.`app_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`c`.`app_e_dt`) and isnull(`c`.`app_st_dt`)) then 'Not Started' when (isnull(`c`.`app_e_dt`) and (`c`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,`c`.`app_stat_tm` AS `app_stat_tm`,ifnull(`c`.`app_stat_tm`,timestampdiff(MINUTE,`c`.`app_st_dt`,now())) AS `app_stat_tm_vir`,`c`.`app_lag_tm` AS `app_lag_tm`,ifnull(`c`.`app_lag_tm`,'0') AS `app_lag_tm_vir`,if(isnull(`c`.`app_e_dt`),'Open','Closed') AS `app_cur_stat`,`d`.`companyname` AS `companyname`,`e`.`file_name` AS `comp_logo`,`c`.`app_description` AS `app_description`,`c`.`app_case_atmpt` AS `app_case_atmpt`,`a`.`iddev_est` AS `iddev_est`,`b`.`dev_est_smry` AS `dev_est_smry`,concat('ID: ',convert(ifnull(`a`.`iddev_est`,'No Glacier ID') using latin1),', ','Summary: ',ifnull(`b`.`dev_est_smry`,'No Glacier Summary')) AS `iddev_est_smry`,`b`.`est_st_dt` AS `est_st_dt`,if(isnull(`b`.`est_st_dt`),'Not Started',convert(date_format(`b`.`est_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `est_st_dt_fmt`,`b`.`est_e_dt` AS `est_e_dt`,(case when (`b`.`est_e_dt` is not null) then convert(date_format(`b`.`est_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`b`.`est_e_dt`) and isnull(`b`.`est_st_dt`)) then 'Not Started' when (isnull(`b`.`est_e_dt`) and (`b`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_fmt`,if(isnull(`b`.`est_e_dt`),'Open','Closed') AS `est_cur_stat`,`b`.`est_time` AS `est_time`,ifnull(`b`.`est_time`,timestampdiff(MINUTE,`b`.`est_st_dt`,now())) AS `est_time_vir`,`b`.`est_lag_tm` AS `est_lag_tm`,`b`.`owner_ref_tab` AS `owner_ref_tab`,`b`.`owner_ref_id` AS `owner_ref_id`,(case when (`b`.`owner_ref_tab` like 'emp') then `i`.`file_name` when (`b`.`owner_ref_tab` like 'comp') then `g`.`file_name` end) AS `owner_fnm`,ifnull((case when (`b`.`owner_ref_tab` like 'emp') then concat(trim(ifnull(`h`.`firstname`,'')),' ',trim(ifnull(nullif(`h`.`middlename`,''),'')),convert((case when ((`h`.`middlename` is not null) and (`h`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`h`.`lastname`,''))) when (`b`.`owner_ref_tab` like 'comp') then `f`.`companyname` end),'No Owner') AS `owner_ref_nm`,`b`.`est_ref_tab` AS `est_ref_tab`,`b`.`est_ref_id` AS `est_ref_id`,(case when (`b`.`est_ref_tab` like 'emp') then `m`.`file_name` when (`b`.`est_ref_tab` like 'comp') then `k`.`file_name` end) AS `est_fnm`,ifnull((case when (`b`.`est_ref_tab` like 'emp') then concat(trim(ifnull(`l`.`firstname`,'')),' ',trim(ifnull(nullif(`l`.`middlename`,''),'')),convert((case when ((`l`.`middlename` is not null) and (`l`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`l`.`lastname`,''))) when (`b`.`est_ref_tab` like 'comp') then `j`.`companyname` end),'No Estimator') AS `est_ref_nm`,`a`.`dev_est_emp_id` AS `dev_est_emp_id`,`p`.`file_name` AS `access_to_fnm`,concat(`o`.`firstname`,' ',`o`.`lastname`) AS `dev_est_emp_id_nm`,`o`.`nickname` AS `nickname`,`a`.`dev_app_access` AS `dev_app_access`,`a`.`dev_est_access` AS `dev_est_access`,`a`.`dev_est_req_access` AS `dev_est_req_access`,`a`.`dev_est_reqs_case_access` AS `dev_est_reqs_case_access`,`a`.`updater` AS `updater`,`r`.`file_name` AS `updater_fnm`,ifnull(concat(`q`.`firstname`,' ',`q`.`lastname`),'Admin') AS `updater_nm`,`a`.`last_updated` AS `last_updated`,ifnull(convert(date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') using utf8mb4),'Never') AS `last_updated_fmt`,`b`.`del_dt` AS `dev_est_del_dt`,date_format(`b`.`del_dt`,'%m-%d-%y %h:%i %p') AS `dev_est_del_dt_fmt`,`b`.`del_by` AS `dev_est_del_by`,`t`.`file_name` AS `dev_est_del_by_fnm`,(case when isnull(`b`.`del_dt`) then 'Not Deleted' when ((`b`.`del_dt` is not null) and isnull(`b`.`del_by`)) then 'Admin' when ((`b`.`del_dt` is not null) and (`b`.`del_by` is not null)) then concat(`s`.`firstname`,' ',`s`.`lastname`) end) AS `dev_est_del_by_nm`,if(isnull(`b`.`del_dt`),'No','Yes') AS `dev_est_del_stat`,`b`.`archv_dt` AS `dev_est_archv_dt`,date_format(`b`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `dev_est_archv_dt_fmt`,`b`.`archv_by` AS `dev_est_archv_by`,`v`.`file_name` AS `dev_est_archv_by_fnm`,(case when isnull(`b`.`archv_dt`) then 'Not Archived' when ((`b`.`archv_dt` is not null) and isnull(`b`.`archv_by`)) then 'Admin' when ((`b`.`archv_dt` is not null) and (`b`.`archv_by` is not null)) then concat(`u`.`firstname`,' ',`u`.`lastname`) end) AS `dev_est_archv_by_nm`,if(isnull(`b`.`archv_dt`),'No','Yes') AS `dev_est_archv_stat` from (((((((((((((((((((((`dev_est_access` `a` left join `dev_est` `b` on((`a`.`iddev_est` = `b`.`iddev_est`))) left join `dev_apps` `c` on((`b`.`iddev_apps` = `c`.`iddev_apps`))) left join `company` `d` on((`c`.`comp_id` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`b`.`owner_ref_id` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`b`.`owner_ref_id` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `company` `j` on((`b`.`est_ref_id` = `j`.`comp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`b`.`est_ref_id` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `dev_look_value` `n` on((`b`.`category` = `n`.`iddev_look_value`))) left join `emp` `o` on((`a`.`dev_est_emp_id` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `emp` `q` on((`a`.`updater` = `q`.`emp_id`))) left join `storages` `r` on((`q`.`idstorages` = `r`.`idstorages`))) left join `emp` `s` on((`b`.`del_by` = `s`.`emp_id`))) left join `storages` `t` on((`s`.`idstorages` = `t`.`idstorages`))) left join `emp` `u` on((`b`.`archv_by` = `u`.`emp_id`))) left join `storages` `v` on((`u`.`idstorages` = `v`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_doc` AS select `a`.`iddev_est_doc` AS `iddev_est_doc`,`a`.`iddev_est` AS `iddev_est`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`dev_est_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs` AS select `a`.`iddev_est_reqs` AS `iddev_est_reqs`,`c`.`iddev_apps` AS `iddev_apps`,`c`.`app_name` AS `app_name`,`c`.`app_st_dt` AS `app_st_dt`,if(isnull(`c`.`app_st_dt`),'Not Started',date_format(`c`.`app_st_dt`,'%m-%d-%y %h:%i %p')) AS `app_st_dt_fmt`,`c`.`app_e_dt` AS `app_e_dt`,(case when (`c`.`app_e_dt` is not null) then date_format(`c`.`app_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`c`.`app_e_dt`) and isnull(`c`.`app_st_dt`)) then 'Not Started' when (isnull(`c`.`app_e_dt`) and (`c`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,if(isnull(`c`.`app_e_dt`),'Open','Closed') AS `dev_apps_cur_stat`,`a`.`iddev_est` AS `iddev_est`,`b`.`dev_est_smry` AS `dev_est_smry`,`b`.`est_st_dt` AS `est_st_dt`,if(isnull(`b`.`est_st_dt`),'Not Started',date_format(`b`.`est_st_dt`,'%m-%d-%y %h:%i %p')) AS `est_st_dt_fmt`,`b`.`est_e_dt` AS `est_e_dt`,(case when (`b`.`est_e_dt` is not null) then date_format(`b`.`est_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`b`.`est_e_dt`) and isnull(`b`.`est_st_dt`)) then 'Not Started' when (isnull(`b`.`est_e_dt`) and (`b`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_fmt`,if(isnull(`b`.`est_e_dt`),'Open','Closed') AS `dev_est_cur_stat`,`b`.`est_time` AS `est_time`,(case when isnull(`b`.`est_e_dt`) then round(((unix_timestamp(now()) - unix_timestamp(`b`.`est_st_dt`)) / 60),0) else round(((unix_timestamp(`b`.`est_e_dt`) - unix_timestamp(`b`.`est_st_dt`)) / 60),0) end) AS `est_time_vir`,`b`.`owner_ref_tab` AS `owner_ref_tab`,`b`.`owner_ref_id` AS `owner_ref_id`,(case when (`b`.`owner_ref_tab` like 'emp') then `g`.`file_name` when (`b`.`owner_ref_tab` like 'comp') then `i`.`file_name` end) AS `owner_fnm`,ifnull((case when ((`b`.`owner_ref_tab` like 'comp') and (`b`.`owner_ref_id` is not null)) then `h`.`companyname` when (isnull(`b`.`owner_ref_tab`) or isnull(`b`.`owner_ref_id`)) then 'No Owner' when ((`b`.`owner_ref_tab` like 'emp') and (`b`.`owner_ref_id` is not null)) then concat(trim(ifnull(`f`.`firstname`,'')),' ',trim(ifnull(nullif(`f`.`middlename`,''),'')),convert((case when ((`f`.`middlename` is not null) and (`f`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`f`.`lastname`,''))) end),'No Estimater') AS `owner_ref_nm`,`b`.`est_ref_tab` AS `est_ref_tab`,`b`.`est_ref_id` AS `est_ref_id`,(case when (`b`.`est_ref_tab` like 'emp') then `k`.`file_name` when (`b`.`est_ref_tab` like 'comp') then `m`.`file_name` end) AS `est_fnm`,ifnull((case when ((`b`.`est_ref_tab` like 'comp') and (`b`.`est_ref_id` is not null)) then `l`.`companyname` when (isnull(`b`.`est_ref_tab`) or isnull(`b`.`est_ref_id`)) then 'No Estimater' when ((`b`.`est_ref_tab` like 'emp') and (`b`.`est_ref_id` is not null)) then concat(trim(ifnull(`j`.`firstname`,'')),' ',trim(ifnull(nullif(`j`.`middlename`,''),'')),convert((case when ((`j`.`middlename` is not null) and (`j`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`j`.`lastname`,''))) end),'No Estimater') AS `est_ref_nm`,`b`.`est_type` AS `est_type`,`b`.`priority` AS `priority`,ifnull(`n`.`look_value`,'No Section') AS `priority_nm`,`b`.`category` AS `category`,ifnull(`o`.`look_value`,'No Category') AS `category_nm`,`b`.`est_req_cnt` AS `est_req_cnt`,`b`.`est_req_tol` AS `est_req_tol`,concat((case when (`b`.`est_req_cnt` > 999) then concat((trim(round((`b`.`est_req_cnt` / 1000),2)) + 0),'K') when (`b`.`est_req_cnt` < 1000) then `b`.`est_req_cnt` end),' of ',(case when (`b`.`est_req_tol` > 999) then concat((trim(round((`b`.`est_req_tol` / 1000),2)) + 0),'K') when (`b`.`est_req_tol` < 1000) then `b`.`est_req_tol` end)) AS `est_req_cnt_tol`,`b`.`est_req_pcnt` AS `est_req_pcnt`,`a`.`req_st_dt` AS `req_st_dt`,if(isnull(`a`.`req_st_dt`),'Not Started',date_format(`a`.`req_st_dt`,'%m-%d-%y %h:%i %p')) AS `req_st_dt_fmt`,date_format(`a`.`req_st_dt`,'%Y') AS `req_st_dt_yr`,date_format(`a`.`req_st_dt`,'%M') AS `req_st_dt_mon`,`a`.`req_e_dt` AS `req_e_dt`,(case when (`a`.`req_e_dt` is not null) then date_format(`a`.`req_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`req_e_dt`) and isnull(`a`.`req_st_dt`)) then 'Not Started' when (isnull(`a`.`req_e_dt`) and (`a`.`req_st_dt` is not null)) then 'In Progress' end) AS `req_e_dt_fmt`,if(isnull(`a`.`req_e_dt`),'Open','Closed') AS `dev_est_reqs_cur_stat`,date_format(`a`.`req_e_dt`,'%Y') AS `req_e_dt_yr`,date_format(`a`.`req_e_dt`,'%M') AS `req_e_dt_mon`,`a`.`req_time` AS `req_time`,(case when (isnull(`a`.`req_time`) and (`a`.`req_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`a`.`req_st_dt`)) / 60),0) else `a`.`req_time` end) AS `req_time_vir`,`a`.`req_lag_tm` AS `req_lag_tm`,ifnull(`a`.`req_lag_tm`,'0') AS `req_lag_tm_vir`,`a`.`disp_order` AS `disp_order`,`a`.`req_desc` AS `req_desc`,`a`.`skill_lvl` AS `skill_lvl`,ifnull(`a`.`skill_lvl`,'No Skill') AS `skill_lvl_nm`,`a`.`gap_lvl` AS `gap_lvl`,ifnull(`a`.`gap_lvl`,'No Gap') AS `gap_lvl_nm`,`a`.`req_type` AS `req_type`,ifnull(`p`.`look_value`,'None') AS `req_type_nm`,`a`.`iddev_lk_wrk_flow` AS `iddev_lk_wrk_flow`,ifnull(`q`.`wrk_flow_nm`,'No Workflow') AS `wrk_flow_nm`,`q`.`wrk_flow_desc` AS `wrk_flow_desc`,`a`.`req_status` AS `req_status`,ifnull(`r`.`look_value`,'No Status') AS `req_status_nm`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`req_stat_st_dt` AS `req_stat_st_dt`,if(isnull(`a`.`req_stat_st_dt`),'Not Started',date_format(`a`.`req_stat_st_dt`,'%m-%d-%y %h:%i %p')) AS `req_stat_st_dt_fmt`,`a`.`req_stat_e_dt` AS `req_stat_e_dt`,(case when (`a`.`req_stat_e_dt` is not null) then date_format(`a`.`req_stat_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`req_stat_e_dt`) and isnull(`a`.`req_stat_st_dt`)) then 'Not Started' when (isnull(`a`.`req_stat_e_dt`) and (`a`.`req_stat_st_dt` is not null)) then 'In Progress' end) AS `req_stat_e_dt_fmt`,`a`.`req_stat_time` AS `req_stat_time`,(case when (isnull(`a`.`req_stat_time`) and (`a`.`req_stat_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`a`.`req_stat_st_dt`)) / 60),0) else `a`.`req_stat_time` end) AS `req_stat_time_vir`,`a`.`req_stat_e_dt_pre` AS `req_stat_e_dt_pre`,date_format(`a`.`req_stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `req_stat_e_dt_pre_fmt`,`a`.`req_stat_lag_tm` AS `req_stat_lag_tm`,ifnull(`a`.`req_stat_lag_tm`,'0') AS `req_stat_lag_tm_vir`,`a`.`assigned_to` AS `assigned_to`,`t`.`file_name` AS `assigned_to_fnm`,if(isnull(`a`.`assigned_to`),'No Assignee',concat(trim(ifnull(`s`.`firstname`,'')),' ',trim(ifnull(nullif(`s`.`middlename`,''),'')),convert((case when ((`s`.`middlename` is not null) and (`s`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`s`.`lastname`,'')))) AS `assigned_to_nm`,`a`.`req_stat_cnt` AS `req_stat_cnt`,`a`.`req_stat_tol` AS `req_stat_tol`,concat(`a`.`req_stat_cnt`,' of ',`a`.`req_stat_tol`) AS `req_stat_cnt_tol`,`a`.`req_stat_pcnt` AS `req_stat_pcnt`,`a`.`req_case_cnt` AS `req_case_cnt`,`a`.`req_case_tol` AS `req_case_tol`,concat(`a`.`req_case_cnt`,' of ',`a`.`req_case_tol`) AS `req_case_cnt_tol`,`a`.`req_case_pcnt` AS `req_case_pcnt`,`a`.`req_cases` AS `req_cases`,`a`.`req_case_atmpt` AS `req_case_atmpt`,`a`.`req_bud_amt` AS `req_bud_amt`,ifnull(`a`.`req_use_amt`,'0.00') AS `req_use_amt`,concat((case when isnull(`a`.`req_use_amt`) then '0.00' when (`a`.`req_use_amt` > 999) then convert(concat((trim(round((`a`.`req_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_use_amt` < 1000) then `a`.`req_use_amt` end),' of ',(case when isnull(`a`.`req_bud_amt`) then '0.00' when (`a`.`req_bud_amt` > 999) then convert(concat((trim(round((`a`.`req_bud_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_bud_amt` < 1000) then `a`.`req_bud_amt` end)) AS `req_bud_use_amt`,`a`.`req_use_pcnt` AS `req_use_pcnt`,`a`.`req_bud_bal` AS `req_bud_bal`,`a`.`req_bud_pcnt` AS `req_bud_pcnt`,`a`.`req_pay_amt` AS `req_pay_amt`,concat((case when (`a`.`req_pay_amt` > 999) then convert(concat((trim(round((`a`.`req_pay_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_pay_amt` < 1000) then `a`.`req_pay_amt` end),' of ',(case when (`a`.`req_use_amt` > 999) then convert(concat((trim(round((`a`.`req_use_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_use_amt` < 1000) then `a`.`req_use_amt` end)) AS `req_pay_bal`,`a`.`req_pay_pcnt` AS `req_pay_pcnt`,`a`.`req_bal_amt` AS `req_bal_amt`,`a`.`req_bal_pcnt` AS `req_bal_pcnt`,`a`.`updater` AS `updater`,`v`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`u`.`firstname`,'')),' ',trim(ifnull(nullif(`u`.`middlename`,''),'')),convert((case when ((`u`.`middlename` is not null) and (`u`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`u`.`lastname`,'')))) AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`x`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(trim(ifnull(`w`.`firstname`,'')),' ',trim(ifnull(nullif(`w`.`middlename`,''),'')),convert((case when ((`w`.`middlename` is not null) and (`w`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`w`.`lastname`,'')))) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Not Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`z`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(trim(ifnull(`y`.`firstname`,'')),' ',trim(ifnull(nullif(`y`.`middlename`,''),'')),convert((case when ((`y`.`middlename` is not null) and (`y`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`y`.`lastname`,'')))) AS `archv_by_nm`,`a`.`rpt_req_stat_by` AS `rpt_req_stat_by`,`a`.`rpt_req_stat_by_nm` AS `rpt_req_stat_by_nm`,`a`.`rpt_req_stat_id` AS `rpt_req_stat_id`,`a`.`rpt_req_stat_id_nm` AS `rpt_req_stat_id_nm`,`a`.`rpt_req_stat_lag_tm` AS `rpt_req_stat_lag_tm`,`a`.`rpt_req_stat_time` AS `rpt_req_stat_time` from (((((((((((((((((((((((`dev_est_reqs` `a` left join `dev_est` `b` on((`a`.`iddev_est` = `b`.`iddev_est`))) left join `dev_apps` `c` on((`b`.`iddev_apps` = `c`.`iddev_apps`))) left join `emp` `f` on((`b`.`owner_ref_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `company` `h` on((`b`.`owner_ref_id` = `h`.`comp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`b`.`est_ref_id` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `company` `l` on((`b`.`est_ref_id` = `l`.`comp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `dev_look_value` `n` on((`b`.`priority` = `n`.`iddev_look_value`))) left join `dev_look_value` `o` on((`b`.`category` = `o`.`iddev_look_value`))) left join `dev_look_value` `p` on((`a`.`req_type` = `p`.`iddev_look_value`))) left join `dev_lk_wrk_flow` `q` on((`a`.`iddev_lk_wrk_flow` = `q`.`iddev_lk_wrk_flow`))) left join `dev_look_value` `r` on((`a`.`req_status` = `r`.`iddev_look_value`))) left join `emp` `s` on((`a`.`assigned_to` = `s`.`emp_id`))) left join `storages` `t` on((`t`.`idstorages` = `s`.`idstorages`))) left join `emp` `u` on((`a`.`updater` = `u`.`emp_id`))) left join `storages` `v` on((`u`.`idstorages` = `v`.`idstorages`))) left join `emp` `w` on((`a`.`del_by` = `w`.`emp_id`))) left join `storages` `x` on((`w`.`idstorages` = `x`.`idstorages`))) left join `emp` `y` on((`a`.`archv_by` = `y`.`emp_id`))) left join `storages` `z` on((`y`.`idstorages` = `z`.`idstorages`))) order by `a`.`last_updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_case` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_case` AS select `a`.`iddev_est_reqs_case` AS `iddev_est_reqs_case`,`a`.`iddev_est_reqs` AS `iddev_est_reqs`,`b`.`iddev_est` AS `iddev_est`,`b`.`iddev_apps` AS `iddev_apps`,`b`.`app_name` AS `app_name`,`b`.`est_st_dt_fmt` AS `est_st_dt_fmt`,`b`.`est_e_dt_fmt` AS `est_e_dt_fmt`,`b`.`est_time_vir` AS `est_time_vir`,`b`.`req_st_dt` AS `req_st_dt`,`b`.`req_st_dt_fmt` AS `req_st_dt_fmt`,`b`.`req_e_dt` AS `req_e_dt`,`b`.`req_e_dt_fmt` AS `req_e_dt_fmt`,`b`.`req_time_vir` AS `req_time_vir`,`b`.`priority_nm` AS `priority_nm`,`b`.`category_nm` AS `category_nm`,`b`.`skill_lvl_nm` AS `skill_lvl_nm`,`b`.`gap_lvl_nm` AS `gap_lvl_nm`,`b`.`req_type_nm` AS `req_type_nm`,`b`.`req_status` AS `req_status`,`b`.`req_status_nm` AS `req_status_nm`,`b`.`req_desc` AS `req_desc`,`b`.`dev_est_smry` AS `dev_est_smry`,`z`.`file_name` AS `created_by_fnm`,`a`.`created_by` AS `created_by`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `created_by_nm`,`a`.`create_dt` AS `create_dt`,date_format(`a`.`create_dt`,'%m-%d-%y') AS `create_dt_fmt`,date_format(`a`.`create_dt`,'%Y') AS `create_dt_yr`,date_format(`a`.`create_dt`,'%M') AS `create_dt_mon`,`a`.`create_end_dt` AS `create_end_dt`,date_format(`a`.`create_end_dt`,'%m-%d-%y') AS `create_end_dt_fmt`,date_format(`a`.`create_end_dt`,'%Y') AS `create_end_dt_yr`,date_format(`a`.`create_end_dt`,'%M') AS `create_end_dt_mon`,`a`.`create_time` AS `create_time`,(case when ((`a`.`create_dt` is not null) and isnull(`a`.`create_end_dt`)) then round(((unix_timestamp(now()) - unix_timestamp(`a`.`create_dt`)) / 60),0) else round(((unix_timestamp(`a`.`create_end_dt`) - unix_timestamp(`a`.`create_dt`)) / 60),0) end) AS `create_time_vir`,`a`.`disp_order` AS `disp_order`,`a`.`reqs_cases` AS `reqs_cases`,`a`.`case_data` AS `case_data`,`a`.`case_result_desc` AS `case_result_desc`,`a`.`case_cnt` AS `case_cnt`,`a`.`case_status` AS `case_status`,if(isnull(`a`.`case_status`),'None',`lp`.`look_value`) AS `case_status_name`,`a`.`executed_by` AS `executed_by`,`w`.`file_name` AS `executed_by_fnm`,if(isnull(`a`.`executed_by`),'Admin',concat(`d`.`firstname`,'',`d`.`lastname`)) AS `executed_by_nm`,`a`.`execute_dt` AS `execute_dt`,date_format(`a`.`execute_dt`,'%m-%d-%y') AS `execute_dt_fmt`,`b`.`req_stat_cnt_tol` AS `req_stat_cnt_tol`,`b`.`req_stat_pcnt` AS `req_stat_pcnt`,`b`.`req_case_cnt_tol` AS `req_case_cnt_tol`,`b`.`req_case_pcnt` AS `req_case_pcnt`,`a`.`updated_by` AS `updated_by`,`v`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updated_by`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updated_by_nm`,`a`.`last_updated` AS `last_updated`,concat(convert(date_format(`a`.`last_updated`,'%m-%d-%y %H:%i:%s %p') using latin1),' ') AS `last_updated_fmt`,`b`.`est_ref_nm` AS `est_ref_nm`,`b`.`est_fnm` AS `est_fnm`,`b`.`owner_ref_nm` AS `owner_ref_nm`,`b`.`owner_fnm` AS `owner_fnm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`y`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,date_format(`a`.`archv_dt`,'%Y') AS `archv_dt_yr`,date_format(`a`.`archv_dt`,'%M') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`x`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`g`.`firstname`,' ',`g`.`lastname`)) AS `archv_by_nm` from ((((((((((((`dev_est_reqs_case` `a` left join `vw_dev_est_reqs` `b` on((`a`.`iddev_est_reqs` = `b`.`iddev_est_reqs`))) left join `emp` `c` on((`a`.`created_by` = `c`.`emp_id`))) left join `storages` `z` on((`z`.`idstorages` = `c`.`idstorages`))) left join `emp` `f` on((`a`.`del_by` = `f`.`emp_id`))) left join `storages` `y` on((`y`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `x` on((`x`.`idstorages` = `g`.`idstorages`))) left join `emp` `d` on((`a`.`executed_by` = `d`.`emp_id`))) left join `storages` `w` on((`w`.`idstorages` = `d`.`idstorages`))) left join `emp` `e` on((`a`.`updated_by` = `e`.`emp_id`))) left join `storages` `v` on((`v`.`idstorages` = `e`.`idstorages`))) left join `dev_look_value` `lp` on((`a`.`case_status` = `lp`.`iddev_look_value`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_case_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_case_doc` AS select `a`.`iddev_est_reqs_case_doc` AS `iddev_est_reqs_case_doc`,`a`.`iddev_est_reqs_case` AS `iddev_est_reqs_case`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`dev_est_reqs_case_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_case_result` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_result`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_case_result` AS select `a`.`iddev_est_reqs_case_result` AS `iddev_est_reqs_case_result`,`b`.`iddev_est_reqs_case` AS `iddev_est_reqs_case`,`b`.`iddev_est_reqs` AS `iddev_est_reqs`,`c`.`req_desc` AS `req_desc`,`c`.`iddev_est` AS `iddev_est`,`d`.`iddev_apps` AS `iddev_apps`,`b`.`case_result_desc` AS `case_result_desc_cases`,`a`.`case_data` AS `case_data`,`a`.`case_result_desc` AS `case_result_desc`,`a`.`case_status` AS `case_status`,`e`.`look_value` AS `case_status_nm`,`a`.`executed_by` AS `executed_by`,`g`.`file_name` AS `executed_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `executed_by_nm`,`a`.`execute_dt` AS `execute_dt`,date_format(`a`.`execute_dt`,'%m-%d-%y') AS `execute_dt_fmt`,`a`.`updated_by` AS `updated_by`,`i`.`file_name` AS `updated_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updated_by_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,ifnull(concat(`j`.`firstname`,' ',`j`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`m`.`file_name` AS `archv_by_fnm`,ifnull(concat(`l`.`firstname`,' ',`l`.`lastname`),'Admin') AS `archv_by_nm` from ((((((((((((`dev_est_reqs_case_result` `a` left join `dev_est_reqs_case` `b` on((`a`.`iddev_est_reqs_case` = `b`.`iddev_est_reqs_case`))) left join `dev_est_reqs` `c` on((`b`.`iddev_est_reqs` = `c`.`iddev_est_reqs`))) left join `dev_est` `d` on((`c`.`iddev_est` = `d`.`iddev_est`))) left join `dev_look_value` `e` on((`a`.`case_status` = `e`.`iddev_look_value`))) left join `emp` `f` on((`a`.`executed_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updated_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`archv_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_case_result_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_case_result_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_case_result_doc` AS select `a`.`iddev_est_reqs_case_result_doc` AS `iddev_est_reqs_case_result_doc`,`a`.`iddev_est_reqs_case_result` AS `iddev_est_reqs_case_result`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`dev_est_reqs_case_result_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_doc` AS select `a`.`iddev_est_reqs_doc` AS `iddev_est_reqs_doc`,`a`.`iddev_est_reqs` AS `iddev_est_reqs`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`dev_est_reqs_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_stat_amt` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_stat_amt`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_stat_amt` AS select `a`.`iddev_est_reqs_stat_amt` AS `iddev_est_reqs_stat_amt`,`i`.`iddev_apps` AS `iddev_apps`,`i`.`app_name` AS `app_name`,`c`.`iddev_est` AS `iddev_est`,`d`.`dev_est_smry` AS `dev_est_smry`,`d`.`owner_ref_tab` AS `owner_ref_tab`,`d`.`owner_ref_id` AS `owner_ref_id`,(case when (`d`.`owner_ref_tab` like 'comp') then `k`.`file_name` when (`d`.`owner_ref_tab` like 'emp') then `f`.`file_name` end) AS `owner_ref_fnm`,ifnull((case when (`d`.`owner_ref_tab` like 'comp') then `j`.`companyname` when (`d`.`owner_ref_tab` like 'emp') then concat(`e`.`firstname`,' ',`e`.`lastname`) end),'No Owner') AS `owner_ref_nm`,`d`.`est_ref_tab` AS `est_ref_tab`,`d`.`est_ref_id` AS `est_ref_id`,(case when (`d`.`est_ref_tab` like 'comp') then `m`.`file_name` when (`d`.`est_ref_tab` like 'emp') then `h`.`file_name` end) AS `est_ref_fnm`,ifnull((case when (`d`.`est_ref_tab` like 'comp') then `l`.`companyname` when (`d`.`est_ref_tab` like 'emp') then concat(`g`.`firstname`,' ',`g`.`lastname`) end),'No Estimater') AS `est_ref_nm`,`d`.`category` AS `category`,ifnull(`z`.`look_value`,'No Category') AS `category_nm`,`b`.`iddev_est_reqs` AS `iddev_est_reqs`,`c`.`req_st_dt` AS `req_st_dt`,if(isnull(`c`.`req_st_dt`),'Not Started',convert(date_format(`c`.`req_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `req_st_dt_fmt`,`c`.`req_e_dt` AS `req_e_dt`,(case when (`c`.`req_e_dt` is not null) then convert(date_format(`c`.`req_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`c`.`req_e_dt`) and isnull(`c`.`req_st_dt`)) then 'Not Started' when (isnull(`c`.`req_e_dt`) and (`c`.`req_st_dt` is not null)) then 'In Progress' end) AS `req_e_dt_fmt`,`c`.`req_desc` AS `req_desc`,`c`.`iddev_lk_wrk_flow` AS `iddev_lk_wrk_flow`,ifnull(`aj`.`wrk_flow_nm`,'No Workflow') AS `wrk_flow_nm`,`a`.`iddev_est_reqs_status` AS `iddev_est_reqs_status`,`b`.`req_status` AS `req_status`,`n`.`look_value` AS `req_status_nm`,`b`.`stat_st_dt` AS `stat_st_dt`,if(isnull(`b`.`stat_st_dt`),'Not Started',convert(date_format(`b`.`stat_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `stat_st_dt_fmt`,date_format(`b`.`stat_st_dt`,'%Y') AS `stat_st_yr`,date_format(`b`.`stat_st_dt`,'%M') AS `stat_st_mon`,`b`.`stat_e_dt` AS `stat_e_dt`,(case when (`b`.`stat_e_dt` is not null) then convert(date_format(`b`.`stat_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`b`.`stat_e_dt`) and isnull(`b`.`stat_st_dt`)) then 'Not Started' when (isnull(`b`.`stat_e_dt`) and (`b`.`stat_e_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_fmt`,date_format(`b`.`stat_e_dt`,'%Y') AS `stat_e_yr`,date_format(`b`.`stat_e_dt`,'%M') AS `stat_e_mon`,`b`.`stat_time` AS `stat_time`,ifnull(`b`.`stat_time`,timestampdiff(MINUTE,`b`.`stat_st_dt`,now())) AS `stat_time_vir`,`b`.`stat_lag_time` AS `stat_lag_time`,ifnull(`b`.`stat_lag_time`,'0') AS `stat_lag_time_vir`,`b`.`stat_e_dt_pre` AS `stat_e_dt_pre`,date_format(`b`.`stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `stat_e_dt_pre_fmt`,`b`.`assigned_to` AS `assigned_to`,`p`.`file_name` AS `assigned_to_fnm`,ifnull(concat(`o`.`firstname`,' ',`o`.`lastname`),'No Assignee') AS `assigned_to_nm`,`a`.`hist_cnt` AS `hist_cnt`,`a`.`reqs_quote_by` AS `reqs_quote_by`,`r`.`file_name` AS `reqs_quote_by_fnm`,ifnull(concat(`q`.`firstname`,' ',`q`.`lastname`),'Admin') AS `reqs_quote_by_nm`,`a`.`reqs_quote_dt` AS `reqs_quote_dt`,date_format(`a`.`reqs_quote_dt`,'%m-%d-%y') AS `reqs_quote_dt_fmt`,date_format(`a`.`reqs_quote_dt`,'%Y') AS `reqs_quote_dt_yr`,date_format(`a`.`reqs_quote_dt`,'%M') AS `reqs_quote_dt_mon`,`a`.`req_stat_amt` AS `req_stat_amt`,`a`.`req_action_by` AS `req_action_by`,`v`.`file_name` AS `req_action_by_fnm`,(case when ((`a`.`req_action` is not null) and isnull(`a`.`req_action_by`)) then 'Admin' when ((`a`.`req_action` is not null) and (`a`.`req_action_by` is not null)) then concat(`u`.`firstname`,' ',`u`.`lastname`) when (isnull(`a`.`req_action`) and isnull(`a`.`req_action_by`)) then 'Pending' end) AS `req_action_by_nm`,`a`.`req_action` AS `req_action`,ifnull(`t`.`look_value`,'No-Action') AS `req_action_nm`,`a`.`req_stat_paid` AS `req_stat_paid`,`a`.`req_stat_bal` AS `req_stat_bal`,`c`.`req_status` AS `cur_stat`,`w`.`look_value` AS `cur_stat_nm`,`c`.`assigned_to` AS `cur_assigned_to`,`y`.`file_name` AS `cur_assigned_to_fnm`,ifnull(concat(`x`.`firstname`,' ',`x`.`lastname`),'No Assignee') AS `cur_assigned_to_nm`,`c`.`req_st_dt` AS `cur_stat_st_dt`,if(isnull(`c`.`req_stat_st_dt`),'Not Started',convert(date_format(`c`.`req_stat_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `cur_stat_st_dt_fmt`,`c`.`req_stat_e_dt` AS `cur_stat_e_dt`,(case when (`c`.`req_stat_e_dt` is not null) then convert(date_format(`c`.`req_stat_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`c`.`req_stat_e_dt`) and isnull(`c`.`req_stat_st_dt`)) then 'Not Started' when (isnull(`c`.`req_stat_e_dt`) and (`c`.`req_stat_st_dt` is not null)) then 'In Progress' end) AS `cur_stat_e_dt_fmt`,`c`.`req_stat_time` AS `cur_stat_tm`,(case when (isnull(`c`.`req_stat_time`) and (`c`.`req_stat_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`c`.`req_stat_st_dt`)) / 60),0) else `c`.`req_stat_time` end) AS `cur_stat_tm_vir`,`c`.`req_stat_lag_tm` AS `cur_stat_lag_tm`,ifnull(`c`.`req_stat_lag_tm`,'0') AS `cur_stat_lag_tm_vir`,`c`.`req_type` AS `req_type`,ifnull(`aa`.`look_value`,'None') AS `req_type_nm`,`c`.`skill_lvl` AS `skill_lvl`,ifnull(`c`.`skill_lvl`,'No Skill') AS `skill_lvl_nm`,`c`.`gap_lvl` AS `gap_lvl`,ifnull(`c`.`gap_lvl`,'No Gap') AS `gap_lvl_nm`,`a`.`updater` AS `updater`,`ae`.`file_name` AS `updater_fnm`,ifnull(concat(`ad`.`firstname`,' ',`ad`.`lastname`),'Admin') AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`ag`.`file_name` AS `del_by_fnm`,ifnull(concat(`af`.`firstname`,' ',`af`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4),'Not Archived') AS `archv_dt_yr`,ifnull(convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`ai`.`file_name` AS `archv_by_fnm`,ifnull(concat(`ah`.`firstname`,' ',`ah`.`lastname`),'Admin') AS `archv_by_nm` from ((((((((((((((((((((((((((((((((`dev_est_reqs_stat_amt` `a` left join `dev_est_reqs_status` `b` on((`a`.`iddev_est_reqs_status` = `b`.`iddev_est_reqs_status`))) left join `dev_est_reqs` `c` on((`b`.`iddev_est_reqs` = `c`.`iddev_est_reqs`))) left join `dev_est` `d` on((`c`.`iddev_est` = `d`.`iddev_est`))) left join `emp` `e` on((`d`.`owner_ref_id` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `company` `j` on((`d`.`owner_ref_id` = `j`.`comp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `g` on((`d`.`est_ref_id` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `company` `l` on((`d`.`est_ref_id` = `l`.`comp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `dev_apps` `i` on((`d`.`iddev_apps` = `i`.`iddev_apps`))) left join `dev_look_value` `n` on((`b`.`req_status` = `n`.`iddev_look_value`))) left join `emp` `o` on((`b`.`assigned_to` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `emp` `q` on((`a`.`reqs_quote_by` = `q`.`emp_id`))) left join `storages` `r` on((`q`.`idstorages` = `r`.`idstorages`))) left join `dev_look_value` `t` on((`a`.`req_action` = `t`.`iddev_look_value`))) left join `emp` `u` on((`a`.`req_action_by` = `u`.`emp_id`))) left join `storages` `v` on((`u`.`idstorages` = `v`.`idstorages`))) left join `dev_look_value` `w` on((`c`.`req_status` = `w`.`iddev_look_value`))) left join `emp` `x` on((`c`.`assigned_to` = `x`.`emp_id`))) left join `storages` `y` on((`x`.`idstorages` = `y`.`idstorages`))) left join `dev_look_value` `z` on((`d`.`category` = `z`.`iddev_look_value`))) left join `dev_look_value` `aa` on((`c`.`req_type` = `aa`.`iddev_look_value`))) left join `emp` `ad` on((`a`.`updater` = `ad`.`emp_id`))) left join `storages` `ae` on((`ad`.`idstorages` = `ae`.`idstorages`))) left join `emp` `af` on((`a`.`del_by` = `af`.`emp_id`))) left join `storages` `ag` on((`af`.`idstorages` = `ag`.`idstorages`))) left join `emp` `ah` on((`a`.`archv_by` = `ah`.`emp_id`))) left join `storages` `ai` on((`ah`.`idstorages` = `ai`.`idstorages`))) left join `dev_lk_wrk_flow` `aj` on((`c`.`iddev_lk_wrk_flow` = `aj`.`iddev_lk_wrk_flow`))) order by `a`.`last_updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_stat_amt_hist` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_stat_amt_hist`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_stat_amt_hist` AS select `a`.`iddev_est_reqs_stat_amt_hist` AS `iddev_est_reqs_stat_amt_hist`,`a`.`iddev_est_reqs_stat_amt` AS `iddev_est_reqs_stat_amt`,`a`.`req_amt_old` AS `req_amt_old`,`a`.`req_amt_smry` AS `req_amt_smry`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt` from ((`dev_est_reqs_stat_amt_hist` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_status` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_status` AS select `a`.`iddev_est_reqs_status` AS `iddev_est_reqs_status`,`c`.`iddev_apps` AS `iddev_apps`,`d`.`app_name` AS `app_name`,`d`.`app_st_dt` AS `app_st_dt`,if(isnull(`d`.`app_st_dt`),'Not Started',date_format(`d`.`app_st_dt`,'%m-%d-%y %h:%i %p')) AS `app_st_dt_fmt`,`d`.`app_e_dt` AS `app_e_dt`,(case when (`d`.`app_e_dt` is not null) then date_format(`d`.`app_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`d`.`app_e_dt`) and isnull(`d`.`app_st_dt`)) then 'Not Started' when (isnull(`d`.`app_e_dt`) and (`d`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,if(isnull(`d`.`app_e_dt`),'Open','Closed') AS `dev_apps_cur_stat`,`b`.`iddev_est` AS `iddev_est`,`c`.`dev_est_smry` AS `dev_est_smry`,`c`.`est_st_dt` AS `est_st_dt`,if(isnull(`c`.`est_st_dt`),'Not Started',convert(date_format(`c`.`est_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `est_st_dt_fmt`,`c`.`est_e_dt` AS `est_e_dt`,(case when (`c`.`est_e_dt` is not null) then convert(date_format(`c`.`est_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`c`.`est_e_dt`) and isnull(`c`.`est_st_dt`)) then 'Not Started' when (isnull(`c`.`est_e_dt`) and (`c`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_fmt`,if(isnull(`c`.`est_e_dt`),'Open','Closed') AS `dev_est_cur_stat`,`c`.`owner_ref_tab` AS `owner_ref_tab`,`c`.`owner_ref_id` AS `owner_ref_id`,(case when (`c`.`owner_ref_tab` like 'emp') then `h`.`file_name` when (`c`.`owner_ref_tab` like 'comp') then `j`.`file_name` end) AS `owner_fnm`,ifnull((case when (`c`.`owner_ref_tab` like 'comp') then `i`.`companyname` when (`c`.`owner_ref_tab` like 'emp') then concat(`g`.`firstname`,' ',`g`.`lastname`) end),'No Owner') AS `owner_ref_nm`,`c`.`est_ref_tab` AS `est_ref_tab`,`c`.`est_ref_id` AS `est_ref_id`,(case when (`c`.`est_ref_tab` like 'emp') then `l`.`file_name` when (`c`.`est_ref_tab` like 'comp') then `n`.`file_name` end) AS `est_fnm`,ifnull((case when (`c`.`est_ref_tab` like 'emp') then concat(`k`.`firstname`,' ',`k`.`lastname`) when (`c`.`est_ref_tab` like 'comp') then `m`.`companyname` end),'No Estimater') AS `est_ref_nm`,`c`.`category` AS `category`,ifnull(`p`.`look_value`,'No Category') AS `category_nm`,`c`.`est_type` AS `est_type`,`b`.`iddev_est_reqs` AS `iddev_est_reqs`,`b`.`req_st_dt` AS `req_st_dt`,if(isnull(`b`.`req_st_dt`),'Not Started',convert(date_format(`b`.`req_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `req_st_dt_fmt`,date_format(`b`.`req_st_dt`,'%Y') AS `req_st_dt_yr`,date_format(`b`.`req_st_dt`,'%M') AS `req_st_dt_mon`,`b`.`req_e_dt` AS `req_e_dt`,(case when (`b`.`req_e_dt` is not null) then convert(date_format(`b`.`req_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`b`.`req_e_dt`) and isnull(`b`.`req_st_dt`)) then 'Not Started' when (isnull(`b`.`req_e_dt`) and (`b`.`req_st_dt` is not null)) then 'In Progress' end) AS `req_e_dt_fmt`,if(isnull(`b`.`req_e_dt`),'Open','Closed') AS `dev_est_reqs_cur_stat`,`b`.`iddev_lk_wrk_flow` AS `iddev_lk_wrk_flow`,ifnull(`ae`.`wrk_flow_nm`,'No Workflow') AS `wrk_flow_nm`,date_format(`b`.`req_e_dt`,'%Y') AS `req_e_dt_yr`,date_format(`b`.`req_e_dt`,'%M') AS `req_e_dt_mon`,`b`.`req_time` AS `req_time`,(case when (isnull(`b`.`req_time`) and (`b`.`req_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`b`.`req_st_dt`)) / 60),0) else `b`.`req_time` end) AS `req_time_vir`,`b`.`req_desc` AS `req_desc`,`b`.`skill_lvl` AS `skill_lvl`,ifnull(`b`.`skill_lvl`,'No Skill') AS `skill_lvl_nm`,`a`.`gap_lvl` AS `gap_lvl`,ifnull(`a`.`gap_lvl`,'No Gap') AS `gap_lvl_nm`,`b`.`req_type` AS `req_type`,ifnull(`q`.`look_value`,'None') AS `req_type_nm`,`a`.`req_status` AS `req_status`,`s`.`look_value` AS `req_status_nm`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`stat_e_dt_pre` AS `stat_e_dt_pre`,date_format(`a`.`stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `stat_e_dt_pre_fmt`,`a`.`stat_lag_time` AS `stat_lag_time`,ifnull(`a`.`stat_lag_time`,'0') AS `stat_lag_time_vir`,`a`.`stat_st_dt` AS `stat_st_dt`,if(isnull(`a`.`stat_st_dt`),'Not Started',convert(date_format(`a`.`stat_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `stat_st_dt_fmt`,date_format(`a`.`stat_st_dt`,'%Y') AS `stat_st_dt_yr`,date_format(`a`.`stat_st_dt`,'%M') AS `stat_st_dt_mon`,`a`.`stat_e_dt` AS `stat_e_dt`,(case when (`a`.`stat_e_dt` is not null) then convert(date_format(`a`.`stat_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`a`.`stat_e_dt`) and isnull(`a`.`stat_st_dt`)) then 'Not Started' when (isnull(`a`.`stat_e_dt`) and (`a`.`stat_st_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_fmt`,`a`.`stat_time` AS `stat_time`,ifnull(`a`.`stat_time`,timestampdiff(MINUTE,`a`.`stat_st_dt`,now())) AS `stat_time_vir`,if(isnull(`a`.`stat_e_dt`),'Open','Closed') AS `dev_est_reqs_status_cur_stat`,`a`.`assigned_to` AS `assigned_to`,`u`.`file_name` AS `assigned_to_fnm`,ifnull(concat(`t`.`firstname`,' ',`t`.`lastname`),'No Assignee') AS `assigned_to_nm`,`a`.`req_stat_amt` AS `req_stat_amt`,`a`.`req_stat_paid` AS `req_stat_paid`,concat((case when ((`a`.`req_stat_paid` > 999) and (`a`.`req_stat_paid` < 1000000)) then convert(concat((trim(round((`a`.`req_stat_paid` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_stat_paid` < 1000) then `a`.`req_stat_paid` when ((`a`.`req_stat_paid` > 999999) and (`a`.`req_stat_paid` < 1000000000)) then convert(concat((trim(round((`a`.`req_stat_paid` / 1000000),2)) + 0),'M') using latin1) when (`a`.`req_stat_paid` > 999999999) then convert(concat((trim(round((`a`.`req_stat_paid` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`a`.`req_stat_amt` > 999) and (`a`.`req_stat_amt` < 1000000)) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_stat_amt` < 1000) then `a`.`req_stat_amt` when ((`a`.`req_stat_amt` > 999999) and (`a`.`req_stat_amt` < 1000000000)) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`req_stat_amt` > 999999999) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `req_stat_paid_amt`,`a`.`req_stat_paid_pcnt` AS `req_stat_paid_pcnt`,`a`.`req_stat_bal` AS `req_stat_bal`,concat((case when ((`a`.`req_stat_bal` > 999) and (`a`.`req_stat_bal` < 1000000)) then convert(concat((trim(round((`a`.`req_stat_bal` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_stat_bal` < 1000) then `a`.`req_stat_bal` when ((`a`.`req_stat_bal` > 999999) and (`a`.`req_stat_bal` < 1000000000)) then convert(concat((trim(round((`a`.`req_stat_bal` / 1000000),2)) + 0),'M') using latin1) when (`a`.`req_stat_bal` > 999999999) then convert(concat((trim(round((`a`.`req_stat_bal` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`a`.`req_stat_amt` > 999) and (`a`.`req_stat_amt` < 1000000)) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`req_stat_amt` < 1000) then `a`.`req_stat_amt` when ((`a`.`req_stat_amt` > 999999) and (`a`.`req_stat_amt` < 1000000000)) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`req_stat_amt` > 999999999) then convert(concat((trim(round((`a`.`req_stat_amt` / 1000000000),2)) + 0),'B') using latin1) end)) AS `req_stat_bal_amt`,`a`.`req_stat_bal_pcnt` AS `req_stat_bal_pcnt`,`t`.`nickname` AS `nickname`,`b`.`req_status` AS `cur_stat`,`v`.`look_value` AS `cur_stat_nm`,`b`.`req_stat_e_dt_pre` AS `cur_req_stat_e_dt_pre`,date_format(`b`.`req_stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `cur_req_stat_e_dt_pre_fmt`,`b`.`req_stat_lag_tm` AS `cur_stat_lag_tm`,ifnull(`b`.`req_stat_lag_tm`,'0') AS `cur_stat_lag_tm_vir`,`b`.`req_stat_st_dt` AS `cur_req_stat_st_dt`,if(isnull(`b`.`req_stat_st_dt`),'Not Started',convert(date_format(`b`.`req_stat_st_dt`,'%m-%d-%y %h:%i %p') using utf8mb4)) AS `cur_stat_st_dt_fmt`,`b`.`req_stat_e_dt` AS `cur_req_stat_e_dt`,(case when (`b`.`req_stat_e_dt` is not null) then convert(date_format(`b`.`req_stat_e_dt`,'%m-%d-%y %h:%i %p') using utf8mb4) when (isnull(`b`.`req_stat_e_dt`) and isnull(`b`.`req_stat_st_dt`)) then 'Not Started' when (isnull(`b`.`req_stat_e_dt`) and (`b`.`req_stat_st_dt` is not null)) then 'In Progress' end) AS `cur_stat_e_dt_fmt`,`b`.`req_stat_time` AS `cur_stat_tm`,(case when (isnull(`b`.`req_stat_time`) and (`b`.`req_stat_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`b`.`req_stat_st_dt`)) / 60),0) else `b`.`req_stat_time` end) AS `cur_stat_tm_vir`,`b`.`req_stat_cnt` AS `req_stat_cnt`,`b`.`req_stat_tol` AS `req_stat_tol`,concat(`b`.`req_stat_cnt`,' of ',`b`.`req_stat_tol`) AS `req_stat_cnt_tol`,`b`.`req_stat_pcnt` AS `req_stat_pcnt`,`b`.`req_case_cnt` AS `req_case_cnt`,`b`.`req_case_tol` AS `req_case_tol`,concat(`b`.`req_case_cnt`,' of ',`b`.`req_case_tol`) AS `req_case_cnt_tol`,`b`.`req_case_pcnt` AS `req_case_pcnt`,`b`.`req_cases` AS `req_cases`,`b`.`req_case_atmpt` AS `req_case_atmpt`,`b`.`assigned_to` AS `cur_assigned_to`,`x`.`file_name` AS `cur_assigned_to_fnm`,ifnull(concat(`w`.`firstname`,' ',`w`.`lastname`),'No Assignee') AS `cur_assigned_to_nm`,`a`.`updater` AS `updater`,`z`.`file_name` AS `updater_fnm`,ifnull(concat(`y`.`firstname`,' ',`y`.`lastname`),'Admin') AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`ab`.`file_name` AS `del_by_fnm`,ifnull(concat(`aa`.`firstname`,' ',`aa`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4),'Not Archived') AS `archv_dt_yr`,ifnull(convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`ad`.`file_name` AS `archv_by_fnm`,ifnull(concat(`ac`.`firstname`,' ',`ac`.`lastname`),'Admin') AS `archv_by_nm` from (((((((((((((((((((((((((((`dev_est_reqs_status` `a` left join `dev_est_reqs` `b` on((`a`.`iddev_est_reqs` = `b`.`iddev_est_reqs`))) left join `dev_est` `c` on((`b`.`iddev_est` = `c`.`iddev_est`))) left join `dev_apps` `d` on((`c`.`iddev_apps` = `d`.`iddev_apps`))) left join `emp` `g` on((`c`.`owner_ref_id` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `company` `i` on((`c`.`owner_ref_id` = `i`.`comp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) left join `emp` `k` on((`c`.`est_ref_id` = `k`.`emp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) left join `company` `m` on((`c`.`est_ref_id` = `m`.`comp_id`))) left join `storages` `n` on((`m`.`idstorages` = `n`.`idstorages`))) left join `dev_look_value` `o` on((`c`.`priority` = `o`.`iddev_look_value`))) left join `dev_look_value` `p` on((`c`.`category` = `p`.`iddev_look_value`))) left join `dev_look_value` `q` on((`b`.`req_type` = `q`.`iddev_look_value`))) left join `dev_look_value` `s` on((`a`.`req_status` = `s`.`iddev_look_value`))) left join `emp` `t` on((`a`.`assigned_to` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) left join `dev_look_value` `v` on((`b`.`req_status` = `v`.`iddev_look_value`))) left join `emp` `w` on((`b`.`assigned_to` = `w`.`emp_id`))) left join `storages` `x` on((`w`.`idstorages` = `x`.`idstorages`))) left join `emp` `y` on((`a`.`updater` = `y`.`emp_id`))) left join `storages` `z` on((`y`.`idstorages` = `z`.`idstorages`))) left join `emp` `aa` on((`a`.`del_by` = `aa`.`emp_id`))) left join `storages` `ab` on((`aa`.`idstorages` = `ab`.`idstorages`))) left join `emp` `ac` on((`a`.`archv_by` = `ac`.`emp_id`))) left join `storages` `ad` on((`ac`.`idstorages` = `ad`.`idstorages`))) left join `dev_lk_wrk_flow` `ae` on((`b`.`iddev_lk_wrk_flow` = `ae`.`iddev_lk_wrk_flow`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_status_forcast` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_status_forcast` AS select `a`.`iddev_est_reqs_status_forcast` AS `iddev_est_reqs_status_forcast`,`c`.`iddev_apps` AS `iddev_apps`,`d`.`app_name` AS `app_name`,`d`.`app_st_dt` AS `app_st_dt`,if(isnull(`d`.`app_st_dt`),'Not Started',date_format(`d`.`app_st_dt`,'%m-%d-%y %h:%i %p')) AS `app_st_dt_fmt`,`d`.`app_e_dt` AS `app_e_dt`,(case when (`d`.`app_e_dt` is not null) then date_format(`d`.`app_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`d`.`app_e_dt`) and isnull(`d`.`app_st_dt`)) then 'Not Started' when (isnull(`d`.`app_e_dt`) and (`d`.`app_st_dt` is not null)) then 'In Progress' end) AS `app_e_dt_fmt`,if(isnull(`d`.`app_e_dt`),'Open','Closed') AS `dev_apps_cur_stat`,`b`.`iddev_est` AS `iddev_est`,`c`.`est_st_dt` AS `est_st_dt`,if(isnull(`c`.`est_st_dt`),'Not Started',date_format(`c`.`est_st_dt`,'%m-%d-%y %h:%i %p')) AS `est_st_dt_fmt`,`c`.`est_e_dt` AS `est_e_dt`,(case when (`c`.`est_e_dt` is not null) then date_format(`c`.`est_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`c`.`est_e_dt`) and isnull(`c`.`est_st_dt`)) then 'Not Started' when (isnull(`c`.`est_e_dt`) and (`c`.`est_st_dt` is not null)) then 'In Progress' end) AS `est_e_dt_fmt`,if(isnull(`c`.`est_e_dt`),'Open','Closed') AS `dev_est_cur_stat`,`c`.`est_type` AS `est_type`,`c`.`category` AS `category`,ifnull(`m`.`look_value`,'No Category') AS `category_nm`,`c`.`est_ref_id` AS `est_ref_id`,`c`.`est_ref_tab` AS `est_ref_tab`,(case when (`c`.`est_ref_tab` like 'emp') then `f`.`file_name` when (`c`.`est_ref_tab` like 'comp') then `h`.`file_name` end) AS `est_fnm`,ifnull((case when (`c`.`est_ref_tab` like 'emp') then concat(`e`.`firstname`,' ',`e`.`lastname`) when (`c`.`est_ref_tab` like 'comp') then `g`.`companyname` end),'No Estimater') AS `est_ref_nm`,`c`.`owner_ref_id` AS `owner_ref_id`,`c`.`owner_ref_tab` AS `owner_ref_tab`,(case when (`c`.`owner_ref_tab` like 'emp') then `j`.`file_name` when (`c`.`owner_ref_tab` like 'comp') then `l`.`file_name` end) AS `owner_fnm`,ifnull((case when (`c`.`owner_ref_tab` like 'emp') then concat(`i`.`firstname`,' ',`i`.`lastname`) when (`c`.`owner_ref_tab` like 'comp') then `k`.`companyname` end),'No Owner') AS `owner_ref_nm`,`c`.`dev_est_smry` AS `dev_est_smry`,`a`.`iddev_est_reqs` AS `iddev_est_reqs`,`b`.`req_desc` AS `req_desc`,`b`.`req_st_dt` AS `req_st_dt`,if(isnull(`b`.`req_st_dt`),'Not Started',date_format(`b`.`req_st_dt`,'%m-%d-%y %h:%i %p')) AS `req_st_dt_fmt`,`b`.`req_e_dt` AS `req_e_dt`,(case when (`b`.`req_e_dt` is not null) then date_format(`b`.`req_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`b`.`req_e_dt`) and isnull(`b`.`req_st_dt`)) then 'Not Started' when (isnull(`b`.`req_e_dt`) and (`b`.`req_st_dt` is not null)) then 'In Progress' end) AS `req_e_dt_fmt`,if(isnull(`b`.`req_e_dt`),'Open','Closed') AS `dev_est_reqs_cur_stat`,`b`.`iddev_lk_wrk_flow` AS `iddev_lk_wrk_flow`,ifnull(`ac`.`wrk_flow_nm`,'No Workflow') AS `wrk_flow_nm`,`b`.`req_time` AS `req_time`,(case when (isnull(`b`.`req_time`) and (`b`.`req_st_dt` is not null)) then round(((unix_timestamp(now()) - unix_timestamp(`b`.`req_st_dt`)) / 60),0) else `b`.`req_time` end) AS `req_time_vir`,`b`.`req_type` AS `req_type`,ifnull(`n`.`look_value`,'None') AS `req_type_nm`,`b`.`skill_lvl` AS `skill_lvl`,ifnull(`b`.`skill_lvl`,'No Skill') AS `skill_lvl_nm`,`b`.`gap_lvl` AS `gap_lvl`,ifnull(`b`.`gap_lvl`,'None') AS `gap_lvl_nm`,`a`.`iddev_est_reqs_status` AS `iddev_est_reqs_status`,`x`.`stat_e_dt_pre` AS `stat_e_dt_act_pre`,date_format(`x`.`stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `stat_e_dt_act_pre_fmt`,`x`.`stat_lag_time` AS `stat_lag_time`,ifnull(`x`.`stat_lag_time`,'0') AS `stat_lag_time_vir`,`x`.`stat_st_dt` AS `stat_st_dt_act`,if(isnull(`x`.`stat_st_dt`),'Not Started',date_format(`x`.`stat_st_dt`,'%m-%d-%y %h:%i %p')) AS `stat_st_dt_act_fmt`,`x`.`stat_e_dt` AS `stat_e_dt_act`,(case when (`x`.`stat_e_dt` is not null) then date_format(`x`.`stat_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`x`.`stat_e_dt`) and isnull(`x`.`stat_st_dt`)) then 'Not Started' when (isnull(`x`.`stat_e_dt`) and (`x`.`stat_st_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_act_fmt`,`x`.`stat_time` AS `req_stat_time`,ifnull(`x`.`stat_time`,timestampdiff(MINUTE,`x`.`stat_st_dt`,now())) AS `req_stat_time_vir`,`x`.`assigned_to` AS `assigned_to_act`,`ab`.`file_name` AS `assigned_to_act_fnm`,if(isnull(`x`.`assigned_to`),'No Assignee',concat(`aa`.`firstname`,' ',`aa`.`lastname`)) AS `assigned_to_act_nm`,(case when (`x`.`stat_e_dt` is not null) then 'Done' when (isnull(`x`.`stat_e_dt`) and isnull(`x`.`stat_st_dt`)) then 'Pending' when (isnull(`x`.`stat_e_dt`) and (`x`.`stat_st_dt` is not null)) then 'Started' end) AS `iddev_est_reqs_status_nm`,`a`.`req_status` AS `req_status`,ifnull(`o`.`look_value`,'No Status') AS `req_status_nm`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`for_stat_e_dt_pre` AS `for_stat_e_dt_pre`,date_format(`a`.`for_stat_e_dt_pre`,'%m-%d-%y %h:%i %p') AS `for_stat_e_dt_pre_fmt`,`a`.`for_stat_lag_time` AS `for_lag_time`,ifnull(`a`.`for_stat_lag_time`,'0') AS `for_lag_time_vir`,`a`.`for_stat_st_dt` AS `for_stat_st_dt`,if(isnull(`a`.`for_stat_st_dt`),'Not Started',date_format(`a`.`for_stat_st_dt`,'%m-%d-%y %h:%i %p')) AS `for_stat_st_dt_fmt`,if(isnull(`a`.`for_stat_st_dt`),'Not Started',date_format(`a`.`for_stat_st_dt`,'%Y')) AS `for_stat_st_yr`,if(isnull(`a`.`for_stat_st_dt`),'Not Started',date_format(`a`.`for_stat_st_dt`,'%b')) AS `for_stat_st_mon`,`a`.`for_stat_e_dt` AS `for_stat_e_dt`,(case when (`a`.`for_stat_e_dt` is not null) then date_format(`a`.`for_stat_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`for_stat_e_dt`) and isnull(`a`.`for_stat_st_dt`)) then 'Not Started' when (isnull(`a`.`for_stat_e_dt`) and (`a`.`for_stat_st_dt` is not null)) then 'In Progress' end) AS `for_stat_e_dt_fmt`,if(isnull(`a`.`for_stat_e_dt`),'Open','Closed') AS `dev_est_reqs_status_forcast_cur_stat`,(case when (`a`.`for_stat_e_dt` is not null) then date_format(`a`.`for_stat_e_dt`,'%Y') when (isnull(`a`.`for_stat_e_dt`) and isnull(`a`.`for_stat_st_dt`)) then 'Not Started' when (isnull(`a`.`for_stat_e_dt`) and (`a`.`for_stat_st_dt` is not null)) then 'In Progress' end) AS `for_stat_e_yr`,(case when (`a`.`for_stat_e_dt` is not null) then date_format(`a`.`for_stat_e_dt`,'%b') when (isnull(`a`.`for_stat_e_dt`) and isnull(`a`.`for_stat_st_dt`)) then 'Not Started' when (isnull(`a`.`for_stat_e_dt`) and (`a`.`for_stat_st_dt` is not null)) then 'In Progress' end) AS `for_stat_e_mon`,`a`.`for_stat_time` AS `for_stat_time`,ifnull(`a`.`for_stat_time`,timestampdiff(MINUTE,`a`.`for_stat_st_dt`,now())) AS `for_stat_time_vir`,`a`.`for_req_bud_amt` AS `for_req_bud_amt`,if(isnull(`a`.`for_req_bud_amt`),'No','Yes') AS `for_req_bud_amt_nm`,`a`.`for_amt_dt` AS `for_amt_dt`,date_format(`a`.`for_amt_dt`,'%m-%d-%y %h:%i %p') AS `for_amt_dt_fmt`,`a`.`for_amt_temp_dt` AS `for_amt_temp_dt`,`x`.`req_stat_amt` AS `req_stat_amt`,if(isnull(`x`.`req_stat_amt`),'No','Yes') AS `req_stat_amt_nm`,concat(if(isnull(`x`.`req_stat_amt`),'0.00',(case when ((`x`.`req_stat_amt` > 999) and (`x`.`req_stat_amt` < 1000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000),2)) + 0),'K') using latin1) when (`x`.`req_stat_amt` < 1000) then `x`.`req_stat_amt` when ((`x`.`req_stat_amt` > 999999) and (`x`.`req_stat_amt` < 1000000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000),2)) + 0),'M') using latin1) when (`x`.`req_stat_amt` > 999999999) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000000),2)) + 0),'B') using latin1) end)),' of ',if(isnull(`a`.`for_req_bud_amt`),'0.00',(case when ((`a`.`for_req_bud_amt` > 999) and (`a`.`for_req_bud_amt` < 1000000)) then convert(concat((trim(round((`a`.`for_req_bud_amt` / 1000),2)) + 0),'K') using latin1) when (`a`.`for_req_bud_amt` < 1000) then `a`.`for_req_bud_amt` when ((`a`.`for_req_bud_amt` > 999999) and (`a`.`for_req_bud_amt` < 1000000000)) then convert(concat((trim(round((`a`.`for_req_bud_amt` / 1000000),2)) + 0),'M') using latin1) when (`a`.`for_req_bud_amt` > 999999999) then convert(concat((trim(round((`a`.`for_req_bud_amt` / 1000000000),2)) + 0),'B') using latin1) end))) AS `for_req_bud_stat_amt`,ifnull(concat(round(((`x`.`req_stat_amt` * 100) / `a`.`for_req_bud_amt`),2),' ','%'),'0%') AS `for_req_bud_stat_amt_pcnt`,`x`.`req_stat_paid` AS `req_stat_paid`,if(isnull(`x`.`req_stat_paid`),'No','Yes') AS `req_stat_paid_nm`,concat(if(isnull(`x`.`req_stat_paid`),'0.00',(case when ((`x`.`req_stat_paid` > 999) and (`x`.`req_stat_paid` < 1000000)) then convert(concat((trim(round((`x`.`req_stat_paid` / 1000),2)) + 0),'K') using latin1) when (`x`.`req_stat_paid` < 1000) then `x`.`req_stat_paid` when ((`x`.`req_stat_paid` > 999999) and (`x`.`req_stat_paid` < 1000000000)) then convert(concat((trim(round((`x`.`req_stat_paid` / 1000000),2)) + 0),'M') using latin1) when (`x`.`req_stat_paid` > 999999999) then convert(concat((trim(round((`x`.`req_stat_paid` / 1000000000),2)) + 0),'B') using latin1) end)),' of ',if(isnull(`x`.`req_stat_amt`),'0.00',(case when ((`x`.`req_stat_amt` > 999) and (`x`.`req_stat_amt` < 1000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000),2)) + 0),'K') using latin1) when (`x`.`req_stat_amt` < 1000) then `x`.`req_stat_amt` when ((`x`.`req_stat_amt` > 999999) and (`x`.`req_stat_amt` < 1000000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000),2)) + 0),'M') using latin1) when (`x`.`req_stat_amt` > 999999999) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000000),2)) + 0),'B') using latin1) end))) AS `req_stat_paid_amt`,ifnull(concat(round(((`x`.`req_stat_paid` * 100) / `x`.`req_stat_amt`),2),' ','%'),'0%') AS `req_stat_paid_amt_pcnt`,`x`.`req_stat_bal` AS `req_stat_bal`,if(isnull(`x`.`req_stat_bal`),'No','Yes') AS `req_stat_bal_nm`,concat(if(isnull(`x`.`req_stat_bal`),'0.00',(case when ((`x`.`req_stat_bal` > 999) and (`x`.`req_stat_bal` < 1000000)) then convert(concat((trim(round((`x`.`req_stat_bal` / 1000),2)) + 0),'K') using latin1) when (`x`.`req_stat_bal` < 1000) then `x`.`req_stat_bal` when ((`x`.`req_stat_bal` > 999999) and (`x`.`req_stat_bal` < 1000000000)) then convert(concat((trim(round((`x`.`req_stat_bal` / 1000000),2)) + 0),'M') using latin1) when (`x`.`req_stat_bal` > 999999999) then convert(concat((trim(round((`x`.`req_stat_bal` / 1000000000),2)) + 0),'B') using latin1) end)),' of ',if(isnull(`x`.`req_stat_amt`),'0.00',(case when ((`x`.`req_stat_amt` > 999) and (`x`.`req_stat_amt` < 1000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000),2)) + 0),'K') using latin1) when (`x`.`req_stat_amt` < 1000) then `x`.`req_stat_amt` when ((`x`.`req_stat_amt` > 999999) and (`x`.`req_stat_amt` < 1000000000)) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000),2)) + 0),'M') using latin1) when (`x`.`req_stat_amt` > 999999999) then convert(concat((trim(round((`x`.`req_stat_amt` / 1000000000),2)) + 0),'B') using latin1) end))) AS `req_stat_bal_amt`,ifnull(concat(round(((`x`.`req_stat_bal` * 100) / `x`.`req_stat_amt`),2),' ','%'),'0%') AS `req_stat_bal_amt_pcnt`,`a`.`hist_cnt` AS `hist_cnt`,`a`.`for_req_bud_amt_updater` AS `for_req_bud_amt_updater`,`z`.`file_name` AS `for_req_bud_amt_updater_fnm`,(case when (isnull(`a`.`for_req_bud_amt_updated`) and isnull(`a`.`for_req_bud_amt_updater`)) then 'Never Updated' when ((`a`.`for_req_bud_amt_updated` is not null) and isnull(`a`.`for_req_bud_amt_updater`)) then 'Admin' when ((`a`.`for_req_bud_amt_updated` is not null) and (`a`.`for_req_bud_amt_updater` is not null)) then concat(`y`.`firstname`,' ',`y`.`lastname`) end) AS `for_req_bud_amt_updater_nm`,`a`.`for_req_bud_amt_updated` AS `for_req_bud_amt_updated`,date_format(`a`.`for_req_bud_amt_updated`,'%m-%d-%y %h:%i %p') AS `for_req_bud_amt_updated_fmt`,`a`.`assigned_to` AS `assigned_to`,`q`.`file_name` AS `assigned_to_fnm`,ifnull(concat(`p`.`firstname`,' ',`p`.`lastname`),'No Assignee') AS `assigned_to_nm`,`a`.`forecast_smry` AS `forecast_smry`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updater` AS `updater`,`s`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`last_updated`) and isnull(`a`.`updater`)) then 'Never Updated' when ((`a`.`last_updated` is not null) and isnull(`a`.`updater`)) then 'Admin' when ((`a`.`last_updated` is not null) and (`a`.`updater` is not null)) then concat(`r`.`firstname`,' ',`r`.`lastname`) end) AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`u`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`t`.`firstname`,' ',`t`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`w`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`v`.`firstname`,' ',`v`.`lastname`) end) AS `archv_by_nm` from ((((((((((((((((((((((((((((`dev_est_reqs_status_forcast` `a` left join `dev_est_reqs` `b` on((`a`.`iddev_est_reqs` = `b`.`iddev_est_reqs`))) left join `dev_est` `c` on((`b`.`iddev_est` = `c`.`iddev_est`))) left join `dev_apps` `d` on((`c`.`iddev_apps` = `d`.`iddev_apps`))) left join `emp` `e` on((`c`.`est_ref_id` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `company` `g` on((`c`.`est_ref_id` = `g`.`comp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`c`.`owner_ref_id` = `i`.`emp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) left join `company` `k` on((`c`.`owner_ref_id` = `k`.`comp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) left join `dev_look_value` `m` on((`c`.`category` = `m`.`iddev_look_value`))) left join `dev_look_value` `n` on((`b`.`req_type` = `n`.`iddev_look_value`))) left join `dev_look_value` `o` on((`a`.`req_status` = `o`.`iddev_look_value`))) left join `emp` `p` on((`a`.`assigned_to` = `p`.`emp_id`))) left join `storages` `q` on((`p`.`idstorages` = `q`.`idstorages`))) left join `emp` `r` on((`a`.`updater` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`a`.`del_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) left join `emp` `v` on((`a`.`archv_by` = `v`.`emp_id`))) left join `storages` `w` on((`v`.`idstorages` = `w`.`idstorages`))) left join `dev_est_reqs_status` `x` on((`a`.`iddev_est_reqs_status` = `x`.`iddev_est_reqs_status`))) left join `emp` `y` on((`a`.`for_req_bud_amt_updater` = `y`.`emp_id`))) left join `storages` `z` on((`y`.`idstorages` = `z`.`idstorages`))) left join `emp` `aa` on((`x`.`assigned_to` = `aa`.`emp_id`))) left join `storages` `ab` on((`aa`.`idstorages` = `ab`.`idstorages`))) left join `dev_lk_wrk_flow` `ac` on((`b`.`iddev_lk_wrk_flow` = `ac`.`iddev_lk_wrk_flow`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_status_forcast_hist` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast_hist`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_status_forcast_hist` AS select `a`.`iddev_est_reqs_status_forcast_hist` AS `iddev_est_reqs_status_forcast_hist`,`a`.`iddev_est_reqs_status_forcast` AS `iddev_est_reqs_status_forcast`,`a`.`forecast_req_bud_amt_old` AS `forecast_req_bud_amt_old`,`a`.`forecast_smry_old` AS `forecast_smry_old`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`dev_est_reqs_status_forcast_hist` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_status_forcast_steps` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_forcast_steps`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_status_forcast_steps` AS select `a`.`iddev_est_reqs_status_forcast_steps` AS `iddev_est_reqs_status_forcast_steps`,`a`.`iddev_est_reqs` AS `iddev_est_reqs`,`a`.`dev_steps_details` AS `dev_steps_details`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`dev_est_reqs_status_forcast_steps` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_est_reqs_status_steps` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_est_reqs_status_steps`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_est_reqs_status_steps` AS select `a`.`iddev_est_req_status_steps` AS `iddev_est_req_status_steps`,`a`.`iddev_est_reqs_status` AS `iddev_est_reqs_status`,`b`.`iddev_est_reqs` AS `iddev_est_reqs`,`b`.`req_status` AS `req_status`,`b`.`req_status_nm` AS `req_status_nm`,`a`.`dev_steps_details` AS `dev_steps_details`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updater` AS `updater`,`e`.`file_name` AS `updater_fnm`,ifnull(concat(`d`.`firstname`,'',`d`.`lastname`),'Admin') AS `updater_nm` from (((`dev_est_reqs_status_steps` `a` left join `vw_dev_est_reqs_status` `b` on((`a`.`iddev_est_reqs_status` = `b`.`iddev_est_reqs_status`))) left join `emp` `d` on((`a`.`updater` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_lk_label` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_lk_label`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_lk_label` AS select `a`.`iddev_lk_label` AS `iddev_lk_label`,`a`.`display_size` AS `display_size`,`a`.`dev_label_nm` AS `dev_label_nm`,`a`.`hover_fields` AS `hover_fields`,`a`.`disp_order` AS `disp_order`,`a`.`lk_parent_val_id` AS `lk_parent_val_id`,`a`.`updater` AS `updater_id`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater`,`s`.`file_name` AS `updater_file_name`,if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y')) AS `last_updated` from ((`dev_lk_label` `a` left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `s` on((`e`.`idstorages` = `s`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_lk_wrk_flow` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_lk_wrk_flow`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_lk_wrk_flow` AS select `a`.`iddev_lk_wrk_flow` AS `iddev_lk_wrk_flow`,`a`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`id_wrk_flow` AS `id_wrk_flow`,`a`.`wrk_flow_desc` AS `wrk_flow_desc`,`a`.`id_wrk_flow_parent` AS `id_wrk_flow_parent`,`a`.`look_initial` AS `look_initial`,`a`.`look_restart` AS `look_restart`,`a`.`disp_order` AS `disp_order`,`a`.`updater` AS `updater`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `updater_fmt`,`a`.`last_updated` AS `last_updated`,if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) AS `last_updated_fmt`,concat(ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by`,`b`.`look_value` AS `look_value` from ((`dev_lk_wrk_flow` `a` left join `dev_look_value` `b` on((`a`.`id_wrk_flow` = `b`.`iddev_look_value`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_look_value` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_look_value`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_look_value` AS select `a`.`iddev_look_value` AS `iddev_look_value`,NULL AS `iddev_look`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`look_value` AS `look_value`,NULL AS `child_lvl`,`a`.`look_value_desc` AS `look_value_desc`,`a`.`disp_order` AS `disp_order`,`a`.`iddev_look` AS `parent_id`,`a`.`updater` AS `updater`,`e`.`emp_fnm` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(convert(if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) using latin1),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from (`dev_look_value` `a` left join `vw_emp` `e` on((`a`.`updater` = `e`.`emp_id`))) union all select NULL AS `iddev_look_value`,`a`.`iddev_look` AS `iddev_look`,NULL AS `lk_val_par`,`a`.`look_name` AS `look_name`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`look_name_desc` AS `look_name_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `parent_id`,`a`.`updater` AS `updater`,`f`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(convert(if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) using latin1),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`dev_look` `a` left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_trng` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_trng`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_trng` AS select `a`.`iddev_trng` AS `iddev_trng`,`a`.`disp_order` AS `disp_order`,`a`.`train_nm` AS `train_nm`,`a`.`train_desc` AS `train_desc`,`a`.`duration` AS `duration`,`a`.`cnt` AS `cnt`,`a`.`practical` AS `practical`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(trim(ifnull(`b`.`firstname`,'')),' ',trim(ifnull(nullif(`b`.`middlename`,''),'')),convert((case when ((`b`.`middlename` is not null) and (`b`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`b`.`lastname`,''))),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,ifnull(date_format(`a`.`updated`,'%m-%d-%y %h:%i %p'),'System') AS `updated_fmt` from ((`dev_trng` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_dev_trng_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_dev_trng_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_dev_trng_doc` AS select `a`.`iddev_trng_doc` AS `iddev_trng_doc`,`a`.`iddev_trng` AS `iddev_trng`,`a`.`disp_order` AS `disp_order`,`a`.`trng_desc` AS `trng_desc`,`a`.`duration` AS `duration`,`a`.`idstorages` AS `idstorages`,`a`.`cloud_link` AS `cloud_link`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(trim(ifnull(`b`.`firstname`,'')),' ',trim(ifnull(nullif(`b`.`middlename`,''),'')),convert((case when ((`b`.`middlename` is not null) and (`b`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`b`.`lastname`,''))),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,ifnull(date_format(`a`.`updated`,'%m-%d-%y %h:%i %p'),'System') AS `updated_fmt` from ((`dev_trng_doc` `a` left join `vw_emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp` -- /*!50001 DROP VIEW IF EXISTS `vw_emp`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp` AS select `a`.`emp_id` AS `emp_id`,`a`.`idstorages` AS `idstorages`,`e`.`file_name` AS `emp_fnm`,`e`.`file_ser_name` AS `emp_fnm_ser`,if(isnull(`a`.`idstorages`),'No','Yes') AS `idstorages_stat`,`a`.`firstname` AS `firstname`,`a`.`middlename` AS `middlename`,`a`.`lastname` AS `lastname`,concat(trim(ifnull(`a`.`firstname`,'')),' ',trim(ifnull(nullif(`a`.`middlename`,''),'')),convert((case when ((`a`.`middlename` is not null) and (`a`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`a`.`lastname`,''))) AS `fullname`,`a`.`nickname` AS `nickname`,`b`.`user_name` AS `user_name`,ifnull(`b`.`user_name`,'No Login') AS `user_name_nm`,if(isnull(`b`.`user_name`),'No','Yes') AS `user_name_cur_stat`,`b`.`status` AS `status`,`b`.`expire_tm` AS `expire_tm`,`b`.`last_clicked` AS `last_clicked`,timestampdiff(MINUTE,`f`.`lastlogin`,`b`.`last_clicked`) AS `last_clicked_tm`,`a`.`all_contacts` AS `all_contacts`,if(isnull(`a`.`all_contacts`),'No','Yes') AS `all_contacts_nm`,concat(trim(ifnull(`a`.`firstname`,'')),' ',trim(ifnull(nullif(`a`.`middlename`,''),'')),convert((case when ((`a`.`middlename` is not null) and (`a`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`a`.`lastname`,'')),' Contacts: ',ifnull(`a`.`all_contacts`,'No Contacts')) AS `emp_nm_all_contacts`,`a`.`unique_id_type` AS `unique_id_type`,ifnull(`c`.`lk_val`,'NA') AS `unique_id_nm`,`a`.`ssn` AS `ssn`,ifnull(`a`.`ssn`,'No SSN') AS `ssn_nm`,`a`.`dob` AS `dob`,ifnull(date_format(`a`.`dob`,'%m-%d-%y'),'No DOB') AS `dob_fmt`,ifnull(timestampdiff(YEAR,`a`.`dob`,curdate()),'No DOB') AS `age`,`a`.`gender` AS `gender_id`,ifnull(`d`.`lk_val`,'NA') AS `gender_nm`,`a`.`all_features` AS `all_features`,`a`.`cnt_feature` AS `cnt_feature`,`a`.`all_education` AS `all_education`,if(isnull(`a`.`all_education`),'No','Yes') AS `all_education_nm`,`a`.`education_cnt` AS `education_cnt`,`a`.`education_yrs` AS `education_yrs`,if(isnull(`a`.`education_yrs`),'NA',concat(floor((`a`.`education_yrs` / 365)),'Y ',floor(((`a`.`education_yrs` % 365) / 30)),'M ')) AS `education_yrs_nm`,concat(ifnull(`a`.`all_education`,'NA'),' Total: ',convert(if(isnull(`a`.`education_yrs`),'NA',concat(floor((`a`.`education_yrs` / 365)),'Y ',floor(((`a`.`education_yrs` % 365) / 30)),'M ')) using latin1)) AS `all_education_yrs_nm`,`a`.`all_emp_org` AS `all_emp_org`,if(isnull(`a`.`all_emp_org`),'No','Yes') AS `all_emp_org_nm`,`a`.`all_addresses` AS `all_addresses`,`a`.`sto_limit` AS `sto_limit`,(case when (`a`.`sto_limit` < 1024) then concat(`a`.`sto_limit`,' B') when ((`a`.`sto_limit` >= 1024) and (`a`.`sto_limit` < 1048576)) then convert(concat(round((`a`.`sto_limit` / 1024),2),' KB') using latin1) when ((`a`.`sto_limit` >= 1048576) and (`a`.`sto_limit` < 1073741824)) then convert(concat(round(((`a`.`sto_limit` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_limit` >= 1073741824) then convert(concat(round((((`a`.`sto_limit` / 1024) / 1024) / 1024),2),' GB') using latin1) end) AS `sto_limit_fmt`,`a`.`sto_usage` AS `sto_usage`,(case when (`a`.`sto_usage` < 1024) then concat(`a`.`sto_usage`,' B') when ((`a`.`sto_usage` >= 1024) and (`a`.`sto_usage` < 1048576)) then convert(concat(round((`a`.`sto_usage` / 1024),2),' KB') using latin1) when ((`a`.`sto_usage` >= 1048576) and (`a`.`sto_usage` < 1073741824)) then convert(concat(round(((`a`.`sto_usage` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_usage` >= 1073741824) then convert(concat(round((((`a`.`sto_usage` / 1024) / 1024) / 1024),2),' GB') using latin1) end) AS `sto_usage_fmt`,`a`.`sto_remain` AS `sto_remain`,(case when (`a`.`sto_remain` < 1024) then concat(`a`.`sto_remain`,' B') when ((`a`.`sto_remain` >= 1024) and (`a`.`sto_remain` < 1048576)) then convert(concat(round((`a`.`sto_remain` / 1024),2),' KB') using latin1) when ((`a`.`sto_remain` >= 1048576) and (`a`.`sto_remain` < 1073741824)) then convert(concat(round(((`a`.`sto_remain` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_remain` >= 1073741824) then convert(concat(round((((`a`.`sto_remain` / 1024) / 1024) / 1024),2),' GB') using latin1) end) AS `sto_remain_fmt`,concat((case when (`a`.`sto_usage` < 1024) then concat(`a`.`sto_usage`,' B') when ((`a`.`sto_usage` >= 1024) and (`a`.`sto_usage` < 1048576)) then convert(concat(round((`a`.`sto_usage` / 1024),2),' KB') using latin1) when ((`a`.`sto_usage` >= 1048576) and (`a`.`sto_usage` < 1073741824)) then convert(concat(round(((`a`.`sto_usage` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_usage` >= 1073741824) then convert(concat(round((((`a`.`sto_usage` / 1024) / 1024) / 1024),2),' GB') using latin1) end),' of ',(case when (`a`.`sto_limit` < 1024) then concat(`a`.`sto_limit`,' B') when ((`a`.`sto_limit` >= 1024) and (`a`.`sto_limit` < 1048576)) then convert(concat(round((`a`.`sto_limit` / 1024),2),' KB') using latin1) when ((`a`.`sto_limit` >= 1048576) and (`a`.`sto_limit` < 1073741824)) then convert(concat(round(((`a`.`sto_limit` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_limit` >= 1073741824) then convert(concat(round((((`a`.`sto_limit` / 1024) / 1024) / 1024),2),' GB') using latin1) end)) AS `sto_usage_nm`,concat((case when (`a`.`sto_remain` < 1024) then concat(`a`.`sto_remain`,' B') when ((`a`.`sto_remain` >= 1024) and (`a`.`sto_remain` < 1048576)) then convert(concat(round((`a`.`sto_remain` / 1024),2),' KB') using latin1) when ((`a`.`sto_remain` >= 1048576) and (`a`.`sto_remain` < 1073741824)) then convert(concat(round(((`a`.`sto_remain` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_remain` >= 1073741824) then convert(concat(round((((`a`.`sto_remain` / 1024) / 1024) / 1024),2),' GB') using latin1) end),' of ',(case when (`a`.`sto_limit` < 1024) then concat(`a`.`sto_limit`,' B') when ((`a`.`sto_limit` >= 1024) and (`a`.`sto_limit` < 1048576)) then convert(concat(round((`a`.`sto_limit` / 1024),2),' KB') using latin1) when ((`a`.`sto_limit` >= 1048576) and (`a`.`sto_limit` < 1073741824)) then convert(concat(round(((`a`.`sto_limit` / 1024) / 1024),2),' MB') using latin1) when (`a`.`sto_limit` >= 1073741824) then convert(concat(round((((`a`.`sto_limit` / 1024) / 1024) / 1024),2),' GB') using latin1) end)) AS `sto_remaining`,concat(round(((`a`.`sto_usage` / `a`.`sto_limit`) * 100),2),'%') AS `sto_usage_nm_pcnt`,concat(round(((`a`.`sto_remain` / `a`.`sto_limit`) * 100),2),'%') AS `sto_remain_nm_pcnt`,`a`.`taxid` AS `taxid`,ifnull(`a`.`taxid`,'No TAXID') AS `taxid_nm`,ifnull(`a`.`hrs_forecast`,'0.00') AS `hrs_forecast`,ifnull(`a`.`hrs_actual`,'0.00') AS `hrs_actual`,concat((case when isnull(`a`.`hrs_actual`) then '0.00' when (`a`.`hrs_actual` > 999) then convert(concat((trim(round((`a`.`hrs_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`hrs_actual` < 1000) then `a`.`hrs_actual` end),' of ',(case when isnull(`a`.`hrs_forecast`) then '0.00' when (`a`.`hrs_forecast` > 999) then convert(concat((trim(round((`a`.`hrs_forecast` / 1000),2)) + 0),'K') using latin1) when (`a`.`hrs_forecast` < 1000) then `a`.`hrs_forecast` end)) AS `hrs_actual_forecast`,ifnull(`a`.`fore_act_pcnt`,'0.00') AS `fore_act_pcnt`,ifnull(`a`.`amt_forcast`,'0.00') AS `amt_forcast`,ifnull(`a`.`amt_actual`,'0.00') AS `amt_actual`,concat((case when isnull(`a`.`amt_actual`) then '0.00' when (`a`.`amt_actual` > 999) then convert(concat((trim(round((`a`.`amt_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`amt_actual` < 1000) then `a`.`amt_actual` end),' of ',(case when isnull(`a`.`amt_forcast`) then '0.00' when (`a`.`amt_forcast` > 999) then convert(concat((trim(round((`a`.`amt_forcast` / 1000),2)) + 0),'K') using latin1) when (`a`.`amt_forcast` < 1000) then `a`.`amt_forcast` end)) AS `amt_actual_forcast`,ifnull(`a`.`amt_pcnt`,'0.00') AS `amt_pcnt`,ifnull(`a`.`vac_earn`,'0.00') AS `vac_earned`,ifnull(`a`.`vac_use`,'0.00') AS `vac_used`,concat((case when isnull(`a`.`vac_use`) then '0.00' when (`a`.`vac_use` > 999) then convert(concat((trim(round((`a`.`vac_use` / 1000),2)) + 0),'K') using latin1) when (`a`.`vac_use` < 1000) then `a`.`vac_use` end),' of ',(case when isnull(`a`.`vac_earn`) then '0.00' when (`a`.`vac_earn` > 999) then convert(concat((trim(round((`a`.`vac_earn` / 1000),2)) + 0),'K') using latin1) when (`a`.`vac_earn` < 1000) then `a`.`vac_earn` end)) AS `vac_used_earned`,ifnull(`a`.`vac_pcnt`,'0.00') AS `vac_pcnt`,ifnull(`a`.`vac_bal`,'0.00') AS `vac_bal`,`a`.`login_id` AS `login_id`,`g`.`domain_nm` AS `domain_name`,`g`.`ip_contry` AS `contry`,`g`.`ip_state` AS `ip_state`,`g`.`ip_city` AS `ip_city`,`g`.`ip_post_code` AS `ip_post_code`,`f`.`lastlogin` AS `lastlogin`,date_format(`f`.`lastlogin`,'%m-%d-%y %h:%i %p') AS `lastlogin_fmt`,`f`.`lastlogout` AS `lastlogout`,date_format(`f`.`lastlogout`,'%m-%d-%y %h:%i %p') AS `lastlogout_fmt`,concat(ifnull(`g`.`ip_address`,''),' ',ifnull(`g`.`domain_nm`,''),' ',ifnull(`g`.`ip_contry`,''),' ',ifnull(`g`.`ip_state`,''),' ',ifnull(`g`.`ip_city`,''),' ',ifnull(`g`.`ip_post_code`,'')) AS `from_fmt`,ifnull(concat(round(((unix_timestamp(now()) - unix_timestamp(`f`.`lastlogout`)) / 3600),0),':',round((round(((unix_timestamp(now()) - unix_timestamp(`f`.`lastlogout`)) % 3600),0) / 60),0)),'Live') AS `loggged_out`,`f`.`logged_in` AS `logged_in`,timestampdiff(MINUTE,`f`.`lastlogin`,`f`.`lastlogout`) AS `logged_in_tm`,`h`.`idlook_menu_pvt_lvl1` AS `idlook_menu_pvt_lvl1`,`i`.`lk_values` AS `main_menu`,`h`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`j`.`lk_values` AS `sub_menu`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updater` AS `updater`,`l`.`file_name` AS `updater_fnm`,`l`.`file_ser_name` AS `updater_fnm_ser`,ifnull(concat(`k`.`firstname`,' ',`k`.`lastname`),'Admin') AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`n`.`file_name` AS `del_by_fnm`,`n`.`file_ser_name` AS `del_by_fnm_ser`,ifnull(concat(`m`.`firstname`,' ',`m`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`p`.`file_name` AS `archv_by_fnm`,`p`.`file_ser_name` AS `archv_by_fnm_ser`,ifnull(concat(`o`.`firstname`,' ',`o`.`lastname`),'Admin') AS `archv_by_nm` from (((((((((((((((`emp` `a` left join `all_users` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `emp_lk_val` `c` on((`a`.`unique_id_type` = `c`.`idemp_lk_value`))) left join `emp_lk_val` `d` on((`a`.`gender` = `d`.`idemp_lk_value`))) left join `storages` `e` on((`a`.`idstorages` = `e`.`idstorages`))) left join `all_usr_login` `f` on((`a`.`login_id` = `f`.`idall_usr_login`))) left join `look_ip_addr` `g` on((`f`.`idlook_ip_addr` = `g`.`idlook_ip_addr`))) left join `all_usr_login` `h` on((`a`.`login_id` = `h`.`idall_usr_login`))) left join `look_menu_pvt` `i` on((`h`.`idlook_menu_pvt_lvl1` = `i`.`idlook_menu_pvt`))) left join `look_menu_pvt` `j` on((`h`.`idlook_menu_pvt_lvl2` = `j`.`idlook_menu_pvt`))) left join `emp` `k` on((`a`.`updater` = `k`.`emp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) left join `emp` `m` on((`a`.`del_by` = `m`.`emp_id`))) left join `storages` `n` on((`m`.`idstorages` = `n`.`idstorages`))) left join `emp` `o` on((`a`.`archv_by` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) order by `a`.`last_updated` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_access` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_access` AS select `a`.`access_id` AS `access_id`,`a`.`emp_id` AS `emp_id`,`g`.`file_name` AS `emp_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `emp_name`,`d`.`user_name` AS `user_name`,`a`.`feature_id` AS `feature_id`,`c`.`feature_name` AS `feature_name`,`c`.`feature_desc` AS `feature_desc`,`c`.`disp_order` AS `disp_order`,`a`.`updated_by` AS `updated_by`,`f`.`file_name` AS `updated_by_fnm`,ifnull(concat(`e`.`firstname`,' ',`e`.`lastname`),'Admin') AS `updated_by_nm`,`a`.`last_updated` AS `last_updated`,ifnull(date_format(`a`.`last_updated`,'%m/%d/%y %h:%i %p'),'Back End') AS `last_updated_fmt` from ((((((`emp_access` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `g` on((`b`.`idstorages` = `g`.`idstorages`))) left join `feature` `c` on((`c`.`feature_id` = `a`.`feature_id`))) left join `all_users` `d` on((`a`.`emp_id` = `d`.`emp_id`))) left join `emp` `e` on((`a`.`updated_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) order by date_format(`a`.`last_updated`,_utf8'%Y-%m-%d %h:%i %p') desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_activity` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_activity`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_activity` AS select `a`.`idemp_activity` AS `idemp_activity`,`a`.`emp_id` AS `empd_id`,date_format(`a`.`call_recv_dt`,_utf8'%m.%d.%y') AS `call_recv_dt`,`a`.`emp_id` AS `emp_id`,(case when (`a`.`emp_id` <> 0) then concat_ws(_latin1' ',`b`.`firstname`,`b`.`lastname`) else 'Admin' end) AS `updater`,date_format(`a`.`next_call_dt`,_utf8'%m.%d.%y') AS `next_call_dt`,`a`.`call_note` AS `call_note`,date_format(`a`.`last_updated`,_utf8'%m.%d.%y %T') AS `last_updated` from (`emp_activity` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) order by date_format(`a`.`next_call_dt`,_utf8'%m.%d.%y') desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_address` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_address`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_address` AS select `a`.`emp_add_id` AS `emp_add_id`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,concat(trim(ifnull(`b`.`firstname`,'')),' ',trim(ifnull(nullif(`b`.`middlename`,''),'')),convert((case when ((`b`.`middlename` is not null) and (`b`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`b`.`lastname`,''))) AS `emp_nm`,`a`.`look_street_no_id` AS `look_street_no_id`,`d`.`look_street_id` AS `look_street_id`,ifnull(`d`.`look_street_no`,'No Street') AS `look_street_no`,ifnull(`e`.`street_name`,'No Street Name') AS `street_name`,ifnull(`e`.`street_type`,'No Street Type') AS `street_type`,ifnull(`f`.`lk_val`,'No Street Type') AS `street_type_name`,concat(ifnull(`e`.`street_name`,'No Street Name'),' ',ifnull(`f`.`lk_val`,'No Street Type')) AS `street_name_type`,ifnull(`e`.`postal_id`,'No Postal Id') AS `postal_id`,ifnull(`g`.`zip_code`,'No Zip Code') AS `zip_code`,`g`.`city_id` AS `city_id`,ifnull(`h`.`city_name`,'No City') AS `city_name`,`h`.`idlook_county_district` AS `idlook_county_district`,ifnull(`s`.`county_district_city_nm`,'No County / District') AS `county_district_city_nm`,ifnull(`s`.`state_id`,'No State') AS `state_id`,ifnull(`i`.`state_name`,'No State') AS `state_name`,ifnull(`i`.`state_full_name`,'No State Full Name') AS `state_full_name`,`i`.`country_id` AS `country_id`,ifnull(`j`.`con_name`,'No Country Name') AS `con_name`,ifnull(`j`.`con_full_name`,'No Country Full Name') AS `con_full_name`,ifnull(`j`.`lk_design`,' - ') AS `lk_design`,ifnull(`j`.`con_code`,' - ') AS `con_code`,ifnull(`j`.`con_digit`,' - ') AS `con_digit`,`a`.`house_apt_no` AS `house_apt_no`,`a`.`house_apt_type` AS `house_apt_type`,`k`.`lk_val` AS `house_apt_type_nm`,concat(ifnull(`d`.`look_street_no`,'No Street'),' ',ifnull(`e`.`street_name`,'No Street Name'),' ',ifnull(`f`.`lk_val`,'No Street Type'),' ',ifnull(`a`.`house_apt_no`,''),' ',if(isnull(`a`.`house_apt_type`),'',`k`.`lk_val`),', ',ifnull(`h`.`city_name`,'No City'),' ',ifnull(`s`.`county_district_city_nm`,'No County / District'),', ',ifnull(`i`.`state_name`,'No State'),' ',ifnull(`g`.`zip_code`,'No Zip Code'),' ','(',ifnull(`j`.`con_name`,'No Country'),')') AS `addresses`,`a`.`from_dt` AS `from_dt`,date_format(`a`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,date_format(`a`.`from_dt`,'%Y') AS `from_dt_yr`,date_format(`a`.`from_dt`,'%M') AS `from_dt_mon`,`a`.`to_dt` AS `to_dt`,date_format(`a`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,date_format(`a`.`to_dt`,'%Y') AS `to_dt_yr`,date_format(`a`.`to_dt`,'%M') AS `to_dt_mon`,`a`.`no_of_days` AS `no_of_days`,ifnull(`a`.`no_of_days`,timestampdiff(DAY,`a`.`from_dt`,now())) AS `no_of_days_vir`,`a`.`add_type` AS `add_type`,`l`.`lk_val` AS `add_type_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updater` AS `updater`,`n`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`m`.`firstname`,'')),' ',trim(ifnull(nullif(`m`.`middlename`,''),'')),convert((case when ((`m`.`middlename` is not null) and (`m`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`m`.`lastname`,'')))) AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`p`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(trim(ifnull(`o`.`firstname`,'')),' ',trim(ifnull(nullif(`o`.`middlename`,''),'')),convert((case when ((`o`.`middlename` is not null) and (`o`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`o`.`lastname`,''))) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`r`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(trim(ifnull(`q`.`firstname`,'')),' ',trim(ifnull(nullif(`q`.`middlename`,''),'')),convert((case when ((`q`.`middlename` is not null) and (`q`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`q`.`lastname`,''))) end) AS `archv_by_nm` from ((((((((((((((((((`emp_address` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_street_no` `d` on((`a`.`look_street_no_id` = `d`.`look_street_no_id`))) left join `look_street` `e` on((`d`.`look_street_id` = `e`.`look_street_id`))) left join `feature_lk_val` `f` on((`e`.`street_type` = `f`.`idfeature_lk_val`))) left join `look_postal` `g` on((`e`.`postal_id` = `g`.`postal_id`))) left join `look_city` `h` on((`g`.`city_id` = `h`.`city_id`))) left join `look_county_district` `s` on((`h`.`idlook_county_district` = `s`.`idlook_county_district`))) left join `look_state` `i` on((`s`.`state_id` = `i`.`state_id`))) left join `look_country` `j` on((`i`.`country_id` = `j`.`country_id`))) left join `feature_lk_val` `k` on((`a`.`house_apt_type` = `k`.`idfeature_lk_val`))) left join `emp_lk_val` `l` on((`a`.`add_type` = `l`.`idemp_lk_value`))) left join `emp` `m` on((`a`.`updater` = `m`.`emp_id`))) left join `storages` `n` on((`m`.`idstorages` = `n`.`idstorages`))) left join `emp` `o` on((`a`.`del_by` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `emp` `q` on((`a`.`archv_by` = `q`.`emp_id`))) left join `storages` `r` on((`q`.`idstorages` = `r`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_audit` AS select `a`.`idemp_audit` AS `idemp_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`emp_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_bench` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_bench`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_bench` AS select 'Employee' AS `value`,`a`.`emp_org_id` AS `emp_org_id`,`a`.`emp_fnm` AS `emp_fnm`,`a`.`emp_nm` AS `emp_nm`,`a`.`companyname` AS `companyname`,`a`.`comp_fnm` AS `comp_fnm`,`a`.`org_start_dt` AS `start_dt`,`a`.`org_start_dt_fmt` AS `start_dt_fmt`,NULL AS `bill_cycle`,`a`.`org_end_dt` AS `end_dt`,`a`.`org_end_dt_fmt` AS `end_dt_fmt`,`a`.`no_of_days` AS `no_of_days`,`a`.`no_of_days_fmt` AS `no_of_days_fmt` from `vw_emp_org` `a` union all select 'Consultant' AS `Consultant`,`a`.`idengage_entity` AS `idengage_entity`,`a`.`engage_ref_fnm` AS `engage_ref_fnm`,`a`.`engage_ref_nm` AS `engage_ref_nm`,NULL AS `NULL`,NULL AS `NULL`,`a`.`bill_start_dt` AS `bill_start_dt`,`a`.`bill_start_dt_fmt` AS `bill_start_dt_fmt`,`a`.`bill_cycle` AS `bill_cycle`,`a`.`bill_end_dt` AS `bill_end_dt`,`a`.`bill_end_dt_fmt` AS `bill_end_dt_fmt`,`a`.`bill_st_e_dt` AS `bill_st_e_dt`,`a`.`bill_st_e_dt_vir` AS `bill_st_e_dt_vir` from `vw_engage_entity` `a` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_contact` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_contact`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_contact` AS select `a`.`emp_contact_id` AS `emp_contact_id`,`a`.`emp_id` AS `emp_id`,`f`.`file_name` AS `emp_fnm`,if(isnull(`a`.`emp_id`),'Admin',concat(trim(ifnull(`d`.`firstname`,'')),' ',trim(ifnull(nullif(`d`.`middlename`,''),'')),convert((case when ((`d`.`middlename` is not null) and (`d`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`d`.`lastname`,'')))) AS `emp_nm`,`a`.`contact_id` AS `contact_id`,`b`.`country_id` AS `country_id`,`g`.`con_name` AS `con_name`,`g`.`con_code` AS `con_code`,concat(ifnull(`g`.`con_name`,'No Country '),convert(if(isnull(`g`.`con_code`),' ',concat(' (+',`g`.`con_code`,')')) using latin1)) AS `con_name_code`,`b`.`contact_type` AS `contact_type`,`a`.`emp_contact_type` AS `emp_contact_type`,ifnull(`a`.`emp_contact_type`,'No Contact Type') AS `emp_contact_type_nm`,`b`.`contact_detail` AS `contact_detail`,concat(`a`.`emp_contact_type`,' ',`b`.`contact_detail`) AS `emp_contact_type_detail`,`a`.`contact_vrifed` AS `contact_vrifed`,`a`.`summary` AS `summary`,`a`.`contact_cnt` AS `contact_cnt`,`a`.`updater` AS `updater`,`s`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`e`.`firstname`,'')),' ',trim(ifnull(nullif(`e`.`middlename`,''),'')),convert((case when ((`e`.`middlename` is not null) and (`e`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`e`.`lastname`,'')))) AS `updater_nm`,`a`.`last_updated` AS `last_updated`,concat(convert(date_format(`a`.`last_updated`,'%m-%d-%y %H:%i:%s %p') using latin1),' ') AS `last_updated_fmt` from ((((((`emp_contact` `a` left join `contact_no` `b` on((`a`.`contact_id` = `b`.`contact_id`))) left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `s` on((`e`.`idstorages` = `s`.`idstorages`))) left join `emp` `d` on((`a`.`emp_id` = `d`.`emp_id`))) left join `storages` `f` on((`d`.`idstorages` = `f`.`idstorages`))) left join `look_country` `g` on((`b`.`country_id` = `g`.`country_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_doc` AS select `a`.`idemp_doc` AS `idemp_doc`,`a`.`emp_id` AS `emp_id`,`m`.`file_name` AS `emp_fnm`,if(isnull(`a`.`emp_id`),'Admin',concat(trim(ifnull(`l`.`firstname`,'')),' ',trim(ifnull(nullif(`l`.`middlename`,''),'')),convert((case when ((`l`.`middlename` is not null) and (`l`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`l`.`lastname`,'')))) AS `emp_nm`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`file_ser_name` AS `file_ser_name`,`c`.`sto_cloud_link` AS `sto_cloud_link`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,`c`.`file_cnv_size` AS `file_cnv_size`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,if(isnull(`c`.`owner_id`),'Admin',concat(trim(ifnull(`d`.`firstname`,'')),' ',trim(ifnull(nullif(`d`.`middlename`,''),'')),convert((case when ((`d`.`middlename` is not null) and (`d`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`d`.`lastname`,'')))) AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,if(isnull(`c`.`expire_dt`),'Never',convert(date_format(`c`.`expire_dt`,'%m-%d-%y') using utf8mb4)) AS `expire_dt_fmt`,if(isnull(`c`.`expire_dt`),'Never',convert(date_format(`c`.`expire_dt`,'%M-%Y') using utf8mb4)) AS `expire_dt_fmt2`,(case when (`c`.`expire_dt` < now()) then convert(date_format(`c`.`expire_dt`,'%m-%d-%y') using utf8mb4) when (`c`.`expire_dt` > now()) then timestampdiff(DAY,now(),`c`.`expire_dt`) when isnull(`c`.`expire_dt`) then 'None' end) AS `expire_dt_no_days`,if((isnull(`c`.`expire_dt`) or (`c`.`expire_dt` > now())),'No','Yes') AS `expire_dt_cur_stat`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,if(isnull(`c`.`ref_emp_id`),'Admin',concat(trim(ifnull(`f`.`firstname`,'')),' ',trim(ifnull(nullif(`f`.`middlename`,''),'')),convert((case when ((`f`.`middlename` is not null) and (`f`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`f`.`lastname`,'')))) AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,if(isnull(`c`.`updater`),'Admin',concat(trim(ifnull(`h`.`firstname`,'')),' ',trim(ifnull(nullif(`h`.`middlename`,''),'')),convert((case when ((`h`.`middlename` is not null) and (`h`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`h`.`lastname`,'')))) AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`emp_doc_type` AS `emp_doc_type`,`j`.`lk_val` AS `emp_doc_type_nm` from (((((((((((`emp_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp_lk_val` `j` on((`j`.`idemp_lk_value` = `a`.`emp_doc_type`))) left join `emp` `l` on((`a`.`emp_id` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_education` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_education`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_education` AS select `a`.`idemp_education` AS `idemp_education`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,concat(trim(ifnull(`b`.`firstname`,'')),' ',trim(ifnull(nullif(`b`.`middlename`,''),'')),convert((case when ((`b`.`middlename` is not null) and (`b`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`b`.`lastname`,''))) AS `emp_nm`,`a`.`edu_name` AS `edu_name`,`d`.`lk_val` AS `edu_nm`,`a`.`edu_name_sub` AS `edu_name_sub`,if(isnull(`a`.`edu_name_sub`),'Not Entered',`m`.`lk_val`) AS `edu_name_sub_nm`,`a`.`edu_frm_dt` AS `edu_frm_dt`,date_format(`a`.`edu_frm_dt`,'%m-%d-%y') AS `edu_frm_dt_fmt`,date_format(`a`.`edu_frm_dt`,'%Y') AS `edu_frm_dt_yr`,date_format(`a`.`edu_frm_dt`,'%M') AS `edu_frm_dt_mon`,`a`.`edu_to_dt` AS `edu_to_dt`,if(isnull(`a`.`edu_to_dt`),'Studying',date_format(`a`.`edu_to_dt`,'%m-%d-%y')) AS `edu_to_dt_fmt`,date_format(`a`.`edu_to_dt`,'%Y') AS `edu_to_dt_yr`,date_format(`a`.`edu_to_dt`,'%M') AS `edu_to_dt_mon`,`a`.`edu_frm_to_dt` AS `edu_frm_to_dt`,ifnull(`a`.`edu_frm_to_dt`,timestampdiff(DAY,`a`.`edu_frm_dt`,now())) AS `edu_frm_to_dt_vir`,if(isnull(`a`.`edu_to_dt`),'Y','N') AS `edu_cur_stat`,`a`.`edu_subject` AS `edu_subject`,`e`.`lk_val` AS `edu_subject_nm`,`a`.`edu_level` AS `edu_level`,`f`.`lk_val` AS `edu_level_nm`,`a`.`edu_smry` AS `edu_smry`,concat(ifnull(`d`.`lk_val`,'NA'),' ',convert(ifnull(date_format(`a`.`edu_frm_dt`,'%m-%d-%y'),'NA') using latin1),' - ',convert(ifnull(date_format(`a`.`edu_to_dt`,'%m-%d-%y'),'Continue') using latin1),' - ',convert(if(isnull(`a`.`edu_frm_to_dt`),concat(floor(((to_days(curdate()) - to_days(`a`.`edu_frm_dt`)) / 365)),'Y ',floor((((to_days(curdate()) - to_days(`a`.`edu_frm_dt`)) % 365) / 30)),'M '),concat(floor((`a`.`edu_frm_to_dt` / 365)),'Y ',floor(((`a`.`edu_frm_to_dt` % 365) / 30)),'M ')) using latin1),ifnull(`e`.`lk_val`,'NA'),' ',ifnull(`f`.`lk_val`,'NA')) AS `edu_smry_vir`,`a`.`updater` AS `updater`,`h`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`g`.`firstname`,'')),' ',trim(ifnull(nullif(`g`.`middlename`,''),'')),convert((case when ((`g`.`middlename` is not null) and (`g`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`g`.`lastname`,'')))) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`j`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(trim(ifnull(`i`.`firstname`,'')),' ',trim(ifnull(nullif(`i`.`middlename`,''),'')),convert((case when ((`i`.`middlename` is not null) and (`i`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`i`.`lastname`,'')))) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`l`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(trim(ifnull(`k`.`firstname`,'')),' ',trim(ifnull(nullif(`k`.`middlename`,''),'')),convert((case when ((`k`.`middlename` is not null) and (`k`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`k`.`lastname`,'')))) AS `archv_by_nm` from ((((((((((((`emp_education` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp_lk_val` `d` on((`a`.`edu_name` = `d`.`idemp_lk_value`))) left join `emp_lk_val` `e` on((`a`.`edu_subject` = `e`.`idemp_lk_value`))) left join `emp_lk_val` `f` on((`a`.`edu_level` = `f`.`idemp_lk_value`))) left join `emp` `g` on((`a`.`updater` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`a`.`del_by` = `i`.`emp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) left join `emp` `k` on((`a`.`archv_by` = `k`.`emp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) left join `emp_lk_val` `m` on((`a`.`edu_name_sub` = `m`.`idemp_lk_value`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_lk_val` AS select `a`.`idemp_lk_value` AS `idemp_lk_value`,NULL AS `idemp_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `lk_val`,NULL AS `child_lvl`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idemp_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_fmt`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from (((`emp_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) left join `emp_lk` `c` on((`a`.`idemp_lk` = `c`.`idemp_lk`))) union all select NULL AS `NULL`,`a`.`idemp_lk` AS `idemp_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_fmt`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`emp_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org` AS select `a`.`emp_org_id` AS `emp_org_id`,`a`.`emp_id` AS `emp_id`,`g`.`file_name` AS `emp_fnm`,concat(trim(ifnull(`f`.`firstname`,'')),' ',trim(ifnull(nullif(`f`.`middlename`,''),'')),convert((case when ((`f`.`middlename` is not null) and (`f`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`f`.`lastname`,''))) AS `emp_nm`,`a`.`comp_id` AS `comp_id`,`b`.`companyname` AS `companyname`,`d`.`file_name` AS `comp_fnm`,`a`.`org_start_dt` AS `org_start_dt`,date_format(`a`.`org_start_dt`,'%Y') AS `org_start_dt_yr`,date_format(`a`.`org_start_dt`,'%M') AS `org_start_dt_mon`,if(isnull(`a`.`org_start_dt`),'No Started',concat(convert(date_format(`a`.`org_start_dt`,'%m-%d-%y') using latin1),' ')) AS `org_start_dt_fmt`,`a`.`org_end_dt` AS `org_end_dt`,date_format(`a`.`org_end_dt`,'%Y') AS `org_end_dt_yr`,date_format(`a`.`org_end_dt`,'%M') AS `org_end_dt_mon`,if(isnull(`a`.`org_end_dt`),'Active',concat(convert(date_format(`a`.`org_end_dt`,'%m-%d-%y') using latin1),' ')) AS `org_end_dt_fmt`,if(isnull(`a`.`org_end_dt`),'Y','N') AS `org_start_end_dt_cur_stat`,`a`.`no_of_days` AS `no_of_days`,timestampdiff(DAY,`a`.`org_start_dt`,ifnull(`a`.`org_end_dt`,now())) AS `no_of_days_fmt`,`a`.`emp_type` AS `emp_type`,if(isnull(`a`.`emp_type`),'No Type',`c`.`lk_val`) AS `emp_type_nm`,ifnull(`a`.`org_forecast`,'0.00') AS `org_forecast`,ifnull(`a`.`org_actual`,'0.00') AS `org_actual`,concat((case when isnull(`a`.`org_actual`) then '0.00' when (`a`.`org_actual` > 999) then convert(concat((trim(round((`a`.`org_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_actual` < 1000) then `a`.`org_actual` end),' of ',(case when isnull(`a`.`org_forecast`) then '0.00' when (`a`.`org_forecast` > 999) then convert(concat((trim(round((`a`.`org_forecast` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_forecast` < 1000) then `a`.`org_forecast` end)) AS `org_actual_forecast`,ifnull(`a`.`org_pcnt`,'0.00') AS `org_pcnt`,ifnull(`a`.`org_amt_forcast`,'0.00') AS `org_amt_forcast`,ifnull(`a`.`org_amt_actual`,'0.00') AS `org_amt_actual`,concat((case when isnull(`a`.`org_amt_actual`) then '0.00' when (`a`.`org_amt_actual` > 999) then convert(concat((trim(round((`a`.`org_amt_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_amt_actual` < 1000) then `a`.`org_amt_actual` end),' of ',(case when isnull(`a`.`org_amt_forcast`) then '0.00' when (`a`.`org_amt_forcast` > 999) then convert(concat((trim(round((`a`.`org_amt_forcast` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_amt_forcast` < 1000) then `a`.`org_amt_forcast` end)) AS `org_amt_actual_forcast`,ifnull(`a`.`org_amt_pcnt`,'0.00') AS `org_amt_pcnt`,ifnull(`a`.`org_vac_use`,'0.00') AS `org_vac_used`,ifnull(`a`.`org_vac_earn`,'0.00') AS `org_vac_earned`,concat((case when isnull(`a`.`org_vac_use`) then '0.00' when (`a`.`org_vac_use` > 999) then convert(concat((trim(round((`a`.`org_vac_use` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_vac_use` < 1000) then `a`.`org_vac_use` end),' of ',(case when isnull(`a`.`org_vac_earn`) then '0.00' when (`a`.`org_vac_earn` > 999) then convert(concat((trim(round((`a`.`org_vac_earn` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_vac_earn` < 1000) then `a`.`org_vac_earn` end)) AS `org_vac_used_earned`,ifnull(`a`.`org_vac_pcnt`,'0.00') AS `org_vac_pcnt`,ifnull(`a`.`org_vac_bal`,'0.00') AS `org_vac_bal`,`a`.`updater` AS `updater`,`s`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(trim(ifnull(`e`.`firstname`,'')),' ',trim(ifnull(nullif(`e`.`middlename`,''),'')),convert((case when ((`e`.`middlename` is not null) and (`e`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`e`.`lastname`,'')))) AS `updater_nm`,`a`.`old_org_hrs_dt` AS `old_org_hrs_dt`,`a`.`last_updated` AS `last_updated`,concat(convert(date_format(`a`.`last_updated`,'%m-%d-%y %H:%i %p') using latin1),' ') AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`i`.`firstname`,' ',`i`.`lastname`)) AS `archv_by_nm` from (((((((((((`emp_org` `a` left join `company` `b` on((`a`.`comp_id` = `b`.`comp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) left join `emp_lk_val` `c` on((`a`.`emp_type` = `c`.`idemp_lk_value`))) left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `s` on((`e`.`idstorages` = `s`.`idstorages`))) left join `emp` `f` on((`f`.`emp_id` = `a`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`k`.`idstorages` = `j`.`idstorages`))) left join `emp` `i` on((`a`.`archv_by` = `i`.`emp_id`))) left join `storages` `h` on((`h`.`idstorages` = `e`.`idstorages`))) order by `a`.`emp_id` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org_access` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org_access` AS select `a`.`idemp_org_access` AS `idemp_org_access`,`a`.`emp_access_to` AS `emp_access_to`,`c`.`file_name` AS `emp_access_to_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `emp_access_to_nm`,`a`.`emp_access_of` AS `emp_access_of`,`e`.`file_name` AS `emp_access_of_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `emp_access_of_nm`,`a`.`acc_from_dt` AS `acc_from_dt`,date_format(`a`.`acc_from_dt`,'%m-%d-%y') AS `acc_from_dt_fmt`,date_format(`a`.`acc_from_dt`,'%Y') AS `acc_from_dt_yr`,date_format(`a`.`acc_from_dt`,'%M') AS `acc_from_dt_mon`,`a`.`acc_to_dt` AS `acc_to_dt`,date_format(`a`.`acc_to_dt`,'%m-%d-%y') AS `acc_to_dt_fmt`,date_format(`a`.`acc_to_dt`,'%Y') AS `acc_to_dt_yr`,date_format(`a`.`acc_to_dt`,'%M') AS `acc_to_dt_mon`,`a`.`acc_type` AS `acc_type`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((`emp_org_access` `a` left join `emp` `b` on((`a`.`emp_access_to` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`a`.`emp_access_of` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`updater` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org_hrs` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org_hrs` AS select `a`.`idemp_org_hrs` AS `idemp_org_hrs`,`a`.`emp_org_id` AS `emp_org_id`,`b`.`emp_id` AS `emp_id`,`d`.`file_name` AS `emp_fnm`,concat(`c`.`firstname`,' ',`c`.`lastname`) AS `emp_nm`,`b`.`comp_id` AS `comp_id`,`f`.`file_name` AS `comp_fnm`,`e`.`companyname` AS `comp_nm`,`b`.`org_start_dt` AS `org_start_dt`,if(isnull(`b`.`org_start_dt`),'Not Started',date_format(`b`.`org_start_dt`,'%m-%d-%y')) AS `org_start_dt_fmt`,date_format(`b`.`org_start_dt`,'%Y') AS `org_start_dt_yr`,date_format(`b`.`org_start_dt`,'%M') AS `org_start_dt_mon`,`b`.`org_end_dt` AS `org_end_dt`,if(isnull(`b`.`org_end_dt`),'Full Time',date_format(`b`.`org_end_dt`,'%m-%d-%y')) AS `org_end_dt_fmt`,date_format(`b`.`org_end_dt`,'%Y') AS `org_end_dt_yr`,date_format(`b`.`org_end_dt`,'%M') AS `org_end_dt_mon`,if(isnull(`b`.`org_end_dt`),'Y','N') AS `org_start_end_dt_cur_stat`,`b`.`emp_type` AS `emp_type`,if(isnull(`b`.`emp_type`),'No Type',`g`.`lk_val`) AS `emp_type_nm`,`a`.`from_dt` AS `from_dt`,date_format(`a`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,date_format(`a`.`from_dt`,'%Y') AS `from_yr`,date_format(`a`.`from_dt`,'%M') AS `from_mon`,`a`.`to_dt` AS `to_dt`,date_format(`a`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,date_format(`a`.`to_dt`,'%Y') AS `to_yr`,date_format(`a`.`to_dt`,'%M') AS `to_mon`,if(isnull(`a`.`to_dt`),concat(date_format(`a`.`from_dt`,'%m-%d-%y'),' - ','Active'),concat(date_format(`a`.`from_dt`,'%m-%d-%y'),' - ',date_format(`a`.`to_dt`,'%m-%d-%y'))) AS `duration`,concat(ifnull(`f`.`file_name`,''),' ',ifnull(`e`.`companyname`,'No Company'),' - ',ifnull(`n`.`lk_val`,'No Title'),' - ','( ',convert(ifnull(if(isnull(`a`.`to_dt`),concat(date_format(`a`.`from_dt`,'%m-%d-%y'),' - ','Active'),concat(date_format(`a`.`from_dt`,'%m-%d-%y'),' - ',date_format(`a`.`to_dt`,'%m-%d-%y'))),'No Duration ') using latin1),' ) ') AS `comp_fnm_nm_title_duration`,if(isnull(`a`.`to_dt`),'Y','N') AS `from_to_dt_cur_stat`,`a`.`frm_to_org_hrs_days` AS `frm_to_org_hrs_days`,ifnull(`a`.`frm_to_org_hrs_days`,(to_days(`a`.`tentative_en_dt`) - to_days(`a`.`from_dt`))) AS `frm_to_org_hrs_days_fmt`,`a`.`tentative_en_dt` AS `tentative_en_dt`,if(isnull(`a`.`tentative_en_dt`),'Ended',date_format(`a`.`tentative_en_dt`,'%m-%d-%y')) AS `tentative_en_dt_fmt`,if(isnull(`a`.`tentative_en_dt`),'Ended',timestampdiff(DAY,`a`.`tentative_en_dt`,now())) AS `tentative_en_dt_fmt_no`,if(isnull(`a`.`tentative_en_dt`),'Ended',date_format(`a`.`tentative_en_dt`,'%b-%Y')) AS `tentative_en_dt_fmt2`,ifnull(`a`.`org_hrs_forecast`,'0.00') AS `org_hrs_forecast`,ifnull(`a`.`org_hrs_actual`,'0.00') AS `org_hrs_actual`,concat((case when isnull(`a`.`org_hrs_actual`) then '0.00' when (`a`.`org_hrs_actual` > 999) then convert(concat((trim(round((`a`.`org_hrs_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_actual` < 1000) then `a`.`org_hrs_actual` end),' of ',(case when isnull(`a`.`org_hrs_forecast`) then '0.00' when (`a`.`org_hrs_forecast` > 999) then convert(concat((trim(round((`a`.`org_hrs_forecast` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_forecast` < 1000) then `a`.`org_hrs_forecast` end)) AS `org_hrs_actual_forecast`,ifnull(`a`.`org_hrs_pcnt`,'0.00') AS `org_hrs_pcnt`,ifnull(`a`.`org_hrs_amt_forcast`,'0.00') AS `org_hrs_amt_forcast`,ifnull(`a`.`org_hrs_amt_actual`,'0.00') AS `org_hrs_amt_actual`,concat((case when isnull(`a`.`org_hrs_amt_actual`) then '0.00' when (`a`.`org_hrs_amt_actual` > 999) then convert(concat((trim(round((`a`.`org_hrs_amt_actual` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_amt_actual` < 1000) then `a`.`org_hrs_amt_actual` end),' of ',(case when isnull(`a`.`org_hrs_amt_forcast`) then '0.00' when (`a`.`org_hrs_amt_forcast` > 999) then convert(concat((trim(round((`a`.`org_hrs_amt_forcast` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_amt_forcast` < 1000) then `a`.`org_hrs_amt_forcast` end)) AS `org_hrs_amt_actual_forcast`,ifnull(`a`.`org_hrs_amt_pcnt`,'0.00') AS `org_hrs_amt_pcnt`,`a`.`emp_hrs_title` AS `emp_hrs_title`,if(isnull(`a`.`emp_hrs_title`),'No Title',`n`.`lk_val`) AS `emp_hrs_title_nm`,ifnull(`a`.`org_hrs_vac_earn`,'0.00') AS `org_hrs_vac_earn`,ifnull(`a`.`org_hrs_vac_use`,'0.00') AS `org_hrs_vac_use`,concat((case when isnull(`a`.`org_hrs_vac_use`) then '0.00' when (`a`.`org_hrs_vac_use` > 999) then convert(concat((trim(round((`a`.`org_hrs_vac_use` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_vac_use` < 1000) then `a`.`org_hrs_vac_use` end),' of ',(case when isnull(`a`.`org_hrs_vac_earn`) then '0.00' when (`a`.`org_hrs_vac_earn` > 999) then convert(concat((trim(round((`a`.`org_hrs_vac_earn` / 1000),2)) + 0),'K') using latin1) when (`a`.`org_hrs_vac_earn` < 1000) then `a`.`org_hrs_vac_earn` end)) AS `org_hrs_vac_use_earn`,ifnull(`a`.`org_hrs_vac_bal`,'0.00') AS `org_hrs_vac_bal`,ifnull(`a`.`org_hrs_vac_pcnt`,'0.00') AS `org_hrs_vac_pcnt`,`a`.`idstorages` AS `idstorages`,`a`.`hrs_cy_run` AS `hrs_cy_run`,(case when (`a`.`hrs_cy_run` = 'N') then 'New' when (`a`.`hrs_cy_run` = 'P') then 'Altered' when (`a`.`hrs_cy_run` = 'Y') then 'Present' end) AS `hrs_cy_run_nm`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`m`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`l`.`firstname`,' ',`l`.`lastname`)) AS `archv_by_nm`,`a`.`old_hrs_dt` AS `old_hrs_dt`,`a`.`cy_st_date` AS `cy_st_date` from (((((((((((((`emp_org_hrs` `a` left join `emp_org` `b` on((`a`.`emp_org_id` = `b`.`emp_org_id`))) left join `emp` `c` on((`b`.`emp_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `company` `e` on((`b`.`comp_id` = `e`.`comp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp_lk_val` `g` on((`b`.`emp_type` = `g`.`idemp_lk_value`))) left join `emp` `h` on((`a`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`archv_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `emp_lk_val` `n` on((`a`.`emp_hrs_title` = `n`.`idemp_lk_value`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org_hrs_days` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs_days`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org_hrs_days` AS select `a`.`idemp_org_hrs_days` AS `idemp_org_hrs_days`,`b`.`emp_org_id` AS `emp_org_id`,`c`.`emp_id` AS `emp_id`,`e`.`file_name` AS `emp_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `emp_nm`,`c`.`comp_id` AS `comp_id`,`g`.`file_name` AS `comp_fnm`,`f`.`companyname` AS `comp_nm`,`c`.`org_start_dt` AS `org_start_dt`,if(isnull(`c`.`org_start_dt`),'Not Started',date_format(`c`.`org_start_dt`,'%m-%d-%y')) AS `org_start_dt_fmt`,date_format(`c`.`org_start_dt`,'%Y') AS `org_start_dt_yr`,date_format(`c`.`org_start_dt`,'%M') AS `org_start_dt_mon`,`c`.`org_end_dt` AS `org_end_dt`,if(isnull(`c`.`org_end_dt`),'Full Time',date_format(`c`.`org_end_dt`,'%m-%d-%y')) AS `org_end_dt_fmt`,date_format(`c`.`org_end_dt`,'%Y') AS `org_end_dt_yr`,date_format(`c`.`org_end_dt`,'%M') AS `org_end_dt_mon`,`c`.`no_of_days` AS `no_of_days`,ifnull(`c`.`no_of_days`,(to_days(`c`.`tentative_en_dt`) - to_days(`c`.`org_start_dt`))) AS `no_of_days_vir`,`c`.`emp_type` AS `emp_type`,`h`.`lk_val` AS `emp_type_nm`,`c`.`run_script` AS `run_script`,`a`.`idemp_org_hrs` AS `idemp_org_hrs`,`b`.`from_dt` AS `from_dt`,date_format(`b`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,date_format(`b`.`from_dt`,'%Y') AS `from_yr`,date_format(`b`.`from_dt`,'%M') AS `from_mon`,`b`.`to_dt` AS `to_dt`,date_format(`b`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,date_format(`b`.`to_dt`,'%Y') AS `to_yr`,date_format(`b`.`to_dt`,'%M') AS `to_mon`,`b`.`frm_to_org_hrs_days` AS `frm_to_org_hrs_days`,ifnull(`b`.`frm_to_org_hrs_days`,(to_days(`b`.`tentative_en_dt`) - to_days(`b`.`from_dt`))) AS `frm_to_org_hrs_days_fmt`,`b`.`tentative_en_dt` AS `tentative_en_dt`,date_format(`b`.`tentative_en_dt`,'%m-%d-%y') AS `tentative_en_dt_fmt`,`b`.`org_hrs_forecast` AS `org_hrs_forecast`,`b`.`org_hrs_actual` AS `org_hrs_actual`,`b`.`org_hrs_pcnt` AS `org_hrs_pcnt`,`b`.`emp_hrs_title` AS `emp_hrs_title`,`r`.`lk_val` AS `emp_hrs_title_nm`,`a`.`tm_zn` AS `tm_zn`,`a`.`start_tm` AS `start_tm`,time_format(`a`.`start_tm`,'%h:%i %p') AS `start_tm_fmt`,`a`.`end_tm` AS `end_tm`,time_format(`a`.`end_tm`,'%h:%i %p') AS `end_tm_fmt`,`a`.`hrs_tm` AS `hrs_tm`,`a`.`hrs_tm_nm` AS `hrs_tm_nm`,`a`.`off_time` AS `off_time`,`a`.`off_time_nm` AS `off_time_nm`,`a`.`days` AS `days`,(case when (`a`.`days` = 1) then 'Sunday' when (`a`.`days` = 2) then 'Monday' when (`a`.`days` = 3) then 'Tuesday' when (`a`.`days` = 4) then 'Wednesday' when (`a`.`days` = 5) then 'Thursday' when (`a`.`days` = 6) then 'Friday' when (`a`.`days` = 7) then 'Saturday' when (`a`.`days` = 8) then 'Mon To Fri' when (`a`.`days` = 9) then 'Mon To Sat' when (`a`.`days` = 10) then 'All Days' end) AS `days_nm`,`a`.`pay_amt` AS `pay_amt`,`a`.`look_street_no_id` AS `look_street_no_id`,`n`.`country_id` AS `country_id`,`n`.`con_name` AS `con_name`,`m`.`state_id` AS `state_id`,`m`.`state_name` AS `state_name`,`t`.`idlook_county_district` AS `idlook_county_district`,`t`.`county_district_city_nm` AS `county_district_city_nm`,`l`.`city_id` AS `city_id`,`l`.`city_name` AS `city_name`,`j`.`postal_id` AS `postal_id`,`k`.`zip_code` AS `zip_code`,`i`.`look_street_id` AS `look_street_id`,`i`.`look_street_no` AS `look_street_no`,`j`.`street_name` AS `street_name`,`j`.`street_type` AS `street_type`,`o`.`lk_val` AS `street_type_nm`,`a`.`house_apt_type` AS `house_apt_type`,`s`.`lk_val` AS `house_apt_type_nm`,`a`.`house_apt_no` AS `house_apt_no`,if(isnull(`a`.`look_street_no_id`),'No Address',concat(`i`.`look_street_no`,' ',ifnull(`j`.`street_name`,'No Streeet'),' ',ifnull(`o`.`lk_val`,'No Street Type'),', ',if(isnull(`a`.`house_apt_type`),'',`s`.`lk_val`),' ',ifnull(`a`.`house_apt_no`,''),', ',ifnull(`l`.`city_name`,'No City'),', ',ifnull(`t`.`county_district_city_nm`,'No County / District'),', ',ifnull(`m`.`state_name`,'No State'),' ',`k`.`zip_code`,' ','(',ifnull(`n`.`con_name`,'No Country'),')')) AS `addresses`,`a`.`updater` AS `updater`,`q`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`p`.`firstname`,' ',`p`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`cy_days_st_dt` AS `cy_days_st_dt`,`a`.`hrs_day_cy_run` AS `hrs_day_cy_run` from (((((((((((((((((((`emp_org_hrs_days` `a` left join `emp_org_hrs` `b` on((`a`.`idemp_org_hrs` = `b`.`idemp_org_hrs`))) left join `emp_org` `c` on((`b`.`emp_org_id` = `c`.`emp_org_id`))) left join `emp` `d` on((`c`.`emp_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`c`.`comp_id` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp_lk_val` `h` on((`c`.`emp_type` = `h`.`idemp_lk_value`))) left join `look_street_no` `i` on((`a`.`look_street_no_id` = `i`.`look_street_no_id`))) left join `look_street` `j` on((`i`.`look_street_id` = `j`.`look_street_id`))) left join `look_postal` `k` on((`j`.`postal_id` = `k`.`postal_id`))) left join `look_city` `l` on((`k`.`city_id` = `l`.`city_id`))) left join `look_county_district` `t` on((`l`.`idlook_county_district` = `t`.`idlook_county_district`))) left join `look_state` `m` on((`t`.`state_id` = `m`.`state_id`))) left join `look_country` `n` on((`m`.`country_id` = `n`.`country_id`))) left join `feature_lk_val` `o` on((`j`.`street_type` = `o`.`idfeature_lk_val`))) left join `emp` `p` on((`a`.`updater` = `p`.`emp_id`))) left join `storages` `q` on((`p`.`idstorages` = `q`.`idstorages`))) left join `emp_lk_val` `r` on((`b`.`emp_hrs_title` = `r`.`idemp_lk_value`))) left join `feature_lk_val` `s` on((`a`.`house_apt_type` = `s`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org_hrs_days_cy` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org_hrs_days_cy`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org_hrs_days_cy` AS select `a`.`idemp_org_hrs_days_cy` AS `idemp_org_hrs_days_cy`,`c`.`emp_org_id` AS `emp_org_id`,`d`.`emp_id` AS `emp_id`,`f`.`file_name` AS `emp_fnm`,concat(`e`.`firstname`,' ',`e`.`lastname`) AS `emp_nm`,`d`.`comp_id` AS `comp_id`,`h`.`file_name` AS `comp_fnm`,`g`.`companyname` AS `comp_nm`,`d`.`org_start_dt` AS `org_start_dt`,if(isnull(`d`.`org_start_dt`),'Not Started',convert(date_format(`d`.`org_start_dt`,'%m-%d-%y') using utf8mb4)) AS `org_start_dt_fmt`,`d`.`org_end_dt` AS `org_end_dt`,if(isnull(`d`.`org_end_dt`),'Full Time',convert(date_format(`d`.`org_end_dt`,'%m-%d-%y') using utf8mb4)) AS `org_end_dt_fmt`,`d`.`no_of_days` AS `no_of_days`,ifnull(`d`.`no_of_days`,(to_days(`d`.`tentative_en_dt`) - to_days(`d`.`org_start_dt`))) AS `no_of_days_fmt`,`d`.`emp_type` AS `emp_type`,if(isnull(`d`.`emp_type`),'No Type',`i`.`lk_val`) AS `emp_type_nm`,`b`.`idemp_org_hrs` AS `idemp_org_hrs`,`c`.`from_dt` AS `from_dt`,date_format(`c`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,`c`.`to_dt` AS `to_dt`,date_format(`c`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,`c`.`frm_to_org_hrs_days` AS `frm_to_org_hrs_days`,ifnull(`c`.`frm_to_org_hrs_days`,(to_days(`c`.`tentative_en_dt`) - to_days(`c`.`from_dt`))) AS `frm_to_org_hrs_days_fmt`,`c`.`tentative_en_dt` AS `tentative_en_dt`,if(isnull(`c`.`tentative_en_dt`),'Ended',convert(date_format(`c`.`tentative_en_dt`,'%m-%d-%y') using utf8mb4)) AS `tentative_en_dt_fmt`,`c`.`org_hrs_forecast` AS `org_hrs_forecast`,`c`.`org_hrs_actual` AS `org_hrs_actual`,`c`.`org_hrs_pcnt` AS `org_hrs_pcnt`,`c`.`emp_hrs_title` AS `emp_hrs_title`,if(isnull(`c`.`emp_hrs_title`),'No Title',`q`.`lk_val`) AS `emp_hrs_title_nm`,`a`.`idemp_org_hrs_days` AS `idemp_org_hrs_days`,`b`.`start_tm` AS `start_tm`,time_format(`b`.`start_tm`,'%h:%i %p') AS `start_tm_fmt`,`b`.`end_tm` AS `end_tm`,time_format(`b`.`end_tm`,'%h:%i %p') AS `end_tm_fmt`,`b`.`hrs_tm` AS `hrs_tm`,`b`.`off_time` AS `off_time`,`b`.`off_time_nm` AS `off_time_nm`,`b`.`days` AS `days`,`b`.`pay_amt` AS `pay_amt`,`b`.`look_street_no_id` AS `look_street_no_id`,`p`.`country_id` AS `country_id`,`p`.`con_name` AS `con_name`,`o`.`state_id` AS `state_id`,`o`.`state_name` AS `state_name`,`y`.`idlook_county_district` AS `idlook_county_district`,`y`.`county_district_city_nm` AS `county_district_city_nm`,`n`.`city_id` AS `city_id`,`n`.`city_name` AS `city_name`,`m`.`postal_id` AS `postal_id`,`m`.`zip_code` AS `zip_code`,`k`.`look_street_id` AS `look_street_id`,`j`.`look_street_no` AS `look_street_no`,`k`.`street_name` AS `street_name`,`k`.`street_type` AS `street_type`,`l`.`lk_val` AS `street_type_nm`,`b`.`house_apt_type` AS `house_apt_type`,`v`.`lk_val` AS `house_apt_type_nm`,`b`.`house_apt_no` AS `house_apt_no`,if(isnull(`b`.`look_street_no_id`),'No Address',concat(`j`.`look_street_no`,' ',`k`.`street_name`,' ',`l`.`lk_val`,', ',if(isnull(`b`.`house_apt_type`),'',`v`.`lk_val`),' ',ifnull(`b`.`house_apt_no`,''),', ',ifnull(`n`.`city_name`,'No City'),', ',ifnull(`y`.`county_district_city_nm`,'No County'),', ',ifnull(`o`.`state_name`,'No State'),' ',ifnull(`m`.`zip_code`,'No Zip Code'),' ','(',ifnull(`p`.`con_name`,'No Country'),')')) AS `addresses`,`a`.`day_start_tm` AS `day_start_tm`,date_format(`a`.`day_start_tm`,'%m-%d-%y %h:%i %p') AS `day_start_tm_fmt`,date_format(`a`.`day_start_tm`,'%m-%d-%y') AS `day_start_tm_dt`,date_format(`a`.`day_start_tm`,'%h:%i %p') AS `day_start_tm_dt_tm`,dayname(`a`.`day_start_tm`) AS `day_start_tm_day`,(case when isnull(`a`.`day_start_tm`) then 'Unused' when (date_format(`a`.`day_start_tm`,'%y-%m-%d') < date_format(now(),'%y-%m-%d')) then 'Past' when (date_format(`a`.`day_start_tm`,'%y-%m-%d') > date_format(now(),'%y-%m-%d')) then 'Future' else 'Today' end) AS `day_start_tm_vir`,date_format(`a`.`day_start_tm`,'%Y') AS `day_start_tm_yr`,date_format(`a`.`day_start_tm`,'%M') AS `day_start_tm_mon`,`a`.`day_end_tm` AS `day_end_tm`,date_format(`a`.`day_end_tm`,'%m-%d-%y %h:%i %p') AS `day_end_tm_fmt`,date_format(`a`.`day_end_tm`,'%h:%i %p') AS `day_end_tm_fmt_tm`,dayname(`a`.`day_end_tm`) AS `day_end_tm_day`,date_format(`a`.`day_end_tm`,'%Y') AS `day_end_tm_yr`,date_format(`a`.`day_end_tm`,'%M') AS `day_end_tm_mon`,`a`.`day_hrs_forcast_tm` AS `day_hrs_forcast_tm`,`a`.`day_hrs_forcast_tm_nm` AS `day_hrs_forcast_tm_nm`,ifnull(`a`.`day_off_forcast`,'0:00') AS `day_off_forcast`,ifnull(`a`.`day_off_forcast_nm`,'0.00') AS `day_off_forcast_nm`,round(`a`.`day_pay_forcast_amt`,2) AS `day_pay_forcast_amt`,`a`.`day_hrs_actual_tm` AS `day_hrs_actual_tm`,`a`.`day_hrs_actual_tm_nm` AS `day_hrs_actual_tm_nm`,`a`.`day_off_actual` AS `day_off_actual`,`a`.`day_off_actual_nm` AS `day_off_actual_nm`,`a`.`day_pay_actual_amt` AS `day_pay_actual_amt`,concat(convert(if(isnull(`a`.`day_start_tm`),'Not Start Date',convert(date_format(`a`.`day_start_tm`,'%m-%d-%y') using utf8mb4)) using utf8),' ',convert(if(isnull(`a`.`day_start_tm`),'Not Start Day',convert(dayname(`a`.`day_start_tm`) using utf8mb4)) using utf8),' ',convert(if(isnull(`a`.`day_start_tm`),'Not Start Time',convert(date_format(`a`.`day_start_tm`,'%h:%i %p') using utf8mb4)) using utf8),' To ',convert(if(isnull(`a`.`day_end_tm`),'No End Time',convert(date_format(`a`.`day_end_tm`,'%h:%i %p') using utf8mb4)) using utf8),' ',convert(ifnull(`b`.`tm_zn`,'No Time Zone') using utf8),' ',' - Break - ',ifnull(cast(`b`.`off_time_nm` as char charset utf8),' None'),' : Hours : ',ifnull(cast(`a`.`day_hrs_forcast_tm_nm` as char charset utf8),' No Forecast Hours')) AS `days_schedule`,concat('Break : ',ifnull(`a`.`day_off_actual_nm`,'None'),' ','Worked :',ifnull(`a`.`day_hrs_actual_tm_nm`,'No Hours')) AS `days_actual`,if(isnull(`a`.`day_start_tm`),'Not Started',convert(date_format(`a`.`day_start_tm`,'%Y - %b') using utf8mb4)) AS `day_start_yr_mon`,`b`.`updater` AS `hrs_days_updater`,`x`.`file_name` AS `hrs_days_updater_fnm`,if(isnull(`b`.`updater`),'Admin',concat(`w`.`firstname`,' ',`w`.`lastname`)) AS `hrs_days_updater_nm`,`b`.`updated` AS `hrs_days_updated`,date_format(`b`.`updated`,'%m-%d-%y %h:%i %p') AS `hrs_days_updated_fmt`,`c`.`del_dt` AS `hrs_del_dt`,date_format(`c`.`del_dt`,'%m-%d-%y %h:%i %p') AS `hrs_del_dt_fmt`,`c`.`del_by` AS `hrs_del_by`,`s`.`file_name` AS `hrs_del_by_fnm`,if(isnull(`c`.`del_by`),'Admin',concat(`r`.`firstname`,' ',`r`.`lastname`)) AS `hrs_del_by_nm`,`c`.`del_day` AS `hrs_del_day`,(to_days((date_format(`c`.`del_dt`,'%y-%m-%d') + interval `c`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `hrs_del_day_vir`,`c`.`archv_dt` AS `hrs_archv_dt`,date_format(`c`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `hrs_archv_dt_fmt`,`c`.`archv_by` AS `hrs_archv_by`,`u`.`file_name` AS `hrs_archv_by_fnm`,if(isnull(`c`.`archv_by`),'Admin',concat(`t`.`firstname`,' ',`t`.`lastname`)) AS `hrs_archv_by_nm`,`b`.`hrs_day_cy_run` AS `hrs_day_cy_run` from ((((((((((((((((((((((((`emp_org_hrs_days_cy` `a` left join `emp_org_hrs_days` `b` on((`a`.`idemp_org_hrs_days` = `b`.`idemp_org_hrs_days`))) left join `emp_org_hrs` `c` on((`b`.`idemp_org_hrs` = `c`.`idemp_org_hrs`))) left join `emp_org` `d` on((`c`.`emp_org_id` = `d`.`emp_org_id`))) left join `emp` `e` on((`d`.`emp_id` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `company` `g` on((`d`.`comp_id` = `g`.`comp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) left join `emp_lk_val` `i` on((`d`.`emp_type` = `i`.`idemp_lk_value`))) left join `look_street_no` `j` on((`b`.`look_street_no_id` = `j`.`look_street_no_id`))) left join `look_street` `k` on((`j`.`look_street_id` = `k`.`look_street_id`))) left join `feature_lk_val` `l` on((`k`.`street_type` = `l`.`idfeature_lk_val`))) left join `look_postal` `m` on((`k`.`postal_id` = `m`.`postal_id`))) left join `look_city` `n` on((`m`.`city_id` = `n`.`city_id`))) left join `look_county_district` `y` on((`n`.`idlook_county_district` = `y`.`idlook_county_district`))) left join `look_state` `o` on((`y`.`state_id` = `o`.`state_id`))) left join `look_country` `p` on((`o`.`country_id` = `p`.`country_id`))) left join `emp_lk_val` `q` on((`c`.`emp_hrs_title` = `q`.`idemp_lk_value`))) left join `emp` `r` on((`c`.`del_by` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`c`.`archv_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) left join `feature_lk_val` `v` on((`b`.`house_apt_type` = `v`.`idfeature_lk_val`))) left join `emp` `w` on((`b`.`updater` = `w`.`emp_id`))) left join `storages` `x` on((`w`.`idstorages` = `x`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_emp_org_vac` -- /*!50001 DROP VIEW IF EXISTS `vw_emp_org_vac`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_emp_org_vac` AS select `a`.`idemp_org_vac` AS `idemp_org_vac`,`c`.`emp_org_id` AS `emp_org_id`,`c`.`emp_id` AS `emp_id`,`e`.`file_name` AS `emp_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `emp_nm`,`c`.`comp_id` AS `comp_id`,`g`.`file_name` AS `comp_fnm`,`f`.`companyname` AS `comp_nm`,`c`.`org_start_dt` AS `org_start_dt`,if(isnull(`c`.`org_start_dt`),'Not Started',date_format(`c`.`org_start_dt`,'%m-%d-%y')) AS `org_start_dt_fmt`,`c`.`org_end_dt` AS `org_end_dt`,if(isnull(`c`.`org_end_dt`),'Full Time',date_format(`c`.`org_end_dt`,'%m-%d-%y')) AS `org_end_dt_fmt`,(case when (`c`.`org_start_dt` and (`c`.`org_end_dt` is not null)) then concat(date_format(`c`.`org_start_dt`,'%m-%d-%y'),' ',date_format(`c`.`org_end_dt`,'%m-%d-%y')) when (isnull(`c`.`org_end_dt`) and isnull(`c`.`org_start_dt`)) then 'Not Started' when (isnull(`c`.`org_end_dt`) and (`c`.`org_start_dt` is not null)) then concat(date_format(`c`.`org_start_dt`,'%m-%d-%y'),' - ','Full Time') end) AS `org_st_e_dt_fmt`,`c`.`no_of_days` AS `no_of_days`,ifnull(`c`.`no_of_days`,(to_days(`c`.`tentative_en_dt`) - to_days(`c`.`org_start_dt`))) AS `no_of_days_vir`,`c`.`tentative_en_dt` AS `org_tentative_en_dt`,date_format(`c`.`tentative_en_dt`,'%m-%d-%y') AS `org_tentative_en_dt_fmt`,`c`.`emp_type` AS `emp_type`,`h`.`lk_val` AS `emp_type_fmt`,`a`.`idemp_org_hrs` AS `idemp_org_hrs`,`b`.`from_dt` AS `from_dt`,date_format(`b`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,`b`.`to_dt` AS `to_dt`,date_format(`b`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,(case when (`b`.`from_dt` and (`b`.`to_dt` is not null)) then concat(date_format(`b`.`from_dt`,'%m-%d-%y'),' ',date_format(`b`.`to_dt`,'%m-%d-%y')) when (isnull(`b`.`to_dt`) and isnull(`b`.`from_dt`)) then 'To Be Scheduled' when (isnull(`b`.`to_dt`) and (`b`.`from_dt` is not null)) then concat(date_format(`b`.`from_dt`,'%m-%d-%y'),' - ','') end) AS `from_to_dt_fmt`,concat(ifnull(`g`.`file_name`,''),' ',ifnull(`f`.`companyname`,'No Company '),' - ',ifnull(`i`.`lk_val`,'No Title'),' - ','( ',convert(ifnull(if(isnull(`b`.`to_dt`),concat(date_format(`b`.`from_dt`,'%m-%d-%y'),' - ','Active'),concat(date_format(`b`.`from_dt`,'%m-%d-%y'),' - ',date_format(`b`.`to_dt`,'%m-%d-%y'))),'No Duration ') using latin1),' ) ') AS `comp_fnm_nm_title_duration`,`b`.`frm_to_org_hrs_days` AS `frm_to_org_hrs_days`,ifnull(`b`.`frm_to_org_hrs_days`,(to_days(`b`.`tentative_en_dt`) - to_days(`b`.`from_dt`))) AS `frm_to_org_hrs_days_vir`,`b`.`tentative_en_dt` AS `tentative_en_dt`,date_format(`b`.`tentative_en_dt`,'%m-%d-%y') AS `tentative_en_dt_fmt`,`b`.`emp_hrs_title` AS `emp_hrs_title`,`i`.`lk_val` AS `emp_hrs_title_nm`,`a`.`vac_type` AS `vac_type`,`a`.`off_tm_days` AS `off_tm_days`,`a`.`off_tm_calc` AS `off_tm_calc`,`a`.`hrs_earn` AS `hrs_earn`,`a`.`hrs_use` AS `hrs_use`,concat(`a`.`hrs_use`,' of ',`a`.`hrs_earn`) AS `hrs_use_earn`,`a`.`hrs_bal` AS `hrs_bal`,`a`.`hrs_pcnt` AS `hrs_pcnt`,`a`.`updater` AS `updater`,`k`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,if(isnull(`a`.`del_dt`),'Not Deleted',date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p')) AS `del_dt_fmt`,if(isnull(`a`.`del_dt`),'Not Deleted',date_format(`a`.`del_dt`,'%Y')) AS `del_dt_yr`,if(isnull(`a`.`del_dt`),'Not Deleted',date_format(`a`.`del_dt`,'%M')) AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`m`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`l`.`firstname`,' ',`l`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,if(isnull(`a`.`archv_dt`),'Not Archive',date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p')) AS `archv_dt_fmt`,if(isnull(`a`.`archv_dt`),'Not Archive',date_format(`a`.`archv_dt`,'%Y')) AS `archv_dt_yr`,if(isnull(`a`.`archv_dt`),'Not Deleted',date_format(`a`.`archv_dt`,'%M')) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`o`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`n`.`firstname`,' ',`n`.`lastname`)) AS `archv_by_nm` from ((((((((((((((`emp_org_vac` `a` left join `emp_org_hrs` `b` on((`a`.`idemp_org_hrs` = `b`.`idemp_org_hrs`))) left join `emp_org` `c` on((`b`.`emp_org_id` = `c`.`emp_org_id`))) left join `emp` `d` on((`c`.`emp_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`c`.`comp_id` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp_lk_val` `h` on((`c`.`emp_type` = `h`.`idemp_lk_value`))) left join `emp_lk_val` `i` on((`b`.`emp_hrs_title` = `i`.`idemp_lk_value`))) left join `emp` `j` on((`a`.`updater` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`del_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `emp` `n` on((`a`.`archv_by` = `n`.`emp_id`))) left join `storages` `o` on((`n`.`idstorages` = `o`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage` -- /*!50001 DROP VIEW IF EXISTS `vw_engage`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage` AS select `a`.`engage_id` AS `engage_id`,`a`.`srv_client` AS `srv_client`,`c`.`file_name` AS `srv_client_fnm`,`b`.`companyname` AS `srv_client_nm`,`a`.`srv_client_add` AS `srv_client_add`,`a`.`srv_client_con` AS `srv_client_con`,`a`.`srv_vendor` AS `srv_vendor`,`e`.`file_name` AS `srv_vendor_fnm`,`d`.`companyname` AS `srv_vendor_nm`,`a`.`srv_ven_add` AS `srv_ven_add`,`a`.`srv_ven_con` AS `srv_ven_con`,`a`.`srv_st_dt` AS `srv_st_dt`,date_format(`a`.`srv_st_dt`,'%m-%d-%y') AS `srv_st_dt_fmt`,date_format(`a`.`srv_st_dt`,'%Y') AS `srv_st_yr`,date_format(`a`.`srv_st_dt`,'%M') AS `srv_st_mon`,`a`.`srv_e_dt` AS `srv_e_dt`,if(isnull(`a`.`srv_e_dt`),'Active',date_format(`a`.`srv_e_dt`,'%m-%d-%y')) AS `srv_e_dt_fmt`,if(isnull(`a`.`srv_e_dt`),'Active',date_format(`a`.`srv_e_dt`,'%Y')) AS `srv_e_yr`,if(isnull(`a`.`srv_e_dt`),'Active',date_format(`a`.`srv_e_dt`,'%M')) AS `srv_e_mon`,if(isnull(`a`.`srv_e_dt`),'Open','Ended') AS `engage_cur_stat`,`a`.`eng_tentive_en_dt` AS `eng_tentive_en_dt`,date_format(`a`.`eng_tentive_en_dt`,'%m-%d-%y ') AS `eng_tentive_en_dt_fmt`,date_format(`a`.`eng_tentive_en_dt`,'%Y %b') AS `eng_tentive_en_yr_mon`,`a`.`srv_st_e_dt` AS `srv_st_e_dt`,timestampdiff(DAY,`a`.`srv_st_dt`,ifnull(`a`.`srv_e_dt`,`a`.`eng_tentive_en_dt`)) AS `srv_st_e_dt_fmt`,`a`.`eng_cnt` AS `eng_cnt`,`a`.`eng_tol` AS `eng_tol`,concat(`a`.`eng_cnt`,' of ',`a`.`eng_tol`) AS `eng_cnt_tol`,`a`.`eng_cnt_pcnt` AS `eng_cnt_pcnt`,`a`.`eg_sumry` AS `eg_sumry`,`a`.`cloud_drive` AS `cloud_drive`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`f`.`emp_id` AS `updated_by`,`g`.`file_name` AS `updated_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `updated_by_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`i`.`file_name` AS `del_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`l`.`file_name` AS `archv_by_fnm`,ifnull(concat(`k`.`firstname`,' ',`k`.`lastname`),'Admin') AS `archv_by_nm` from ((((((((((`engage` `a` left join `company` `b` on((`a`.`srv_client` = `b`.`comp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `company` `d` on((`a`.`srv_vendor` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`updated_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`del_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `k` on((`a`.`archv_by` = `k`.`emp_id`))) left join `storages` `l` on((`k`.`idstorages` = `l`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_comp_add` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_comp_add`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_comp_add` AS select `a`.`idengage_comp_add` AS `idengage_comp_add`,`a`.`idengage_comp` AS `idengage_comp`,`a`.`comp_add_id` AS `comp_add_id`,`o`.`engage_id` AS `engage_id`,`b`.`comp_id` AS `comp_id`,`d`.`file_name` AS `comp_fnm`,`c`.`companyname` AS `comp_nm`,`b`.`look_street_no_id` AS `look_street_no_id`,`e`.`look_street_no` AS `look_street_no`,`f`.`street_name` AS `street_name`,`k`.`lk_val` AS `street_type`,`l`.`lk_val` AS `house_apt_type_nm`,`b`.`suite_no` AS `suite_no`,`h`.`city_name` AS `city_name`,`i`.`state_name` AS `state_name`,`p`.`county_district_city_nm` AS `county_district_city_nm`,`g`.`zip_code` AS `zip_code`,`j`.`con_name` AS `con_name`,if(isnull(`b`.`look_street_no_id`),'No Address',concat(ifnull(`e`.`look_street_no`,''),' ',ifnull(`f`.`street_name`,''),' ',ifnull(`k`.`lk_val`,''),' ',ifnull(`l`.`lk_val`,''),', ',ifnull(`h`.`city_name`,''),', ',ifnull(`p`.`county_district_city_nm`,''),', ',ifnull(`i`.`state_name`,''),' ',ifnull(`g`.`zip_code`,''),' ','(',ifnull(`j`.`con_name`,''),')')) AS `comp_address_full`,`a`.`add_type` AS `add_type`,`a`.`updater` AS `updater`,`n`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`m`.`firstname`,' ',`m`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((((((((((((`engage_comp_add` `a` left join `comp_address` `b` on((`a`.`comp_add_id` = `b`.`comp_add_id`))) left join `company` `c` on((`b`.`comp_id` = `c`.`comp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `look_street_no` `e` on((`b`.`look_street_no_id` = `e`.`look_street_no_id`))) left join `look_street` `f` on((`e`.`look_street_id` = `f`.`look_street_id`))) left join `feature_lk_val` `k` on((`f`.`street_type` = `k`.`idfeature_lk_val`))) left join `look_postal` `g` on((`f`.`postal_id` = `g`.`postal_id`))) left join `look_city` `h` on((`g`.`city_id` = `h`.`city_id`))) left join `look_county_district` `p` on((`h`.`idlook_county_district` = `p`.`idlook_county_district`))) left join `look_state` `i` on((`p`.`state_id` = `i`.`state_id`))) left join `look_country` `j` on((`i`.`country_id` = `j`.`country_id`))) left join `feature_lk_val` `l` on((`b`.`house_apt_type` = `l`.`idfeature_lk_val`))) left join `emp` `m` on((`a`.`updater` = `m`.`emp_id`))) left join `storages` `n` on((`m`.`idstorages` = `n`.`idstorages`))) left join `engage_comp` `o` on((`a`.`idengage_comp` = `o`.`idengage_comp`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_comp_con` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_comp_con`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_comp_con` AS select `a`.`idengage_comp_con` AS `idengage_comp_con`,`a`.`idengage_comp` AS `idengage_comp`,`b`.`engage_id` AS `engage_id`,`b`.`comp_id` AS `comp_id`,`e`.`file_name` AS `comp_fnm`,`d`.`companyname` AS `companyname`,`a`.`comp_contact_id` AS `comp_contact_id`,`c`.`emp_id` AS `emp_id`,`g`.`file_name` AS `emp_fnm`,concat(`f`.`firstname`,' ',`f`.`lastname`) AS `emp_nm`,`c`.`title` AS `title`,`c`.`all_contacts` AS `all_contacts`,concat(ifnull(`g`.`file_name`,' '),' ',if(isnull(`c`.`emp_id`),'No Emp.',concat(`f`.`firstname`,' ',`f`.`lastname`)),' ','Title: ',ifnull(`c`.`title`,'No Title '),' ','Contacts: ',ifnull(`c`.`all_contacts`,'No Contacts')) AS `comp_contact_all_details`,`a`.`contact_notes` AS `contact_notes`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %H:%i:%s %p') AS `updated_fmt` from ((((((((`engage_comp_con` `a` left join `engage_comp` `b` on((`a`.`idengage_comp` = `b`.`idengage_comp`))) left join `comp_contact` `c` on((`a`.`comp_contact_id` = `c`.`comp_contact_id`))) left join `company` `d` on((`b`.`comp_id` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_doc` AS select `a`.`idengage_doc` AS `idengage_doc`,`a`.`engage_id` AS `engage_id`,`a`.`idstorages` AS `idstorages`,`b`.`file_name` AS `file_name`,`b`.`sto_cloud` AS `sto_cloud`,ifnull(`c`.`lk_val`,'Local') AS `sto_cloud_nm`,`b`.`file_size` AS `file_size`,(case when (`b`.`file_size` < 1024) then concat(`b`.`file_size`,' B') when ((`b`.`file_size` > 1024) and (`b`.`file_size` < 1048576)) then concat(round((`b`.`file_size` / 1024),2),' KB') when ((`b`.`file_size` > 1048576) and (`b`.`file_size` < 1073741824)) then concat(round(((`b`.`file_size` / 1024) / 1024),2),' MB') when (`b`.`file_size` > 1073741824) then concat(round((((`b`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`b`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`b`.`create_dt` AS `create_dt`,date_format(`b`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`b`.`expire_dt` AS `expire_dt`,date_format(`b`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`b`.`ext_type` AS `ext_type`,`b`.`public` AS `public`,`b`.`self_view` AS `self_view`,`b`.`smry` AS `smry`,`b`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`b`.`usage` AS `usage`,`b`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`b`.`updated` AS `updated`,date_format(`b`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`engage_doc` `a` left join `storages` `b` on((`a`.`idstorages` = `b`.`idstorages`))) left join `feature_lk_val` `c` on((`a`.`idstorages` = `c`.`idfeature_lk_val`))) left join `emp` `d` on((`b`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`b`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`b`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_entity` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_entity`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_entity` AS select `a`.`idengage_entity` AS `idengage_entity`,`a`.`engage_id` AS `engage_id`,`c`.`srv_client` AS `srv_client`,`cc`.`file_name` AS `srv_client_fnm`,`ca`.`companyname` AS `srv_client_nm`,`c`.`srv_client_add` AS `srv_client_add`,`c`.`srv_client_con` AS `srv_client_con`,`c`.`srv_vendor` AS `srv_vendor`,`cd`.`file_name` AS `srv_vendor_fnm`,`cb`.`companyname` AS `srv_vendor_nm`,`c`.`srv_ven_add` AS `srv_ven_add`,`c`.`srv_ven_con` AS `srv_ven_con`,`c`.`srv_st_dt` AS `srv_st_dt`,`c`.`srv_e_dt` AS `srv_e_dt`,if(isnull(`c`.`srv_e_dt`),'Open','Ended') AS `engage_cur_stat`,`c`.`srv_st_e_dt` AS `srv_st_e_dt`,`c`.`eng_cnt` AS `eng_cnt`,`c`.`eng_tol` AS `eng_tol`,concat(`c`.`eng_cnt`,' of ',`c`.`eng_tol`) AS `eng_cnt_tol`,concat(round(((`c`.`eng_cnt` / `c`.`eng_tol`) * 100),2),'%') AS `eng_cnt_tol_pcnt`,`a`.`engage_ref_tab` AS `engage_ref_tab`,`a`.`engage_ref_id` AS `engage_ref_id`,(case when (`a`.`engage_ref_tab` like 'Company') then `q`.`file_name` when (`a`.`engage_ref_tab` like 'Employee') then `n`.`file_name` end) AS `engage_ref_fnm`,(case when (`a`.`engage_ref_tab` like 'Company') then `b`.`companyname` when (`a`.`engage_ref_tab` like 'Employee') then concat(`d`.`firstname`,' ',`d`.`lastname`) end) AS `engage_ref_nm`,concat(convert((case when (`a`.`engage_ref_tab` = 'Company') then 'Comp' when (`a`.`engage_ref_tab` = 'Employee') then 'Emp' end) using latin1),': ',if(isnull((case when (`a`.`engage_ref_tab` like 'Company') then `q`.`file_name` when (`a`.`engage_ref_tab` like 'Employee') then `n`.`file_name` end)),'No Engage Ref Fnm',(case when (`a`.`engage_ref_tab` like 'Company') then `q`.`file_name` when (`a`.`engage_ref_tab` like 'Employee') then `n`.`file_name` end)),': ',(case when (`a`.`engage_ref_tab` = 'Company') then concat(`b`.`companyname`) when (`a`.`engage_ref_tab` = 'Employee') then (case when (`a`.`engage_ref_id` = '') then 'Admin' else concat(`d`.`firstname`,_latin1' ',`d`.`lastname`) end) end)) AS `engage_ref_tab_fnm_nm`,`a`.`bill_start_dt` AS `bill_start_dt`,date_format(`a`.`bill_start_dt`,_utf8'%m-%d-%y ') AS `bill_start_dt_fmt`,date_format(`a`.`bill_start_dt`,'%Y') AS `bill_start_yr`,date_format(`a`.`bill_start_dt`,'%M') AS `bill_start_mon`,`a`.`bill_cycle` AS `bill_cycle`,`a`.`bill_end_dt` AS `bill_end_dt`,ifnull(convert(date_format(`a`.`bill_end_dt`,_utf8'%m-%d-%y ') using utf8mb4),'Billable') AS `bill_end_dt_fmt`,date_format(`a`.`bill_end_dt`,'%Y') AS `bill_end_yr`,date_format(`a`.`bill_end_dt`,'%M') AS `bill_end_mon`,if(isnull(`a`.`bill_end_dt`),'Open','Ended') AS `engage_entity_cur_stat`,`a`.`bill_st_e_dt` AS `bill_st_e_dt`,ifnull(`a`.`bill_st_e_dt`,timestampdiff(DAY,`a`.`bill_start_dt`,now())) AS `bill_st_e_dt_vir`,`a`.`bill_fst_dt` AS `bill_fst_dt`,date_format(`a`.`bill_fst_dt`,_utf8'%m-%d-%y ') AS `bill_fst_dt_fmt`,`a`.`bill_day` AS `bill_day`,`a`.`bill_pay_type` AS `bill_pay_type`,`db`.`lk_val` AS `bill_pay_type_nm`,`a`.`bill_pay_cy` AS `bill_pay_cy`,`a`.`bill_pay_rate` AS `bill_pay_rate`,`a`.`bill_title` AS `bill_title`,`da`.`lk_val` AS `bill_title_nm`,`a`.`bill_hrs_mon` AS `bill_hrs_mon`,`a`.`bill_pay_rate_xtra` AS `bill_pay_rate_xtra`,`a`.`ts_cycle` AS `ts_cycle`,`a`.`ts_fst_dt` AS `ts_fst_dt`,date_format(`a`.`ts_fst_dt`,_utf8'%m-%d-%y ') AS `ts_fst_dt_fmt`,`a`.`netpay` AS `netpay`,`a`.`tentative_e_dt` AS `tentative_e_dt`,date_format(`a`.`tentative_e_dt`,_utf8'%m-%d-%y ') AS `tentative_e_dt_fmt`,date_format(`a`.`tentative_e_dt`,'%Y - %M') AS `tentative_e_mon_yr`,`a`.`access_name` AS `access_name`,`a`.`remind` AS `remind`,`a`.`summary` AS `summary`,`a`.`cloud_drive` AS `cloud_drive`,`a`.`allow_inv` AS `allow_inv`,`a`.`show_emp` AS `show_emp`,`a`.`bill_cycle_run_dt` AS `bill_cycle_run_dt`,date_format(`a`.`bill_cycle_run_dt`,_utf8'%m-%d-%y ') AS `bill_cycle_run_dt_fmt`,if((isnull(`a`.`bill_cycle_run_dt`) = 1),'N','Y') AS `bill_cycle_ran`,`a`.`ts_cycle_run_dt` AS `ts_cycle_run_dt`,date_format(`a`.`ts_cycle_run_dt`,_utf8'%m-%d-%y ') AS `ts_cycle_run_dt_fmt`,if((isnull(`a`.`ts_cycle_run_dt`) = 1),'N','Y') AS `ts_cycle_ran`,`a`.`updater` AS `updater`,`o`.`file_name` AS `updater_fnm`,ifnull(concat(`e`.`firstname`,' ',`e`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,_utf8'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`old_bc_dt` AS `old_bc_dt`,`a`.`old_tc_dt` AS `old_tc_dt` from (((((((((((((`engage_entity` `a` left join `company` `b` on((`b`.`comp_id` = `a`.`engage_ref_id`))) left join `emp` `e` on((`e`.`emp_id` = `a`.`updater`))) left join `storages` `o` on((`o`.`idstorages` = `e`.`idstorages`))) left join `storages` `q` on((`q`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`engage_ref_id`))) left join `storages` `n` on((`n`.`idstorages` = `d`.`idstorages`))) left join `engage` `c` on((`a`.`engage_id` = `c`.`engage_id`))) left join `company` `ca` on((`c`.`srv_client` = `ca`.`comp_id`))) left join `storages` `cc` on((`ca`.`idstorages` = `cc`.`idstorages`))) left join `company` `cb` on((`c`.`srv_vendor` = `cb`.`comp_id`))) left join `storages` `cd` on((`cb`.`idstorages` = `cd`.`idstorages`))) left join `comp_lk_val` `da` on((`da`.`idcomp_lk_val` = `a`.`bill_title`))) left join `comp_lk_val` `db` on((`a`.`bill_pay_type` = `db`.`idcomp_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_entity_bud` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_entity_bud`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_entity_bud` AS select `a`.`idengage_entity_bud` AS `idengage_entity_bud`,`b`.`engage_id` AS `engage_id`,`c`.`srv_client` AS `srv_client`,`e`.`file_name` AS `srv_client_fnm`,`d`.`companyname` AS `srv_client_nm`,`c`.`srv_client_add` AS `srv_client_add`,`c`.`srv_client_con` AS `srv_client_con`,`c`.`srv_vendor` AS `srv_vendor`,`g`.`file_name` AS `srv_vendor_fnm`,`f`.`companyname` AS `srv_vendor_nm`,`c`.`srv_ven_add` AS `srv_ven_add`,`c`.`srv_ven_con` AS `srv_ven_con`,`c`.`srv_st_dt` AS `srv_st_dt`,date_format(`c`.`srv_st_dt`,'%m-%d-%y %h:%i %p') AS `srv_st_dt_fmt`,`c`.`srv_e_dt` AS `srv_e_dt`,date_format(`c`.`srv_e_dt`,'%m-%d-%y %h:%i %p') AS `srv_e_dt_fmt`,`c`.`srv_st_e_dt` AS `srv_st_e_dt`,timestampdiff(DAY,`c`.`srv_st_dt`,ifnull(`c`.`srv_e_dt`,now())) AS `srv_st_e_dt_fmt`,`c`.`eng_tentive_en_dt` AS `eng_tentive_en_dt`,date_format(`c`.`eng_tentive_en_dt`,'%m-%d-%y %h:%i %p') AS `eng_tentive_en_dt_fmt`,`c`.`eng_cnt` AS `eng_cnt`,`c`.`eng_tol` AS `eng_tol`,concat(`c`.`eng_cnt`,' of ',`c`.`eng_tol`) AS `eng_cnt_tol`,concat(round(((`c`.`eng_cnt` / `c`.`eng_tol`) * 100),2),'%') AS `eng_cnt_tol_pcnt`,`c`.`eg_sumry` AS `eg_sumry`,`c`.`cloud_drive` AS `cloud_drive`,`a`.`idengage_entity` AS `idengage_entity`,`b`.`engage_ref_tab` AS `engage_ref_tab`,`b`.`engage_ref_id` AS `engage_ref_id`,(case when (`b`.`engage_ref_tab` like 'Company') then `i`.`file_name` when (`b`.`engage_ref_tab` like 'Employee') then `k`.`file_name` end) AS `engage_ref_fnm`,(case when (`b`.`engage_ref_tab` like 'Company') then `h`.`companyname` when (`b`.`engage_ref_tab` like 'Employee') then concat(`j`.`firstname`,' ',`j`.`lastname`) end) AS `engage_ref_nm`,concat(convert((case when (`b`.`engage_ref_tab` like 'Company') then 'Comp' when (`b`.`engage_ref_tab` like 'Employee') then 'Emp' end) using latin1),': ',(case when (`b`.`engage_ref_tab` like 'Company') then `i`.`file_name` when (`b`.`engage_ref_tab` like 'Employee') then `k`.`file_name` end),': ',(case when (`b`.`engage_ref_tab` like 'Company') then `h`.`companyname` when (`b`.`engage_ref_tab` like 'Employee') then concat(`j`.`firstname`,' ',`j`.`lastname`) end)) AS `engage_ref_tab_fnm_nm`,`b`.`bill_start_dt` AS `bill_start_dt`,date_format(`b`.`bill_start_dt`,'%m-%d-%y ') AS `bill_start_dt_fmt`,`b`.`bill_cycle` AS `bill_cycle`,`b`.`bill_end_dt` AS `bill_end_dt`,ifnull(date_format(`b`.`bill_end_dt`,'%m-%d-%y '),'Billable') AS `bill_end_dt_fmt`,`b`.`bill_st_e_dt` AS `bill_st_e_dt`,ifnull(`b`.`bill_st_e_dt`,timestampdiff(MINUTE,`b`.`bill_start_dt`,ifnull(`b`.`bill_end_dt`,now()))) AS `bill_st_e_dt_vir`,`b`.`bill_fst_dt` AS `bill_fst_dt`,date_format(`b`.`bill_fst_dt`,'%m-%d-%y ') AS `bill_fst_dt_fmt`,`b`.`bill_day` AS `bill_day`,`b`.`bill_pay_type` AS `bill_pay_type`,`l`.`lk_val` AS `bill_pay_type_nm`,`b`.`eng_ent_cnt` AS `eng_ent_cnt`,`b`.`eng_ent_tol` AS `eng_ent_tol`,`b`.`eng_bud_pcnt` AS `eng_bud_pcnt`,`b`.`bill_pay_rate` AS `bill_pay_rate`,`b`.`bill_title` AS `bill_title`,`m`.`lk_val` AS `bill_title_nm`,`b`.`bill_hrs_mon` AS `bill_hrs_mon`,`b`.`bill_pay_rate_xtra` AS `bill_pay_rate_xtra`,`b`.`ts_cycle` AS `ts_cycle`,`b`.`ts_fst_dt` AS `ts_fst_dt`,date_format(`b`.`ts_fst_dt`,'%m-%d-%y ') AS `ts_fst_dt_fmt`,`b`.`ts_fst_day` AS `ts_fst_day`,`b`.`netpay` AS `netpay`,`b`.`tentative_e_dt` AS `tentative_e_dt`,date_format(`b`.`tentative_e_dt`,'%m-%d-%y ') AS `tentative_e_dt_fmt`,`a`.`engage_bud_ref_id` AS `engage_bud_ref_id`,`a`.`engage_bud_ref_tab` AS `engage_bud_ref_tab`,(case when (`a`.`engage_bud_ref_tab` like 'comp') then `o`.`file_name` when (`a`.`engage_bud_ref_tab` like 'emp') then `q`.`file_name` end) AS `engage_bud_ref_tab_fnm`,(case when (`a`.`engage_bud_ref_tab` like 'comp') then `n`.`companyname` when (`a`.`engage_bud_ref_tab` like 'emp') then concat(`p`.`firstname`,' ',`p`.`lastname`) end) AS `engage_bud_ref_tab_nm`,concat(convert((case when isnull(`a`.`engage_bud_ref_tab`) then '' else (case when (`a`.`engage_bud_ref_tab` = 'comp') then 'Comp' when (`a`.`engage_bud_ref_tab` = 'emp') then 'Emp' end) end) using latin1),': ',(case when (`a`.`engage_bud_ref_tab` like 'comp') then `o`.`file_name` when (`a`.`engage_bud_ref_tab` like 'emp') then `q`.`file_name` end),': ',(case when (`a`.`engage_bud_ref_tab` = 'comp') then concat(`n`.`companyname`) when (`a`.`engage_bud_ref_tab` = 'emp') then (case when (`a`.`engage_bud_ref_tab` = '') then 'Admin' else concat(`p`.`firstname`,' ',`p`.`lastname`) end) end)) AS `engage_bud_ref_tab_fnm_nm`,`a`.`engage_calc` AS `engage_calc`,`a`.`engage_amt` AS `engage_amt`,`a`.`show_emp` AS `show_emp`,`a`.`engage_st_dt` AS `engage_st_dt`,date_format(`a`.`engage_st_dt`,'%m-%d-%y ') AS `engage_st_dt_fmt`,date_format(`a`.`engage_st_dt`,'%Y') AS `engage_st_dt_yr`,date_format(`a`.`engage_st_dt`,'%M') AS `engage_st_dt_mon`,`a`.`engage_e_dt` AS `engage_e_dt`,date_format(`a`.`engage_e_dt`,'%m-%d-%y ') AS `engage_e_dt_fmt`,date_format(`a`.`engage_e_dt`,'%Y') AS `engage_e_dt_yr`,date_format(`a`.`engage_e_dt`,'%M') AS `engage_e_dt_mon`,`a`.`engage_st_e_dt` AS `engage_st_e_dt`,ifnull(`a`.`engage_st_e_dt`,timestampdiff(MINUTE,`a`.`engage_st_dt`,ifnull(`a`.`engage_e_dt`,now()))) AS `engage_st_e_dt_vir`,`a`.`limit_amt` AS `limit_amt`,`a`.`engage_smry` AS `engage_smry`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`s`.`file_name` AS `updater_fnm`,ifnull(concat(`r`.`firstname`,' ',`r`.`lastname`),'Admin') AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`u`.`file_name` AS `del_by_fnm`,ifnull(concat(`t`.`firstname`,' ',`t`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Not Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`w`.`file_name` AS `archv_by_fnm`,ifnull(concat(`v`.`firstname`,' ',`v`.`lastname`),'Admin') AS `archv_by_nm` from ((((((((((((((((((((((`engage_entity_bud` `a` left join `engage_entity` `b` on((`a`.`idengage_entity` = `b`.`idengage_entity`))) left join `engage` `c` on((`b`.`engage_id` = `c`.`engage_id`))) left join `company` `d` on((`c`.`srv_client` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`c`.`srv_vendor` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `company` `h` on((`b`.`engage_ref_id` = `h`.`comp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`b`.`engage_ref_id` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `comp_lk_val` `l` on((`b`.`bill_pay_type` = `l`.`idcomp_lk_val`))) left join `comp_lk_val` `m` on((`b`.`bill_title` = `m`.`idcomp_lk_val`))) left join `company` `n` on((`a`.`engage_bud_ref_id` = `n`.`comp_id`))) left join `storages` `o` on((`n`.`idstorages` = `o`.`idstorages`))) left join `emp` `p` on((`a`.`engage_bud_ref_id` = `p`.`emp_id`))) left join `storages` `q` on((`p`.`idstorages` = `q`.`idstorages`))) left join `emp` `r` on((`a`.`updater` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`a`.`del_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) left join `emp` `v` on((`a`.`archv_by` = `v`.`emp_id`))) left join `storages` `w` on((`v`.`idstorages` = `w`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_engage_entity_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_engage_entity_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_engage_entity_doc` AS select `a`.`idengage_entity_doc` AS `idengage_entity_doc`,`a`.`idengage_entity` AS `idengage_entity`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`engage_entity_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_feature` -- /*!50001 DROP VIEW IF EXISTS `vw_feature`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_feature` AS select `a`.`feature_no` AS `feature_no`,`a`.`feature_id` AS `feature_id`,`a`.`feature_name` AS `feature_name`,`a`.`feature_desc` AS `feature_desc`,`a`.`disp_order` AS `disp_order`,(select count(0) from `emp_access` where (`emp_access`.`feature_id` = `a`.`feature_id`)) AS `assigned`,(select count(0) from `feature_grp_list` where (`feature_grp_list`.`feature_id` = `a`.`feature_id`)) AS `groups`,(select count(0) from `feature_menu` where (`feature_menu`.`feature_id` = `a`.`feature_id`)) AS `menus` from `feature` `a` order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_feature_grp` -- /*!50001 DROP VIEW IF EXISTS `vw_feature_grp`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_feature_grp` AS select `a`.`idfeature_grp` AS `idfeature_grp`,`a`.`group_name` AS `group_name`,`a`.`feature_cnt` AS `feature_cnt`,`a`.`group_desc` AS `group_desc`,`a`.`feature_ids` AS `feature_ids`,`a`.`feature_nm` AS `feature_nm`,`a`.`updater` AS `updater`,`b`.`emp_fnm` AS `emp_fnm`,ifnull(`b`.`fullname`,'Admin') AS `fullname`,`a`.`last_updated` AS `last_updated`,ifnull(date_format(`a`.`last_updated`,'%m/%d/%y %h:%i %p'),'Back End') AS `last_updated_fmt` from (`feature_grp` `a` left join `vw_emp` `b` on((`a`.`updater` = `b`.`emp_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_feature_grp_list` -- /*!50001 DROP VIEW IF EXISTS `vw_feature_grp_list`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_feature_grp_list` AS select `a`.`idfeature_grp_list` AS `idfeature_grp_list`,`a`.`idfeature_grp` AS `idfeature_grp`,`b`.`group_name` AS `group_name`,`b`.`group_desc` AS `group_desc`,`b`.`updater` AS `updater`,`b`.`emp_fnm` AS `emp_fnm`,`b`.`fullname` AS `fullname`,`b`.`last_updated_fmt` AS `last_updated_fmt`,`a`.`feature_id` AS `feature_id`,`c`.`feature_name` AS `feature_name`,`c`.`feature_desc` AS `feature_desc`,`c`.`disp_order` AS `disp_order` from ((`feature_grp_list` `a` left join `vw_feature_grp` `b` on((`a`.`idfeature_grp` = `b`.`idfeature_grp`))) left join `feature` `c` on((`a`.`feature_id` = `c`.`feature_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_feature_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_feature_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_feature_lk_val` AS select `a`.`idfeature_lk_val` AS `idfeature_lk_val`,NULL AS `idfeature_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `lk_val`,NULL AS `child_lvl`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idfeature_lk` AS `parent_id`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt` from ((`feature_lk_val` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `NULL`,`a`.`idfeature_lk` AS `idfeature_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`feature_lk` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_festival` -- /*!50001 DROP VIEW IF EXISTS `vw_festival`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_festival` AS select `a`.`idfestival` AS `idfestival`,`a`.`look_values_id` AS `look_values_id`,`a`.`comp_id` AS `comp_id`,`a`.`festival_yr` AS `festival_yr`,date_format(`a`.`festival_day`,_utf8'%m-%d-%y') AS `festival_day`,dayname(`a`.`festival_day`) AS `day`,`a`.`festival_name` AS `festival_name`,`a`.`festival_type` AS `festival_type`,`a`.`last_updated` AS `last_updated`,`a`.`updated_by` AS `updated_by`,concat(convert(date_format(`a`.`last_updated`,_utf8'%m-%d-%y %H:%i:%s') using latin1),_latin1' ',(case when (`a`.`updated_by` = _utf8'0') then 'Admin' else concat(`e`.`firstname`,_latin1' ',`e`.`lastname`) end)) AS `mod_last_updated` from (`festival` `a` left join `emp` `e` on((`e`.`emp_id` = `a`.`updated_by`))) order by `a`.`festival_yr`,`a`.`festival_day` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_festival_company` -- /*!50001 DROP VIEW IF EXISTS `vw_festival_company`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_festival_company` AS select `a`.`idfestival` AS `idfestival`,`a`.`look_values_id` AS `look_values_id`,`c`.`comp_id` AS `comp_id`,`c`.`companyname` AS `companyname`,`a`.`festival_yr` AS `festival_yr`,date_format(`a`.`festival_day`,_utf8'%m-%d-%y') AS `festival_day`,dayname(`a`.`festival_day`) AS `day`,`a`.`festival_name` AS `festival_name`,`a`.`festival_type` AS `festival_type`,`a`.`last_updated` AS `last_updated`,`a`.`updated_by` AS `updated_by`,concat(convert(date_format(`a`.`last_updated`,_utf8'%m-%d-%y %H:%i:%s') using latin1),_latin1' ',(case when (`a`.`updated_by` = _utf8'0') then 'Admin' else concat(`e`.`firstname`,_latin1' ',`e`.`lastname`) end)) AS `mod_last_updated` from ((`festival` `a` left join `emp` `e` on((`e`.`emp_id` = `a`.`updated_by`))) left join `company` `c` on((`c`.`comp_id` = `a`.`comp_id`))) order by `a`.`festival_yr`,`a`.`festival_day` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours` -- /*!50001 DROP VIEW IF EXISTS `vw_hours`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours` AS select `a`.`hour_id` AS `hour_id`,`a`.`idemp_org_hrs_days_cy` AS `idemp_org_hrs_days_cy`,if(isnull(`a`.`idemp_org_hrs_days_cy`),'No','Yes') AS `idemp_org_hrs_days_cy_nm`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `emp_nm`,`a`.`idemp_org_hrs` AS `idemp_org_hrs`,`e`.`comp_id` AS `emp_org_hrs_comp_id`,`g`.`file_name` AS `emp_org_hrs_comp_fnm`,`f`.`companyname` AS `emp_org_hrs_comp_nm`,`a`.`engage_ref_tab` AS `engage_ref_tab`,`a`.`engage_ref_id` AS `engage_ref_id`,(case when (`a`.`engage_ref_tab` like 'comp') then `ab`.`file_name` when (`a`.`engage_ref_tab` like 'engage') then `af`.`file_name` end) AS `engage_ref_fnm`,if(isnull(`a`.`engage_ref_id`),'Not Engaged',(case when (`a`.`engage_ref_tab` like 'comp') then `aa`.`companyname` when (`a`.`engage_ref_tab` like 'engage') then `ae`.`companyname` end)) AS `engage_ref_nm`,if(isnull(`a`.`engage_ref_id`),'Not Engaged',(case when (`a`.`engage_ref_tab` like 'comp') then concat('Company: ',`aa`.`companyname`) when (`a`.`engage_ref_tab` like 'engage') then concat('Engage: ',`ae`.`companyname`) end)) AS `engage_ref_nm2`,`ai`.`comp_id` AS `comp_id`,`ai`.`companyname` AS `companyname`,`aj`.`file_name` AS `comp_fnm`,`a`.`idhours_cy_bc` AS `idhours_cy_bc`,if(isnull(`a`.`idhours_cy_bc`),'No','Yes') AS `idhours_cy_bc_nm`,`a`.`idinv` AS `idinv`,if(isnull(`a`.`idinv`),'No','Yes') AS `idinv_nm`,`a`.`idemp_pay` AS `idemp_pay`,if(isnull(`a`.`idemp_pay`),'No','Yes') AS `idemp_pay_nm`,`a`.`hr_st_dt` AS `hr_st_dt`,date_format(`a`.`hr_st_dt`,'%m-%d-%y') AS `hr_st_dt_fmt`,dayname(`a`.`hr_st_dt`) AS `hr_st_day`,date_format(`a`.`hr_st_dt`,'%Y') AS `hr_st_dt_yr`,date_format(`a`.`hr_st_dt`,'%M') AS `hr_st_dt_mon`,date_format(`a`.`hr_st_dt`,'%Y %M') AS `hr_st_dt_yr_mon`,time_format(`a`.`hr_st_dt`,'%h:%i %p') AS `hr_st_dt_tm_fmt`,`a`.`hr_e_dt` AS `hr_e_dt`,date_format(`a`.`hr_e_dt`,'%m-%d-%y') AS `hr_e_dt_fmt`,dayname(`a`.`hr_e_dt`) AS `hr_e_day`,dayofweek(`a`.`hr_e_dt`) AS `hr_e_day_no`,date_format(`a`.`hr_e_dt`,'%Y') AS `hr_e_dt_yr`,date_format(`a`.`hr_e_dt`,'%M') AS `hr_e_dt_mon`,date_format(`a`.`hr_e_dt`,'%Y %M') AS `hr_e_dt_yr_mon`,date_format(`a`.`hr_e_dt`,'%Y %m') AS `hr_e_dt_yr_mon_no`,time_format(`a`.`hr_e_dt`,'%h:%i %p') AS `hr_e_dt_tm_fmt`,concat(date_format(`a`.`hr_st_dt`,'%b-%d-%y %a'),' ',time_format(`a`.`hr_st_dt`,'%h:%i %p'),' To',' ',time_format(`a`.`hr_e_dt`,'%h:%i %p')) AS `hr_st_e_dt_tm_fmt`,`a`.`off_time` AS `off_time`,`a`.`off_tm_nm` AS `off_tm_nm`,`a`.`hr_tol` AS `hr_tol`,`a`.`hr_tol_nm` AS `hr_tol_nm`,`a`.`iddev_apps` AS `iddev_apps`,ifnull(`j`.`app_name`,'No Apex') AS `app_nm`,`a`.`dev_est` AS `dev_est`,ifnull(`a`.`dev_est`,'No Glacier') AS `dev_est_nm`,ifnull(`m`.`dev_est_smry`,'No Glacier Summary') AS `dev_est_smry`,`a`.`dev_est_reqs` AS `dev_est_reqs`,ifnull(`a`.`dev_est_reqs`,'No Cubes') AS `dev_est_reqs_nm`,ifnull(`n`.`req_desc`,'No Cube Description') AS `req_desc`,`a`.`updater` AS `updater`,`p`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`o`.`firstname`,' ',`o`.`lastname`)) AS `updater_nm`,`a`.`hrs_type` AS `hrs_type`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`iplook_ip_addr` AS `iplook_ip_addr`,`r`.`ip_address` AS `ip_address`,`r`.`domain_nm` AS `domain_nm`,ifnull(`r`.`ip_contry`,'No Country') AS `ip_contry`,ifnull(`r`.`ip_state`,'No State') AS `ip_state`,`r`.`ip_city` AS `ip_city`,`r`.`ip_post_code` AS `ip_post_code`,`a`.`approver` AS `approver`,`t`.`file_name` AS `approver_fnm`,if(isnull(`a`.`approver`),'No Approver',concat(`s`.`firstname`,' ',`s`.`lastname`)) AS `approver_nm`,`a`.`approve_by` AS `approve_by`,`v`.`file_name` AS `approve_by_fnm`,if(isnull(`a`.`approve_by`),'Not Approve',concat(`u`.`firstname`,' ',`u`.`lastname`)) AS `approve_by_nm`,`a`.`approve_dt` AS `approve_dt`,if(isnull(`a`.`approve_dt`),'Pending',date_format(`a`.`approve_dt`,'%m-%d-%y')) AS `approve_dt_fmt_up`,`a`.`approve_temp_dt` AS `approve_temp_dt`,`a`.`timecard_id` AS `timecard_id`,`a`.`summary` AS `summary`,`a`.`hours_cnt` AS `hours_cnt`,if(isnull(`a`.`hours_cnt`),'N','Y') AS `hours_cnt_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`x`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`w`.`firstname`,' ',`w`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,ifnull(date_format(`a`.`archv_dt`,'%Y'),'Not Archived') AS `archv_dt_yr`,ifnull(date_format(`a`.`archv_dt`,'%M'),'Not Archived') AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`z`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`y`.`firstname`,' ',`y`.`lastname`)) AS `archv_by_nm` from ((((((((((((((((((((((((((((((`hours` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp_org_hrs` `d` on((`a`.`idemp_org_hrs` = `d`.`idemp_org_hrs`))) left join `emp_org` `e` on((`d`.`emp_org_id` = `e`.`emp_org_id`))) left join `company` `f` on((`e`.`comp_id` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `dev_apps` `j` on((`a`.`iddev_apps` = `j`.`iddev_apps`))) left join `dev_est` `m` on((`a`.`dev_est` = `m`.`iddev_est`))) left join `dev_est_reqs` `n` on((`a`.`dev_est_reqs` = `n`.`iddev_est_reqs`))) left join `emp` `o` on((`a`.`updater` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `look_ip_addr` `r` on((`a`.`iplook_ip_addr` = `r`.`idlook_ip_addr`))) left join `emp` `s` on((`a`.`approver` = `s`.`emp_id`))) left join `storages` `t` on((`s`.`idstorages` = `t`.`idstorages`))) left join `emp` `u` on((`a`.`approve_by` = `u`.`emp_id`))) left join `storages` `v` on((`u`.`idstorages` = `v`.`idstorages`))) left join `emp` `w` on((`a`.`del_by` = `w`.`emp_id`))) left join `storages` `x` on((`w`.`idstorages` = `x`.`idstorages`))) left join `emp` `y` on((`a`.`archv_by` = `y`.`emp_id`))) left join `storages` `z` on((`y`.`idstorages` = `z`.`idstorages`))) left join `company` `aa` on((`a`.`engage_ref_id` = `aa`.`comp_id`))) left join `storages` `ab` on((`aa`.`idstorages` = `ab`.`idstorages`))) left join `engage_entity` `ac` on((`a`.`engage_ref_id` = `ac`.`idengage_entity`))) left join `engage` `ad` on((`ac`.`engage_id` = `ad`.`engage_id`))) left join `company` `ae` on((`ad`.`srv_client` = `ae`.`comp_id`))) left join `storages` `af` on((`ae`.`idstorages` = `af`.`idstorages`))) left join `engage_entity` `ag` on((`a`.`engage_ref_id` = `ag`.`idengage_entity`))) left join `engage` `ah` on((`ag`.`engage_id` = `ah`.`engage_id`))) left join `company` `ai` on((`ah`.`srv_client` = `ai`.`comp_id`))) left join `storages` `aj` on((`ai`.`idstorages` = `aj`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours_access` -- /*!50001 DROP VIEW IF EXISTS `vw_hours_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours_access` AS select `a`.`idhours_access` AS `idhours_access`,`a`.`hrs_access_to` AS `hrs_access_to`,`c`.`file_name` AS `hrs_access_to_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `hrs_access_to_nm`,`a`.`hrs_access_of` AS `hrs_access_of`,`e`.`file_name` AS `hrs_access_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `hrs_access_of_nm`,`a`.`acc_from_dt` AS `acc_from_dt`,if(isnull(`a`.`acc_from_dt`),'ALL',date_format(`a`.`acc_from_dt`,'%m-%d-%y')) AS `acc_from_dt_fmt`,date_format(`a`.`acc_from_dt`,'%Y') AS `acc_from_yr`,date_format(`a`.`acc_from_dt`,'%M') AS `acc_from_mon`,`a`.`acc_to_dt` AS `acc_to_dt`,(case when (isnull(`a`.`acc_from_dt`) and isnull(`a`.`acc_to_dt`)) then 'ALL' when ((`a`.`acc_from_dt` is not null) and isnull(`a`.`acc_to_dt`)) then 'Today' when ((`a`.`acc_from_dt` is not null) and (`a`.`acc_to_dt` is not null)) then date_format(`a`.`acc_to_dt`,'%m-%d-%y') end) AS `acc_to_dt_fmt`,if(isnull(`a`.`acc_to_dt`),year(curdate()),date_format(`a`.`acc_to_dt`,'%Y')) AS `acc_to_yr`,if(isnull(`a`.`acc_to_dt`),monthname(curdate()),date_format(`a`.`acc_to_dt`,'%M')) AS `acc_to_mon`,`a`.`acc_type` AS `acc_type`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((`hours_access` `a` left join `emp` `b` on((`a`.`hrs_access_to` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`a`.`hrs_access_of` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`updater` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours_cy_bc` -- /*!50001 DROP VIEW IF EXISTS `vw_hours_cy_bc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours_cy_bc` AS select `a`.`idhours_cy_bc` AS `idhours_cy_bc`,`a`.`idengage_entity` AS `idengage_entity`,`b`.`engage_id` AS `engage_id`,`c`.`srv_client` AS `srv_client`,`e`.`file_name` AS `srv_client_fnm`,`d`.`companyname` AS `srv_client_nm`,`c`.`srv_client_add` AS `srv_client_add`,`c`.`srv_client_con` AS `srv_client_con`,`c`.`srv_vendor` AS `srv_vendor`,`g`.`file_name` AS `srv_vendor_fnm`,`f`.`companyname` AS `srv_vendor_nm`,`c`.`srv_ven_add` AS `srv_ven_add`,`c`.`srv_ven_con` AS `srv_ven_con`,`c`.`srv_st_dt` AS `srv_st_dt`,date_format(`c`.`srv_st_dt`,'%m-%d-%y') AS `srv_st_dt_fmt`,`c`.`srv_e_dt` AS `srv_e_dt`,date_format(`c`.`srv_e_dt`,'%m-%d-%y') AS `srv_e_dt_fmt`,`b`.`engage_ref_tab` AS `engage_ref_tab`,`b`.`engage_ref_id` AS `engage_ref_id`,(case when (`b`.`engage_ref_tab` like 'Employee') then `i`.`file_name` when (`b`.`engage_ref_tab` like 'Company') then `k`.`file_name` end) AS `engage_ref_fnm`,(case when (`b`.`engage_ref_tab` like 'Employee') then concat(`h`.`firstname`,' ',`h`.`lastname`) when (`b`.`engage_ref_tab` like 'Company') then `j`.`companyname` end) AS `engage_ref_nm`,`b`.`bill_start_dt` AS `bill_start_dt`,date_format(`b`.`bill_start_dt`,'%m-%d-%y') AS `bill_start_dt_fmt`,`b`.`bill_cycle` AS `bill_cycle`,`b`.`bill_end_dt` AS `bill_end_dt`,ifnull(date_format(`b`.`bill_end_dt`,'%m-%d-%y'),'Billable') AS `bill_end_dt_fmt`,`b`.`bill_st_e_dt` AS `bill_st_e_dt`,ifnull(`b`.`bill_st_e_dt`,timestampdiff(DAY,`b`.`bill_start_dt`,ifnull(`b`.`bill_end_dt`,now()))) AS `bill_st_e_dt_vir`,`b`.`tentative_e_dt` AS `tentative_e_dt`,ifnull(date_format(`b`.`tentative_e_dt`,'%m-%d-%y'),date_format(`b`.`bill_end_dt`,'%m-%d-%y')) AS `tentative_e_dt_fmt`,`b`.`bill_pay_type` AS `bill_pay_type`,`b`.`bill_pay_cy` AS `bill_pay_cy`,`b`.`bill_pay_rate` AS `bill_pay_rate`,`b`.`bill_title` AS `bill_title`,`m`.`lk_val` AS `bill_title_nm`,`b`.`bill_hrs_mon` AS `bill_hrs_mon`,`b`.`bill_pay_rate_xtra` AS `bill_pay_rate_xtra`,`b`.`ts_cycle` AS `ts_cycle`,`b`.`netpay` AS `netpay`,`b`.`allow_inv` AS `allow_inv`,`b`.`show_emp` AS `show_emp`,`a`.`bc_st_dt` AS `bc_st_dt`,date_format(`a`.`bc_st_dt`,'%m-%d-%y') AS `bc_st_dt_fmt`,`a`.`bc_e_dt` AS `bc_e_dt`,date_format(`a`.`bc_e_dt`,'%m-%d-%y') AS `bc_e_dt_fmt`,`a`.`bc_due_dt` AS `bc_due_dt`,date_format(`a`.`bc_due_dt`,'%m-%d-%y') AS `bc_due_dt_fmt`,`a`.`bc_forcast_hr` AS `bc_forcast_hr`,`a`.`bc_actual_hr` AS `bc_actual_hr`,concat(ifnull(`a`.`bc_actual_hr`,'0'),' of ',ifnull(`a`.`bc_forcast_hr`,'0')) AS `bc_actual_hr_forcast_hr`,ifnull(`a`.`bc_hrs_pcnt`,'0.00%') AS `bc_hrs_pcnt`,`a`.`hr_approved` AS `hr_approved`,`a`.`hr_inv` AS `hr_inv`,`a`.`bc_forcast_inv` AS `bc_forcast_inv`,`a`.`bc_actual_inv` AS `bc_actual_inv`,concat(ifnull((case when ((`a`.`bc_actual_inv` > 999) and (`a`.`bc_actual_inv` < 1000000)) then convert(concat((trim(round((`a`.`bc_actual_inv` / 1000),2)) + 0),'K') using latin1) when (`a`.`bc_actual_inv` < 1000) then `a`.`bc_actual_inv` when ((`a`.`bc_actual_inv` > 999999) and (`a`.`bc_actual_inv` < 1000000000)) then convert(concat((trim(round((`a`.`bc_actual_inv` / 1000000),2)) + 0),'M') using latin1) when (`a`.`bc_actual_inv` > 999999999) then convert(concat((trim(round((`a`.`bc_actual_inv` / 1000000000),2)) + 0),'B') using latin1) end),'0.00'),' of ',ifnull((case when ((`a`.`bc_forcast_inv` > 999) and (`a`.`bc_forcast_inv` < 1000000)) then convert(concat((trim(round((`a`.`bc_forcast_inv` / 1000),2)) + 0),'K') using latin1) when (`a`.`bc_forcast_inv` < 1000) then `a`.`bc_forcast_inv` when ((`a`.`bc_forcast_inv` > 999999) and (`a`.`bc_forcast_inv` < 1000000000)) then convert(concat((trim(round((`a`.`bc_forcast_inv` / 1000000),2)) + 0),'M') using latin1) when (`a`.`bc_forcast_inv` > 999999999) then convert(concat((trim(round((`a`.`bc_forcast_inv` / 1000000000),2)) + 0),'B') using latin1) end),'0.00')) AS `bc_actual_inv_forcast_inv`,ifnull(`a`.`bc_inv_pcnt`,'0.00%') AS `bc_inv_pcnt`,`a`.`show_hide` AS `show_hide`,`a`.`updater` AS `updater`,`o`.`file_name` AS `updater_fnm`,ifnull(concat(`n`.`firstname`,' ',`n`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((((((((`hours_cy_bc` `a` left join `engage_entity` `b` on((`a`.`idengage_entity` = `b`.`idengage_entity`))) left join `engage` `c` on((`b`.`engage_id` = `c`.`engage_id`))) left join `company` `d` on((`c`.`srv_client` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`c`.`srv_vendor` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`b`.`engage_ref_id` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `company` `j` on((`b`.`engage_ref_id` = `j`.`comp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `comp_lk_val` `l` on((`b`.`bill_pay_type` = `l`.`idcomp_lk_val`))) left join `comp_lk_val` `m` on((`b`.`bill_title` = `m`.`idcomp_lk_val`))) left join `emp` `n` on((`a`.`updater` = `n`.`emp_id`))) left join `storages` `o` on((`n`.`idstorages` = `o`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours_cy_tc` -- /*!50001 DROP VIEW IF EXISTS `vw_hours_cy_tc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours_cy_tc` AS select `a`.`idhours_cy_tc` AS `idhours_cy_tc`,`a`.`idengage_entity` AS `idengage_entity`,`b`.`engage_id` AS `engage_id`,`c`.`srv_client` AS `srv_client`,`e`.`file_name` AS `srv_client_fnm`,`d`.`companyname` AS `srv_client_nm`,`c`.`srv_client_add` AS `srv_client_add`,`c`.`srv_client_con` AS `srv_client_con`,`c`.`srv_vendor` AS `srv_vendor`,`g`.`file_name` AS `srv_vendor_fnm`,`f`.`companyname` AS `srv_vendor_nm`,`c`.`srv_ven_add` AS `srv_ven_add`,`c`.`srv_ven_con` AS `srv_ven_con`,`c`.`srv_st_dt` AS `srv_st_dt`,date_format(`c`.`srv_st_dt`,'%m-%d-%y') AS `srv_st_dt_fmt`,`c`.`srv_e_dt` AS `srv_e_dt`,date_format(`c`.`srv_e_dt`,'%m-%d-%y') AS `srv_e_dt_fmt`,`b`.`engage_ref_tab` AS `engage_ref_tab`,`b`.`engage_ref_id` AS `engage_ref_id`,(case when (`b`.`engage_ref_tab` like 'Employee') then `i`.`file_name` when (`b`.`engage_ref_tab` like 'Company') then `k`.`file_name` end) AS `engage_ref_fnm`,(case when (`b`.`engage_ref_tab` like 'Employee') then concat(`h`.`firstname`,' ',`h`.`lastname`) when (`b`.`engage_ref_tab` like 'Company') then `j`.`companyname` end) AS `engage_ref_nm`,`b`.`bill_start_dt` AS `bill_start_dt`,date_format(`b`.`bill_start_dt`,'%m-%d-%y') AS `bill_start_dt_fmt`,`b`.`bill_cycle` AS `bill_cycle`,`b`.`bill_end_dt` AS `bill_end_dt`,ifnull(date_format(`b`.`bill_end_dt`,'%m-%d-%y'),'Billable') AS `bill_end_dt_fmt`,`b`.`bill_st_e_dt` AS `bill_st_e_dt`,ifnull(`b`.`bill_st_e_dt`,timestampdiff(DAY,`b`.`bill_start_dt`,ifnull(`b`.`bill_end_dt`,now()))) AS `bill_st_e_dt_vir`,`b`.`tentative_e_dt` AS `tentative_e_dt`,ifnull(date_format(`b`.`tentative_e_dt`,'%m-%d-%y'),date_format(`b`.`bill_end_dt`,'%m-%d-%y')) AS `tentative_e_dt_fmt`,`b`.`bill_pay_type` AS `bill_pay_type`,`b`.`bill_pay_cy` AS `bill_pay_cy`,`b`.`bill_pay_rate` AS `bill_pay_rate`,`b`.`bill_title` AS `bill_title`,`m`.`lk_val` AS `bill_title_nm`,`b`.`bill_hrs_mon` AS `bill_hrs_mon`,`b`.`bill_pay_rate_xtra` AS `bill_pay_rate_xtra`,`b`.`ts_cycle` AS `ts_cycle`,`b`.`netpay` AS `netpay`,`b`.`allow_inv` AS `allow_inv`,`b`.`show_emp` AS `show_emp`,`a`.`tc_st_dt` AS `tc_st_dt`,date_format(`a`.`tc_st_dt`,'%m-%d-%y') AS `tc_st_dt_fmt`,`a`.`tc_e_dt` AS `tc_e_dt`,date_format(`a`.`tc_e_dt`,'%m-%d-%y') AS `tc_e_dt_fmt`,`a`.`tc_due_dt` AS `tc_due_dt`,date_format(`a`.`tc_due_dt`,'%m-%d-%y') AS `tc_due_dt_fmt`,`a`.`tc_forcast_hr` AS `tc_forcast_hr`,`a`.`tc_actual_hr` AS `tc_actual_hr`,concat(ifnull(`a`.`tc_actual_hr`,'0'),' of ',ifnull(`a`.`tc_forcast_hr`,'0')) AS `tc_actual_hr_forcast_hr`,ifnull(`a`.`tc_hrs_pcnt`,'0.00%') AS `tc_hrs_pcnt`,`a`.`hr_approved` AS `hr_approved`,`a`.`show_hide` AS `show_hide`,`a`.`updater` AS `updater`,`o`.`file_name` AS `updater_fnm`,ifnull(concat(`n`.`firstname`,' ',`n`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((((((((`hours_cy_tc` `a` left join `engage_entity` `b` on((`a`.`idengage_entity` = `b`.`idengage_entity`))) left join `engage` `c` on((`b`.`engage_id` = `c`.`engage_id`))) left join `company` `d` on((`c`.`srv_client` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `company` `f` on((`c`.`srv_vendor` = `f`.`comp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`b`.`engage_ref_id` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `company` `j` on((`b`.`engage_ref_id` = `j`.`comp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `comp_lk_val` `l` on((`b`.`bill_pay_type` = `l`.`idcomp_lk_val`))) left join `comp_lk_val` `m` on((`b`.`bill_title` = `m`.`idcomp_lk_val`))) left join `emp` `n` on((`a`.`updater` = `n`.`emp_id`))) left join `storages` `o` on((`n`.`idstorages` = `o`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours_hist` -- /*!50001 DROP VIEW IF EXISTS `vw_hours_hist`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours_hist` AS select `a`.`idhour_hist` AS `idhour_hist`,`a`.`hour_id` AS `hour_id`,`a`.`hr_st_dt` AS `hr_st_dt`,date_format(`a`.`hr_st_dt`,'%m-%d-%y') AS `hr_st_dt_fmt`,dayname(`a`.`hr_st_dt`) AS `hr_st_day`,time_format(`a`.`hr_st_dt`,'%h:%i %p') AS `hr_st_dt_tm_fmt`,`a`.`hr_e_dt` AS `hr_e_dt`,date_format(`a`.`hr_e_dt`,'%m-%d-%y') AS `hr_e_dt_fmt`,dayname(`a`.`hr_e_dt`) AS `hr_e_day`,time_format(`a`.`hr_e_dt`,'%h:%i %p') AS `hr_e_dt_tm_fmt`,concat(date_format(`a`.`hr_st_dt`,'%b-%d %a'),' ',time_format(`a`.`hr_st_dt`,'%h:%i %p'),' To',' ',time_format(`a`.`hr_e_dt`,'%h:%i %p')) AS `hr_st_e_dt_tm_fmt`,`a`.`off_time` AS `off_time`,concat(time_format(`a`.`off_time`,'%H'),':',format((time_format(`a`.`off_time`,'%i') * 1.67),0)) AS `off_tm_nm`,`a`.`hr_tol` AS `hr_tol`,concat(time_format(`a`.`hr_tol`,'%H'),':',format((time_format(`a`.`hr_tol`,'%i') * 1.67),0)) AS `hr_tol_nm`,`a`.`iddev_apps` AS `iddev_apps`,ifnull(`b`.`app_name`,'No Apex') AS `app_nm`,`a`.`dev_est` AS `dev_est`,ifnull(`a`.`dev_est`,'No Glacier') AS `dev_est_nm`,ifnull(`c`.`dev_est_smry`,'No Glacier Summary') AS `dev_est_smry`,`a`.`dev_est_reqs` AS `dev_est_reqs`,ifnull(`a`.`dev_est_reqs`,'No Cubes') AS `dev_est_reqs_nm`,ifnull(`d`.`req_desc`,'No Cube Description') AS `req_desc`,concat('Apex: ',ifnull(`b`.`app_name`,'No Apex'),', ','Glacier ID: ',convert(ifnull(`a`.`dev_est`,'No Glacier') using latin1),', ','Cube Id: ',convert(ifnull(`a`.`dev_est_reqs`,'No Cubes') using latin1),', ','Cube Desc: ',ifnull(`d`.`req_desc`,'No Cube Description')) AS `agile_details`,`a`.`hrs_type` AS `hrs_type`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`f`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_nm`,`a`.`iplook_ip_addr` AS `iplook_ip_addr`,`g`.`ip_address` AS `ip_address`,`g`.`domain_nm` AS `domain_nm`,ifnull(`g`.`ip_contry`,'No Country') AS `ip_contry`,ifnull(`g`.`ip_state`,'No State') AS `ip_state`,`g`.`ip_city` AS `ip_city`,`g`.`ip_post_code` AS `ip_post_code`,`a`.`approver` AS `approver`,`i`.`file_name` AS `approver_fnm`,if(isnull(`a`.`approver`),'Admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `approver_nm`,`a`.`summary` AS `summary` from ((((((((`hours_hist` `a` left join `dev_apps` `b` on((`a`.`iddev_apps` = `b`.`iddev_apps`))) left join `dev_est` `c` on((`a`.`dev_est` = `c`.`iddev_est`))) left join `dev_est_reqs` `d` on((`a`.`dev_est_reqs` = `d`.`iddev_est_reqs`))) left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `look_ip_addr` `g` on((`a`.`iplook_ip_addr` = `g`.`idlook_ip_addr`))) left join `emp` `h` on((`a`.`approver` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hours_time` -- /*!50001 DROP VIEW IF EXISTS `vw_hours_time`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hours_time` AS select `a`.`timecard_id` AS `timecard_id`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `emp_nm`,`a`.`comp_id` AS `comp_id`,`e`.`file_name` AS `comp_fnm`,`d`.`companyname` AS `comp_nm`,`a`.`timefrom_dt` AS `timefrom_dt`,date_format(`a`.`timefrom_dt`,'%m-%d-%y') AS `timefrom_dt_fmt`,date_format(`a`.`timefrom_dt`,'%Y') AS `timefrom_dt_yr`,date_format(`a`.`timefrom_dt`,'%M') AS `timefrom_dt_mon`,`a`.`timeto_dt` AS `timeto_dt`,date_format(`a`.`timeto_dt`,'%m-%d-%y') AS `timeto_dt_fmt`,`a`.`timefrom_to_day` AS `timefrom_to_day`,`a`.`bill_hrs` AS `bill_hrs`,`a`.`unbill_hrs` AS `unbill_hrs`,`a`.`total_hrs` AS `total_hrs`,`a`.`validate_dt` AS `validate_dt`,if(isnull(`a`.`validate_dt`),'Pending',convert(date_format(`a`.`validate_dt`,'%m-%d-%y') using utf8mb4)) AS `validate_dt_fmt`,if(isnull(`a`.`validate_dt`),'No','Yes') AS `validate_dt_cur_stat`,`a`.`validate_by` AS `validate_by`,`g`.`file_name` AS `validate_by_fnm`,if(isnull(`a`.`validate_by`),'Not Validated',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `validate_by_nm`,`a`.`summary` AS `summary`,`a`.`idstorages` AS `idstorages`,if(isnull(`a`.`idstorages`),'N','Y') AS `idstorages_cur_stat`,`n`.`file_name` AS `file_name`,`n`.`file_ser_name` AS `file_ser_name`,`n`.`file_size` AS `file_size`,`n`.`owner_id` AS `owner_id`,`p`.`file_name` AS `owner_fnm`,if(isnull(`n`.`owner_id`),'No Owner',concat(trim(ifnull(`o`.`firstname`,'')),' ',trim(ifnull(nullif(`o`.`middlename`,''),'')),convert((case when ((`o`.`middlename` is not null) and (`o`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`o`.`lastname`,'')))) AS `owner_nm`,`n`.`ext_type` AS `ext_type`,`n`.`public` AS `public`,`n`.`self_view` AS `self_view`,`n`.`smry` AS `smry`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt`,`a`.`updated_by` AS `updated_by`,`i`.`file_name` AS `updated_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updated_by_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`m`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`l`.`firstname`,' ',`l`.`lastname`)) AS `archv_by_nm` from (((((((((((((((`hours_time` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `company` `d` on((`a`.`comp_id` = `d`.`comp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`validate_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updated_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`archv_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `storages` `n` on((`a`.`idstorages` = `n`.`idstorages`))) left join `emp` `o` on((`n`.`owner_id` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_audit` AS select `a`.`idhr_audit` AS `idhr_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`hr_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_meeting` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_meeting`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_meeting` AS select `a`.`idhr_meeting` AS `idhr_meeting`,`a`.`st_tm_est` AS `st_tm_est`,`a`.`e_tm_est` AS `e_tm_est`,ifnull(concat('From',' ',time_format(`a`.`st_tm_est`,'%h:%i %p'),' ','To',' ',time_format(`a`.`e_tm_est`,'%h:%i %p')),'None') AS `est_meeting_time`,`a`.`st_tm_ist` AS `st_tm_ist`,`a`.`e_tm_ist` AS `e_tm_ist`,ifnull(concat('From',' ',time_format(`a`.`st_tm_ist`,'%h:%i %p'),' ','To',' ',time_format(`a`.`e_tm_ist`,'%h:%i %p')),'None') AS `ist_meeting_time`,`a`.`description` AS `description`,`a`.`attendances` AS `attendants`,`a`.`scrum_master` AS `scrum_master`,ifnull(time_format(`a`.`last_updated`,'%h:%i %p'),'Never') AS `last_updated`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `updater` from (`hr_meeting` `a` left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_policy` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_policy`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_policy` AS select `a`.`idhr_policy` AS `idhr_policy`,`a`.`lk_policy` AS `lk_policy`,`a`.`lk_policy_desc` AS `lk_policy_desc`,`a`.`lk_disp_id` AS `lk_disp_id`,`a`.`lk_paren_tag_id` AS `lk_paren_tag_id`,`a`.`updater` AS `updater`,ifnull(`b`.`fullname`,'Admin') AS `updater_nm`,`a`.`last_updated` AS `last_updated`,ifnull(date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p'),'Never') AS `last_updated_fmt`,concat(ifnull(`b`.`fullname`,'Admin'),convert(ifnull(date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p'),'Never') using latin1)) AS `last_updated_by`,`a`.`lk_policy_text` AS `lk_policy_text` from (`hr_policy` `a` left join `vw_emp` `b` on((`a`.`updater` = `b`.`emp_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_recruit_lk` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_recruit_lk` AS select `a`.`idhr_recruit_lk_val` AS `idhr_recruit_lk_val`,`a`.`idhr_recruit_lk` AS `idhr_recruit_lk`,`a`.`lk_val` AS `hr_val`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idhr_recruit_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`hr_recruit_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `idhr_recruit_lk_val`,`a`.`idhr_recruit_lk` AS `idhr_recruit_lk`,`a`.`lk_nm` AS `lk_nm`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`hr_recruit_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_recruit_lk_tag` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk_tag`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_recruit_lk_tag` AS select `a`.`idhr_recruit_lk_tag` AS `idhr_recruit_lk_tag`,`a`.`lk_tag` AS `lk_tag`,`a`.`lk_tag_desc` AS `lk_tag_desc`,`a`.`lk_disp_id` AS `lk_disp_id`,`a`.`lk_parent_tag_id` AS `lk_parent_tag_id`,`a`.`updater` AS `updater`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_fmt`,`s`.`file_name` AS `updater_file_name`,`a`.`last_updated` AS `last_updated`,if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) AS `last_updated_fmt`,concat(if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)),' ',convert(if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by` from ((`hr_recruit_lk_tag` `a` left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `s` on((`e`.`idstorages` = `s`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_hr_recruit_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_hr_recruit_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_hr_recruit_lk_val` AS select `a`.`idhr_recruit_lk_val` AS `idhr_recruit_lk_val`,NULL AS `idhr_recruit_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `hr_val`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idhr_recruit_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`hr_recruit_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `NULL`,`a`.`idhr_recruit_lk` AS `idhr_recruit_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`hr_recruit_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_audit` AS select `a`.`idimmi_audit` AS `idimmi_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`immi_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_lk_val` AS select `a`.`idimmi_lk_val` AS `idimmi_lk_val`,NULL AS `idimmi_lk`,`a`.`lk_val` AS `lk_val`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`immi_form` AS `immi_form`,`a`.`disp_order` AS `disp_order`,`a`.`idimmi_lk` AS `parent_id`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,`a`.`lk_parent_val_id` AS `lk_parent_val_id`,`d`.`lk_val` AS `parent_lk_val`,`d`.`lk_val_desc` AS `parent_lk_val_desc`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((`immi_lk_val` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `immi_lk_val` `d` on((`d`.`idimmi_lk_val` = `a`.`lk_parent_val_id`))) union all select NULL AS `NULL`,`a`.`idimmi_lk` AS `idimmi_lk`,`a`.`lk_nm` AS `lk_nm`,`a`.`lk_nm_desc` AS `lk_nm_desc`,NULL AS `NULL`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,NULL AS `NULL`,NULL AS `NULL`,NULL AS `NULL`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`immi_lk` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_lk_wrk_flow` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_lk_wrk_flow`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_lk_wrk_flow` AS select `a`.`idimmi_lk_wrk_flow` AS `idimmi_lk_wrk_flow`,`a`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`id_wrk_flow` AS `id_wrk_flow`,`a`.`wrk_flow_desc` AS `wrk_flow_desc`,`a`.`id_wrk_flow_parent` AS `id_wrk_flow_parent`,`a`.`look_restart` AS `look_restart`,`a`.`look_initial` AS `look_initial`,`a`.`disp_order` AS `disp_order`,`a`.`updater` AS `updater`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `updater_fmt`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by`,`b`.`lk_val` AS `lk_val` from ((`immi_lk_wrk_flow` `a` left join `immi_lk_val` `b` on((`a`.`id_wrk_flow` = `b`.`idimmi_lk_val`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_qry` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_qry`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_qry` AS select `a`.`idimmi_qry` AS `idimmi_qry`,`a`.`disp_order` AS `disp_order`,`a`.`immi_desc` AS `immi_desc`,`a`.`immi_desc_detail` AS `immi_desc_detail`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_by` AS `del_by`,`e`.`file_name` AS `del_by_fnm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`g`.`file_name` AS `archv_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from ((((((`immi_qry` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`a`.`del_by` = `d`.`emp_id`))) left join `storages` `e` on((`e`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`a`.`archv_by` = `f`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt` AS select `a`.`idimmi_rcpt` AS `idimmi_rcpt`,`a`.`comp_id` AS `comp_id`,`i`.`file_name` AS `comp_fnm`,`h`.`companyname` AS `comp_nm`,`a`.`rcpt_no` AS `rcpt_no`,`a`.`rcpt_par_cnt` AS `rcpt_par_cnt`,ifnull(`a`.`rcpt_par_cnt`,'None') AS `rcpt_par_cnt_nm`,`a`.`rcpt_ch_cnt` AS `rcpt_ch_cnt`,ifnull(`a`.`rcpt_ch_cnt`,'None') AS `rcpt_ch_cnt_nm`,`a`.`rcpt_type` AS `rcpt_type`,`m`.`lk_val` AS `rcpt_type_nm`,`a`.`rcpt_type_sub` AS `rcpt_type_sub`,ifnull(`v`.`lk_val`,'No Category') AS `rcpt_type_sub_nm`,`a`.`rcpt_loc_cnt` AS `rcpt_loc_cnt`,ifnull(`a`.`rcpt_loc_cnt`,'None') AS `rcpt_loc_cnt_nm`,`a`.`rcpt_address` AS `rcpt_address`,ifnull(`a`.`rcpt_address`,'No Address') AS `rcpt_address_nm`,`a`.`emp_id` AS `emp_id`,`c`.`file_name` AS `emp_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `emp_nm`,`a`.`filed_dt` AS `filed_dt`,date_format(`a`.`filed_dt`,'%m-%d-%y') AS `filed_dt_fmt`,date_format(`a`.`filed_dt`,'%Y') AS `filed_dt_yr`,date_format(`a`.`filed_dt`,'%M') AS `filed_dt_mon`,`a`.`ad_title` AS `ad_title`,ifnull(`n`.`lk_val`,'No Title') AS `ad_title_nm`,`a`.`occ_code` AS `occ_code`,ifnull(`p`.`lk_val`,'No Occ Code') AS `occ_code_nm`,`a`.`skill_level` AS `skill_level`,ifnull(`q`.`lk_val`,'None') AS `skill_level_nm`,`a`.`from_dt` AS `from_dt`,date_format(`a`.`from_dt`,'%m-%d-%y') AS `from_dt_fmt`,date_format(`a`.`from_dt`,'%Y') AS `from_dt_yr`,date_format(`a`.`from_dt`,'%M') AS `from_dt_mon`,`a`.`to_dt` AS `to_dt`,date_format(`a`.`to_dt`,'%m-%d-%y') AS `to_dt_fmt`,date_format(`a`.`to_dt`,'%Y') AS `to_dt_yr`,date_format(`a`.`to_dt`,'%M') AS `to_dt_mon`,`a`.`from_to_dt_days` AS `from_to_dt_days`,ifnull(`a`.`from_to_dt_days`,timestampdiff(DAY,`a`.`from_dt`,now())) AS `from_to_dt_days_vir`,concat('From: ',if(isnull(`a`.`from_dt`),'No From',date_format(`a`.`from_dt`,'%m-%d-%y')),', To: ',if(isnull(`a`.`to_dt`),'No To',date_format(`a`.`to_dt`,'%m-%d-%y')),', Days: ',ifnull(`a`.`from_to_dt_days`,timestampdiff(DAY,`a`.`from_dt`,now()))) AS `from_to_dt_days_combo`,`a`.`valid_days` AS `valid_days`,ifnull(`a`.`valid_days`,'No Grace') AS `valid_days_nm`,`a`.`expire_dt` AS `expire_dt`,date_format(`a`.`expire_dt`,'%m-%d-%y') AS `expire_dt_fmt`,date_format(`a`.`expire_dt`,'%Y-%M') AS `expire_dt_fmt2`,(case when (`a`.`expire_dt` < now()) then date_format(`a`.`expire_dt`,'%m-%d-%y') when (`a`.`expire_dt` > now()) then timestampdiff(DAY,now(),`a`.`expire_dt`) end) AS `expire_dt_no_days`,(case when isnull(`a`.`expire_dt`) then 'No Expiry' when (`a`.`expire_dt` < now()) then 'Yes' when (`a`.`expire_dt` > now()) then 'No' end) AS `expire_dt_cur_stat`,`a`.`education` AS `education`,ifnull(`r`.`lk_val`,'Not Entered') AS `education_nm`,`a`.`exp_yr` AS `exp_yr`,ifnull(`a`.`exp_yr`,'No Experience') AS `exp_yr_nm`,`a`.`sal_type` AS `sal_type`,ifnull(`a`.`sal_type`,'Not Mentioned') AS `sal_type_nm`,`a`.`sal_amt` AS `sal_amt`,`j`.`lk_val` AS `sal_amt_nm`,`a`.`assigned_to` AS `assigned_to`,`y`.`file_name` AS `assigned_to_fnm`,if(isnull(`a`.`assigned_to`),'Admin',concat(`x`.`firstname`,' ',`x`.`lastname`)) AS `assigned_to_nm`,`a`.`idimmi_lk_wrk_flow` AS `idimmi_lk_wrk_flow`,ifnull(`w`.`wrk_flow_nm`,'No Workflow') AS `idimmi_lk_wrk_flow_nm`,`a`.`immi_stat_st_dt` AS `immi_stat_st_dt`,date_format(`a`.`immi_stat_st_dt`,'%m-%d-%y') AS `immi_stat_st_dt_fmt`,`a`.`immi_stat_e_est_dt` AS `immi_stat_e_est_dt`,date_format(`a`.`immi_stat_e_est_dt`,'%m-%d-%y') AS `immi_stat_e_est_dt_fmt`,`a`.`immi_stat_st_e_est_dt` AS `immi_stat_st_e_est_dt`,ifnull(`a`.`immi_stat_st_e_est_dt`,timestampdiff(DAY,`a`.`immi_stat_st_dt`,now())) AS `immi_stat_st_e_est_dt_vir`,`a`.`immi_stat_e_real_dt` AS `immi_stat_e_real_dt`,date_format(`a`.`immi_stat_e_real_dt`,'%m-%d-%y') AS `immi_stat_e_real_dt_fmt`,`a`.`immi_stat_st_e_real_dt` AS `immi_stat_st_e_real_dt`,timestampdiff(MINUTE,`a`.`immi_stat_st_dt`,`a`.`immi_stat_e_real_dt`) AS `immi_stat_st_e_real_dt_vir`,if(isnull(`a`.`immi_stat_e_real_dt`),'Yes','No') AS `immi_stat_st_e_real_dt_cur_stat`,(case when (`a`.`immi_stat_e_est_dt` = `a`.`immi_stat_e_real_dt`) then 'On Time' when (`a`.`immi_stat_e_est_dt` > `a`.`immi_stat_e_real_dt`) then 'Early' when (`a`.`immi_stat_e_est_dt` < `a`.`immi_stat_e_real_dt`) then 'Due' end) AS `immi_stat_st_e_dt_cur_est`,`a`.`rcpt_status` AS `rcpt_status`,ifnull(`s`.`lk_val`,'No Status') AS `rcpt_status_nm`,`a`.`immi_stat_cnt` AS `immi_stat_cnt`,`a`.`immi_summary` AS `immi_summary`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`updater` AS `updater`,`u`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`t`.`firstname`,' ',`t`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_by` AS `del_by`,`e`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`d`.`firstname`,' ',`d`.`lastname`) end) AS `del_by_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`g`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`f`.`firstname`,' ',`f`.`lastname`) end) AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon` from (((((((((((((((((((((`immi_rcpt` `a` left join `emp` `b` on((`a`.`emp_id` = `b`.`emp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`a`.`del_by` = `d`.`emp_id`))) left join `storages` `e` on((`e`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`a`.`archv_by` = `f`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) left join `company` `h` on((`h`.`comp_id` = `a`.`comp_id`))) left join `storages` `i` on((`i`.`idstorages` = `h`.`idstorages`))) left join `immi_lk_val` `j` on((`j`.`idimmi_lk_val` = `a`.`sal_amt`))) left join `immi_lk_val` `m` on((`m`.`idimmi_lk_val` = `a`.`rcpt_type`))) left join `immi_lk_val` `n` on((`n`.`idimmi_lk_val` = `a`.`ad_title`))) left join `immi_lk_val` `p` on((`p`.`idimmi_lk_val` = `a`.`occ_code`))) left join `immi_lk_val` `q` on((`q`.`idimmi_lk_val` = `a`.`skill_level`))) left join `immi_lk_val` `r` on((`r`.`idimmi_lk_val` = `a`.`education`))) left join `immi_lk_val` `s` on((`s`.`idimmi_lk_val` = `a`.`rcpt_status`))) left join `emp` `t` on((`t`.`emp_id` = `a`.`updater`))) left join `storages` `u` on((`u`.`idstorages` = `t`.`idstorages`))) left join `immi_lk_val` `v` on((`a`.`rcpt_type_sub` = `v`.`idimmi_lk_val`))) left join `immi_lk_wrk_flow` `w` on((`a`.`idimmi_lk_wrk_flow` = `w`.`idimmi_lk_wrk_flow`))) left join `emp` `x` on((`a`.`assigned_to` = `x`.`emp_id`))) left join `storages` `y` on((`x`.`idstorages` = `y`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt_addr` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_addr`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt_addr` AS select `a`.`idimmi_rcpt_addr` AS `idimmi_rcpt_addr`,`a`.`idimmi_rcpt` AS `idimmi_rcpt`,`a`.`look_street_no_id` AS `look_street_no_id`,`b`.`look_street_id` AS `look_street_id`,`b`.`look_street_no` AS `look_street_no`,`c`.`postal_id` AS `postal_id`,`c`.`street_name` AS `street_name`,`c`.`street_type` AS `street_type`,`d`.`lk_val` AS `street_type_nm`,`e`.`city_id` AS `city_id`,`e`.`zip_code` AS `zip_code`,`g`.`state_id` AS `state_id`,`f`.`city_name` AS `city_name`,`j`.`county_district_city_nm` AS `county_district_city_nm`,`g`.`country_id` AS `country_id`,`g`.`state_name` AS `state_name`,`h`.`con_name` AS `con_name`,`a`.`property_type` AS `property_type`,`i`.`lk_val` AS `property_type_nm`,`a`.`suite_no` AS `suite_no`,if(isnull(`a`.`look_street_no_id`),'No Address',concat(`b`.`look_street_no`,' ',`c`.`street_name`,' ',`d`.`lk_val`,', ',if(isnull(`a`.`property_type`),'',`i`.`lk_val`),' ',ifnull(`a`.`suite_no`,''),' ',`f`.`city_name`,' ',`j`.`county_district_city_nm`,' ',`g`.`state_name`,' ',`e`.`zip_code`,' ','(',`h`.`con_name`,')')) AS `addresses`,`a`.`tm_zn` AS `tm_zn`,`a`.`start_tm` AS `start_tm`,time_format(`a`.`start_tm`,' %h:%i %p') AS `start_tm_fmt`,`a`.`end_tm` AS `end_tm`,time_format(`a`.`end_tm`,' %h:%i %p') AS `end_tm_fmt`,`a`.`hrs_tm` AS `hrs_tm`,concat(convert(time_format(`a`.`hrs_tm`,'%H') using utf8mb4),':',convert(format((time_format(`a`.`hrs_tm`,'%i') * 1.67),0) using utf8mb4)) AS `hrs_tm_nm`,`a`.`off_time` AS `off_time`,concat(convert(time_format(`a`.`off_time`,'%H') using utf8mb4),':',convert(format((time_format(`a`.`off_time`,'%i') * 1.67),0) using utf8mb4)) AS `off_time_nm`,concat(convert(if(isnull(`a`.`start_tm`),'Not Started',convert(date_format(`a`.`start_tm`,'%h:%i %p') using utf8mb4)) using utf8),' ',' To ',convert(if(isnull(`a`.`end_tm`),'Not Ended',convert(date_format(`a`.`end_tm`,'%h:%i %p') using utf8mb4)) using utf8),' ',convert(ifnull(`a`.`tm_zn`,'No Time Zone') using utf8),' ',' - Break - ',convert(if(isnull(`a`.`off_time`),'No Break',concat(convert(time_format(`a`.`off_time`,'%H') using utf8mb4),':',convert(format((time_format(`a`.`off_time`,'%i') * 1.67),0) using utf8mb4))) using utf8),' ',' - Hours - ',' ',convert(if(isnull(`a`.`hrs_tm`),'Not Worked',concat(convert(time_format(`a`.`hrs_tm`,'%H') using utf8mb4),':',convert(format((time_format(`a`.`hrs_tm`,'%i') * 1.67),0) using utf8mb4))) using utf8)) AS `days_schedule`,`a`.`days` AS `days`,`a`.`day_cy` AS `day_cy`,concat(convert(ifnull(`a`.`days`,'-') using latin1),' Per ',ifnull(`a`.`day_cy`,'-')) AS `day_cy_nm`,`a`.`day_pcnt` AS `day_pcnt` from (((((((((`immi_rcpt_addr` `a` left join `look_street_no` `b` on((`a`.`look_street_no_id` = `b`.`look_street_no_id`))) left join `look_street` `c` on((`b`.`look_street_id` = `c`.`look_street_id`))) left join `feature_lk_val` `d` on((`c`.`street_type` = `d`.`idfeature_lk_val`))) left join `look_postal` `e` on((`c`.`postal_id` = `e`.`postal_id`))) left join `look_city` `f` on((`e`.`city_id` = `f`.`city_id`))) left join `look_county_district` `j` on((`f`.`idlook_county_district` = `j`.`idlook_county_district`))) left join `look_state` `g` on((`j`.`state_id` = `g`.`state_id`))) left join `look_country` `h` on((`g`.`country_id` = `h`.`country_id`))) left join `feature_lk_val` `i` on((`a`.`property_type` = `i`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt_doc` AS select `a`.`idimmi_rcpt_doc` AS `idimmi_rcpt_doc`,`a`.`idimmi_rcpt` AS `idimmi_rcpt`,`b`.`comp_id` AS `comp_id`,`b`.`comp_fnm` AS `comp_fnm`,`b`.`comp_nm` AS `comp_nm`,`b`.`rcpt_type` AS `rcpt_type`,`b`.`rcpt_type_nm` AS `rcpt_type_nm`,`b`.`rcpt_no` AS `rcpt_no`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((((((`immi_rcpt_doc` `a` left join `vw_immi_rcpt` `b` on((`b`.`idimmi_rcpt` = `a`.`idimmi_rcpt`))) left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt_parent` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_parent`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt_parent` AS select `a`.`idimmi_rcpt_parent` AS `idimmi_rcpt_parent`,`a`.`rcpt_parent_id` AS `rcpt_parent_id`,`b`.`comp_id` AS `comp_id_par`,`b`.`comp_fnm` AS `comp_fnm_par`,`b`.`comp_nm` AS `comp_nm_par`,`b`.`rcpt_loc_cnt` AS `rcpt_loc_cnt_par`,`b`.`rcpt_loc_cnt_nm` AS `rcpt_loc_cnt_nm_par`,`b`.`rcpt_address` AS `rcpt_address_par`,`b`.`rcpt_address_nm` AS `rcpt_address_nm_par`,`b`.`rcpt_type` AS `rcpt_type_par`,`b`.`rcpt_type_nm` AS `rcpt_type_nm_par`,`b`.`rcpt_type_sub` AS `rcpt_type_sub_par`,`b`.`rcpt_type_sub_nm` AS `rcpt_type_sub_nm_par`,`b`.`rcpt_no` AS `rcpt_no_par`,`b`.`emp_id` AS `emp_id_par`,`b`.`emp_fnm` AS `emp_fnm_par`,`b`.`emp_nm` AS `emp_nm_par`,`b`.`filed_dt` AS `filled_dt_par`,`b`.`filed_dt_fmt` AS `filled_dt_fmt_par`,`b`.`ad_title` AS `ad_title_par`,`b`.`ad_title_nm` AS `ad_title_nm_par`,`b`.`occ_code` AS `occ_code_par`,`b`.`occ_code_nm` AS `occ_code_nm_par`,`b`.`skill_level` AS `skill_level_par`,`b`.`skill_level_nm` AS `skill_level_nm_par`,`b`.`from_dt` AS `from_dt_par`,`b`.`from_dt_fmt` AS `from_dt_fmt_par`,`b`.`to_dt` AS `to_dt_par`,`b`.`to_dt_fmt` AS `to_dt_fmt_par`,`b`.`from_to_dt_days` AS `from_to_dt_days_par`,ifnull(`b`.`from_to_dt_days`,timestampdiff(DAY,`b`.`from_dt`,now())) AS `from_to_dt_days_vir_par`,`b`.`valid_days` AS `valid_days_par`,ifnull(`b`.`valid_days`,'No Grace') AS `valid_days_nm_par`,`b`.`expire_dt` AS `expire_dt_par`,`b`.`expire_dt_fmt` AS `expire_dt_fmt_par`,`b`.`education` AS `education_par`,`b`.`education_nm` AS `education_nm_par`,`b`.`exp_yr` AS `exp_yr_par`,`b`.`exp_yr_nm` AS `exp_yr_nm_par`,`b`.`sal_type` AS `sal_type_par`,`b`.`sal_type_nm` AS `sal_type_nm_par`,`b`.`sal_amt` AS `sal_amt_par`,`b`.`sal_amt_nm` AS `sal_amt_nm_par`,`a`.`rcpt_child_id` AS `rcpt_child_id`,`c`.`comp_id` AS `comp_id_ch`,`c`.`comp_fnm` AS `comp_fnm_ch`,`c`.`comp_nm` AS `comp_nm_ch`,`c`.`rcpt_type` AS `rcpt_type_ch`,`c`.`rcpt_type_nm` AS `rcpt_type_nm_ch`,`c`.`rcpt_type_sub` AS `rcpt_type_sub_ch`,`c`.`rcpt_type_sub_nm` AS `rcpt_type_sub_nm_ch`,`c`.`rcpt_loc_cnt` AS `rcpt_loc_cnt_ch`,`c`.`rcpt_loc_cnt_nm` AS `rcpt_loc_cnt_nm_ch`,`c`.`rcpt_address` AS `rcpt_address_ch`,`c`.`rcpt_address_nm` AS `rcpt_address_nm_ch`,`c`.`rcpt_no` AS `rcpt_no_ch`,`c`.`emp_id` AS `emp_id_ch`,`c`.`emp_fnm` AS `emp_fnm_ch`,`c`.`emp_nm` AS `emp_nm_ch`,`c`.`filed_dt` AS `filled_dt_ch`,`c`.`filed_dt_fmt` AS `filled_dt_fmt_ch`,`c`.`ad_title` AS `ad_title_ch`,`c`.`ad_title_nm` AS `ad_title_nm_ch`,`c`.`occ_code` AS `occ_code_ch`,`c`.`occ_code_nm` AS `occ_code_nm_ch`,`c`.`skill_level` AS `skill_level_ch`,`c`.`skill_level_nm` AS `skill_level_nm_ch`,`c`.`from_dt` AS `from_dt_ch`,`c`.`from_dt_fmt` AS `from_dt_fmt_ch`,`c`.`to_dt` AS `to_dt_ch`,`c`.`to_dt_fmt` AS `to_dt_fmt_ch`,`c`.`from_to_dt_days` AS `from_to_dt_days_ch`,ifnull(`c`.`from_to_dt_days`,timestampdiff(DAY,`c`.`from_dt`,now())) AS `from_to_dt_days_vir_ch`,`c`.`valid_days` AS `valid_days_ch`,`c`.`valid_days_nm` AS `valid_days_nm_ch`,`c`.`expire_dt` AS `expire_dt_ch`,`c`.`expire_dt_fmt` AS `expire_dt_fmt_ch`,`c`.`education` AS `education_ch`,`c`.`education_nm` AS `education_nm_ch`,`c`.`exp_yr` AS `exp_yr_ch`,`c`.`exp_yr_nm` AS `exp_yr_nm_ch`,`c`.`sal_type` AS `sal_type_ch`,`c`.`sal_type_nm` AS `sal_type_nm_ch`,`c`.`sal_amt` AS `sal_amt_ch`,`c`.`sal_amt_nm` AS `sal_amt_nm_ch` from ((`immi_rcpt_parent` `a` left join `vw_immi_rcpt` `b` on((`b`.`idimmi_rcpt` = `a`.`rcpt_parent_id`))) left join `vw_immi_rcpt` `c` on((`c`.`idimmi_rcpt` = `a`.`rcpt_child_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt_stat` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_stat`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt_stat` AS select `a`.`idimmi_rcpt_stat` AS `idimmi_rcpt_stat`,`a`.`idimmi_rcpt` AS `idimmi_rcpt`,`h`.`comp_id` AS `comp_id`,`h`.`comp_fnm` AS `comp_fnm`,`h`.`comp_nm` AS `comp_nm`,`h`.`rcpt_type` AS `rcpt_type`,`h`.`rcpt_type_nm` AS `rcpt_type_nm`,`h`.`rcpt_no` AS `rcpt_no`,`a`.`rcpt_status` AS `rcpt_status`,`i`.`lk_val` AS `rcpt_status_nm`,`a`.`stat_st_dt` AS `stat_st_dt`,if(isnull(`a`.`stat_st_dt`),'Not Started',date_format(`a`.`stat_st_dt`,'%m-%d-%y %h:%i %p')) AS `stat_st_dt_fmt`,date_format(`a`.`stat_st_dt`,'%Y') AS `stat_st_dt_yr`,date_format(`a`.`stat_st_dt`,'%M') AS `stat_st_dt_mon`,`a`.`stat_e_dt` AS `stat_e_dt`,(case when (`a`.`stat_e_dt` is not null) then date_format(`a`.`stat_e_dt`,'%m-%d-%y %h:%i %p') when (isnull(`a`.`stat_e_dt`) and isnull(`a`.`stat_st_dt`)) then 'Not Started' when (isnull(`a`.`stat_e_dt`) and (`a`.`stat_st_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_fmt`,(case when (`a`.`stat_e_dt` is not null) then date_format(`a`.`stat_e_dt`,'%Y') when (isnull(`a`.`stat_e_dt`) and isnull(`a`.`stat_st_dt`)) then 'Not Started' when (isnull(`a`.`stat_e_dt`) and (`a`.`stat_st_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_yr`,(case when (`a`.`stat_e_dt` is not null) then date_format(`a`.`stat_e_dt`,'%M') when (isnull(`a`.`stat_e_dt`) and isnull(`a`.`stat_st_dt`)) then 'Not Started' when (isnull(`a`.`stat_e_dt`) and (`a`.`stat_st_dt` is not null)) then 'In Progress' end) AS `stat_e_dt_mon`,`a`.`stat_st_e_dt` AS `stat_st_e_dt`,timestampdiff(MINUTE,`a`.`stat_st_dt`,`a`.`stat_e_dt`) AS `stat_st_e_dt_vir`,`h`.`rcpt_status` AS `cur_stat`,`h`.`rcpt_status_nm` AS `cur_stat_nm`,`h`.`immi_stat_st_dt` AS `cur_stat_st_dt`,`h`.`immi_stat_st_dt_fmt` AS `cur_stat_st_dt_fmt`,`h`.`immi_stat_e_real_dt` AS `cur_stat_e_real_dt`,`h`.`immi_stat_e_real_dt_fmt` AS `cur_stat_e_real_dt_fmt`,`h`.`immi_stat_st_e_real_dt` AS `cur_stat_st_e_real_dt`,`h`.`immi_stat_st_e_real_dt_vir` AS `cur_stat_st_e_real_dt_vir`,`a`.`stat_smry` AS `stat_smry`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`del_by` AS `del_by`,`e`.`file_name` AS `del_by_fnm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`g`.`file_name` AS `archv_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from ((((((((`immi_rcpt_stat` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`a`.`del_by` = `d`.`emp_id`))) left join `storages` `e` on((`e`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`a`.`archv_by` = `f`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) left join `vw_immi_rcpt` `h` on((`h`.`idimmi_rcpt` = `a`.`idimmi_rcpt`))) left join `immi_lk_val` `i` on((`i`.`idimmi_lk_val` = `a`.`rcpt_status`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_immi_rcpt_stat_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_immi_rcpt_stat_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_immi_rcpt_stat_doc` AS select `a`.`idimmi_rcpt_stat_doc` AS `idimmi_rcpt_stat_doc`,`a`.`idimmi_rcpt_stat` AS `idimmi_rcpt_stat`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`immi_rcpt_stat_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_inv` -- /*!50001 DROP VIEW IF EXISTS `vw_inv`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_inv` AS select `a`.`idinv` AS `idinv`,`a`.`from_ref_tab` AS `from_ref_tab`,`a`.`from_ref_id` AS `from_ref_id`,(case when (`a`.`from_ref_tab` like 'comp') then `c`.`companyname` when (`a`.`from_ref_tab` like 'emp') then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `from_nm`,(case when (`a`.`from_ref_tab` like 'comp') then `n`.`file_name` when (`a`.`from_ref_tab` like 'emp') then `m`.`file_name` end) AS `from_fnm`,`a`.`all_contacts` AS `all_contacts`,`a`.`from_look_street_no_id` AS `from_look_street_no_id`,`f`.`addresses` AS `from_address`,`a`.`from_suite_no` AS `from_suite_no`,`a`.`from_address_type` AS `from_address_type`,`h`.`lk_val` AS `from_address_type_nm`,`a`.`inv_phone` AS `inv_phone`,`a`.`inv_email` AS `inv_email`,`a`.`inv_pre_no` AS `inv_pre_no`,`a`.`invoice_no` AS `invoice_no`,`a`.`inv_post_no` AS `inv_post_no`,`a`.`to_ref_tab` AS `to_ref_tab`,`a`.`to_ref_id` AS `to_ref_id`,(case when (`a`.`to_ref_tab` like 'comp') then `e`.`companyname` when (`a`.`to_ref_tab` like 'emp') then concat(`d`.`firstname`,' ',`d`.`lastname`) end) AS `to_nm`,(case when (`a`.`to_ref_tab` like 'comp') then `p`.`file_name` when (`a`.`to_ref_tab` like 'emp') then `o`.`file_name` end) AS `to_fnm`,`a`.`to_look_street_no_id` AS `to_look_street_no_id`,`g`.`addresses` AS `to_address`,`a`.`to_suite_no` AS `to_suite_no`,`a`.`to_address_type` AS `to_address_type`,`i`.`lk_val` AS `to_address_type_nm`,`a`.`from_dt` AS `from_dt`,date_format(`a`.`from_dt`,'%m-%d-%y ') AS `from_dt_fmt`,`a`.`to_dt` AS `to_dt`,date_format(`a`.`to_dt`,'%m-%d-%y ') AS `to_dt_fmt`,`a`.`billed_dt` AS `billed_dt`,date_format(`a`.`billed_dt`,'%m-%d-%y ') AS `billed_dt_fmt`,`a`.`due_dt` AS `due_dt`,date_format(`a`.`due_dt`,'%m-%d-%y ') AS `due_dt_fmt`,`a`.`summary` AS `summary`,`a`.`amt_sub` AS `amt_sub`,`a`.`amt_tax` AS `amt_tax`,`a`.`amt_tol` AS `amt_tol`,`a`.`amt_paid` AS `amt_paid`,`a`.`amt_bal` AS `amt_bal`,`a`.`visible` AS `visible`,`a`.`updater` AS `updater`,`q`.`file_name` AS `updater_fnm`,concat(`j`.`firstname`,' ',`j`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y ') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`r`.`file_name` AS `del_by_fnm`,concat(`k`.`firstname`,' ',`k`.`lastname`) AS `del_by_nm`,`a`.`del_day` AS `del_day`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y ') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`s`.`file_name` AS `archv_by_fnm`,concat(`l`.`firstname`,' ',`l`.`lastname`) AS `archv_by_nm` from ((((((((((((((((((`inv` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`from_ref_id`))) left join `storages` `m` on((`m`.`idstorages` = `b`.`idstorages`))) left join `company` `c` on((`c`.`comp_id` = `a`.`from_ref_id`))) left join `storages` `n` on((`n`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`to_ref_id`))) left join `storages` `o` on((`o`.`idstorages` = `d`.`idstorages`))) left join `company` `e` on((`e`.`comp_id` = `a`.`to_ref_id`))) left join `storages` `p` on((`p`.`idstorages` = `e`.`idstorages`))) left join `vw_addresses` `f` on((`f`.`look_street_no_id` = `a`.`from_look_street_no_id`))) left join `vw_addresses` `g` on((`g`.`look_street_no_id` = `a`.`to_look_street_no_id`))) left join `feature_lk_val` `h` on((`h`.`idfeature_lk_val` = `a`.`from_address_type`))) left join `feature_lk_val` `i` on((`i`.`idfeature_lk_val` = `a`.`to_address_type`))) left join `emp` `j` on((`j`.`emp_id` = `a`.`updater`))) left join `storages` `q` on((`q`.`idstorages` = `j`.`idstorages`))) left join `emp` `k` on((`k`.`emp_id` = `a`.`del_by`))) left join `storages` `r` on((`r`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`l`.`emp_id` = `a`.`archv_by`))) left join `storages` `s` on((`s`.`idstorages` = `l`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_inv_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_inv_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_inv_audit` AS select `a`.`idinv_audit` AS `idinv_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`inv_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_inv_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_inv_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_inv_doc` AS select `a`.`idinv_doc` AS `idinv_doc`,`a`.`idinv` AS `idinv`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`inv_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_log_global` -- /*!50001 DROP VIEW IF EXISTS `vw_log_global`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_log_global` AS select `a`.`idglb_log` AS `idglb_log`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_yr`,date_format(`a`.`updated`,'%M') AS `updated_mon`,dayname(`a`.`updated`) AS `updated_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,concat('Table: ',`a`.`table_update`,' ID: ',`a`.`table_id`) AS `tab_nm_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl1` AS `idlook_menu_pvt_lvl1`,`d`.`lk_values` AS `idlook_menu_pvt_lvl1_fmt`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`e`.`lk_values` AS `idlook_menu_pvt_lvl2_fmt`,concat(`d`.`lk_values`,' > ',`e`.`lk_values`) AS `menu_main_sub`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`g`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`f`.`firstname`,' ',`f`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`i`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`h`.`firstname`,' ',`h`.`lastname`) end) AS `archv_by_nm` from ((((((((`log_global` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl1` = `d`.`idlook_menu_pvt`))) left join `look_menu_pvt` `e` on((`a`.`idlook_menu_pvt_lvl2` = `e`.`idlook_menu_pvt`))) left join `emp` `f` on((`a`.`del_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`archv_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_look_address2` -- /*!50001 DROP VIEW IF EXISTS `vw_look_address2`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_look_address2` AS select 'comp' AS `comp_emp`,`a`.`comp_add_id` AS `comp_emp_add_id`,`a`.`comp_id` AS `comp_emp_id`,`a`.`comp_logo` AS `comp_logo_emp_fnm`,`a`.`companyname` AS `companyname_emp_nm`,`a`.`look_street_no_id` AS `look_street_no_id`,`a`.`addresses` AS `addresses`,`a`.`house_apt_type` AS `house_apt_type`,`a`.`house_apt_nm` AS `house_apt_nm`,`a`.`add_type` AS `add_type`,`a`.`from_dt` AS `from_dt`,`a`.`from_dt_yr` AS `from_dt_yr`,`a`.`from_dt_mon` AS `from_dt_mon`,`a`.`from_dt_fmt` AS `from_dt_fmt`,`a`.`to_dt` AS `to_dt`,`a`.`to_dt_yr` AS `to_dt_yr`,`a`.`to_dt_mon` AS `to_dt_mon`,`a`.`to_dt_fmt` AS `to_dt_fmt`,`a`.`from_to_dt` AS `from_to_dt`,`a`.`from_to_dt_vir` AS `from_to_dt_vir`,`a`.`updater` AS `updater`,`a`.`updater_fnm` AS `updater_fnm`,`a`.`updater_nm` AS `updater_nm`,`a`.`last_updated` AS `last_updated`,`a`.`last_updated_fmt` AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,`a`.`del_dt_fmt` AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`a`.`del_by_fnm` AS `del_by_fnm`,`a`.`del_by_nm` AS `del_by_nm`,`a`.`del_day` AS `del_day`,`a`.`del_day_vir` AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,`a`.`archv_dt_fmt` AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`a`.`archv_by_fnm` AS `archv_by_fnm`,`a`.`archv_by_nm` AS `archv_by_nm` from `vw_comp_address` `a` union all select 'emp' AS `emp`,`a`.`emp_add_id` AS `emp_add_id`,`a`.`emp_id` AS `emp_id`,`a`.`emp_fnm` AS `emp_fnm`,`a`.`emp_nm` AS `emp_nm`,`a`.`look_street_no_id` AS `look_street_no_id`,`a`.`addresses` AS `addresses`,`a`.`house_apt_type` AS `house_apt_type`,`a`.`house_apt_type_nm` AS `house_apt_type_nm`,`a`.`add_type` AS `add_type`,`a`.`from_dt` AS `from_dt`,`a`.`from_dt_yr` AS `from_dt_yr`,`a`.`from_dt_mon` AS `from_dt_mon`,`a`.`from_dt_fmt` AS `from_dt_fmt`,`a`.`to_dt` AS `to_dt`,`a`.`to_dt_yr` AS `to_dt_yr`,`a`.`to_dt_mon` AS `to_dt_mon`,`a`.`to_dt_fmt` AS `to_dt_fmt`,`a`.`no_of_days` AS `no_of_days`,`a`.`no_of_days_vir` AS `no_of_days_vir`,`a`.`updater` AS `updater`,`a`.`updater_fnm` AS `updater_fnm`,`a`.`updater_nm` AS `updater_nm`,`a`.`last_updated` AS `last_updated`,`a`.`last_updated_fmt` AS `last_updated_fmt`,`a`.`del_dt` AS `del_dt`,`a`.`del_dt_fmt` AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`a`.`del_by_fnm` AS `del_by_fnm`,`a`.`del_by_nm` AS `del_by_nm`,`a`.`del_day` AS `del_day`,`a`.`del_day_vir` AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,`a`.`archv_dt_fmt` AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`a`.`archv_by_fnm` AS `archv_by_fnm`,`a`.`archv_by_nm` AS `archv_by_nm` from `vw_emp_address` `a` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_look_menu_pvt` -- /*!50001 DROP VIEW IF EXISTS `vw_look_menu_pvt`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_look_menu_pvt` AS select `a`.`idlook_menu_pvt` AS `idlook_menu_pvt`,`a`.`lk_values` AS `lk_values`,`a`.`lk_design` AS `lk_design`,`a`.`lk_value_desc` AS `lk_value_desc`,`a`.`lk_value_code` AS `lk_value_code`,`a`.`lk_admin` AS `lk_admin`,`a`.`lk_display_id` AS `lk_display_id`,`a`.`lk_sub_value_id` AS `lk_sub_value_id`,`a`.`updater` AS `updater`,ifnull(concat(trim(ifnull(`b`.`firstname`,'')),' ',trim(ifnull(nullif(`b`.`middlename`,''),'')),convert((case when ((`b`.`middlename` is not null) and (`b`.`middlename` <> '')) then ' ' else '' end) using latin1),trim(ifnull(`b`.`lastname`,''))),'Admin') AS `updater_nm`,`c`.`file_name` AS `updater_file_name`,`a`.`updated` AS `updated`,ifnull(date_format(`a`.`updated`,'%m-%d-%y %h:%i %p'),'Never') AS `updated_fmt` from ((`look_menu_pvt` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_look_street` -- /*!50001 DROP VIEW IF EXISTS `vw_look_street`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_look_street` AS select `a`.`look_street_id` AS `look_street_id`,`a`.`postal_id` AS `postal_id`,`a`.`street_name` AS `street_name`,`a`.`street_type` AS `street_type`,`b`.`lk_val` AS `street_type_nm` from (`look_street` `a` left join `feature_lk_val` `b` on((`a`.`street_type` = `b`.`idfeature_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mk_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_mk_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mk_lk_val` AS select `a`.`idmkt_lk_val` AS `idmkt_lk_val`,NULL AS `idmkt_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`mkt_value` AS `mkt_value`,NULL AS `child_lvl`,`a`.`mkt_value_desc` AS `mkt_value_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idmkt_lk` AS `parent_id`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt` from ((`mkt_lk_val` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `NULL`,`a`.`idmkt_lk` AS `idmkt_lk`,NULL AS `lk_val_par`,`a`.`mkt_name` AS `mkt_name`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`mkt_name_desc` AS `mkt_name_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`mkt_lk` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_audit` AS select `a`.`idmkt_audit` AS `idmkt_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`mkt_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_comp` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_comp` AS select `a`.`idmkt_comp` AS `idmkt_comp`,`a`.`companyname` AS `companyname`,`a`.`company_info` AS `company_info`,`a`.`comp_website` AS `comp_website`,`a`.`comp_phone` AS `comp_phone`,`a`.`comp_email` AS `comp_email`,concat('URL: ',ifnull(`a`.`comp_website`,'No Website '),' ','P: ',ifnull(`a`.`comp_phone`,'No Phone '),' ','@: ',ifnull(`a`.`comp_email`,'No Email ')) AS `comp_all_detail`,`a`.`acc_mgr` AS `acc_mgr`,`c`.`file_name` AS `acc_mgr_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `acc_mgr_nm`,`a`.`req_type` AS `req_type`,if(isnull(`a`.`req_type`),'No Req Type',`d`.`mkt_value`) AS `req_type_nm`,`a`.`track` AS `track`,`a`.`block` AS `block`,`a`.`block_dt` AS `block_dt`,if(isnull(`a`.`block_dt`),'NB',date_format(`a`.`block_dt`,'%m-%d-%y')) AS `block_dt_fmt`,date_format(`a`.`block_dt`,'%Y') AS `block_dt_yr`,date_format(`a`.`block_dt`,'%M') AS `block_dt_mon`,date_format(`a`.`block_dt`,'%Y %M') AS `block_dt_yr_mon`,`a`.`updater` AS `updater`,`f`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((`mkt_comp` `a` left join `emp` `b` on((`a`.`acc_mgr` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `mkt_lk_val` `d` on((`a`.`req_type` = `d`.`idmkt_lk_val`))) left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) order by `a`.`companyname` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_comp_open` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_comp_open` AS select `a`.`idmkt_comp_open` AS `idmkt_comp_open`,`a`.`idmkt_comp_ven` AS `idmkt_comp_ven`,`b`.`companyname` AS `mkt_comp_ven_nm`,concat('Vendor ',`b`.`companyname`,' Contacts ',`a`.`contact_info`) AS `mkt_comp_ven_nm_contact`,`b`.`acc_mgr` AS `ven_acc_mgr`,`q`.`file_name` AS `ven_acc_mgr_fnm`,concat(`p`.`firstname`,' ',`p`.`lastname`) AS `ven_acc_mgr_nm`,`b`.`req_type` AS `ven_req_type`,ifnull(`t`.`mkt_value`,'No Req Type') AS `ven_req_type_nm`,`b`.`track` AS `ven_track`,`b`.`block` AS `ven_block`,`b`.`block_dt` AS `ven_block_dt`,if(isnull(`b`.`block_dt`),'NB',date_format(`b`.`block_dt`,'%m-%d-%y')) AS `ven_block_dt_fmt`,`a`.`idmkt_comp_client` AS `idmkt_comp_client`,`c`.`companyname` AS `mkt_comp_client_nm`,`c`.`acc_mgr` AS `client_acc_mgr`,`s`.`file_name` AS `client_acc_mgr_fnm`,concat(`r`.`firstname`,' ',`r`.`lastname`) AS `client_acc_mgr_nm`,`c`.`req_type` AS `client_req_type`,ifnull(`u`.`mkt_value`,'No Req Type') AS `client_req_type_nm`,`c`.`track` AS `client_track`,`c`.`block` AS `client_block`,`c`.`block_dt` AS `client_block_dt`,if(isnull(`c`.`block_dt`),'NB',date_format(`c`.`block_dt`,'%m-%d-%y')) AS `client_block_dt_fmt`,`a`.`acc_mgr` AS `acc_mgr`,`f`.`file_name` AS `acc_mgr_fnm`,concat(`e`.`firstname`,' ',`e`.`lastname`) AS `acc_mgr_nm`,`a`.`req_type` AS `req_type`,ifnull(`g`.`mkt_value`,'No Req Type') AS `req_type_nm`,`a`.`open_dt` AS `open_dt`,date_format(`a`.`open_dt`,'%m-%d-%y') AS `open_dt_fmt`,date_format(`a`.`open_dt`,'%Y') AS `open_dt_yr`,date_format(`a`.`open_dt`,'%b') AS `open_dt_mon`,`a`.`loc_state` AS `loc_state`,if(isnull(`a`.`loc_state`),'No State',`i`.`state_name`) AS `state_nm`,`a`.`loc_city` AS `loc_city`,if(isnull(`a`.`loc_city`),'No City',`h`.`city_name`) AS `city_nm`,concat(if(isnull(`a`.`loc_state`),'No State',`i`.`state_name`),', ',if(isnull(`a`.`loc_city`),'No City',`h`.`city_name`)) AS `state_city_nm`,`a`.`contact_info` AS `contact_info`,`a`.`source` AS `source`,ifnull(`d`.`mkt_value`,'No Source') AS `source_nm`,`a`.`open_details` AS `open_details`,`a`.`close_dt` AS `close_dt`,if(isnull(`a`.`close_dt`),'Open',date_format(`a`.`close_dt`,'%m-%d-%y')) AS `close_dt_fmt`,date_format(`a`.`close_dt`,'%Y') AS `close_dt_yr`,date_format(`a`.`close_dt`,'%b') AS `close_dt_mon`,if(isnull(`a`.`close_dt`),'Open','Closed') AS `mkt_comp_open_cur_stat`,`a`.`open_close_day` AS `open_close_day`,ifnull(`a`.`open_close_day`,(to_days(now()) - to_days(`a`.`open_dt`))) AS `open_close_day_fmt`,`a`.`open_cnt` AS `open_cnt`,`a`.`open_tol` AS `open_tol`,concat(`a`.`open_cnt`,' of ',`a`.`open_tol`) AS `open_cnt_tol`,`a`.`open_pcnt` AS `open_pcnt`,`a`.`summary` AS `summary`,`a`.`updater` AS `updater`,`k`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`m`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`l`.`firstname`,' ',`l`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`o`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`n`.`firstname`,' ',`n`.`lastname`)) AS `archv_by_nm`,`a`.`old_comp_dt` AS `old_comp_dt`,date_format(`a`.`old_comp_dt`,'%y-%m-%d') AS `old_comp_dt_fmt` from ((((((((((((((((((((`mkt_comp_open` `a` left join `mkt_comp` `b` on((`a`.`idmkt_comp_ven` = `b`.`idmkt_comp`))) left join `mkt_comp` `c` on((`a`.`idmkt_comp_client` = `c`.`idmkt_comp`))) left join `mkt_lk_val` `d` on((`a`.`source` = `d`.`idmkt_lk_val`))) left join `emp` `e` on((`a`.`acc_mgr` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `mkt_lk_val` `g` on((`a`.`req_type` = `g`.`idmkt_lk_val`))) left join `look_city` `h` on((`a`.`loc_city` = `h`.`city_id`))) left join `look_state` `i` on((`a`.`loc_state` = `i`.`state_id`))) left join `emp` `j` on((`a`.`updater` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`del_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `emp` `n` on((`a`.`archv_by` = `n`.`emp_id`))) left join `storages` `o` on((`n`.`idstorages` = `o`.`idstorages`))) left join `emp` `p` on((`b`.`acc_mgr` = `p`.`emp_id`))) left join `storages` `q` on((`p`.`idstorages` = `q`.`idstorages`))) left join `emp` `r` on((`c`.`acc_mgr` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `mkt_lk_val` `t` on((`b`.`req_type` = `t`.`idmkt_lk_val`))) left join `mkt_lk_val` `u` on((`c`.`req_type` = `u`.`idmkt_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_comp_open_assist` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_comp_open_assist` AS select `a`.`idmkt_comp_open_assist` AS `idmkt_comp_open_assist`,`a`.`idmkt_comp_open` AS `idmkt_comp_open`,`b`.`idmkt_comp_ven` AS `idmkt_comp_ven`,`c`.`companyname` AS `mkt_comp_ven_nm`,`b`.`idmkt_comp_client` AS `idmkt_comp_client`,`d`.`companyname` AS `mkt_comp_client_nm`,`b`.`acc_mgr` AS `acc_mgr`,`f`.`file_name` AS `acc_mgr_fnm`,concat(`e`.`firstname`,' ',`e`.`lastname`) AS `acc_mgr_nm`,`b`.`req_type` AS `req_type`,if(isnull(`b`.`req_type`),'No Req Type',`g`.`mkt_value`) AS `req_type_nm`,`b`.`open_dt` AS `open_dt`,date_format(`b`.`open_dt`,'%m-%d-%y') AS `open_dt_fmt`,`b`.`loc_city` AS `loc_city`,`i`.`state_name` AS `state_nm`,concat(`i`.`state_name`,',',`h`.`city_name`) AS `location_nm`,`b`.`contact_info` AS `contact_info`,`b`.`source` AS `source`,if(isnull(`b`.`source`),'No Source',`j`.`mkt_value`) AS `source_nm`,`b`.`open_details` AS `open_details`,`b`.`close_dt` AS `close_dt`,date_format(`b`.`close_dt`,'%m-%d-%y') AS `close_dt_fmt`,if(isnull(`b`.`close_dt`),'Open','Close') AS `mkt_comp_open_cur_stat`,`b`.`open_close_day` AS `open_close_day`,ifnull(`b`.`open_close_day`,(to_days(now()) - to_days(`b`.`open_dt`))) AS `open_close_day_fmt`,`b`.`open_cnt` AS `open_cnt`,`b`.`open_tol` AS `open_tol`,`b`.`open_pcnt` AS `open_pcnt`,concat(`b`.`open_cnt`,' of ',`b`.`open_tol`) AS `open_cnt_tol`,`a`.`assist_id` AS `assist_id`,`m`.`file_name` AS `assist_fnm`,concat(`l`.`firstname`,' ',`l`.`lastname`) AS `assist_nm`,`a`.`assist_st_dt` AS `assist_st_dt`,date_format(`a`.`assist_st_dt`,'%m-%d-%y') AS `assist_st_dt_fmt`,date_format(`a`.`assist_st_dt`,'%Y') AS `assist_st_dt_yr`,date_format(`a`.`assist_st_dt`,'%M') AS `assist_st_dt_mon`,`a`.`assist_e_dt` AS `assist_e_dt`,date_format(`a`.`assist_e_dt`,'%m-%d-%y') AS `assist_e_dt_fmt`,date_format(`a`.`assist_e_dt`,'%Y') AS `assist_e_dt_yr`,date_format(`a`.`assist_e_dt`,'%M') AS `assist_e_dt_mon`,if(isnull(`a`.`assist_e_dt`),'Open','Closed') AS `assist_cur_stat`,`a`.`idmkt_wrk_flow` AS `idmkt_wrk_flow`,`k`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`assist_rate` AS `assist_rate`,`a`.`summary` AS `summary`,`a`.`assist_status` AS `assist_status`,if(isnull(`a`.`assist_status`),'No Status',`n`.`mkt_value`) AS `assist_status_nm`,`a`.`stat_e_dt_pre` AS `stat_e_dt_pre`,date_format(`a`.`stat_e_dt_pre`,'%m-%d-%y') AS `stat_e_dt_pre_fmt`,`a`.`stat_lag_tm` AS `stat_lag_tm`,`a`.`stat_st_dt` AS `stat_st_dt`,date_format(`a`.`stat_st_dt`,'%m-%d-%y') AS `stat_st_dt_fmt`,date_format(`a`.`stat_st_dt`,'%Y') AS `stat_st_dt_yr`,date_format(`a`.`stat_st_dt`,'%M') AS `stat_st_dt_mon`,`a`.`stat_e_dt` AS `stat_e_dt`,date_format(`a`.`stat_e_dt`,'%m-%d-%y') AS `stat_e_dt_fmt`,date_format(`a`.`stat_e_dt`,'%Y') AS `stat_e_dt_yr`,date_format(`a`.`stat_e_dt`,'%M') AS `stat_e_dt_mon`,if(isnull(`a`.`stat_e_dt`),'Open','Closed') AS `mkt_comp_open_assist_cur_stat`,`a`.`no_days` AS `no_days`,ifnull(`a`.`no_days`,(to_days(now()) - to_days(`a`.`stat_st_dt`))) AS `no_days_vir`,`a`.`updater` AS `updater`,`p`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`o`.`firstname`,' ',`o`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`s`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`r`.`firstname`,' ',`r`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`u`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`t`.`firstname`,' ',`t`.`lastname`)) AS `archv_by_nm` from (((((((((((((((((((((`mkt_comp_open_assist` `a` left join `mkt_comp_open` `b` on((`a`.`idmkt_comp_open` = `b`.`idmkt_comp_open`))) left join `mkt_comp` `c` on((`b`.`idmkt_comp_ven` = `c`.`idmkt_comp`))) left join `mkt_comp` `d` on((`b`.`idmkt_comp_client` = `d`.`idmkt_comp`))) left join `emp` `e` on((`b`.`acc_mgr` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `mkt_lk_val` `g` on((`b`.`req_type` = `g`.`idmkt_lk_val`))) left join `look_city` `h` on((`b`.`loc_city` = `h`.`city_id`))) left join `look_county_district` `v` on((`h`.`idlook_county_district` = `v`.`idlook_county_district`))) left join `look_state` `i` on((`v`.`state_id` = `i`.`state_id`))) left join `mkt_lk_val` `j` on((`b`.`source` = `j`.`idmkt_lk_val`))) left join `mkt_lk_wrk_flow` `k` on((`a`.`idmkt_wrk_flow` = `k`.`idmkt_wrk_flow`))) left join `emp` `l` on((`a`.`assist_id` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `mkt_lk_val` `n` on((`a`.`assist_status` = `n`.`idmkt_lk_val`))) left join `emp` `o` on((`a`.`updater` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `mkt_lk_val` `q` on((`a`.`idlook_stat_order` = `q`.`idmkt_lk_val`))) left join `emp` `r` on((`a`.`del_by` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`a`.`archv_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_comp_open_assist_stat` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist_stat`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_comp_open_assist_stat` AS select `a`.`idmkt_comp_open_assist_stat` AS `idmkt_comp_open_assist_stat`,`aa`.`idmkt_comp_open_assist` AS `idmkt_comp_open_assist`,`aa`.`idmkt_comp_open` AS `idmkt_comp_open`,`b`.`idmkt_comp_ven` AS `idmkt_comp_ven`,`c`.`companyname` AS `idmkt_comp_ven_nm`,`b`.`idmkt_comp_client` AS `idmkt_comp_client`,`d`.`companyname` AS `idmkt_comp_client_nm`,`b`.`acc_mgr` AS `acc_mgr`,`f`.`file_name` AS `acc_mgr_fnm`,concat(`e`.`firstname`,' ',`e`.`lastname`) AS `acc_mgr_nm`,`b`.`req_type` AS `req_type`,ifnull(`g`.`mkt_value`,'No Req Type') AS `req_type_nm`,`b`.`open_dt` AS `open_dt`,date_format(`b`.`open_dt`,'%m-%d-%y') AS `open_dt_fmt`,`b`.`loc_city` AS `loc_city`,`i`.`state_name` AS `state_nm`,concat(`i`.`state_name`,', ',`h`.`city_name`) AS `location_nm`,`b`.`contact_info` AS `contact_info`,`b`.`source` AS `source`,ifnull(`j`.`mkt_value`,'No Source') AS `source_nm`,`b`.`open_details` AS `open_details`,`b`.`close_dt` AS `close_dt`,if(isnull(`b`.`close_dt`),'Open',convert(date_format(`b`.`close_dt`,'%m-%d-%y') using utf8mb4)) AS `close_dt_fmt`,if(isnull(`b`.`close_dt`),'Open','Closed') AS `mkt_comp_open_cur_stat`,`b`.`open_close_day` AS `open_close_day`,ifnull(`b`.`open_close_day`,(to_days(now()) - to_days(`b`.`open_dt`))) AS `open_close_day_fmt`,`b`.`open_cnt` AS `open_cnt`,`b`.`open_tol` AS `open_tol`,concat(`b`.`open_cnt`,' of ',`b`.`open_tol`) AS `open_cnt_tol`,`b`.`open_pcnt` AS `open_pcnt`,`aa`.`assist_id` AS `assist_id`,`m`.`file_name` AS `assist_fnm`,if(isnull(`aa`.`assist_id`),'Admin',concat(`l`.`firstname`,' ',`l`.`lastname`)) AS `assist_nm`,`aa`.`assist_rate` AS `assist_rate`,`aa`.`summary` AS `summary`,`aa`.`assist_status` AS `cur_assist_status`,`n`.`mkt_value` AS `cur_assist_status_nm`,`aa`.`stat_st_dt` AS `cur_stat_st_dt`,date_format(`aa`.`stat_st_dt`,'%m-%d-%y') AS `cur_stat_st_dt_fmt`,`aa`.`stat_e_dt` AS `cur_stat_e_dt`,date_format(`aa`.`stat_e_dt`,'%m-%d-%y') AS `cur_stat_e_dt_fmt`,`aa`.`no_days` AS `no_days`,ifnull(`aa`.`no_days`,(to_days(now()) - to_days(`aa`.`stat_st_dt`))) AS `no_days_vir`,`a`.`assist_status` AS `assist_status`,`v`.`mkt_value` AS `assist_status_nm`,`a`.`stat_st_dt` AS `stat_st_dt`,date_format(`a`.`stat_st_dt`,'%m-%d-%y') AS `stat_st_dt_fmt`,`a`.`stat_e_dt` AS `stat_e_dt`,date_format(`a`.`stat_e_dt`,'%m-%d-%y') AS `stat_e_dt_fmt`,if(isnull(`a`.`stat_e_dt`),'Open','Closed') AS `mkt_comp_open_assist_cur_stat`,`a`.`no_days_stat` AS `no_days_stat`,ifnull(`a`.`no_days_stat`,(to_days(now()) - to_days(`a`.`stat_st_dt`))) AS `no_days_stat_vir`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`p`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`o`.`firstname`,' ',`o`.`lastname`)) AS `updater_nm`,`a`.`idlook_stat_order` AS `idlook_stat_order`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`s`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`r`.`firstname`,' ',`r`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`u`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`t`.`firstname`,' ',`t`.`lastname`)) AS `archv_by_nm` from ((((((((((((((((((((((`mkt_comp_open_assist_stat` `a` left join `mkt_comp_open_assist` `aa` on((`a`.`idmkt_comp_open_assist` = `aa`.`idmkt_comp_open_assist`))) left join `mkt_comp_open` `b` on((`aa`.`idmkt_comp_open` = `b`.`idmkt_comp_open`))) left join `mkt_comp` `c` on((`b`.`idmkt_comp_ven` = `c`.`idmkt_comp`))) left join `mkt_comp` `d` on((`b`.`idmkt_comp_client` = `d`.`idmkt_comp`))) left join `emp` `e` on((`b`.`acc_mgr` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `mkt_lk_val` `g` on((`b`.`req_type` = `g`.`idmkt_lk_val`))) left join `look_city` `h` on((`b`.`loc_city` = `h`.`city_id`))) left join `look_county_district` `w` on((`h`.`idlook_county_district` = `w`.`idlook_county_district`))) left join `look_state` `i` on((`w`.`state_id` = `i`.`state_id`))) left join `mkt_lk_val` `j` on((`b`.`source` = `j`.`idmkt_lk_val`))) left join `emp` `l` on((`aa`.`assist_id` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) left join `mkt_lk_val` `n` on((`aa`.`assist_status` = `n`.`idmkt_lk_val`))) left join `emp` `o` on((`a`.`updater` = `o`.`emp_id`))) left join `storages` `p` on((`o`.`idstorages` = `p`.`idstorages`))) left join `mkt_lk_val` `q` on((`a`.`idlook_stat_order` = `q`.`idmkt_lk_val`))) left join `emp` `r` on((`a`.`del_by` = `r`.`emp_id`))) left join `storages` `s` on((`r`.`idstorages` = `s`.`idstorages`))) left join `emp` `t` on((`a`.`archv_by` = `t`.`emp_id`))) left join `storages` `u` on((`t`.`idstorages` = `u`.`idstorages`))) left join `mkt_lk_val` `v` on((`a`.`assist_status` = `v`.`idmkt_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_comp_open_assist_stat_step` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_comp_open_assist_stat_step`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_comp_open_assist_stat_step` AS select `a`.`idmkt_comp_open_assist_stat_step` AS `idmkt_comp_open_assist_stat_step`,`a`.`idmkt_comp_open_assist_stat` AS `idmkt_comp_open_assist_stat`,`a`.`mkt_step_detail` AS `mkt_step_detail`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm` from ((`mkt_comp_open_assist_stat_step` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_lk_val` AS select `a`.`idmkt_lk_val` AS `idmkt_lk_val`,NULL AS `idmkt_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`mkt_value` AS `mkt_value`,NULL AS `child_lvl`,`a`.`mkt_value_desc` AS `mkt_value_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idmkt_lk` AS `parent_id`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt` from ((`mkt_lk_val` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `NULL`,`a`.`idmkt_lk` AS `idmkt_lk`,NULL AS `lk_val_par`,`a`.`mkt_name` AS `mkt_name`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`mkt_name_desc` AS `mkt_name_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((`mkt_lk` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`updater`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_mkt_lk_wrk_flow` -- /*!50001 DROP VIEW IF EXISTS `vw_mkt_lk_wrk_flow`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_mkt_lk_wrk_flow` AS select `a`.`idmkt_wrk_flow` AS `idmkt_wrk_flow`,`a`.`wrk_flow_nm` AS `wrk_flow_nm`,`a`.`id_wrk_flow` AS `id_wrk_flow`,`a`.`wrk_flow_desc` AS `wrk_flow_desc`,`a`.`id_wrk_flow_parent` AS `id_wrk_flow_parent`,`a`.`look_initial` AS `look_initial`,`a`.`look_restart` AS `look_restart`,`a`.`disp_order` AS `disp_order`,`a`.`updater` AS `updater`,ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin') AS `updater_fmt`,`a`.`last_updated` AS `last_updated`,if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) AS `last_updated_fmt`,concat(ifnull(concat(`c`.`firstname`,' ',`c`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by`,`b`.`mkt_value` AS `mkt_value` from ((`mkt_lk_wrk_flow` `a` left join `mkt_lk_val` `b` on((`a`.`id_wrk_flow` = `b`.`idmkt_lk_val`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) order by `a`.`disp_order` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_net_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_audit` AS select `a`.`idnet_audit` AS `idnet_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`net_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_blk_dm` -- /*!50001 DROP VIEW IF EXISTS `vw_net_blk_dm`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_blk_dm` AS select `a`.`idnet_blk_dm` AS `idnet_blk_dm`,`a`.`domain_nm` AS `domain_nm`,`a`.`domain_reason` AS `domain_reason`,`a`.`blk_rqtr` AS `blk_rqtr`,`b`.`emp_fnm` AS `blk_rqtr_fnm`,if(isnull(`a`.`blk_rqtr`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `blk_rqtr_nm`,`a`.`blk_by` AS `blk_by`,`c`.`emp_fnm` AS `blk_by_fnm`,if(isnull(`a`.`blk_by`),'Admin',concat(`c`.`firstname`,' ',`c`.`lastname`)) AS `blk_by_nm`,`a`.`blk_date` AS `blk_date`,date_format(`a`.`blk_date`,'%m-%d-%y %h:%i %p') AS `blk_date_fmt`,date_format(`a`.`blk_date`,'%Y') AS `blk_yr`,date_format(`a`.`blk_date`,'%M') AS `blk_mon`,dayname(`a`.`blk_date`) AS `blk_day`,`a`.`blk_type` AS `blk_type`,`a`.`updater` AS `updater`,`d`.`emp_fnm` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`d`.`firstname`,' ',`d`.`lastname`)) AS `updater_nm`,`a`.`updated_on` AS `last_updated`,date_format(`a`.`updated_on`,'%m-%d-%y %h:%i %p') AS `last_updated_fmt` from (((`net_blk_dm` `a` left join `vw_emp` `b` on((`a`.`blk_rqtr` = `b`.`emp_id`))) left join `vw_emp` `c` on((`a`.`blk_by` = `c`.`emp_id`))) left join `vw_emp` `d` on((`a`.`updater` = `d`.`emp_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_blk_ip_ser` -- /*!50001 DROP VIEW IF EXISTS `vw_net_blk_ip_ser`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`jitenpatel`@`%` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_blk_ip_ser` AS select `a`.`idnet_blk_ip_ser` AS `idnet_blk_ip_ser`,`a`.`idnet_blk_ip` AS `idnet_blk_ip`,`a`.`idnet_ser` AS `idnet_ser`,`a`.`blk_ser_by` AS `blk_ser_by`,`a`.`blk_ser_dt` AS `blk_ser_dt`,date_format(`a`.`blk_ser_dt`,'%m-%d-%y %h:%i %p') AS `blk_ser_dt_fmt`,`a`.`allow` AS `allow_ip_ser`,`b`.`ip_address` AS `ip_address`,`b`.`cnt_blk` AS `cnt_blk`,`b`.`hostname` AS `hostname`,`b`.`city` AS `city`,`b`.`region` AS `region`,`b`.`country` AS `country`,`b`.`blk_by` AS `blk_by`,`b`.`blk_dt` AS `blk_dt`,date_format(`b`.`blk_dt`,'%m-%d-%y %h:%i %p') AS `blk_dt_fmt`,`b`.`allow` AS `allow_ip` from (`net_blk_ip_ser` `a` left join `net_blk_ip` `b` on((`a`.`idnet_blk_ip` = `b`.`idnet_blk_ip`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_script` -- /*!50001 DROP VIEW IF EXISTS `vw_net_script`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_script` AS select `a`.`idnet_script` AS `idnet_script`,`a`.`script_nm` AS `script_nm`,`a`.`script_typ` AS `script_typ`,`a`.`script_desc` AS `script_desc`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`cnt_log` AS `cnt_log`,`a`.`script_field` AS `script_field`,`a`.`script_col_nm` AS `script_col_nm` from ((`net_script` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_script_run` -- /*!50001 DROP VIEW IF EXISTS `vw_net_script_run`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_script_run` AS select (case when (timestampdiff(MINUTE,ifnull(`a`.`last_run_tm`,now()),now()) >= `a`.`run_tm`) then 'Y' when isnull(`a`.`run_tm`) then 'N' when isnull(`a`.`last_run_tm`) then 'Y' else 'N' end) AS `run`,(`a`.`run_tm` - timestampdiff(MINUTE,`a`.`last_run_tm`,now())) AS `next_run_min`,date_format((`a`.`last_run_tm` + interval `a`.`run_tm` minute),'%m-%d-%y %h:%i %p') AS `next_run_tm`,`b`.`script_nm` AS `script_nm`,`c`.`hostnm` AS `hostnm`,`a`.`run_tm` AS `run_tm`,date_format(`a`.`last_run_tm`,'%m-%d-%y %h:%i %p') AS `last_run_tm_fmt`,date_format(`a`.`script_end`,'%m-%d-%y %h:%i %p') AS `script_end_fmt`,timestampdiff(SECOND,`a`.`last_run_tm`,`a`.`script_end`) AS `exe_tm`,`a`.`idnet_script_run` AS `idnet_script_run`,`a`.`idnet_script` AS `idnet_script`,`b`.`script_desc` AS `script_desc`,`a`.`idnet_ser` AS `idnet_ser`,`c`.`hosted` AS `hosted`,`c`.`hostdm` AS `hostdm`,`c`.`host_type` AS `host_type`,`c`.`host_mst` AS `host_mst`,`a`.`start_dt` AS `start_dt`,`a`.`last_run_tm` AS `last_run_tm`,`a`.`script_end` AS `script_end`,`a`.`cnt_log` AS `cnt_log`,`a`.`run_result` AS `run_result`,timestampdiff(MINUTE,`a`.`last_run_tm`,now()) AS `min_since` from ((`net_script_run` `a` left join `net_script` `b` on((`a`.`idnet_script` = `b`.`idnet_script`))) left join `net_ser` `c` on((`a`.`idnet_ser` = `c`.`idnet_ser`))) order by (case when (timestampdiff(MINUTE,ifnull(`a`.`last_run_tm`,now()),now()) >= `a`.`run_tm`) then 'Y' when isnull(`a`.`run_tm`) then 'N' when isnull(`a`.`last_run_tm`) then 'Y' else 'N' end) desc,`c`.`hostnm` */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_script_run_log` -- /*!50001 DROP VIEW IF EXISTS `vw_net_script_run_log`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_script_run_log` AS select `a`.`idnet_script_run_log` AS `idnet_script_run_log`,`a`.`idnet_script` AS `idnet_script`,`a`.`idnet_script_run` AS `idnet_script_run`,`a`.`idnet_ser` AS `idnet_ser`,`a`.`run_result` AS `run_result`,`a`.`run_dt` AS `run_dt`,date_format(`a`.`run_dt`,'%m-%d-%y %h:%i %p') AS `run_dt_fmt`,`a`.`run_by` AS `run_by`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`c`.`firstname`,' ',`c`.`lastname`)) AS `updater_nm`,`a`.`script_end` AS `script_end`,date_format(`a`.`script_end`,'%m-%d-%y %h:%i %p') AS `script_end_fmt` from (((`net_script_run_log` `a` left join `net_script` `b` on((`a`.`idnet_script` = `b`.`idnet_script`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_secure` -- /*!50001 DROP VIEW IF EXISTS `vw_net_secure`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_secure` AS select `a`.`idnet_secure` AS `idnet_secure`,`a`.`access_fnm` AS `access_fnm`,`a`.`hostnm` AS `hostnm`,`a`.`access_brsw` AS `access_brsw`,`a`.`access_by` AS `access_by`,`c`.`file_name` AS `access_by_fnm`,if(isnull(`a`.`access_by`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `access_by_nm`,`a`.`access_dt` AS `access_dt`,date_format(`a`.`access_dt`,'%m-%d-%y %h:%i %p') AS `access_dt_fmt`,date_format(`a`.`access_dt`,'%Y') AS `access_dt_yr`,date_format(`a`.`access_dt`,'%M') AS `access_dt_mon`,`a`.`menu_main` AS `menu_main`,`f`.`lk_values` AS `menu_main_nm`,`a`.`menu_sub` AS `menu_sub`,`g`.`lk_values` AS `menu_sub_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`i`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`k`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`j`.`firstname`,' ',`j`.`lastname`)) AS `archv_by_nm` from ((((((((`net_secure` `a` left join `emp` `b` on((`a`.`access_by` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `f` on((`a`.`menu_main` = `f`.`idlook_menu_pvt`))) left join `look_menu_pvt` `g` on((`a`.`menu_sub` = `g`.`idlook_menu_pvt`))) left join `emp` `h` on((`a`.`del_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`archv_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_ser` -- /*!50001 DROP VIEW IF EXISTS `vw_net_ser`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_ser` AS select `a`.`idnet_ser` AS `idnet_ser`,`a`.`hostnm` AS `hostnm`,`a`.`hosted` AS `hosted`,`a`.`hostdm` AS `hostdm`,`a`.`hostdm_multi` AS `hostdm_multi`,`a`.`host_type` AS `host_type`,`a`.`host_mst` AS `host_mst`,`a`.`ip_lan` AS `ip_lan`,`a`.`ip_wan` AS `ip_wan`,`a`.`ip_usr` AS `ip_usr`,`a`.`gateway` AS `gateway`,concat('LAN: ',ifnull(`a`.`ip_lan`,'No LAN '),' ','WAN: ',ifnull(`a`.`ip_wan`,'No WAN '),' ','User: ',ifnull(`a`.`ip_usr`,'No User'),' ','Gateway: ',ifnull(`a`.`gateway`,'No Gateway')) AS `ips`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`c`.`firstname`,' ',`c`.`lastname`)) AS `updater_nm`,`a`.`updated_on` AS `updated_on`,if(isnull(`a`.`updated_on`),date_format(now(),'%m-%d-%y %h:%i %p'),date_format(`a`.`updated_on`,'%m-%d-%y %h:%i %p')) AS `updated_on_fmt`,`b`.`hostnm` AS `mst_hostnm`,`b`.`hostdm` AS `mst_hostdm`,`b`.`ip_lan` AS `mst_ip_lan`,`b`.`ip_wan` AS `mst_ip_wan`,`a`.`cnt_ser_blk` AS `cnt_ser_blk`,`a`.`cnt_db_blk` AS `cnt_db_blk`,concat('Server: ',ifnull(`a`.`cnt_ser_blk`,'No Block '),' ','DB: ',ifnull(`a`.`cnt_db_blk`,'No Block ')) AS `blocks`,`a`.`cnt_blk_updated` AS `cnt_blk_updated`,date_format(`a`.`cnt_blk_updated`,'%m-%d-%y %h:%i %p') AS `cnt_blk_updated_fmt`,`a`.`dis_tot` AS `dis_tot`,`a`.`dis_tot` AS `dis_tot_fmt`,`a`.`dis_use` AS `dis_use`,`a`.`dis_use` AS `dis_use_fmt`,concat(`a`.`dis_use`,' Of ',`a`.`dis_tot`) AS `dis_use_tot`,`a`.`dis_free` AS `dis_free`,`a`.`dis_free` AS `dis_free_fmt`,concat(`a`.`dis_free`,' Of ',`a`.`dis_tot`) AS `dis_free_tot`,`a`.`dis_pcnt` AS `dis_pcnt`,`a`.`cnt_dis` AS `cnt_dis`,`a`.`dis_grp_ser_stat` AS `dis_grp_ser_stat`,`a`.`ser_stat_updated` AS `ser_stat_updated`,date_format(`a`.`ser_stat_updated`,'%m-%d-%y %h:%i %p') AS `ser_stat_updated_fmt`,`a`.`disc_chk_access` AS `disc_chk_access`,`a`.`dis_tol_grp` AS `dis_tol_grp`,`a`.`dis_mir_lvl` AS `dis_mir_lvl`,`a`.`dis_free_grp` AS `dis_free_grp`,`a`.`dis_updated` AS `dis_updated`,date_format(`a`.`dis_updated`,'%m-%d-%y %h:%i %p') AS `dis_updated_fmt`,`a`.`cpu_dt_tm` AS `cpu_dt_tm`,date_format(`a`.`cpu_dt_tm`,'%m-%d-%y') AS `cpu_dt_tm_fmt`,`a`.`users_load` AS `users_load`,`a`.`sys_load` AS `sys_load`,`a`.`io_wait` AS `io_wait`,`a`.`idle_wait` AS `idle_wait`,`a`.`cnt_ser_stat` AS `cnt_ser_stat`,`a`.`cpu_updated` AS `cpu_updated`,date_format(`a`.`cpu_updated`,'%m-%d-%y %h:%i %p') AS `cpu_updated_fmt` from (((`net_ser` `a` left join `net_ser` `b` on((`a`.`host_mst` = `b`.`hostnm`))) left join `emp` `c` on((`a`.`updater` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_ser_clone` -- /*!50001 DROP VIEW IF EXISTS `vw_net_ser_clone`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_ser_clone` AS select `a`.`idnet_clone` AS `idnet_clone`,`a`.`idnet_ser` AS `idnet_ser`,`b`.`hostnm` AS `hostnm`,`b`.`hostdm` AS `hostdm`,`b`.`host_mst` AS `host_mst`,`b`.`ip_lan` AS `ip_lan`,`b`.`ip_wan` AS `ip_wan`,`b`.`ip_usr` AS `ip_usr`,`b`.`gateway` AS `gateway`,`a`.`mst_app` AS `mst_app`,`a`.`cloned_app` AS `cloned_app`,`a`.`code_bk` AS `code_bk`,`a`.`db_bk` AS `db_bk`,`a`.`valid_days` AS `valid_days`,`a`.`validity` AS `validity`,`a`.`synced` AS `synced`,`a`.`alert_days` AS `alert_days`,`a`.`app_url` AS `app_url`,`a`.`deleted_on` AS `deleted_on`,`a`.`updater` AS `updater`,`a`.`updated_on` AS `updated_on` from (`net_ser_clone` `a` left join `net_ser` `b` on((`a`.`idnet_ser` = `b`.`idnet_ser`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_tb_vw_ser` -- /*!50001 DROP VIEW IF EXISTS `vw_net_tb_vw_ser`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_tb_vw_ser` AS select `a`.`idnet_tb_vw_ser` AS `idnet_tb_vw_ser`,`a`.`idnet_tb_vw` AS `idnet_tb_vw`,`a`.`idnet_clone` AS `idnet_clone`,`a`.`updated_on` AS `net_tb_vw_ser_updt`,`b`.`updated_on` AS `net_tb_vw_updt`,`b`.`qry` AS `qry`,`b`.`updater` AS `updater`,`c`.`idnet_ser` AS `idnet_ser`,`c`.`hostnm` AS `hostnm`,`c`.`hostdm` AS `hostdm`,`c`.`host_mst` AS `host_mst`,`c`.`ip_lan` AS `ip_lan`,`c`.`ip_wan` AS `ip_wan`,`c`.`mst_app` AS `mst_app`,`c`.`cloned_app` AS `cloned_app`,`c`.`validity` AS `validity`,`c`.`deleted_on` AS `deleted_on` from ((`net_tb_vw_ser` `a` left join `net_tb_vw` `b` on((`a`.`idnet_tb_vw` = `b`.`idnet_tb_vw`))) left join `vw_net_ser_clone` `c` on((`a`.`idnet_clone` = `c`.`idnet_clone`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_net_tb_vw_ser_app` -- /*!50001 DROP VIEW IF EXISTS `vw_net_tb_vw_ser_app`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`jitenpatel`@`%` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_net_tb_vw_ser_app` AS select `a`.`idnet_tb_vw_ser_app` AS `idnet_tb_vw_ser_app`,`a`.`idnet_tb_vw_ser` AS `idnet_tb_vw_ser`,`a`.`idnet_clone` AS `idnet_clone`,`a`.`updated_on` AS `updated_on`,`a`.`updated_by` AS `updated_by`,`b`.`idnet_ser` AS `idnet_ser`,`b`.`host_mst` AS `host_mst`,`b`.`ip_lan` AS `ip_lan`,`b`.`ip_wan` AS `ip_wan`,`b`.`gateway` AS `gateway`,`b`.`mst_app` AS `mst_app`,`b`.`cloned_app` AS `cloned_app`,`b`.`validity` AS `validity`,`b`.`deleted_on` AS `deleted_on` from (`net_tb_vw_ser_app` `a` left join `vw_net_ser_clone` `b` on((`a`.`idnet_clone` = `b`.`idnet_clone`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_audit` AS select `a`.`idprosp_audit` AS `idprosp_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`prosp_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_corp` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_corp` AS select `a`.`idprosp_corp` AS `idprosp_corp`,`a`.`prosp_corp_type` AS `prosp_corp_type`,ifnull(`d`.`prosp_value`,'Not Entered') AS `prosp_corp_type_nm`,`a`.`corp_entity_name` AS `corp_entity_name`,concat(`a`.`corp_entity_name`,' Contacts: ',`a`.`corp_contacts`) AS `corp_name_contact`,`a`.`corp_source` AS `corp_source`,ifnull(`e`.`prosp_value`,'No Source') AS `corp_source_nm`,`a`.`corp_level` AS `corp_level`,ifnull(`g`.`prosp_value`,'No Level') AS `corp_level_nm`,`a`.`corp_domain` AS `corp_domain`,if(isnull(`a`.`corp_domain`),'No Industry',`v`.`prosp_value`) AS `corp_domain_nm`,`a`.`corp_domain_sub` AS `corp_domain_sub`,if(isnull(`a`.`corp_domain_sub`),'No Sub Industry',`w`.`prosp_value`) AS `corp_domain_sub_nm`,`a`.`response` AS `response`,ifnull(`r`.`prosp_value`,'No Response') AS `response_nm`,`a`.`corp_contacts` AS `corp_contacts`,`a`.`corp_address` AS `corp_address`,ifnull(`a`.`corp_address`,'Not Entered') AS `corp_address_nm`,`a`.`register_yr` AS `register_yr`,ifnull(`a`.`register_yr`,'Not Entered') AS `register_yr_fmt`,`a`.`register_state` AS `register_state`,ifnull(`a`.`register_state`,'Not Entered') AS `register_state_fmt`,`a`.`start_dt` AS `start_dt`,date_format(`a`.`start_dt`,'%m-%d-%y') AS `start_dt_fmt`,date_format(`a`.`start_dt`,'%Y') AS `start_dt_yr`,date_format(`a`.`start_dt`,'%M') AS `start_dt_mon`,`a`.`end_dt` AS `end_dt`,if(isnull(`a`.`end_dt`),'Not Ended',date_format(`a`.`end_dt`,'%m-%d-%y')) AS `end_dt_fmt`,date_format(`a`.`end_dt`,'%Y') AS `end_dt_yr`,date_format(`a`.`end_dt`,'%M') AS `end_dt_mon`,if(isnull(`a`.`end_dt`),'Open','Closed') AS `prosp_corp_cur_stat`,`a`.`st_end_tm` AS `st_end_tm`,ifnull(`a`.`st_end_tm`,timestampdiff(DAY,`a`.`start_dt`,now())) AS `st_end_tm_vir`,`a`.`acc_mgr` AS `acc_mgr`,`h`.`file_name` AS `acc_mgr_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `acc_mgr_nm`,`a`.`topic_discussed` AS `topic_discussed`,`a`.`all_topic` AS `all_topic`,`a`.`called_dt` AS `called_dt`,date_format(`a`.`called_dt`,'%m-%d-%y') AS `called_dt_fmt`,`a`.`call_nxt_dt` AS `call_nxt_dt`,if(isnull(`a`.`call_nxt_dt`),'To Plan',date_format(`a`.`call_nxt_dt`,'%m-%d-%y')) AS `call_nxt_dt_fmt`,`a`.`call_day_tm` AS `call_day_tm`,if(isnull(`a`.`call_day_tm`),(to_days(now()) - to_days(`a`.`called_dt`)),`a`.`call_day_tm`) AS `call_day_tm_vir`,`a`.`topic_count` AS `topic_count`,`a`.`about_corp` AS `about_corp`,ifnull(`a`.`about_corp`,'Not Entered') AS `about_corp_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`updater` AS `updater`,`u_by`.`file_name` AS `updater_fnm`,ifnull(concat(`u`.`firstname`,' ',`u`.`lastname`),'Admin') AS `updater_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(date_format(`a`.`del_dt`,'%Y'),'Not Deleted') AS `del_dt_yr`,ifnull(date_format(`a`.`del_dt`,'%M'),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`o_del_by`.`file_name` AS `del_by_fnm`,ifnull(concat(`e_del_by`.`firstname`,' ',`e_del_by`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%Y') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then date_format(`a`.`archv_dt`,'%M') when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`o_arch_by`.`file_name` AS `arch_by_fnm`,ifnull(concat(`e_arch_by`.`firstname`,' ',`e_arch_by`.`lastname`),'Admin') AS `arch_by_nm` from ((((((((((((((`prosp_corp` `a` left join `prosp_lk_val` `d` on((`a`.`prosp_corp_type` = `d`.`idprosp_lk_val`))) left join `prosp_lk_val` `e` on((`a`.`corp_source` = `e`.`idprosp_lk_val`))) left join `emp` `f` on((`a`.`acc_mgr` = `f`.`emp_id`))) left join `storages` `h` on((`f`.`idstorages` = `h`.`idstorages`))) left join `prosp_lk_val` `g` on((`a`.`corp_level` = `g`.`idprosp_lk_val`))) left join `prosp_lk_val` `r` on((`a`.`response` = `r`.`idprosp_lk_val`))) left join `emp` `u` on((`u`.`emp_id` = `a`.`updater`))) left join `storages` `u_by` on((`u`.`idstorages` = `u_by`.`idstorages`))) left join `emp` `e_del_by` on((`a`.`del_dt` = `e_del_by`.`emp_id`))) left join `emp` `e_arch_by` on((`a`.`archv_by` = `e_arch_by`.`emp_id`))) left join `storages` `o_del_by` on((`e_del_by`.`idstorages` = `o_del_by`.`idstorages`))) left join `storages` `o_arch_by` on((`e_arch_by`.`idstorages` = `o_arch_by`.`idstorages`))) left join `prosp_lk_val` `v` on((`a`.`corp_domain` = `v`.`idprosp_lk_val`))) left join `prosp_lk_val` `w` on((`a`.`corp_domain_sub` = `w`.`idprosp_lk_val`))) order by `a`.`updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_corp_access` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_corp_access` AS select `a`.`idprosp_corp_access` AS `idprosp_corp_access`,`a`.`corp_accessor` AS `corp_accessor`,`c`.`file_name` AS `corp_accessor_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `corp_accessor_nm`,`a`.`corp_access_acc_mgr` AS `corp_access_acc_mgr`,`e`.`file_name` AS `corp_access_acc_mgr_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `corp_access_acc_mgr_nm`,`a`.`from_dt_acc` AS `from_dt_acc`,if(isnull(`a`.`from_dt_acc`),'All',date_format(`a`.`from_dt_acc`,'%m-%d-%y')) AS `from_dt_acc_fmt`,`a`.`to_dt_acc` AS `to_dt_acc`,if(isnull(`a`.`to_dt_acc`),'Current',date_format(`a`.`to_dt_acc`,'%m-%d-%y')) AS `to_dt_acc_fmt`,`a`.`updater` AS `updater`,`g`.`file_name` AS `updater_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((`prosp_corp_access` `a` left join `emp` `b` on((`a`.`corp_accessor` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`a`.`corp_access_acc_mgr` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`a`.`updater` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_corp_activity` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_activity`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_corp_activity` AS select `a`.`idprosp_corp_activity` AS `idprosp_corp_activity`,`a`.`idprosp_corp` AS `idprosp_corp`,`k`.`prosp_corp_type` AS `prosp_corp_type`,if(isnull(`k`.`prosp_corp_type`),'Not Entered',`l`.`prosp_value`) AS `prosp_corp_type_nm`,`k`.`corp_entity_name` AS `corp_entity_name`,`k`.`corp_source` AS `corp_source`,if(isnull(`k`.`corp_source`),'No Source',`m`.`prosp_value`) AS `corp_source_nm`,`k`.`corp_domain` AS `corp_domain`,if(isnull(`k`.`corp_domain`),'No Industry',`n`.`prosp_value`) AS `corp_domain_nm`,`k`.`corp_domain_sub` AS `corp_domain_sub`,if(isnull(`k`.`corp_domain_sub`),'No Sub Industry',`o`.`prosp_value`) AS `corp_domain_sub_nm`,`k`.`corp_contacts` AS `corp_contacts`,`k`.`corp_address` AS `corp_address`,ifnull(`k`.`corp_address`,'Not Entered') AS `corp_address_nm`,`k`.`register_yr` AS `register_yr`,ifnull(`k`.`register_yr`,'Not Entered') AS `register_yr_fmt`,`k`.`register_state` AS `register_state`,ifnull(`k`.`register_state`,'Not Entered') AS `register_state_fmt`,`k`.`start_dt` AS `start_dt`,date_format(`k`.`start_dt`,'%m-%d-%y') AS `start_dt_fmt`,`k`.`end_dt` AS `end_dt`,if(isnull(`k`.`end_dt`),'Not Ended',convert(date_format(`k`.`end_dt`,'%m-%d-%y') using utf8mb4)) AS `end_dt_fmt`,if(isnull(`k`.`end_dt`),'Open','Closed') AS `prosp_corp_cur_stat`,`k`.`st_end_tm` AS `st_end_tm`,ifnull(`k`.`st_end_tm`,timestampdiff(DAY,`k`.`start_dt`,now())) AS `st_end_tm_vir`,`k`.`about_corp` AS `about_corp`,`a`.`topic_disussed` AS `topic_disussed`,`a`.`corp_level` AS `corp_level`,`j`.`prosp_value` AS `corp_level_nm`,`a`.`response` AS `response`,`r`.`prosp_value` AS `response_nm`,`a`.`called_dt` AS `called_dt`,date_format(`a`.`called_dt`,'%m-%d-%y') AS `called_dt_fmt`,date_format(`a`.`called_dt`,'%Y') AS `called_dt_yr`,date_format(`a`.`called_dt`,'%M') AS `called_dt_mon`,`a`.`acc_mgr` AS `acc_mgr`,`c`.`file_name` AS `acc_mgr_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `acc_mgr_nm`,`a`.`call_nxt_dt` AS `call_nxt_dt`,date_format(`a`.`call_nxt_dt`,'%m-%d-%y') AS `call_nxt_dt_fmt`,date_format(`a`.`call_nxt_dt`,'%Y') AS `call_nxt_dt_yr`,date_format(`a`.`call_nxt_dt`,'%M') AS `call_nxt_dt_mon`,if(isnull(`a`.`call_nxt_dt`),'Open','Closed') AS `prosp_corp_activity_cur_stat`,`a`.`call_day_tm` AS `call_day_tm`,if(isnull(`a`.`call_day_tm`),(to_days(now()) - to_days(`a`.`called_dt`)),`a`.`call_day_tm`) AS `call_day_tm_vir`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`h`.`firstname`,' ',`h`.`lastname`) end) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`d`.`firstname`,' ',`d`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`g`.`file_name` AS `arch_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `arch_by_nm` from (((((((((((((((`prosp_corp_activity` `a` left join `emp` `b` on((`b`.`emp_id` = `a`.`acc_mgr`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`a`.`del_by` = `d`.`emp_id`))) left join `emp` `e` on((`a`.`archv_by` = `e`.`emp_id`))) left join `storages` `f` on((`d`.`idstorages` = `f`.`idstorages`))) left join `storages` `g` on((`e`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`h`.`emp_id` = `a`.`updater`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `prosp_lk_val` `r` on((`a`.`response` = `r`.`idprosp_lk_val`))) left join `prosp_lk_val` `j` on((`a`.`corp_level` = `j`.`idprosp_lk_val`))) left join `prosp_corp` `k` on((`a`.`idprosp_corp` = `k`.`idprosp_corp`))) left join `prosp_lk_val` `l` on((`k`.`prosp_corp_type` = `l`.`idprosp_lk_val`))) left join `prosp_lk_val` `m` on((`k`.`corp_source` = `m`.`idprosp_lk_val`))) left join `prosp_lk_val` `n` on((`k`.`corp_domain` = `n`.`idprosp_lk_val`))) left join `prosp_lk_val` `o` on((`k`.`corp_domain_sub` = `o`.`idprosp_lk_val`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_corp_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_corp_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_corp_doc` AS select `a`.`idprosp_corp_doc` AS `idprosp_corp_doc`,`a`.`idprosp_corp` AS `idprosp_corp`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`prosp_corp_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_prosp_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_prosp_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_prosp_lk_val` AS select `a`.`idprosp_lk_val` AS `idprosp_lk_val`,NULL AS `idprosp_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`prosp_value` AS `prosp_value`,NULL AS `child_lvl`,`a`.`prosp_value_desc` AS `prosp_value_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idprosp_lk` AS `parent_id`,`a`.`updated` AS `updated`,ifnull(date_format(`a`.`updated`,'%m-%d-%y %h:%i %p'),'Never') AS `updated_fmt`,`a`.`updater` AS `updater`,`v`.`file_name` AS `updater_fnm`,ifnull(concat(`u`.`firstname`,' ',`u`.`lastname`),'Admin') AS `updater_nm` from ((`prosp_lk_val` `a` left join `emp` `u` on((`a`.`updater` = `u`.`emp_id`))) left join `storages` `v` on((`v`.`idstorages` = `u`.`idstorages`))) union all select NULL AS `NULL`,`a`.`idprosp_lk` AS `idprosp_lk`,NULL AS `lk_val_par`,`a`.`prosp_name` AS `prosp_name`,if((`a`.`child_lvl` = 0),1,ifnull(`a`.`child_lvl`,1)) AS `child_lvl`,`a`.`lk_name_desc` AS `lk_name_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `NULL`,`a`.`updated` AS `updated`,ifnull(date_format(`a`.`updated`,'%m-%d-%y %h:%i %p'),'Never') AS `updated_fmt`,`a`.`updater` AS `updater`,`v`.`file_name` AS `updater_fnm`,ifnull(concat(`u`.`firstname`,' ',`u`.`lastname`),'Admin') AS `updater_nm` from ((`prosp_lk` `a` left join `emp` `u` on((`a`.`updater` = `u`.`emp_id`))) left join `storages` `v` on((`v`.`idstorages` = `u`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr` -- /*!50001 DROP VIEW IF EXISTS `vw_shr`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr` AS select `a`.`idshr` AS `idshr`,`a`.`comp_id` AS `comp_id`,`c`.`file_name` AS `comp_fnm`,`b`.`companyname` AS `companyname`,`a`.`shr_no` AS `shr_no`,(case when ((`a`.`shr_no` > 999) and (`a`.`shr_no` < 1000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000),2)) + 0),'K') using latin1) when (`a`.`shr_no` < 1000) then `a`.`shr_no` when ((`a`.`shr_no` > 999999) and (`a`.`shr_no` < 1000000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000000),2)) + 0),'M') using latin1) when ((`a`.`shr_no` > 999999999) and (`a`.`shr_no` < 1000000000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000000000),2)) + 0),'B') using latin1) when (`a`.`shr_no` > 999999999999) then convert(concat((trim(round((`a`.`shr_no` / 1000000000000),2)) + 0),'T') using latin1) end) AS `shr_no_fmt`,`a`.`hlding` AS `hlding`,concat(`a`.`hlding`,'%') AS `hlding_pcnt`,round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) AS `hlding_amt`,(case when ((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) > 999) and (round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) < 1000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) / 1000),2)) + 0),'K') using latin1) when (round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) < 1000) then round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) when ((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) > 999999) and (round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) < 1000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) / 1000000),2)) + 0),'M') using latin1) when ((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) > 999999999) and (round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) < 1000000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) / 1000000000),2)) + 0),'B') using latin1) when (round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) > 999999999999) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`hlding` / 100)),2) / 1000000000000),2)) + 0),'T') using latin1) end) AS `hlding_amt_fmt`,`a`.`issued` AS `issued`,concat(`a`.`issued`,'%') AS `issued_pcnt`,round((`a`.`shr_no` * (`a`.`issued` / 100)),2) AS `issued_amt`,(case when ((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) > 999) and (round((`a`.`shr_no` * (`a`.`issued` / 100)),2) < 1000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) / 1000),2)) + 0),'K') using latin1) when (round((`a`.`shr_no` * (`a`.`issued` / 100)),2) < 1000) then round((`a`.`shr_no` * (`a`.`issued` / 100)),2) when ((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) > 999999) and (round((`a`.`shr_no` * (`a`.`issued` / 100)),2) < 1000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) / 1000000),2)) + 0),'M') using latin1) when ((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) > 999999999) and (round((`a`.`shr_no` * (`a`.`issued` / 100)),2) < 1000000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) / 1000000000),2)) + 0),'B') using latin1) when (round((`a`.`shr_no` * (`a`.`issued` / 100)),2) > 999999999999) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`issued` / 100)),2) / 1000000000000),2)) + 0),'T') using latin1) end) AS `issued_amt_fmt`,`a`.`thr_hld` AS `thr_hld`,concat(`a`.`thr_hld`,'%') AS `thr_hld_pcnt`,round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) AS `thr_hld_amt`,(case when ((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) > 999) and (round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) < 1000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) / 1000),2)) + 0),'K') using latin1) when (round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) < 1000) then round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) when ((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) > 999999) and (round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) < 1000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) / 1000000),2)) + 0),'M') using latin1) when ((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) > 999999999) and (round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) < 1000000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) / 1000000000),2)) + 0),'B') using latin1) when (round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) > 999999999999) then convert(concat((trim(round((round((`a`.`shr_no` * (`a`.`thr_hld` / 100)),2) / 1000000000000),2)) + 0),'T') using latin1) end) AS `thr_hld_amt_fmt`,`a`.`shr_symbl` AS `shr_symbl`,`a`.`shr_type` AS `shr_type`,`f`.`lk_val` AS `shr_type_nm`,`f`.`lk_val_desc` AS `shr_type_desc`,`a`.`shr_pr` AS `shr_pr`,format(`a`.`shr_pr`,2) AS `shr_pr_fmt`,round((`a`.`shr_no` * `a`.`shr_pr`),2) AS `market_cap`,(case when ((round((`a`.`shr_no` * `a`.`shr_pr`),2) > 999) and (round((`a`.`shr_no` * `a`.`shr_pr`),2) < 1000000)) then convert(concat((trim(round((round((`a`.`shr_no` * `a`.`shr_pr`),2) / 1000),2)) + 0),'K') using latin1) when (round((`a`.`shr_no` * `a`.`shr_pr`),2) < 1000) then round((`a`.`shr_no` * `a`.`shr_pr`),2) when ((round((`a`.`shr_no` * `a`.`shr_pr`),2) > 999999) and (round((`a`.`shr_no` * `a`.`shr_pr`),2) < 1000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * `a`.`shr_pr`),2) / 1000000),2)) + 0),'M') using latin1) when ((round((`a`.`shr_no` * `a`.`shr_pr`),2) > 999999999) and (round((`a`.`shr_no` * `a`.`shr_pr`),2) < 1000000000000)) then convert(concat((trim(round((round((`a`.`shr_no` * `a`.`shr_pr`),2) / 1000000000),2)) + 0),'B') using latin1) when (round((`a`.`shr_no` * `a`.`shr_pr`),2) > 999999999999) then convert(concat((trim(round((round((`a`.`shr_no` * `a`.`shr_pr`),2) / 1000000000000),2)) + 0),'T') using latin1) end) AS `market_cap_fmt`,`a`.`shr_smry` AS `shr_smry`,`a`.`updater` AS `updater`,`e`.`file_name` AS `updater_fnm`,concat(`d`.`firstname`,' ',`d`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`l`.`file_name` AS `del_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`p`.`file_name` AS `archv_by_fnm`,ifnull(concat(`i`.`firstname`,' ',`i`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from (((((((((`shr` `a` left join `company` `b` on((`a`.`comp_id` = `b`.`comp_id`))) left join `storages` `c` on((`c`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`updater`))) left join `storages` `e` on((`e`.`idstorages` = `d`.`idstorages`))) left join `shr_lk_val` `f` on((`f`.`idshr_lk_val` = `a`.`shr_type`))) left join `emp` `h` on((`h`.`emp_id` = `a`.`del_by`))) left join `storages` `l` on((`l`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`i`.`emp_id` = `a`.`archv_by`))) left join `storages` `p` on((`p`.`idstorages` = `i`.`idstorages`))) order by `a`.`updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr_doc` -- /*!50001 DROP VIEW IF EXISTS `vw_shr_doc`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr_doc` AS select `a`.`idshr_doc` AS `idshr_doc`,`a`.`idshr` AS `idshr`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`sto_cloud` AS `sto_cloud`,ifnull(`k`.`lk_val`,'Local') AS `sto_cloud_nm`,`c`.`file_size` AS `file_size`,(case when (`c`.`file_size` < 1024) then concat(`c`.`file_size`,' B') when ((`c`.`file_size` > 1024) and (`c`.`file_size` < 1048576)) then concat(round((`c`.`file_size` / 1024),2),' KB') when ((`c`.`file_size` > 1048576) and (`c`.`file_size` < 1073741824)) then concat(round(((`c`.`file_size` / 1024) / 1024),2),' MB') when (`c`.`file_size` > 1073741824) then concat(round((((`c`.`file_size` / 1024) / 1024) / 1024),2),' GB') end) AS `file_size_fmt`,`c`.`owner_id` AS `owner_id`,`e`.`file_name` AS `owner_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `owner_nm`,`c`.`create_dt` AS `create_dt`,date_format(`c`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,`c`.`expire_dt` AS `expire_dt`,date_format(`c`.`expire_dt`,'%m-%d-%y %h:%i %p') AS `expire_dt_fmt`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`self_view` AS `self_view`,`c`.`smry` AS `smry`,`c`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `ref_emp_nm`,`c`.`usage` AS `usage`,`c`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `updater_nm`,`c`.`updated` AS `updated`,date_format(`c`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((((((`shr_doc` `a` left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`c`.`owner_id` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) left join `emp` `f` on((`c`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `feature_lk_val` `k` on((`a`.`idstorages` = `k`.`idfeature_lk_val`))) left join `emp` `h` on((`c`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr_hld` -- /*!50001 DROP VIEW IF EXISTS `vw_shr_hld`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr_hld` AS select `a`.`idshr_hld` AS `idshr_hld`,`a`.`idshr` AS `idshr`,`m`.`file_name` AS `comp_fnm`,`k`.`companyname` AS `companyname`,`a`.`own_ref_tab` AS `own_ref_tab`,(case when (`a`.`own_ref_tab` like 'Company') then `q`.`file_name` when (`a`.`own_ref_tab` like 'Employee') then `n`.`file_name` end) AS `own_ref_fnm`,(case when (`a`.`own_ref_tab` like 'Company') then `b`.`companyname` when (`a`.`own_ref_tab` like 'Employee') then concat(`d`.`firstname`,' ',`d`.`lastname`) end) AS `own_ref_nm`,`a`.`own_ref_id` AS `own_ref_id`,`a`.`shr_no` AS `shr_no`,(case when ((`a`.`shr_no` > 999) and (`a`.`shr_no` < 1000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000),2)) + 0),'K') using latin1) when (`a`.`shr_no` < 1000) then `a`.`shr_no` when ((`a`.`shr_no` > 999999) and (`a`.`shr_no` < 1000000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000000),2)) + 0),'M') using latin1) when (`a`.`shr_no` > 999999999) then convert(concat((trim(round((`a`.`shr_no` / 1000000000),2)) + 0),'B') using latin1) end) AS `shr_no_fmt`,`j`.`shr_no` AS `total_shares`,(case when ((`j`.`shr_no` > 999) and (`j`.`shr_no` < 1000000)) then convert(concat((trim(round((`j`.`shr_no` / 1000),2)) + 0),'K') using latin1) when (`j`.`shr_no` < 1000) then `j`.`shr_no` when ((`j`.`shr_no` > 999999) and (`j`.`shr_no` < 1000000000)) then convert(concat((trim(round((`j`.`shr_no` / 1000000),2)) + 0),'M') using latin1) when (`j`.`shr_no` > 999999999) then convert(concat((trim(round((`j`.`shr_no` / 1000000000),2)) + 0),'B') using latin1) end) AS `total_shares_fmt`,concat(`a`.`shr_no`,' of ',`j`.`shr_no`) AS `share_amt`,concat((case when ((`a`.`shr_no` > 999) and (`a`.`shr_no` < 1000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000),2)) + 0),'K') using latin1) when (`a`.`shr_no` < 1000) then `a`.`shr_no` when ((`a`.`shr_no` > 999999) and (`a`.`shr_no` < 1000000000)) then convert(concat((trim(round((`a`.`shr_no` / 1000000),2)) + 0),'M') using latin1) when (`a`.`shr_no` > 999999999) then convert(concat((trim(round((`a`.`shr_no` / 1000000000),2)) + 0),'B') using latin1) end),' of ',(case when ((`j`.`shr_no` > 999) and (`j`.`shr_no` < 1000000)) then convert(concat((trim(round((`j`.`shr_no` / 1000),2)) + 0),'K') using latin1) when (`j`.`shr_no` < 1000) then `j`.`shr_no` when ((`j`.`shr_no` > 999999) and (`j`.`shr_no` < 1000000000)) then convert(concat((trim(round((`j`.`shr_no` / 1000000),2)) + 0),'M') using latin1) when (`j`.`shr_no` > 999999999) then convert(concat((trim(round((`j`.`shr_no` / 1000000000),2)) + 0),'B') using latin1) end)) AS `share_amt_fmt`,concat(round(((`a`.`shr_no` / `j`.`shr_no`) * 100),2),'%') AS `shr_no_pcnt`,`j`.`shr_pr` AS `shr_pr`,round(`j`.`shr_pr`,2) AS `shr_pr_fmt`,(`j`.`shr_pr` * `a`.`shr_no`) AS `shr_amt_pr`,(case when (((`j`.`shr_pr` * `a`.`shr_no`) > 999) and ((`j`.`shr_pr` * `a`.`shr_no`) < 1000000)) then convert(concat((trim(round(((`j`.`shr_pr` * `a`.`shr_no`) / 1000),2)) + 0),'K') using latin1) when ((`j`.`shr_pr` * `a`.`shr_no`) < 1000) then (`j`.`shr_pr` * `a`.`shr_no`) when (((`j`.`shr_pr` * `a`.`shr_no`) > 999999) and ((`j`.`shr_pr` * `a`.`shr_no`) < 1000000000)) then convert(concat((trim(round(((`j`.`shr_pr` * `a`.`shr_no`) / 1000000),2)) + 0),'M') using latin1) when ((`j`.`shr_pr` * `a`.`shr_no`) > 999999999) then convert(concat((trim(round(((`j`.`shr_pr` * `a`.`shr_no`) / 1000000000),2)) + 0),'B') using latin1) end) AS `shr_amt_pr_fmt`,`a`.`updater` AS `updater`,`o`.`file_name` AS `updater_fnm`,ifnull(concat(`e`.`firstname`,' ',`e`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,_utf8'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`l`.`file_name` AS `del_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`p`.`file_name` AS `archv_by_fnm`,ifnull(concat(`i`.`firstname`,' ',`i`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from (((((((((((((`shr_hld` `a` left join `shr` `j` on((`j`.`idshr` = `a`.`idshr`))) left join `company` `k` on((`k`.`comp_id` = `j`.`comp_id`))) left join `storages` `m` on((`m`.`idstorages` = `k`.`idstorages`))) left join `company` `b` on((`b`.`comp_id` = `a`.`own_ref_id`))) left join `storages` `q` on((`q`.`idstorages` = `b`.`idstorages`))) left join `emp` `d` on((`d`.`emp_id` = `a`.`own_ref_id`))) left join `storages` `n` on((`n`.`idstorages` = `d`.`idstorages`))) left join `emp` `e` on((`e`.`emp_id` = `a`.`updater`))) left join `storages` `o` on((`o`.`idstorages` = `e`.`idstorages`))) left join `emp` `h` on((`h`.`emp_id` = `a`.`del_by`))) left join `storages` `l` on((`l`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`i`.`emp_id` = `a`.`archv_by`))) left join `storages` `p` on((`p`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr_hld_rec` -- /*!50001 DROP VIEW IF EXISTS `vw_shr_hld_rec`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr_hld_rec` AS select `a`.`idshr_hld_rec` AS `idshr_hld_rec`,`a`.`idshr` AS `idshr`,`c`.`companyname` AS `companyname`,`q`.`file_name` AS `comp_fnm`,`a`.`shr_fm` AS `shr_fm`,`d`.`own_ref_nm` AS `shr_fm_nm`,`a`.`shr_no` AS `shr_no`,concat(round(((`a`.`shr_no` / `b`.`shr_no`) * 100),2),'%') AS `shr_pcnt`,`a`.`shr_to` AS `shr_to`,`e`.`own_ref_nm` AS `shr_to_nm`,`a`.`trade_dt` AS `trade_dt`,date_format(`a`.`trade_dt`,_utf8'%m-%d-%y %h:%i %p') AS `trade_dt_fmt`,`a`.`strike_pr` AS `strike_pr`,round(`a`.`strike_pr`,2) AS `strike_pr_fmt`,`a`.`settle_dt` AS `settle_dt`,date_format(`a`.`settle_dt`,_utf8'%m-%d-%y %h:%i %p') AS `settle_dt_fmt`,`a`.`updater` AS `updater`,`o`.`file_name` AS `updater_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,_utf8'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`l`.`file_name` AS `del_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`p`.`file_name` AS `archv_by_fnm`,ifnull(concat(`i`.`firstname`,' ',`i`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from (((((((((((`shr_hld_rec` `a` left join `shr` `b` on((`b`.`idshr` = `a`.`idshr`))) left join `company` `c` on((`c`.`comp_id` = `b`.`comp_id`))) left join `vw_shr_hld` `d` on((`d`.`idshr_hld` = `a`.`shr_fm`))) left join `vw_shr_hld` `e` on((`e`.`idshr_hld` = `a`.`shr_to`))) left join `emp` `f` on((`f`.`emp_id` = `a`.`updater`))) left join `storages` `o` on((`o`.`idstorages` = `f`.`idstorages`))) left join `emp` `h` on((`h`.`emp_id` = `a`.`del_by`))) left join `storages` `l` on((`l`.`idstorages` = `h`.`idstorages`))) left join `emp` `i` on((`i`.`emp_id` = `a`.`archv_by`))) left join `storages` `p` on((`p`.`idstorages` = `i`.`idstorages`))) left join `storages` `q` on((`p`.`idstorages` = `i`.`idstorages`))) order by `a`.`updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr_hld_trd` -- /*!50001 DROP VIEW IF EXISTS `vw_shr_hld_trd`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr_hld_trd` AS select `a`.`idshr_hld_trd` AS `idshr_hld_trd`,`a`.`idshr_hld` AS `idshr_hld`,`b`.`own_ref_tab` AS `own_ref_tab`,`b`.`own_ref_id` AS `own_ref_id`,`b`.`own_ref_fnm` AS `own_ref_fnm`,`b`.`own_ref_nm` AS `own_ref_nm`,`b`.`comp_fnm` AS `comp_fnm`,`b`.`companyname` AS `companyname`,`a`.`trd_type` AS `trd_type`,`d`.`lk_val` AS `trd_type_nm`,`c`.`shr_type` AS `shr_type`,`c`.`shr_symbl` AS `shr_symbl`,`c`.`shr_type_nm` AS `shr_type_nm`,`c`.`shr_type_desc` AS `shr_type_desc`,`b`.`shr_no` AS `shr_hld_shr_no`,`b`.`shr_no_fmt` AS `shr_hld_shr_no_fmt`,`b`.`total_shares` AS `total_shares`,`b`.`total_shares_fmt` AS `total_shares_fmt`,`b`.`share_amt` AS `share_amt`,`b`.`share_amt_fmt` AS `share_amt_fmt`,`b`.`shr_no_pcnt` AS `shr_no_pcnt`,`b`.`shr_amt_pr` AS `shr_amt_pr`,`b`.`shr_amt_pr_fmt` AS `shr_amt_pr_fmt`,`c`.`shr_pr` AS `shr_pr`,`c`.`shr_pr_fmt` AS `shr_pr_fmt`,`a`.`shr_no_trd` AS `shr_no_trd`,`a`.`trd_pr` AS `trd_pr`,`a`.`trd_smry` AS `trd_smry`,`a`.`updater` AS `updater`,`j`.`file_name` AS `updater_fnm`,concat(`i`.`firstname`,' ',`i`.`lastname`) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`trd_or_dt` AS `trd_or_dt`,date_format(`a`.`trd_or_dt`,'%m-%d-%y %h:%i %p') AS `trd_or_dt_fmt`,`a`.`trd_exp_day` AS `trd_exp_day`,`a`.`trd_exp_dt` AS `trd_exp_dt`,date_format(`a`.`trd_exp_dt`,'%m-%d-%y %h:%i %p') AS `trd_exp_dt_fmt`,`a`.`trd_exe_dt` AS `trd_exe_dt`,date_format(`a`.`trd_exe_dt`,'%m-%d-%y %h:%i %p') AS `trd_exe_dt_fmt`,`a`.`trd_or_exe_dt` AS `trd_or_exe_dt`,ifnull(`a`.`trd_or_exe_dt`,timestampdiff(MINUTE,`a`.`trd_or_dt`,ifnull(`a`.`trd_exe_dt`,now()))) AS `trd_or_exe_dt_vir`,`a`.`del_by` AS `del_by`,`e`.`file_name` AS `del_by_fnm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_by` AS `archv_by`,`g`.`file_name` AS `archv_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `archv_by_nm`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt` from (((((((((`shr_hld_trd` `a` left join `vw_shr_hld` `b` on((`b`.`idshr_hld` = `a`.`idshr_hld`))) left join `vw_shr` `c` on((`c`.`idshr` = `b`.`idshr`))) left join `shr_lk_val` `d` on((`a`.`trd_type` = `d`.`idshr_lk_val`))) left join `emp` `h` on((`a`.`del_by` = `h`.`emp_id`))) left join `storages` `e` on((`e`.`idstorages` = `h`.`idstorages`))) left join `emp` `f` on((`a`.`archv_by` = `f`.`emp_id`))) left join `storages` `g` on((`g`.`idstorages` = `f`.`idstorages`))) left join `emp` `i` on((`i`.`emp_id` = `a`.`updater`))) left join `storages` `j` on((`j`.`idstorages` = `i`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_shr_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_shr_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_shr_lk_val` AS select `a`.`idshr_lk_val` AS `idshr_lk_val`,NULL AS `idshr_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `lk_val`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idshr_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`shr_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `idshr_lk_val`,`a`.`idshr_lk` AS `idshr_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by` from ((`shr_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storage_lk_tag` -- /*!50001 DROP VIEW IF EXISTS `vw_storage_lk_tag`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storage_lk_tag` AS select `a`.`idstorage_lk_tag` AS `idstorage_lk_tag`,`a`.`lk_tag` AS `lk_tag`,`a`.`lk_tag_desc` AS `lk_tag_desc`,`a`.`lk_disp_id` AS `lk_disp_id`,`a`.`lk_parent_tag_id` AS `lk_parent_tag_id`,`a`.`updater` AS `updater`,if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `updater_fmt`,`s`.`file_name` AS `updater_file_name`,`a`.`last_updated` AS `last_updated`,if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) AS `last_updated_fmt`,concat(if(isnull(`a`.`updater`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)),' ',convert(if(isnull(`a`.`last_updated`),'Never',date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `last_updated_by` from ((`storage_lk_tag` `a` left join `emp` `e` on((`a`.`updater` = `e`.`emp_id`))) left join `storages` `s` on((`e`.`idstorages` = `s`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storages` -- /*!50001 DROP VIEW IF EXISTS `vw_storages`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storages` AS select `a`.`idstorages` AS `idstorages`,`a`.`file_name` AS `file_name`,`a`.`file_ser_name` AS `file_ser_name`,`a`.`sto_cloud_link` AS `sto_cloud_link`,ifnull(`a`.`sto_cloud_link`,'None') AS `sto_cloud_link_nm`,`a`.`sto_cloud` AS `sto_cloud`,if(isnull(`a`.`sto_cloud`),'Local',`b`.`lk_val`) AS `sto_cloud_nm`,`a`.`file_size` AS `file_size`,`a`.`file_cnv_size` AS `file_cnv_size`,`a`.`file_cnv_size` AS `actual_size`,`a`.`owner_id` AS `owner_id`,`d`.`file_name` AS `owner_fnm`,if(isnull(`a`.`owner_id`),'No Owner',concat(`c`.`firstname`,' ',`c`.`lastname`)) AS `owner_nm`,`a`.`create_dt` AS `create_dt`,date_format(`a`.`create_dt`,'%m-%d-%y %h:%i %p') AS `create_dt_fmt`,date_format(`a`.`create_dt`,'%Y') AS `create_dt_yr`,date_format(`a`.`create_dt`,'%M') AS `create_dt_mon`,`a`.`expire_dt` AS `expire_dt`,if(isnull(`a`.`expire_dt`),'Never',convert(date_format(`a`.`expire_dt`,'%m-%d-%y') using utf8mb4)) AS `expire_dt_fmt`,date_format(`a`.`expire_dt`,'%M-%Y') AS `expire_dt_fmt2`,(case when (`a`.`expire_dt` < now()) then convert(date_format(`a`.`expire_dt`,'%m-%d-%y') using utf8mb4) when (`a`.`expire_dt` > now()) then timestampdiff(DAY,now(),`a`.`expire_dt`) when isnull(`a`.`expire_dt`) then 'None' end) AS `expire_dt_no_days`,if((isnull(`a`.`expire_dt`) or (`a`.`expire_dt` > now())),'No','Yes') AS `expire_dt_cur_stat`,`a`.`ext_type` AS `ext_type`,`a`.`public` AS `public`,`a`.`self_view` AS `self_view`,`a`.`smry` AS `smry`,`a`.`ref_emp_id` AS `ref_emp_id`,`g`.`file_name` AS `ref_emp_id_fnm`,if(isnull(`a`.`ref_emp_id`),'None',concat(`f`.`firstname`,' ',`f`.`lastname`)) AS `ref_emp_id_nm`,`a`.`updater` AS `updater`,`i`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'admin',concat(`h`.`firstname`,' ',`h`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_dt_fmt`,`a`.`usage` AS `usage`,`a`.`sto_tags` AS `sto_tags`,ifnull(`a`.`sto_tags`,'No Tags') AS `sto_tags_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`k`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`j`.`firstname`,' ',`j`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`m`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`l`.`firstname`,' ',`l`.`lastname`) end) AS `archv_by_nm`,`a`.`chk_del` AS `chk_del`,`a`.`file_cnvt` AS `file_cnvt`,`a`.`dis_mir_lvl` AS `dis_mir_lvl`,`a`.`chk_sync` AS `chk_sync`,`a`.`chk_sync_date` AS `chk_sync_date`,`a`.`show_list` AS `show_list` from (((((((((((`storages` `a` left join `storages_lk_val` `b` on((`a`.`sto_cloud` = `b`.`idstorages_lk_val`))) left join `emp` `c` on((`a`.`owner_id` = `c`.`emp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `emp` `f` on((`a`.`ref_emp_id` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`updater` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`del_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `emp` `l` on((`a`.`archv_by` = `l`.`emp_id`))) left join `storages` `m` on((`l`.`idstorages` = `m`.`idstorages`))) order by `a`.`updated` desc */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storages_access` -- /*!50001 DROP VIEW IF EXISTS `vw_storages_access`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storages_access` AS select `a`.`idstorages_access` AS `idstorages_access`,`a`.`idstorages` AS `idstorages`,`a`.`access_to` AS `access_to`,`c`.`file_name` AS `access_to_fnm`,concat(`b`.`firstname`,' ',`b`.`lastname`) AS `access_to_nm`,`a`.`access_type` AS `access_type`,`a`.`updater` AS `updater`,`e`.`file_name` AS `updater_fnm`,ifnull(concat(`d`.`firstname`,' ',`d`.`lastname`),'Admin') AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from ((((`storages_access` `a` left join `emp` `b` on((`a`.`access_to` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `emp` `d` on((`a`.`updater` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storages_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_storages_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storages_audit` AS select `a`.`idstorages_audit` AS `idstorages_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,if(isnull(`a`.`del_by`),'Admin',concat(`e`.`firstname`,' ',`e`.`lastname`)) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,if(isnull(`a`.`archv_by`),'Admin',concat(`g`.`firstname`,' ',`g`.`lastname`)) AS `archv_by_nm` from (((((((`storages_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storages_order` -- /*!50001 DROP VIEW IF EXISTS `vw_storages_order`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storages_order` AS select `a`.`idstorages_order` AS `idstorages_order`,`a`.`create_dt` AS `create_dt`,date_format(`a`.`create_dt`,'%m-%d-%y') AS `create_dt_fmt`,date_format(`a`.`create_dt`,'%Y') AS `create_dt_yr`,date_format(`a`.`create_dt`,'%M') AS `create_dt_mon`,`a`.`create_grp` AS `create_grp`,`a`.`idnet_ser` AS `idnet_ser`,`b`.`hostnm` AS `hostnm`,`b`.`hostdm` AS `hostdm`,`b`.`ip_lan` AS `ip_lan`,`b`.`ip_wan` AS `ip_wan`,concat(ifnull(`b`.`hostnm`,'No HostName'),' ',ifnull(`b`.`hostdm`,'No HostDomain '),' ',ifnull(`b`.`ip_lan`,'No IP LAN '),' ',ifnull(`b`.`ip_wan`,'No IP WAN')) AS `server`,`a`.`stored_dt` AS `stored_dt`,(case when (isnull(`a`.`stored_dt`) and isnull(`a`.`idstorages`)) then 'Not Used' when (isnull(`a`.`stored_dt`) and (`a`.`idstorages` is not null)) then 'Not Sync' when ((`a`.`stored_dt` is not null) and (`a`.`idstorages` is not null)) then convert(date_format(`a`.`stored_dt`,'%m-%d-%y') using utf8mb4) end) AS `stored_dt_fmt`,(case when (isnull(`a`.`stored_dt`) and isnull(`a`.`idstorages`)) then 'Not Used' when (isnull(`a`.`stored_dt`) and (`a`.`idstorages` is not null)) then 'Not Sync' when ((`a`.`stored_dt` is not null) and (`a`.`idstorages` is not null)) then convert(date_format(`a`.`stored_dt`,'%Y') using utf8mb4) end) AS `stored_dt_yr`,(case when (isnull(`a`.`stored_dt`) and isnull(`a`.`idstorages`)) then 'Not Used' when (isnull(`a`.`stored_dt`) and (`a`.`idstorages` is not null)) then 'Not Sync' when ((`a`.`stored_dt` is not null) and (`a`.`idstorages` is not null)) then convert(date_format(`a`.`stored_dt`,'%M') using utf8mb4) end) AS `stored_dt_mon`,(case when (isnull(`a`.`stored_dt`) and isnull(`a`.`idstorages`)) then 'Not Used' when (isnull(`a`.`stored_dt`) and (`a`.`idstorages` is not null)) then 'Not Sync' when ((`a`.`stored_dt` is not null) and (`a`.`idstorages` is not null)) then 'Used' end) AS `stored_dt_cur_stat`,`a`.`idstorages` AS `idstorages`,`c`.`file_name` AS `file_name`,`c`.`file_ser_name` AS `file_ser_name`,`c`.`file_size` AS `file_size`,`c`.`ext_type` AS `ext_type`,`c`.`public` AS `public`,`c`.`chk_sync` AS `chk_sync`,`a`.`create_stored_dt` AS `create_stored_dt` from ((`storages_order` `a` left join `net_ser` `b` on((`a`.`idnet_ser` = `b`.`idnet_ser`))) left join `storages` `c` on((`a`.`idstorages` = `c`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_storages_ref` -- /*!50001 DROP VIEW IF EXISTS `vw_storages_ref`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_storages_ref` AS select `a`.`idstorages_ref` AS `idstorages_ref`,`a`.`idstorages` AS `idstorages`,`b`.`file_name` AS `file_name`,`a`.`idlook_menu_pvt_lvl1` AS `idlook_menu_pvt_lvl1`,`c`.`lk_values` AS `idlook_menu_pvt_lvl1_nm`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`sto_tab_nm` AS `sto_tab_nm` from (((`storages_ref` `a` left join `storages` `b` on((`b`.`idstorages` = `a`.`idstorages`))) left join `look_menu_pvt` `c` on((`c`.`idlook_menu_pvt` = `a`.`idlook_menu_pvt_lvl1`))) left join `look_menu_pvt` `d` on((`d`.`idlook_menu_pvt` = `a`.`idlook_menu_pvt_lvl2`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_student` -- /*!50001 DROP VIEW IF EXISTS `vw_student`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`heshmapatel`@`%` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_student` AS select `a`.`idstudent` AS `Idstudent`,`a`.`first_name` AS `first_name`,`a`.`last_name` AS `last_name`,`a`.`nick_name` AS `nick_name`,`a`.`school_nm` AS `school_nm`,`b`.`lk_val` AS `school_name`,`a`.`dob` AS `dob`,date_format(`a`.`dob`,'%m-%d-%y') AS `dob_fmt`,`a`.`gender` AS `gender`,`c`.`lk_val` AS `gender_nm`,`a`.`idstudent_doc` AS `idstudent_doc`,`a`.`updater` AS `updater`,concat(`d`.`first_name`,' ',`d`.`last_name`) AS `updater_nm`,`a`.`last_updated` AS `last_updated`,date_format(`a`.`last_updated`,'%m-%d-%y-%h-%i-%p') AS `last_updated_fmt` from (((`student` `a` left join `student_lk_val` `b` on((`a`.`school_nm` = `b`.`idstudent_lk_value`))) left join `student_lk_val` `c` on((`a`.`gender` = `c`.`idstudent_lk_value`))) left join `student` `d` on((`a`.`updater` = `d`.`idstudent`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_student_class` -- /*!50001 DROP VIEW IF EXISTS `vw_student_class`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`heshmapatel`@`%` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_student_class` AS select `a`.`id_std_class` AS `id_std_class`,`a`.`idstudent` AS `idstudent`,concat(`b`.`first_name`,' ',`b`.`last_name`) AS `student_nm`,`c`.`lk_val` AS `school_name`,`b`.`nick_name` AS `nick_name`,`b`.`school_nm` AS `school_nm`,`b`.`dob` AS `dob`,date_format(`b`.`dob`,'%m-%d-%y') AS `dob_fmt`,`b`.`gender` AS `gender`,`d`.`lk_val` AS `gender_nm`,`a`.`std_class` AS `std_class`,`a`.`from` AS `from`,date_format(`a`.`from`,'%m-%d-%y') AS `from_fmt`,`a`.`to` AS `to`,date_format(`a`.`to`,'%m-%d-%y') AS `to_fmt` from (((`student_class` `a` left join `student` `b` on((`a`.`idstudent` = `b`.`idstudent`))) left join `student_lk_val` `c` on((`b`.`school_nm` = `c`.`idstudent_lk_value`))) left join `student_lk_val` `d` on((`b`.`gender` = `d`.`idstudent_lk_value`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_student_class_exam` -- /*!50001 DROP VIEW IF EXISTS `vw_student_class_exam`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8mb4 */; /*!50001 SET character_set_results = utf8mb4 */; /*!50001 SET collation_connection = utf8mb4_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_student_class_exam` AS select `a`.`id_std_class_exam` AS `id_std_class_exam`,`b`.`idstudent` AS `idstudent`,concat(`c`.`first_name`,' ',`c`.`last_name`) AS `student_nm`,`c`.`nick_name` AS `nick_name`,`c`.`school_nm` AS `school_nm`,`d`.`lk_val` AS `school_name`,`c`.`gender` AS `gender`,`e`.`lk_val` AS `gender_nm`,`c`.`dob` AS `dob`,date_format(`c`.`dob`,'%m-%d-%y') AS `dob_fmt`,`a`.`id_std_class` AS `id_std_class`,`b`.`std_class` AS `std_class`,`b`.`from` AS `from`,date_format(`b`.`from`,'%m-%d-%y') AS `from_fmt`,`b`.`to` AS `to`,date_format(`b`.`to`,'%m-%d-%y') AS `to_fmt`,`a`.`subject` AS `subject`,`a`.`marks` AS `marks`,`a`.`total` AS `total`,`a`.`percentage` AS `percentage`,if((`a`.`percentage` >= 40),'Pass','Fail') AS `result`,`a`.`updater` AS `updater`,if(isnull(`a`.`updater`),'No Updater',concat(`f`.`first_name`,' ',`f`.`last_name`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,concat(`g`.`first_name`,' ',`g`.`last_name`) AS `del_by_nm`,`a`.`del_day` AS `del_day`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,concat(`h`.`first_name`,' ',`h`.`last_name`) AS `archv_by_nm` from (((((((`student_class_exam` `a` left join `student_class` `b` on((`a`.`id_std_class` = `b`.`id_std_class`))) left join `student` `c` on((`b`.`idstudent` = `c`.`idstudent`))) left join `student_lk_val` `d` on((`c`.`school_nm` = `d`.`idstudent_lk_value`))) left join `student_lk_val` `e` on((`c`.`gender` = `d`.`idstudent_lk_value`))) left join `student` `f` on((`a`.`updater` = `f`.`idstudent`))) left join `student` `g` on((`a`.`del_by` = `g`.`idstudent`))) left join `student` `h` on((`a`.`archv_by` = `h`.`idstudent`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_tax_audit` -- /*!50001 DROP VIEW IF EXISTS `vw_tax_audit`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_tax_audit` AS select `a`.`idtax_audit` AS `idtax_audit`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt`,date_format(`a`.`updated`,'%Y') AS `updated_fmt_yr`,date_format(`a`.`updated`,'%M') AS `updated_fmt_mon`,dayname(`a`.`updated`) AS `updated_fmt_day`,`a`.`updater` AS `updater`,`c`.`file_name` AS `updater_fnm`,(case when (isnull(`a`.`updated`) and isnull(`a`.`updater`)) then 'Not Updated' when (isnull(`a`.`updater`) and (`a`.`updated` is not null)) then 'Admin' when ((`a`.`updated` is not null) and (`a`.`updater` is not null)) then concat(`b`.`firstname`,' ',`b`.`lastname`) end) AS `updater_nm`,`a`.`table_update` AS `table_update`,`a`.`action` AS `action`,`a`.`table_id` AS `table_id`,`a`.`col1` AS `col1`,`a`.`idlook_menu_pvt_lvl2` AS `idlook_menu_pvt_lvl2`,`d`.`lk_values` AS `idlook_menu_pvt_lvl2_nm`,`a`.`del_dt` AS `del_dt`,date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') AS `del_dt_fmt`,ifnull(convert(date_format(`a`.`del_dt`,'%Y') using utf8mb4),'Not Deleted') AS `del_dt_yr`,ifnull(convert(date_format(`a`.`del_dt`,'%M') using utf8mb4),'Not Deleted') AS `del_dt_mon`,`a`.`del_by` AS `del_by`,`f`.`file_name` AS `del_by_fnm`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`del_by`)) then 'Not Deleted' when (isnull(`a`.`del_by`) and (`a`.`del_dt` is not null)) then 'Admin' when ((`a`.`del_dt` is not null) and (`a`.`del_by` is not null)) then concat(`e`.`firstname`,' ',`e`.`lastname`) end) AS `del_by_nm`,`a`.`del_day` AS `del_day`,if((`a`.`archv_dt` is not null),'Never',(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d')))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') AS `archv_dt_fmt`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%Y') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_yr`,(case when (isnull(`a`.`del_dt`) and isnull(`a`.`archv_dt`)) then 'Not Archived' when isnull(`a`.`del_dt`) then convert(date_format(`a`.`archv_dt`,'%M') using utf8mb4) when ((`a`.`del_dt` is not null) and isnull(`a`.`archv_dt`)) then 'Deleted' end) AS `archv_dt_mon`,`a`.`archv_by` AS `archv_by`,`h`.`file_name` AS `archv_by_fnm`,(case when (isnull(`a`.`archv_dt`) and isnull(`a`.`archv_by`)) then 'Not Archived' when (isnull(`a`.`archv_by`) and (`a`.`archv_dt` is not null)) then 'Admin' when ((`a`.`archv_dt` is not null) and (`a`.`archv_by` is not null)) then concat(`g`.`firstname`,' ',`g`.`lastname`) end) AS `archv_by_nm` from (((((((`tax_audit` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_menu_pvt` `d` on((`a`.`idlook_menu_pvt_lvl2` = `d`.`idlook_menu_pvt`))) left join `emp` `e` on((`a`.`del_by` = `e`.`emp_id`))) left join `storages` `f` on((`e`.`idstorages` = `f`.`idstorages`))) left join `emp` `g` on((`a`.`archv_by` = `g`.`emp_id`))) left join `storages` `h` on((`g`.`idstorages` = `h`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_tax_lk_val` -- /*!50001 DROP VIEW IF EXISTS `vw_tax_lk_val`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_tax_lk_val` AS select `a`.`idtax_lk_val` AS `idtax_lk_val`,NULL AS `idtax_lk`,`a`.`lk_val_par` AS `lk_val_par`,`a`.`lk_val` AS `lk_val`,`a`.`lk_val_desc` AS `lk_val_desc`,`a`.`disp_order` AS `disp_order`,`a`.`idtax_lk` AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`tax_lk_val` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) union all select NULL AS `idtax_lk_val`,`a`.`idtax_lk` AS `idtax_lk`,NULL AS `lk_val_par`,`a`.`lk_nm` AS `lk_nm`,`a`.`lk_nm_desc` AS `lk_nm_desc`,`a`.`disp_order` AS `disp_order`,NULL AS `parent_id`,`a`.`updater` AS `updater`,`d`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`b`.`firstname`,' ',`b`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) AS `updated_fmt`,concat(ifnull(concat(`b`.`firstname`,' ',`b`.`lastname`),'Admin'),' ',convert(if(isnull(`a`.`updated`),'Never',date_format(`a`.`updated`,'%m-%d-%y %h:%i %p')) using latin1)) AS `updated_by` from ((`tax_lk` `a` left join `emp` `b` on((`a`.`updater` = `b`.`emp_id`))) left join `storages` `d` on((`d`.`idstorages` = `b`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_tax_reg` -- /*!50001 DROP VIEW IF EXISTS `vw_tax_reg`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_tax_reg` AS select `a`.`idtax_reg` AS `idtax_reg`,`a`.`comp_id` AS `comp_id`,`c`.`file_name` AS `comp_fnm`,`b`.`companyname` AS `comp_nm`,`a`.`state_id` AS `state_id`,`d`.`state_name` AS `state_nm`,`a`.`city_id` AS `city_id`,`l`.`city_name` AS `city_nm`,`a`.`dept_id` AS `dept_id`,`e`.`lk_val` AS `dept_nm`,`a`.`reg_number` AS `reg_number`,`a`.`login_smry` AS `login_smry`,`a`.`login_link` AS `login_link`,`a`.`comp_open_dt` AS `comp_open_dt`,ifnull(convert(date_format(`a`.`comp_open_dt`,'%m-%d-%y') using utf8mb4),'Not Open') AS `comp_open_dt_fmt`,`a`.`comp_close_dt` AS `comp_close_dt`,ifnull(convert(date_format(`a`.`comp_close_dt`,'%m-%d-%y') using utf8mb4),'Open') AS `comp_close_dt_fmt`,if(isnull(`a`.`comp_close_dt`),'Open','Close') AS `comp_open_close_cur_stat`,`a`.`comp_open_close_day` AS `comp_open_close_day`,ifnull(`a`.`comp_open_close_day`,timestampdiff(DAY,`a`.`comp_open_dt`,now())) AS `comp_open_close_day_vir`,`a`.`last_updated` AS `last_updated`,ifnull(convert(date_format(`a`.`last_updated`,'%m-%d-%y %h:%i %p') using utf8mb4),'Never') AS `last_updated_fmt`,`a`.`updated_by` AS `updated_by`,`g`.`file_name` AS `updated_by_fnm`,ifnull(concat(`f`.`firstname`,' ',`f`.`lastname`),'Admin') AS `updated_by_nm`,`a`.`del_dt` AS `del_dt`,ifnull(convert(date_format(`a`.`del_dt`,'%m-%d-%y %h:%i %p') using utf8mb4),'Never') AS `del_dt_fmt`,`a`.`del_by` AS `del_by`,`i`.`file_name` AS `del_by_fnm`,ifnull(concat(`h`.`firstname`,' ',`h`.`lastname`),'Admin') AS `del_by_nm`,`a`.`del_day` AS `del_day`,(to_days((date_format(`a`.`del_dt`,'%y-%m-%d') + interval `a`.`del_day` day)) - to_days(date_format(now(),'%y-%m-%d'))) AS `del_day_vir`,`a`.`archv_dt` AS `archv_dt`,ifnull(convert(date_format(`a`.`archv_dt`,'%m-%d-%y %h:%i %p') using utf8mb4),'Never') AS `archv_dt_fmt`,`a`.`archv_by` AS `archv_by`,`k`.`file_name` AS `archv_by_fnm`,ifnull(concat(`j`.`firstname`,' ',`j`.`lastname`),'Admin') AS `archv_by_nm` from (((((((((((`tax_reg` `a` left join `company` `b` on((`a`.`comp_id` = `b`.`comp_id`))) left join `storages` `c` on((`b`.`idstorages` = `c`.`idstorages`))) left join `look_state` `d` on((`a`.`state_id` = `d`.`state_id`))) left join `tax_lk_val` `e` on((`a`.`dept_id` = `e`.`idtax_lk_val`))) left join `emp` `f` on((`a`.`updated_by` = `f`.`emp_id`))) left join `storages` `g` on((`f`.`idstorages` = `g`.`idstorages`))) left join `emp` `h` on((`a`.`del_by` = `h`.`emp_id`))) left join `storages` `i` on((`h`.`idstorages` = `i`.`idstorages`))) left join `emp` `j` on((`a`.`archv_by` = `j`.`emp_id`))) left join `storages` `k` on((`j`.`idstorages` = `k`.`idstorages`))) left join `look_city` `l` on((`a`.`city_id` = `l`.`city_id`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_tax_reg_rate` -- /*!50001 DROP VIEW IF EXISTS `vw_tax_reg_rate`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_tax_reg_rate` AS select `a`.`idtax_reg_rate` AS `idtax_reg_rate`,`a`.`idtax_reg` AS `idtax_reg`,`b`.`comp_id` AS `comp_id`,`d`.`file_name` AS `comp_fnm`,`c`.`companyname` AS `comp_nm`,`b`.`state_id` AS `state_id`,`e`.`state_name` AS `state_nm`,`b`.`city_id` AS `city_id`,`f`.`city_name` AS `city_nm`,`b`.`dept_id` AS `dept_id`,`g`.`lk_val` AS `dept_nm`,`b`.`reg_number` AS `reg_number`,`b`.`comp_open_dt` AS `comp_open_dt`,ifnull(date_format(`b`.`comp_open_dt`,'%m-%d-%y'),'Not Open') AS `comp_open_dt_fmt`,`b`.`comp_close_dt` AS `comp_close_dt`,ifnull(date_format(`b`.`comp_close_dt`,'%m-%d-%y'),'Open') AS `comp_close_dt_fmt`,`b`.`comp_open_close_day` AS `comp_open_close_day`,ifnull(`b`.`comp_open_close_day`,timestampdiff(DAY,`b`.`comp_open_dt`,now())) AS `comp_open_close_day_vir`,`a`.`tax_for` AS `tax_for`,`a`.`creditable` AS `creditable`,`a`.`tax_frm_dt` AS `tax_frm_dt`,ifnull(date_format(`a`.`tax_frm_dt`,'%m-%d-%y'),'Not Started') AS `tax_frm_dt_fmt`,`a`.`tax_to_dt` AS `tax_to_dt`,(case when (`a`.`tax_to_dt` is not null) then date_format(`a`.`tax_to_dt`,'%m-%d-%y') when (isnull(`a`.`tax_frm_dt`) and isnull(`a`.`tax_to_dt`)) then 'Not Started' when isnull(`a`.`tax_to_dt`) then 'In Progress' end) AS `tax_to_dt_fmt`,if(isnull(`a`.`tax_to_dt`),'Open','Close') AS `tax_frm_to_cur_stat`,`a`.`tax_frm_to_day` AS `tax_frm_to_day`,ifnull(`a`.`tax_frm_to_day`,timestampdiff(DAY,`a`.`tax_frm_dt`,now())) AS `tax_frm_to_day_vir`,`a`.`tax_limit` AS `tax_limit`,`a`.`gender` AS `gender`,`h`.`lk_val` AS `gender_nm`,`a`.`tax_amt` AS `tax_amt`,`a`.`parent_id` AS `parent_id`,`a`.`tax_type` AS `tax_type`,`a`.`updater` AS `updater`,`j`.`file_name` AS `updater_fnm`,if(isnull(`a`.`updater`),'Admin',concat(`i`.`firstname`,' ',`i`.`lastname`)) AS `updater_nm`,`a`.`updated` AS `updated`,date_format(`a`.`updated`,'%m-%d-%y %h:%i %p') AS `updated_fmt` from (((((((((`tax_reg_rate` `a` left join `tax_reg` `b` on((`a`.`idtax_reg` = `b`.`idtax_reg`))) left join `company` `c` on((`b`.`comp_id` = `c`.`comp_id`))) left join `storages` `d` on((`c`.`idstorages` = `d`.`idstorages`))) left join `look_state` `e` on((`b`.`state_id` = `e`.`state_id`))) left join `look_city` `f` on((`b`.`city_id` = `f`.`city_id`))) left join `tax_lk_val` `g` on((`b`.`dept_id` = `g`.`idtax_lk_val`))) left join `emp_lk_val` `h` on((`a`.`gender` = `h`.`idemp_lk_value`))) left join `emp` `i` on((`a`.`updater` = `i`.`emp_id`))) left join `storages` `j` on((`i`.`idstorages` = `j`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; -- -- Final view structure for view `vw_web_mail` -- /*!50001 DROP VIEW IF EXISTS `vw_web_mail`*/; /*!50001 SET @saved_cs_client = @@character_set_client */; /*!50001 SET @saved_cs_results = @@character_set_results */; /*!50001 SET @saved_col_connection = @@collation_connection */; /*!50001 SET character_set_client = utf8 */; /*!50001 SET character_set_results = utf8 */; /*!50001 SET collation_connection = utf8_general_ci */; /*!50001 CREATE ALGORITHM=UNDEFINED */ /*!50013 DEFINER=`av_ziya`@`localhost` SQL SECURITY DEFINER */ /*!50001 VIEW `vw_web_mail` AS select `a`.`idweb_mail` AS `idweb_mail`,`a`.`email_sender` AS `email_sender`,`a`.`idlook_ip_addr` AS `idlook_ip_addr`,`b`.`ip_address` AS `ip_address`,`b`.`domain_nm` AS `domain_nm`,`b`.`ip_contry` AS `ip_contry`,`b`.`ip_state` AS `ip_state`,`b`.`ip_city` AS `ip_city`,`b`.`ip_post_code` AS `ip_post_code`,`a`.`idnet_mail_send` AS `idnet_mail_send`,`c`.`mail_server_port` AS `mail_server_port`,`c`.`user_id` AS `user_id`,`c`.`pass_word` AS `pass_word`,`c`.`send_stat` AS `send_stat`,`c`.`usage_order` AS `usage_order`,`a`.`os_nm` AS `os_nm`,`a`.`browser_nm` AS `browser_nm`,`a`.`device_nm` AS `device_nm`,`a`.`msg_sent` AS `msg_sent`,`a`.`sent_dt` AS `sent_dt`,date_format(`a`.`sent_dt`,'%m-%d-%y %h:%i %p') AS `sent_dt_fmt`,date_format(`a`.`sent_dt`,'%Y') AS `sent_dt_yr`,date_format(`a`.`sent_dt`,'%M') AS `sent_dt_mon`,date_format(`a`.`sent_dt`,'%Y %M') AS `sent_dt_yr_mon`,`a`.`action_by` AS `action_by`,`e`.`file_name` AS `action_by_fnm`,if(isnull(`a`.`action_by`),'Admin',concat(`d`.`firstname`,'',`d`.`lastname`)) AS `action_by_nm`,`a`.`action_dt` AS `action_dt`,date_format(`a`.`action_dt`,'%m-%d-%y %h:%i %p') AS `action_dt_fmt`,`a`.`sent_act_day` AS `sent_act_day`,(to_days((date_format(`a`.`action_dt`,'%y-%m-%d %h:%i %p') + interval `a`.`sent_act_day` day)) - to_days(date_format(now(),'%y-%m-%d %h:%i %p'))) AS `sent_act_day_vir` from ((((`web_mail` `a` left join `look_ip_addr` `b` on((`a`.`idlook_ip_addr` = `b`.`idlook_ip_addr`))) left join `net_mail_send` `c` on((`a`.`idnet_mail_send` = `c`.`idnet_mail_send`))) left join `emp` `d` on((`a`.`action_by` = `d`.`emp_id`))) left join `storages` `e` on((`d`.`idstorages` = `e`.`idstorages`))) */; /*!50001 SET character_set_client = @saved_cs_client */; /*!50001 SET character_set_results = @saved_cs_results */; /*!50001 SET collation_connection = @saved_col_connection */; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:56 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `asset_lk` -- LOCK TABLES `asset_lk` WRITE; /*!40000 ALTER TABLE `asset_lk` DISABLE KEYS */; INSERT INTO `asset_lk` VALUES (1,'Workflow Names',NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `asset_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:56 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `bank_lk` -- LOCK TABLES `bank_lk` WRITE; /*!40000 ALTER TABLE `bank_lk` DISABLE KEYS */; INSERT INTO `bank_lk` VALUES (1,'Transaction Type',NULL,3,NULL,NULL,NULL),(2,'Flow Values',NULL,4,NULL,NULL,NULL),(3,'Account Type',NULL,2,NULL,NULL,NULL),(4,'Banking Type',NULL,1,NULL,NULL,NULL); /*!40000 ALTER TABLE `bank_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:57 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `comp_lk` -- LOCK TABLES `comp_lk` WRITE; /*!40000 ALTER TABLE `comp_lk` DISABLE KEYS */; INSERT INTO `comp_lk` VALUES (1,'Department',NULL,1,NULL,'2024-10-24 08:09:01',NULL),(2,'Pay Type','Engage Entity, bill pay type',2,NULL,'2024-10-24 08:09:01',NULL),(3,'Corporation Type',NULL,3,NULL,'2024-10-24 08:09:01',NULL),(5,'Title','Contact Title',4,NULL,'2024-10-24 08:09:01',NULL); /*!40000 ALTER TABLE `comp_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:58 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `dev_lk_label` -- LOCK TABLES `dev_lk_label` WRITE; /*!40000 ALTER TABLE `dev_lk_label` DISABLE KEYS */; INSERT INTO `dev_lk_label` VALUES (1,'wd_35_pr','Apex',NULL,2,NULL,NULL,'2025-05-13 04:31:05'),(2,NULL,'Apex Form',NULL,1,1,NULL,'2020-03-25 05:55:24'),(3,NULL,'Pagination',NULL,2,1,NULL,'2020-03-24 07:27:19'),(4,NULL,'Projects Main',NULL,1,124,NULL,NULL),(5,NULL,'Apex Archive','app_e_dt_fmt',5,1,NULL,'2020-11-05 11:44:56'),(6,NULL,'Application',NULL,1,2,NULL,'2020-04-28 11:19:00'),(7,NULL,'Attachments',NULL,2,2,NULL,'2020-11-05 11:44:56'),(8,NULL,'Application','app_name',1,6,NULL,'2021-05-18 04:32:41'),(9,'wd_34_pr','Glacier',NULL,3,NULL,NULL,'2021-06-15 07:00:48'),(10,NULL,'Open Date','app_st_dt_fmt',3,6,NULL,NULL),(11,NULL,'Close Date','app_e_dt_fmt',4,6,NULL,NULL),(12,NULL,'Description','app_description',9,6,NULL,NULL),(13,'wd_5_pr','Credence',NULL,5,NULL,NULL,'2021-06-16 07:08:55'),(14,'wd_33_pr','25',NULL,1,3,NULL,'2020-03-24 07:27:19'),(15,NULL,'File Name','file_name',2,7,NULL,NULL),(16,NULL,'File Type','ext_type',4,7,NULL,NULL),(17,'wd_6_pr','Coping',NULL,6,NULL,NULL,'2021-06-16 07:09:10'),(18,NULL,'Burning Main',NULL,1,186,NULL,'2020-03-24 07:28:06'),(19,NULL,'Columns',NULL,2,94,NULL,'2020-03-27 07:32:31'),(20,NULL,'Pagination',NULL,1,17,NULL,'2020-03-24 08:27:33'),(21,NULL,'25',NULL,1,20,NULL,'2020-03-27 09:23:13'),(22,NULL,'50',NULL,2,20,NULL,NULL),(23,NULL,'100',NULL,3,20,NULL,NULL),(24,NULL,'250',NULL,4,20,NULL,'2020-03-24 08:41:05'),(25,'wd_4_pr','Phase ID','iddev_est_reqs_status',1,18,NULL,'2022-04-04 04:27:57'),(26,'wd_7_pr','Cube Status','req_stat_pcnt,req_stat_cnt_tol',4,18,NULL,'2020-04-24 08:57:14'),(27,'wd_6_pr','Phase Lag','stat_lag_time_vir',2,18,NULL,'2020-04-27 07:10:01'),(28,NULL,'Glacier Status','est_e_dt',1,95,NULL,NULL),(29,NULL,'Cube Status','req_e_dt',4,95,NULL,NULL),(30,NULL,'Started','stat_st_dt_fmt',2,27,NULL,'2020-04-21 09:24:17'),(31,'wd_15_pr','Cube Detail','req_desc',3,18,NULL,'2020-04-17 11:34:40'),(32,NULL,'Phase','req_status_nm',7,95,NULL,NULL),(33,NULL,'Phase Month','req_st_dt_mon',9,95,NULL,NULL),(34,NULL,'Phase Year','req_st_dt_yr',8,95,NULL,NULL),(35,'wd_6_pr','Phase','req_status_nm',5,18,NULL,'2020-04-17 11:35:32'),(36,'wd_6_pr','Ph Lag Now','cur_stat_lag_tm_vir',8,18,NULL,'2020-04-17 11:35:32'),(37,'wd_6_pr','Phase Tm','stat_time_vir',6,18,NULL,NULL),(38,NULL,'Assign To','assigned_to_nm',10,95,NULL,NULL),(39,NULL,'Assign To Now','cur_assigned_to_nm',15,95,NULL,NULL),(40,'wd_10_pr','Assign To','assigned_to_nm',7,18,NULL,NULL),(41,'wd_6_pr','Phase Now','cur_stat_nm',9,18,NULL,NULL),(42,'wd_8_pr','Ph Tm Now','cur_stat_tm_vir',10,18,NULL,NULL),(43,NULL,'Phase Now','cur_stat_nm',16,95,NULL,NULL),(44,NULL,'Apex ID','iddev_apps',1,289,NULL,'2024-02-26 04:25:31'),(45,'wd_10_pr','Assign To Now','cur_assigned_to_nm',11,18,NULL,NULL),(46,'wd_10_pr','Updater','last_updated_fmt,updater_nm',12,18,NULL,'2020-07-28 05:30:10'),(47,NULL,'Ph Lag Now','cur_stat_lag_tm_vir',8,19,NULL,'2020-03-24 08:44:48'),(48,NULL,'Open',NULL,1,75,NULL,NULL),(49,NULL,'Close',NULL,2,75,NULL,NULL),(50,NULL,'Category','category_nm',11,95,NULL,'2020-09-18 01:53:49'),(51,NULL,'Cube Type','req_type_nm',12,95,NULL,'2020-04-21 10:48:23'),(52,NULL,'Skills','skill_lvl_nm',13,95,NULL,NULL),(53,NULL,'Gap','gap_lvl_nm',14,95,NULL,NULL),(54,NULL,'50',NULL,2,3,NULL,NULL),(55,NULL,'App Name','app_name',1,4,NULL,NULL),(56,NULL,'Glacier','app_est_cnt_tol,app_est_pcnt',3,4,NULL,NULL),(57,NULL,'Company Name','companyname',7,4,NULL,NULL),(58,NULL,'Skill Avg','app_skill_avg',10,4,NULL,NULL),(59,NULL,'Gap Avg','app_gap_avg',11,4,NULL,NULL),(60,NULL,'Lag Tm','app_lag_tm_vir',4,4,NULL,NULL),(61,NULL,'Stat Tm','app_stat_tm_vir',2,4,NULL,NULL),(62,NULL,'Cubes','app_est_req_pcnt, app_est_req_cnt_tol',5,4,NULL,NULL),(63,NULL,'Last Updated','last_updated_fmt,updater_fnm,updater_nm',14,4,NULL,NULL),(64,NULL,'Filter',NULL,4,1,NULL,NULL),(65,NULL,'Apex Status','app_e_dt',1,64,NULL,NULL),(66,NULL,'Company','companyname',2,64,NULL,NULL),(67,NULL,'Open Year','app_st_dt_yr',3,64,NULL,NULL),(68,NULL,'Open Month','app_st_dt_mon',4,64,NULL,NULL),(69,NULL,'Close Year','app_e_dt_yr',5,64,NULL,NULL),(70,NULL,'Close Month','app_e_dt_mon',6,64,NULL,NULL),(71,NULL,'Cube Status','req_stat_pcnt,req_stat_cnt_tol',4,19,NULL,'2020-04-24 08:41:02'),(72,NULL,'Started','stat_dt_dt_fmt',2,74,NULL,'2020-04-24 08:23:05'),(73,NULL,'Previous End','stat_e_dt_pre_fmt',1,74,NULL,'2020-04-24 08:23:05'),(74,NULL,'Phase Lag','stat_lag_time_vir',2,19,NULL,'2020-04-24 08:23:05'),(75,NULL,'Archiver','archv_dt_fmt,archv_by_fnm,archv_by_nm',16,226,NULL,NULL),(76,NULL,'On','del_dt_fmt',1,434,NULL,NULL),(77,NULL,'Phase ID','iddev_est_reqs_status',1,19,NULL,NULL),(78,NULL,'Cube Detail','req_desc',3,19,NULL,'2020-03-27 09:27:32'),(79,NULL,'Phase','req_status_nm',5,19,NULL,'2020-03-23 05:41:34'),(80,NULL,'By','del_by_fnm,del_by_nm',2,434,NULL,NULL),(81,NULL,'Phase Tm','stat_time_vir',6,19,NULL,'2020-03-24 08:43:50'),(82,NULL,'Assign To','assigned_to',7,19,NULL,NULL),(83,NULL,'Phase Now','cur_stat_nm',9,19,NULL,NULL),(84,NULL,'Ph Tm Now','cur_stat_tm_vir',10,19,NULL,NULL),(85,NULL,'Assign To Now','cur_assignee_nm',11,19,NULL,NULL),(86,NULL,'Updater','last_updated_fmt,updater_nm',12,19,NULL,NULL),(87,NULL,'Archive','archv_dt_fmt,archv_by_fnm,arch_by_nm',13,19,NULL,NULL),(88,NULL,'Del In','del_day_vir ',15,19,NULL,NULL),(89,NULL,'On','del_dt_fmt',1,88,NULL,NULL),(90,NULL,'Started','stat_st_dt_fmt',1,81,NULL,NULL),(91,NULL,'Ended','stat_e_dt_fmt',2,81,NULL,NULL),(92,NULL,'Started','cur_stat_st_dt_fmt',1,84,NULL,NULL),(93,NULL,'Ended','cur_stat_e_dt_fmt',2,84,NULL,NULL),(94,NULL,'Coping Archive',NULL,4,17,NULL,'2020-06-17 12:06:30'),(95,NULL,'Coping Filter',NULL,3,17,NULL,NULL),(96,NULL,'Pagination',NULL,1,94,NULL,'2020-03-24 08:41:05'),(97,NULL,'Filter',NULL,2,94,NULL,NULL),(98,NULL,'25',NULL,1,96,NULL,'2020-03-27 07:32:31'),(99,NULL,'50',NULL,2,96,NULL,'2020-03-27 07:32:31'),(100,NULL,'75',NULL,3,96,NULL,'2020-03-27 07:32:31'),(101,NULL,'100',NULL,4,96,NULL,'2020-03-27 07:32:31'),(102,NULL,'Credence Columns',NULL,3,13,NULL,'2020-05-09 06:20:05'),(103,NULL,'Case ID','iddev_est_reqs_case',1,628,NULL,'2020-03-24 06:43:02'),(104,NULL,'Apex','app_name',2,289,NULL,'2020-06-17 12:06:30'),(105,NULL,'Glacier Status','est_e_dt',1,97,NULL,NULL),(106,NULL,'Cube Status','req_e_dt',4,97,NULL,NULL),(107,NULL,'Phase','req_status_nm',6,97,NULL,NULL),(108,NULL,'Phase Year','req_st_dt_yr',7,97,NULL,NULL),(109,NULL,'Phase Month','req_st_dt_mon',8,97,NULL,NULL),(110,NULL,'Assign To','assigned_to',9,97,NULL,NULL),(111,NULL,'Assign To Now','cur_assignee_nm',14,97,NULL,NULL),(112,NULL,'Phase Now','cur_stat_nm',15,97,NULL,NULL),(113,NULL,'Archive Year','archv_dt_yr',17,97,NULL,'2020-06-17 12:10:09'),(114,NULL,'Archiver','archv_by_nm',16,97,NULL,'2020-06-17 12:10:09'),(115,NULL,'Quotes',NULL,7,NULL,NULL,'2021-06-15 06:34:13'),(116,NULL,'Glacier ID','iddev_est',3,95,NULL,NULL),(117,NULL,'Cube ID','iddev_est_reqs',6,95,NULL,NULL),(118,NULL,'Glacier ID','iddev_est',3,97,NULL,'2020-03-24 08:44:48'),(119,NULL,'Cube ID','iddev_est_reqs',5,97,NULL,NULL),(120,NULL,'End','est_e_dt_fmt',2,236,NULL,NULL),(121,NULL,'Budget','est_bud_amt',14,160,NULL,NULL),(122,NULL,'75',NULL,3,3,NULL,NULL),(123,NULL,'100',NULL,4,3,NULL,NULL),(124,NULL,'Columns',NULL,3,1,NULL,NULL),(125,NULL,'Pagination Archive',NULL,1,5,NULL,'2020-11-05 11:44:56'),(126,NULL,'Columns Archive',NULL,2,5,NULL,'2020-11-05 11:44:56'),(127,NULL,'Filters Archive',NULL,3,5,NULL,'2020-11-05 11:44:56'),(128,NULL,'50',NULL,1,125,NULL,NULL),(129,NULL,'100',NULL,2,125,NULL,NULL),(130,NULL,'200',NULL,3,125,NULL,NULL),(131,NULL,'500',NULL,4,125,NULL,NULL),(132,NULL,'Apex Main Archive',NULL,1,126,NULL,'2020-11-05 11:44:56'),(133,NULL,'App Name','app_name',1,132,NULL,NULL),(134,NULL,'Description','app_description',1,133,NULL,NULL),(135,NULL,'Company Name','companyname',2,132,NULL,NULL),(136,NULL,'Lag Tm','app_lag_tm_vir',5,132,NULL,NULL),(137,NULL,'Glacier','app_est_pcnt, app_est_cnt_tol',3,132,NULL,NULL),(138,NULL,'Skill Avg','app_skill_avg',10,132,NULL,NULL),(139,NULL,'Gap Avg','app_gap_avg',11,132,NULL,NULL),(140,NULL,'Cubes','app_est_req_cnt_tol,app_est_req_pcnt',6,132,NULL,NULL),(141,NULL,'Steps','app_est_req_stat_cnt_tol,app_est_req_stat_pcnt',7,132,NULL,NULL),(142,NULL,'Budget','app_bud_use,app_use_pcnt',12,132,NULL,NULL),(143,NULL,'balance','app_bal_use,app_bal_pcnt',13,132,NULL,NULL),(144,NULL,'Apex Status','app_e_dt',1,127,NULL,NULL),(145,NULL,'Company','comp_fnm,companyname',2,127,NULL,NULL),(146,NULL,'Open Year','app_st_dt_yr',3,127,NULL,NULL),(147,NULL,'Open Month','app_st_dt_mon',4,127,NULL,NULL),(148,NULL,'Close Year','app_e_dt_yr',5,127,NULL,NULL),(149,NULL,'Close Month','app_e_dt_mon',6,127,NULL,NULL),(150,NULL,'Budget','app_bud_amt',7,64,NULL,NULL),(151,NULL,'Budget Balance','app_bud_bal',8,64,NULL,NULL),(152,NULL,'Budget','app_bud_amt',7,127,NULL,NULL),(153,NULL,'Archiver','archv_by_fnm,archv_by_nm',10,127,NULL,NULL),(154,NULL,'Archive Year','archv_dt_yr',11,127,NULL,NULL),(155,NULL,'Archive Month','archv_dt_mon',12,127,NULL,NULL),(156,NULL,'Company','comp_fnm, companyname',2,6,NULL,'2020-04-28 11:12:57'),(157,NULL,'Application',NULL,1,177,NULL,NULL),(158,NULL,'Glacier Pagination',NULL,2,9,NULL,NULL),(159,NULL,'Glacier Column',NULL,3,9,NULL,NULL),(160,NULL,'Glacier Filters',NULL,4,9,NULL,NULL),(161,NULL,'Glacier Archive Mode',NULL,5,9,NULL,NULL),(162,NULL,'Application',NULL,1,157,NULL,NULL),(163,NULL,'Open Date',NULL,2,157,NULL,NULL),(164,NULL,'Budget Balance','est_bud_bal',13,227,NULL,NULL),(165,NULL,'Close Date',NULL,4,157,NULL,NULL),(166,NULL,'Budget','est_bud_amt',12,227,NULL,NULL),(167,NULL,'W.Or.Owner',NULL,6,157,NULL,NULL),(168,NULL,'Owner',NULL,7,157,NULL,NULL),(169,NULL,'Estimator',NULL,8,157,NULL,NULL),(170,NULL,'Priority',NULL,9,157,NULL,NULL),(171,NULL,'Category',NULL,10,157,NULL,NULL),(172,NULL,'Skill Level',NULL,11,157,NULL,NULL),(173,NULL,'25',NULL,1,158,NULL,NULL),(174,NULL,'50',NULL,2,158,NULL,NULL),(175,NULL,'75',NULL,3,158,NULL,NULL),(176,NULL,'100',NULL,4,158,NULL,NULL),(177,NULL,'Glacier Form',NULL,1,9,NULL,NULL),(178,NULL,'Glacier Details',NULL,2,177,NULL,NULL),(179,NULL,'Attachments Glacier',NULL,3,177,NULL,NULL),(180,NULL,'Attachment',NULL,2,124,NULL,NULL),(181,NULL,'File Name','file_name',1,180,NULL,NULL),(182,NULL,'File Type','ext_type',6,180,NULL,NULL),(183,NULL,'Self View ','self_view',8,180,NULL,NULL),(184,NULL,'Public','public',7,180,NULL,NULL),(185,NULL,'Last Updated','updated_fmt,updater_fnm,updater_nm',11,180,NULL,NULL),(186,NULL,'Coping Column',NULL,2,17,NULL,NULL),(187,NULL,'Burning Steps',NULL,2,186,NULL,NULL),(188,NULL,'Gap Level',NULL,12,157,NULL,NULL),(189,NULL,'Est Type',NULL,13,157,NULL,NULL),(190,NULL,'Amount',NULL,14,157,NULL,NULL),(191,NULL,'Amount Paid',NULL,15,157,NULL,NULL),(192,NULL,'Amount Balance',NULL,16,157,NULL,NULL),(193,NULL,'Summary',NULL,17,157,NULL,NULL),(194,NULL,'File Name',NULL,1,179,NULL,NULL),(195,NULL,'File Type',NULL,2,179,NULL,NULL),(196,NULL,'Shared',NULL,3,179,NULL,NULL),(197,NULL,'Glacier Main',NULL,1,159,NULL,NULL),(198,'wd_5_pr','Glacier ID','iddev_est,app_name,category_nm,priority_nm,est_type,est_skill,est_gap_lvl',1,197,NULL,NULL),(199,NULL,'Apex','app_name',1,198,NULL,NULL),(200,'wd_8_pr','Summary','dev_est_smry',4,197,NULL,NULL),(201,'wd_6_pr','Cases','est_case_cnt_tol,est_case_pcnt',10,197,NULL,NULL),(202,'wd_4_pr','Tm','est_time_vir,est_st_dt_fmt,est_e_dt_fmt',5,197,NULL,NULL),(203,'wd_7_pr','Owner','owner_fnm,owner_ref_nm',6,197,NULL,NULL),(204,'wd_7_pr','Estimator','est_fnm,est_ref_nm',7,197,NULL,NULL),(205,NULL,'Type','est_type',4,198,NULL,NULL),(206,'wd_6_pr','Budget','est_bud_amt,est_use_pcnt,est_bud_amt,est_use_amt,est_bud_bal',12,197,NULL,NULL),(207,'wd_6_pr','Balance','est_bal_amt,est_pay_pcnt,est_pay_bal,est_pay_amt',15,197,NULL,NULL),(208,NULL,'Budget','est_bud_amt',1,206,NULL,NULL),(209,'wd_6_pr','Cubes','est_req_cnt_tol,est_req_pcnt',8,197,NULL,NULL),(210,'wd_6_pr','Steps','est_req_stat_cnt_tol,est_req_stat_pcnt',9,197,NULL,NULL),(211,'wd_8_pr','Updated','last_updated_fmt,updater_fnm,updater_nm',16,197,NULL,NULL),(212,NULL,'Start','est_st_dt_fmt',1,202,NULL,'2020-11-05 11:09:48'),(213,NULL,'End','est_e_dt_fmt',2,202,NULL,'2020-11-05 11:09:48'),(214,NULL,'Glacier Status','dev_est_cur_stat',1,160,NULL,NULL),(215,NULL,'Apex','app_name',2,160,NULL,NULL),(216,NULL,'Section','priority_nm',3,160,NULL,'2022-04-06 03:22:04'),(217,NULL,'Owner','owner_ref_nm',4,160,NULL,NULL),(218,NULL,'Estimator','est_ref_nm',5,160,NULL,NULL),(219,NULL,'Est Type','est_type',6,160,NULL,NULL),(220,NULL,'Category','category_nm',7,160,NULL,NULL),(221,NULL,'Start Year','est_st_dt_yr',10,160,NULL,NULL),(222,NULL,'Start Month','est_st_dt_mon',11,160,NULL,NULL),(223,NULL,'End Year','est_e_dt_yr',12,160,NULL,NULL),(224,NULL,'End Month','est_e_dt_mon',13,160,NULL,NULL),(225,NULL,'Pagination Glacier Archive',NULL,1,161,NULL,NULL),(226,NULL,'Glacier Archive Column',NULL,2,161,NULL,NULL),(227,NULL,'Glacier Filter Archive',NULL,3,161,NULL,NULL),(228,NULL,'25',NULL,1,225,NULL,NULL),(229,NULL,'50',NULL,2,225,NULL,NULL),(230,NULL,'100',NULL,3,225,NULL,NULL),(231,NULL,'200',NULL,4,225,NULL,NULL),(232,NULL,'Glacier ID','iddev_est',1,226,NULL,NULL),(233,NULL,'Lag Tm','est_lag_tm_vir',3,226,NULL,NULL),(234,NULL,'Summary','dev_est_smry',4,226,NULL,NULL),(235,NULL,'Cases','est_case_cnt_tol,est_case_pcnt',10,226,NULL,NULL),(236,NULL,'Tm','est_time_vir',5,226,NULL,NULL),(237,NULL,'Owner','owner_fnm,owner_ref_nm',6,226,NULL,NULL),(238,NULL,'Estimator','est_fnm,est_ref_nm',7,226,NULL,NULL),(239,NULL,'Type','est_type',4,232,NULL,NULL),(240,NULL,'Budget','est_bud_amt',12,226,NULL,NULL),(241,NULL,'Balance','est_bal_amt',13,226,NULL,NULL),(242,NULL,'Budget','est_bud_amt',1,240,NULL,NULL),(243,NULL,'Cubes','est_req_cnt_tol,est_req_pcnt',8,226,NULL,NULL),(244,NULL,'Steps','est_req_stat_cnt_tol,est_req_stat_pcnt',9,226,NULL,NULL),(245,NULL,'Updated','last_updated_fmt,updater_fnm,updater_nm',15,226,NULL,NULL),(246,NULL,'Glacier Status','est_e_dt',1,227,NULL,NULL),(247,NULL,'Apex','app_name',2,227,NULL,NULL),(248,NULL,'Priority','priority_nm',3,227,NULL,NULL),(249,NULL,'Owner','owner_fnm,owner_ref_nm',4,227,NULL,NULL),(250,NULL,'Estimator','est_fnm,est_ref_nm',5,227,NULL,NULL),(251,NULL,'Est Type','est_type',6,227,NULL,NULL),(252,NULL,'Category','category_nm',7,227,NULL,NULL),(253,NULL,'Start Year','est_st_dt_yr',8,227,NULL,NULL),(254,NULL,'Start Month','est_st_dt_mon',9,227,NULL,NULL),(255,NULL,'End Year','est_e_dt_yr',10,227,NULL,NULL),(256,NULL,'End Month','est_e_dt_mon',11,227,NULL,NULL),(257,NULL,'Start','app_st_dt_fmt',1,61,NULL,NULL),(258,NULL,'End','app_e_dt_fmt',2,61,NULL,NULL),(259,NULL,'Stat Tm','app_stat_tm_vir',4,132,NULL,NULL),(260,NULL,'Archiver','archv_by_fnm,archv_by_nm',15,227,NULL,NULL),(261,NULL,'Archive Year','archv_dt_yr',16,227,NULL,NULL),(262,NULL,'Archive Month','archv_dt_mon',17,227,NULL,NULL),(263,NULL,'Glacier Attachment',NULL,2,159,NULL,NULL),(264,NULL,'col1 of attachment',NULL,1,263,NULL,NULL),(265,NULL,'File',NULL,1,264,NULL,NULL),(266,NULL,'Public View',NULL,2,264,NULL,NULL),(267,NULL,'Self View',NULL,3,264,NULL,NULL),(268,NULL,'Shared',NULL,4,264,NULL,NULL),(269,NULL,'Cubes',NULL,4,NULL,NULL,'2025-05-13 04:36:37'),(270,NULL,'Cubes Form',NULL,1,269,NULL,NULL),(271,NULL,'Cubes Columns',NULL,3,269,NULL,NULL),(272,NULL,'Cubes Pagination',NULL,2,269,NULL,NULL),(273,NULL,'Cubes Filter',NULL,4,269,NULL,NULL),(274,NULL,'Cubes Archive Mode',NULL,6,269,NULL,NULL),(275,NULL,'Add Requirements',NULL,1,270,NULL,NULL),(276,NULL,'Attachment Cubes',NULL,2,270,NULL,NULL),(277,NULL,'Open Date',NULL,1,275,NULL,NULL),(278,NULL,'Open Time',NULL,2,275,NULL,NULL),(279,NULL,'Disp. Order',NULL,3,275,NULL,NULL),(280,NULL,'Requirement Description',NULL,4,275,NULL,NULL),(281,NULL,'Req Type',NULL,5,275,NULL,NULL),(282,NULL,'Skill Level',NULL,6,275,NULL,NULL),(283,NULL,'Gap Level',NULL,7,275,NULL,NULL),(284,NULL,'File Name',NULL,1,276,NULL,NULL),(285,NULL,'File Type',NULL,2,276,NULL,NULL),(286,NULL,'Shared',NULL,3,276,NULL,NULL),(287,NULL,'Cubes Main',NULL,1,271,NULL,NULL),(288,NULL,'Cubes Sub',NULL,2,271,NULL,NULL),(289,'wd_3_pr','Cube ID','iddev_est_reqs',1,287,NULL,'2025-05-13 05:19:24'),(290,'dt_cnt_css','Glacier','est_req_cnt_tol,est_req_pcnt',3,287,NULL,'2024-03-07 03:57:36'),(291,'dt_day_css','Cube Tm','req_time_vir',4,287,NULL,NULL),(292,'dt_day_css','Cube Lag','req_lag_tm_vir',2,287,NULL,'2024-02-26 04:19:48'),(293,'wd_25_pr','Cube Description','req_desc',5,287,NULL,'2022-06-16 10:34:21'),(294,NULL,'Apex Start','app_st_dt_fmt',3,289,NULL,NULL),(295,'dt_day_css','Ph Lag Tm','req_stat_lag_tm_vir',8,287,NULL,NULL),(296,'wd_6_pr','Phase','req_status_nm',7,287,NULL,'2025-05-13 05:19:24'),(297,'dt_cnt_css','Steps','req_stat_cnt_tol,req_stat_pcnt',6,287,NULL,NULL),(298,'dt_day_css','Ph. Tm','req_stat_time_vir',10,287,NULL,NULL),(299,'dt_update_css','Assign To','assigned_to_nm',9,287,NULL,'2025-05-13 04:01:40'),(300,'dt_update_css','Last Updated','last_updated_fmt,updater_nm',13,287,NULL,NULL),(301,NULL,'Forecast',NULL,1,288,NULL,NULL),(302,NULL,'Actual Status',NULL,2,288,NULL,NULL),(303,NULL,'Notes',NULL,3,288,NULL,NULL),(304,NULL,'Attachment',NULL,4,288,NULL,NULL),(305,NULL,'ID',NULL,1,301,NULL,NULL),(306,NULL,'Phase ',NULL,2,301,NULL,NULL),(307,NULL,'Start Date',NULL,3,301,NULL,NULL),(308,NULL,'End Date',NULL,4,301,NULL,NULL),(309,NULL,'Ph. Tm',NULL,5,301,NULL,NULL),(310,NULL,'Assigned To',NULL,6,301,NULL,NULL),(311,NULL,'ID',NULL,1,302,NULL,NULL),(312,NULL,'Phase',NULL,2,302,NULL,NULL),(313,NULL,'Start Dt',NULL,3,302,NULL,NULL),(314,NULL,'End Dt',NULL,4,302,NULL,NULL),(315,NULL,'Ph. Tm',NULL,5,302,NULL,NULL),(316,NULL,'Assigned To',NULL,6,302,NULL,NULL),(317,NULL,'Phase',NULL,1,303,NULL,NULL),(318,NULL,'Note Details',NULL,2,303,NULL,NULL),(319,NULL,'Last Update',NULL,3,303,NULL,NULL),(320,NULL,'Updater',NULL,4,303,NULL,NULL),(321,NULL,'File',NULL,1,304,NULL,NULL),(322,NULL,'Public View',NULL,2,304,NULL,NULL),(323,NULL,'Self View',NULL,3,304,NULL,NULL),(324,NULL,'Shared',NULL,4,304,NULL,NULL),(325,NULL,'Glacier ID','iddev_est',1,290,NULL,NULL),(326,NULL,'Summary ','dev_est_smry',2,290,NULL,NULL),(327,NULL,'Owner','owner_fnm,owner_ref_nm',5,290,NULL,NULL),(328,NULL,'Estimater','est_fnm,est_ref_nm',6,290,NULL,NULL),(329,NULL,'Open','req_st_dt_fmt',1,291,NULL,NULL),(330,NULL,'Close','req_e_dt_fmt',2,291,NULL,NULL),(331,NULL,'Start','req_stat_st_dt_fmt',1,298,NULL,NULL),(332,NULL,'End','req_stat_e_dt_fmt',2,298,NULL,NULL),(333,NULL,'25',NULL,1,272,NULL,NULL),(334,NULL,'50',NULL,2,272,NULL,NULL),(335,NULL,'75',NULL,3,272,NULL,NULL),(336,NULL,'100',NULL,4,272,NULL,NULL),(337,NULL,'Glacier Status','dev_est_cur_stat',3,273,NULL,NULL),(338,NULL,'Phase','req_status_nm',11,273,NULL,NULL),(339,NULL,'Owner','owner_ref_nm',4,273,NULL,NULL),(340,NULL,'Category','category_nm',8,273,NULL,NULL),(341,NULL,'Cube Gap','gap_lvl_nm',14,273,NULL,NULL),(342,NULL,'Cube Skill','skill_lvl_nm',13,273,NULL,NULL),(343,NULL,'Assign To','assigned_to_nm',15,273,NULL,NULL),(344,NULL,'Open Year','req_st_dt_yr',16,273,NULL,NULL),(345,NULL,'Open Month','req_st_dt_mon',17,273,NULL,NULL),(346,NULL,'Close Year','req_e_dt_yr',18,273,NULL,NULL),(347,NULL,'Close Month','req_e_dt_mon',19,273,NULL,NULL),(348,NULL,'Access',NULL,8,NULL,NULL,'2021-06-15 06:34:13'),(349,NULL,'Form Access',NULL,1,348,NULL,NULL),(350,NULL,'Access Columns',NULL,1,348,NULL,NULL),(351,NULL,'IT Access',NULL,1,349,NULL,NULL),(352,NULL,'Access DT',NULL,1,350,NULL,NULL),(353,NULL,'Work Order id',NULL,1,351,NULL,'2020-04-17 12:04:02'),(354,NULL,'Employee Name1',NULL,2,351,NULL,'2020-04-17 12:04:02'),(355,NULL,'My Work Order Access',NULL,3,351,NULL,'2020-04-17 12:04:02'),(356,NULL,'My Reqs Access',NULL,4,351,NULL,NULL),(357,NULL,'My Req Acceptance Access',NULL,5,351,NULL,NULL),(358,NULL,'25',NULL,1,725,NULL,NULL),(359,NULL,'50',NULL,2,725,NULL,NULL),(360,NULL,'75',NULL,3,725,NULL,NULL),(361,NULL,'100',NULL,4,725,NULL,NULL),(362,NULL,'Access Filter',NULL,4,348,NULL,NULL),(363,NULL,'Status','est_cur_stat',1,362,NULL,NULL),(364,NULL,'Glacier','iddev_est',4,362,NULL,NULL),(365,NULL,'Owner','owner_ref_nm',5,362,NULL,NULL),(366,NULL,'Estimater','est_ref_nm',6,362,NULL,NULL),(367,NULL,'Pagination Cubes Archive',NULL,1,274,NULL,NULL),(368,NULL,'Cubes Archive Main',NULL,1,544,NULL,NULL),(369,NULL,'Filters Cubes Archive',NULL,3,274,NULL,NULL),(370,NULL,'25',NULL,1,367,NULL,NULL),(371,NULL,'50',NULL,2,367,NULL,NULL),(372,NULL,'100',NULL,3,367,NULL,NULL),(373,NULL,'200',NULL,4,367,NULL,NULL),(374,NULL,'Cube ID','iddev_est_reqs',1,368,NULL,NULL),(375,NULL,'Ph Lag Tm','req_stat_lag_tm_vir',8,368,NULL,NULL),(376,NULL,'Req.Tm','req_time_vir',4,368,NULL,NULL),(377,NULL,'Category:','category_nm',1,374,NULL,NULL),(378,NULL,'Requirement Desc','req_desc',5,368,NULL,NULL),(379,NULL,'Skills:','skill_lvl_nm',3,374,NULL,NULL),(380,NULL,'Glacier','est_req_cnt_tol,est_req_pcnt',3,368,NULL,NULL),(381,NULL,'Phase','req_status_nm',7,368,NULL,NULL),(382,NULL,'Steps','req_stat_cnt_tol,req_stat_pcnt',6,368,NULL,NULL),(383,NULL,'Ph.Tm','req_stat_time_vir',10,368,NULL,NULL),(384,NULL,'Assign To','assigned_to_nm',9,368,NULL,NULL),(385,NULL,'Last Updated','last_updated_fmt,updater_nm',13,368,NULL,NULL),(386,NULL,'Cases','req_case_cnt_tol,req_case_pcnt',11,368,NULL,NULL),(387,NULL,'Cnt','req_case_atmpt',12,368,NULL,NULL),(388,NULL,'Del In','del_day_vir',15,368,NULL,NULL),(389,NULL,'Cube Status','req_e_dt',8,369,NULL,NULL),(390,NULL,'Phase','req_status_nm',9,369,NULL,NULL),(391,NULL,'Glacier Status','est_e_dt',3,369,NULL,NULL),(392,NULL,'Category','category_nm',7,369,NULL,NULL),(393,NULL,'Cube Gap','gap_lvl_nm',12,369,NULL,NULL),(394,NULL,'Cube Skill','skill_lvl_nm',11,369,NULL,NULL),(395,NULL,'Assign To','assigned_to_nm',13,369,NULL,NULL),(396,NULL,'Open Year','req_st_dt_yr',14,369,NULL,NULL),(397,NULL,'Open Month','req_st_dt_mon',15,369,NULL,NULL),(398,NULL,'Close Year','req_e_dt_yr',16,369,NULL,NULL),(399,NULL,'Close Month','req_e_dt_mon',17,369,NULL,NULL),(400,NULL,'Owner','owner_ref_nm',4,369,NULL,NULL),(401,NULL,'Estimator','est_ref_nm',5,369,NULL,NULL),(402,NULL,'Glacier ID','iddev_est',6,369,NULL,NULL),(403,NULL,'Archiver','archv_by_nm',18,369,NULL,NULL),(404,NULL,'Archive Year','archv_dt_yr',19,369,NULL,NULL),(405,NULL,'Archive Month','archv_dt_mon',20,369,NULL,NULL),(406,NULL,'Pagination',NULL,1,115,NULL,NULL),(407,NULL,'Quotes Column',NULL,2,115,NULL,NULL),(408,NULL,'Quotes Filter',NULL,3,115,NULL,NULL),(409,NULL,'Quotes Archive',NULL,4,115,NULL,NULL),(410,NULL,'25',NULL,1,406,NULL,NULL),(411,NULL,'50',NULL,2,406,NULL,NULL),(412,NULL,'100',NULL,3,406,NULL,NULL),(413,NULL,'250',NULL,4,406,NULL,NULL),(414,NULL,'Apex','app_name',5,408,NULL,NULL),(415,NULL,'Glacier ID','iddev_est',6,408,NULL,NULL),(416,NULL,'Cube Status','req_e_dt',3,408,NULL,NULL),(417,NULL,'Cube ID','iddev_est_reqs',7,408,NULL,NULL),(418,NULL,'Phase','req_status_nm',10,408,NULL,NULL),(419,NULL,'Phase Month','stat_st_dt_mon',12,408,NULL,NULL),(420,NULL,'Phase Year','stat_st_dt_yr',11,408,NULL,NULL),(421,NULL,'Assign To','assigned_to_nm',8,408,NULL,NULL),(422,NULL,'Quote Month ','reqs_quote_dt_mon',20,408,NULL,NULL),(423,NULL,'Quote Year ','reqs_quote_dt_yr',19,408,NULL,NULL),(424,NULL,'Quote By','reqs_quote_by_nm',18,408,NULL,NULL),(425,NULL,'Action By','req_action_by_nm',2,408,NULL,NULL),(426,NULL,'Quote Main',NULL,1,407,NULL,NULL),(427,NULL,'Quotes Steps',NULL,2,407,NULL,NULL),(428,NULL,'W. or ID','iddev_est',1,427,NULL,'2020-07-28 06:03:05'),(429,'wd_2_pr','Cube ID','iddev_est_reqs',1,426,NULL,'2020-07-28 05:25:08'),(430,'wd_4_pr','Phase','req_status_nm',4,426,NULL,NULL),(431,'wd_2_pr','Status ID','iddev_est_reqs_status',3,426,NULL,NULL),(432,NULL,'Phase Now','cur_stat_nm',1,430,NULL,NULL),(433,NULL,'Status','status_nm',6,427,NULL,NULL),(434,NULL,'Del In','del_day_vir',19,226,NULL,'2020-07-28 06:03:05'),(435,'wd_4_pr','Ph Tm','stat_time_vir',5,426,NULL,NULL),(436,'wd_6_pr','Assign','assigned_to_fnm,assigned_to_nm',6,426,NULL,NULL),(437,'wd_3_pr','Cnt','hist_cnt',10,426,NULL,NULL),(438,NULL,'Enter By','reqs_quote_by_nm',1,439,NULL,NULL),(439,'wd_3_pr','Quotes','req_stat_amt',8,426,NULL,NULL),(441,NULL,'Action','req_action_nm',1,443,NULL,NULL),(442,NULL,'On','reqs_quote_dt_fmt',2,439,NULL,NULL),(443,'wd_3_pr','Balance','req_stat_bal',9,426,NULL,NULL),(444,'wd_6_pr','Assign Now','cur_assigned_to_nm',1,436,NULL,NULL),(445,'wd_5_pr','Last Updated','last_updated_fmt,updater_fnm,updater_nm',11,426,NULL,NULL),(446,'wd_4_pr','Lag Tm','stat_lag_time_vir',7,426,NULL,NULL),(447,NULL,'Pre Ended','stat_e_dt_pre_fmt',1,446,NULL,NULL),(448,NULL,'Category','category_nm',1,429,NULL,NULL),(449,NULL,'Cube Type','req_type_nm',2,429,NULL,NULL),(450,NULL,'Pagination',NULL,1,409,NULL,NULL),(451,NULL,'Archive Quotes Main',NULL,2,495,NULL,NULL),(452,NULL,'Filter',NULL,3,409,NULL,NULL),(453,NULL,'25',NULL,1,450,NULL,NULL),(454,NULL,'50',NULL,2,450,NULL,NULL),(455,NULL,'75',NULL,3,450,NULL,NULL),(456,NULL,'100',NULL,4,450,NULL,NULL),(457,NULL,'Category','category_nm',1,458,NULL,NULL),(458,'wd_2_pr','Cube ID','iddev_est_reqs',1,451,NULL,NULL),(459,'wd_6_pr','Cube Detail','req_desc',2,451,NULL,NULL),(460,'wd_4_pr','Phase','req_status_nm',4,451,NULL,NULL),(461,'wd_4_pr','Ph Tm','stat_time_vir',5,451,NULL,NULL),(462,'wd_6_pr','Assign','assigned_to_fnm,assigned_to_nm',6,451,NULL,NULL),(463,'wd_3_pr','Cnt','hist_cnt',10,451,NULL,'2020-07-28 05:30:10'),(464,'wd_3_pr','Quotes','req_stat_amt',8,451,NULL,NULL),(465,NULL,'Enter By','reqs_quote_by_fnm,reqs_quote_by_nm',1,464,NULL,NULL),(466,NULL,'On','reqs_quote_dt_fmt',2,464,NULL,NULL),(467,NULL,'Action','req_action_nm',1,469,NULL,NULL),(468,NULL,'By','req_action_by_nm',2,469,NULL,NULL),(469,'wd_3_pr','Balance','req_bal',9,451,NULL,NULL),(470,NULL,'Paid','req_stat_paid',3,469,NULL,NULL),(471,'wd_5_pr','Last Updated','last_updated_fmt,updater_fnm,updater_nm',15,451,NULL,NULL),(472,NULL,'App','app_name',1,457,NULL,NULL),(473,NULL,'Summary','dev_est_smry',2,457,NULL,NULL),(474,NULL,'Owner','owner_file_name',3,457,NULL,NULL),(475,NULL,'Estimater','estimater_file_name',4,457,NULL,NULL),(476,NULL,'Glacier ID','iddev_est',3,452,NULL,NULL),(477,NULL,'Apex','app_name',2,452,NULL,NULL),(478,NULL,'Cube ID','iddev_est_reqs',4,452,NULL,NULL),(479,NULL,'Cube Status','req_e_dt',1,452,NULL,NULL),(480,NULL,'Phase','req_status_nm',5,452,NULL,NULL),(481,NULL,'Category','req_open_dt_time',9,452,NULL,NULL),(482,NULL,'Phase Year','stat_st_dt_yr',6,452,NULL,NULL),(483,NULL,'Assign To','assigned_to_fnm,assigned_to_nm',8,452,NULL,NULL),(484,NULL,'Phase Month','stat_st_dt_mon',7,452,NULL,NULL),(485,NULL,'Cube Type','req_cur_open_year',10,452,NULL,NULL),(486,NULL,'Skills','skill_lvl_nm',11,452,NULL,NULL),(487,NULL,'Gap','gap_lvl_nm',12,452,NULL,NULL),(488,NULL,'Action1','req_action_nm',1,408,NULL,'2022-05-23 10:37:53'),(490,NULL,'Archiver','archv_by_fnm, archv_by_nm',19,452,NULL,NULL),(491,NULL,'Quote By','reqs_quote_by_nm',13,452,NULL,NULL),(492,NULL,'Quote Year','reqs_quote_yr',14,452,NULL,NULL),(493,NULL,'Quote Month ','reqs_quote_mon',15,452,NULL,NULL),(494,NULL,'Phase Now','cur_stat_nm',14,408,NULL,NULL),(495,NULL,'Quotes Archive Column',NULL,2,409,NULL,NULL),(496,NULL,'Cube Type','req_type_nm',2,458,NULL,NULL),(497,NULL,'Skills','skill_lvl_nm',3,429,NULL,NULL),(498,NULL,'Gap','gap_lvl_nm',4,429,NULL,NULL),(499,'wd_8_pr','Cube Details','req_desc',2,426,NULL,NULL),(500,NULL,'Started','stat_st_dt_fmt',1,435,NULL,NULL),(501,NULL,'Ended','stat_e_dt_fmt',2,435,NULL,NULL),(502,NULL,'By','req_action_by_nm',2,443,NULL,NULL),(503,NULL,'Paid','req_stat_paid',3,443,NULL,NULL),(504,NULL,'Started','stat_st_dt_fmt',2,446,NULL,NULL),(505,NULL,'Category','category_nm',13,408,NULL,NULL),(506,NULL,'Cube Type','req_type_nm',15,408,NULL,NULL),(507,NULL,'Skills','skill_lvl_nm',16,408,NULL,NULL),(508,NULL,'Gap','gap_lvl_nm',17,408,NULL,NULL),(509,NULL,'Previous End','stat_e_dt_pre_fmt',1,27,NULL,NULL),(510,NULL,'Start','stat_st_dt_fmt',1,37,NULL,NULL),(511,NULL,'End','stat_e_dt_fmt',2,37,NULL,NULL),(512,NULL,'Previous Start','cur_stat_e_dt_pre_fmt',1,36,NULL,NULL),(513,NULL,'End','cur_stat_st_dt_fmt',2,36,NULL,NULL),(514,NULL,'Start','cur_stat_st_dt_fmt',1,42,NULL,NULL),(515,NULL,'End','cur_stat_e_dt_fmt',2,42,NULL,NULL),(516,NULL,'Apex','app_name',2,95,NULL,NULL),(517,NULL,'Skills','skill_lvl_nm',3,458,NULL,NULL),(518,NULL,'Gap','gap_lvl_nm',4,458,NULL,NULL),(519,'wd_2_pr','Status ID','iddev_est_reqs_status',3,451,NULL,NULL),(520,NULL,'Start','stat_st_dt_fmt',1,461,NULL,NULL),(521,NULL,'End','stat_e_dt_fmt',2,461,NULL,NULL),(522,'wd_4_pr','Lag Tm','stat_lag_time_vir',7,451,NULL,NULL),(523,NULL,'Pre Ended','stat_e_dt_pre_fmt',1,522,NULL,NULL),(524,NULL,'Started','stat_st_dt_fmt',2,522,NULL,NULL),(525,'wd_5_pr','Archive','archv_dt_fmt,archv_by_fnm,arch_by_nm',19,451,NULL,NULL),(526,'wd_2_pr','Del In','del_day_vir\n',20,451,NULL,NULL),(527,NULL,'On','del_dt_fmt',1,526,NULL,NULL),(528,NULL,'By','del_by_nm',2,526,NULL,NULL),(529,NULL,'Action','req_action_nm',16,452,NULL,NULL),(530,NULL,'Action By','req_action_by_nm',17,452,NULL,NULL),(533,NULL,'Archive Year','archv_dt_yr',20,452,NULL,NULL),(534,NULL,'Archive Month','archv_dt_mon',21,452,NULL,NULL),(535,NULL,'Previous Start','cur_stat_e_dt_pre_fmt',1,47,NULL,NULL),(536,NULL,'End','cur_stat_st_dt_fmt',2,47,NULL,NULL),(537,NULL,'By','del_by_fnm,del_by_nm',2,88,NULL,NULL),(538,NULL,'Apex','app_name',2,97,NULL,NULL),(539,NULL,'Category','category_nm',10,97,NULL,NULL),(540,NULL,'Cube Type','req_type_nm',11,97,NULL,NULL),(541,NULL,'Skills','skill_lvl_nm',12,97,NULL,NULL),(542,NULL,'Gap','gap_lvl_nm',13,97,NULL,NULL),(543,NULL,'Archive Month','archv_dt_mon',18,97,NULL,NULL),(544,NULL,'Cubes Archive Column',NULL,2,274,NULL,NULL),(545,NULL,'Cubes Archive Sub',NULL,2,544,NULL,NULL),(546,NULL,'Forcast',NULL,1,545,NULL,NULL),(547,NULL,'Actual Status',NULL,2,545,NULL,NULL),(548,NULL,'Notes',NULL,3,545,NULL,NULL),(549,NULL,'Attachment',NULL,4,545,NULL,NULL),(550,NULL,'Req Lag Tm','req_lag_tim_vir',2,368,NULL,NULL),(551,NULL,'Gap:','gap_lvl_nm',4,374,NULL,NULL),(552,NULL,'Apex End','app_e_dt_fmt',4,289,NULL,NULL),(553,NULL,'Cube Type','req_type_nm',2,374,NULL,NULL),(554,NULL,'Open','req_st_dt_fmt',1,376,NULL,NULL),(555,NULL,'Close','req_e_dt_fmt',2,376,NULL,NULL),(556,'dt_cnt_css','Cases','req_case_cnt_tol,req_case_pcnt',11,287,NULL,NULL),(557,'dt_cnt_css','Cnt','req_case_atmpt',12,287,NULL,NULL),(558,NULL,'Archiver','archv_by',14,368,NULL,NULL),(559,NULL,'Cube Type','req_type_nm',10,369,NULL,NULL),(560,NULL,'Apex','app_name',2,273,NULL,'2022-05-24 01:29:09'),(561,NULL,'Glacier ID','iddev_est',6,273,NULL,'2022-04-19 11:46:42'),(562,NULL,'Estimator','est_ref_nm',5,273,NULL,NULL),(563,NULL,'Cube Type','req_type_nm',12,273,NULL,NULL),(564,NULL,'Apex Status','dev_apps_cur_stat',1,273,NULL,NULL),(565,NULL,'Apex','app_name',2,369,NULL,NULL),(566,NULL,'Apex','app_name',1,232,NULL,NULL),(567,NULL,'Category','category_nm',2,232,NULL,NULL),(568,NULL,'Category','category_nm',2,198,NULL,NULL),(569,NULL,'Priority','priority_nm',3,232,NULL,NULL),(570,NULL,'Section','priority_nm',3,198,NULL,'2024-03-07 03:46:39'),(571,'wd_5_pr','Lag Tm','est_lag_tm_vir',3,197,NULL,NULL),(572,'wd_6_pr','Cnt','est_case_atmpt',11,197,NULL,NULL),(573,NULL,'Cnt','est_case_atmpt',11,226,NULL,NULL),(574,'wd_6_pr','Glacier','app_est_cnt_tol,app_est_pcnt',2,197,NULL,NULL),(575,NULL,'Glacier','app_est_cnt_tol,app_est_pcnt',2,226,NULL,NULL),(576,NULL,'Start','est_st_dt_fmt',1,236,NULL,NULL),(577,NULL,'Budget Balance','est_bud_bal',15,160,NULL,NULL),(578,NULL,'Skills','est_skill',5,198,NULL,NULL),(579,NULL,'Gap','est_gap_lvl',6,198,NULL,NULL),(580,NULL,'Skills','est_skill',5,232,NULL,NULL),(581,NULL,'Gap','est_gap_lvl',6,232,NULL,NULL),(582,NULL,'Steps','app_est_req_stat_pcnt, app_est_req_stat_cnt_tol',6,4,NULL,NULL),(583,NULL,'Budget','app_use_pcnt, app_bud_use_amt',12,4,NULL,NULL),(584,NULL,'Paid','app_pay_pcnt, app_pay_bal',13,4,NULL,NULL),(585,NULL,'Cases','app_case_pcnt, app_case_cnt_tol',8,4,NULL,NULL),(586,NULL,'Tries','app_case_atmpt',9,4,NULL,NULL),(587,NULL,'App ID','iddev_apps',1,55,NULL,'2021-05-18 04:33:17'),(588,NULL,'Start','app_st_dt_fmt',1,259,NULL,NULL),(589,NULL,'End','app_e_dt_fmt',2,259,NULL,NULL),(590,NULL,'Cases','app_case_cnt_tol,app_case_pcnt',8,132,NULL,NULL),(591,NULL,'Tries','app_case_atmpt',9,132,NULL,NULL),(592,NULL,'Del Details','last_updated_fmt,updater_fnm,updater_nm',16,132,NULL,NULL),(593,NULL,'Archiver Details','archv_dt_fmt,archv_by_fnm,archv_by_nm',15,132,NULL,NULL),(594,NULL,'Del Day','del_day_vir,del_day_by,del_on',17,132,NULL,NULL),(595,NULL,'On','del_dt_fmt',1,594,NULL,NULL),(596,NULL,'By','del_by_fnm,del_by_nm',2,594,NULL,NULL),(597,NULL,'Budget Balance','app_bud_bal',8,127,NULL,NULL),(598,NULL,'Payable Balance','app_bal_amt',9,127,NULL,NULL),(599,NULL,'Payable Balance','app_amt_bal',9,64,NULL,NULL),(600,NULL,'Payable Balance','est_bal_amt',16,160,NULL,NULL),(601,NULL,'Payable Balance','est_bal_amt',14,227,NULL,NULL),(602,NULL,'Budget Balance','app_bud_bal',1,583,NULL,NULL),(603,NULL,'Percent','app_bud_pcnt',2,583,NULL,NULL),(606,NULL,'Paid','app_pay_amt',1,584,NULL,NULL),(607,NULL,'Balance','app_bal_pcnt',2,584,NULL,NULL),(608,NULL,'Budget Balance','app_bud_bal',1,142,NULL,NULL),(609,NULL,'Percent','app_bud_pcnt',2,142,NULL,NULL),(612,NULL,'Paid','app_pay_amt',1,143,NULL,NULL),(613,NULL,'Percent','app_bal_pcnt',2,143,NULL,NULL),(614,NULL,'Budget Used','est_use_amt',2,206,NULL,NULL),(615,NULL,'Budget Balance','est_bud_bal',3,206,NULL,NULL),(616,NULL,'Budget Used','est_use_amt',1,207,NULL,NULL),(617,NULL,'Paid','est_pay_amt',2,207,NULL,NULL),(618,NULL,'Balance','est_bal_amt',3,207,NULL,NULL),(619,NULL,'Budget Used','est_use_bal',2,240,NULL,NULL),(620,NULL,'Budget Balance','est_bud_bal',3,240,NULL,NULL),(621,NULL,'Budget Used','est_use_bal',1,241,NULL,NULL),(622,NULL,'Paid','est_pay_amt',2,241,NULL,NULL),(623,NULL,'Balance','est_bal_amt',3,241,NULL,NULL),(624,NULL,'Credence Archive',NULL,5,13,NULL,NULL),(625,NULL,'Credence Form',NULL,1,13,NULL,NULL),(626,NULL,'Pagination',NULL,2,13,NULL,NULL),(627,NULL,'Credence Filter',NULL,4,13,NULL,NULL),(628,NULL,'Credence Main',NULL,1,102,NULL,NULL),(629,NULL,'Credence Sub',NULL,2,102,NULL,NULL),(630,NULL,'Pagination Archive',NULL,1,624,NULL,NULL),(631,NULL,'Columns Archive',NULL,2,624,NULL,NULL),(632,NULL,'Credence Filters Archive',NULL,3,624,NULL,NULL),(633,NULL,'Credence Main Archive',NULL,1,631,NULL,NULL),(634,NULL,'Cube Description','req_desc',3,103,NULL,NULL),(635,NULL,'Create Tm','create_time_vir',2,628,NULL,NULL),(636,NULL,'Cube Cases','reqs_cases',4,628,NULL,NULL),(637,NULL,'Case Data','case_data',5,628,NULL,NULL),(638,NULL,'Case Result Description','case_result_desc',6,628,NULL,NULL),(639,NULL,'Result','case_status_name',8,628,NULL,NULL),(640,NULL,'Executor','execute_dt_fmt,executed_by_fnm,executed_by_nm',7,628,NULL,NULL),(641,NULL,'Last Updated','last_updated_fmt,updated_by_fnm,updated_by_nm',9,628,NULL,NULL),(642,NULL,'Case ID','iddev_est_reqs_case',1,633,NULL,NULL),(643,NULL,'Create Tm','create_time_vir',2,633,NULL,NULL),(644,NULL,'Cube Description','req_desc',3,633,NULL,NULL),(645,NULL,'Cube Cases','reqs_cases',4,633,NULL,NULL),(646,NULL,'Case Data','case_data',5,633,NULL,NULL),(647,NULL,'Case Result Description','case_result_desc',6,633,NULL,NULL),(648,NULL,'Executor','execute_dt_fmt,executed_by_fnm,executed_by_nm',7,633,NULL,NULL),(649,NULL,'Result','case_status_name',8,633,NULL,NULL),(650,NULL,'Last Updated','last_updated_fmt,updated_by_fnm,updated_by_nm',10,633,NULL,NULL),(651,NULL,'On','create_dt_fmt',2,643,NULL,NULL),(652,NULL,'End','create_end_dt_fmt',3,643,NULL,NULL),(653,NULL,'On','create_dt_fmt',2,635,NULL,NULL),(654,NULL,'End','create_end_dt_fmt',3,635,NULL,NULL),(655,NULL,'Cnt','case_cnt',10,628,NULL,NULL),(656,NULL,'Cnt','case_cnt',9,633,NULL,NULL),(657,NULL,'Creator','create_dt_fmt,created_by_fnm,created_by_nm',1,635,NULL,NULL),(658,NULL,'Creator','create_dt_fmt,created_by_fnm,created_by_nm',1,643,NULL,NULL),(659,NULL,'Steps','req_stat_cnt_tol,req_stat_pcnt',1,642,NULL,NULL),(660,NULL,'Cases','req_case_cnt_tol,req_case_pcnt',1,639,NULL,NULL),(661,NULL,'Cube Tm','req_time_vir,req_st_dt_fmt,req_e_dt_fmt',2,103,NULL,NULL),(662,NULL,'Skills','skill_lvl_nm',4,639,NULL,NULL),(663,NULL,'Gap','gap_lvl_nm',5,639,NULL,NULL),(664,NULL,'Phase','req_status_nm',6,639,NULL,NULL),(665,NULL,'Cube Type','req_type_nm',3,639,NULL,NULL),(666,NULL,'Category','category_nm',2,639,NULL,NULL),(667,NULL,'Cube Tm','req_time_vir,req_st_dt_fmt,req_e_dt_fmt',2,642,NULL,NULL),(668,NULL,'Cube Description','req_desc',3,642,NULL,NULL),(669,NULL,'Owner','owner_fnm,owner_ref_nm',1,648,NULL,NULL),(670,NULL,'Estimator','est_fnm,est_ref_nm',2,648,NULL,NULL),(671,NULL,'Cases','req_case_cnt_tol,req_case_pcnt',1,649,NULL,NULL),(672,NULL,'Category','category_nm',2,649,NULL,NULL),(673,NULL,'Steps','req_stat_cnt_tol,req_stat_pcnt',1,103,NULL,NULL),(674,NULL,'Owner','owner_fnm,owner_ref_nm',1,640,NULL,NULL),(675,NULL,'Estimator','est_fnm,est_ref_nm',2,640,NULL,NULL),(676,NULL,'Cube Type','req_type_nm',3,649,NULL,NULL),(677,NULL,'Skills','skill_lvl_nm',4,649,NULL,NULL),(678,NULL,'Gap','gap_lvl_nm',5,649,NULL,NULL),(679,NULL,'Phase','req_status_nm',6,649,NULL,NULL),(680,NULL,'Archiver',NULL,11,633,NULL,NULL),(681,NULL,'Del In',NULL,12,633,NULL,NULL),(682,NULL,'Case Status','create_end_dt',1,627,NULL,NULL),(683,NULL,'Category','category_nm',8,627,NULL,NULL),(684,NULL,'Cube Type','req_type_nm',9,627,NULL,NULL),(685,NULL,'Skill Level','skill_lvl_nm',10,627,NULL,NULL),(686,NULL,'Gap Level','gap_lvl_nm',11,627,NULL,NULL),(687,NULL,'Phase','req_status_nm',14,627,NULL,NULL),(688,NULL,'Creator','created_by_fnm,created_by_nm',12,627,NULL,NULL),(689,NULL,'Executor','executed_by_fnm,executed_by_nm',13,627,NULL,NULL),(690,NULL,'Owner','owner_fnm,owner_ref_nm',6,627,NULL,NULL),(691,NULL,'Estimator','est_fnm,est_ref_nm',7,627,NULL,NULL),(692,NULL,'Result','case_status_name',3,627,NULL,NULL),(693,NULL,'Apex','app_name',2,627,NULL,NULL),(694,NULL,'Glacier ID','iddev_est',4,627,NULL,NULL),(695,NULL,'Cube ID','iddev_est_reqs',5,627,NULL,NULL),(696,NULL,'Create Year','create_dt_yr',15,627,NULL,NULL),(697,NULL,'Create Month','create_dt_mon',16,627,NULL,NULL),(698,NULL,'Close Yr','create_end_dt_yr',17,627,NULL,NULL),(699,NULL,'Close Month','create_end_dt_mon',18,627,NULL,NULL),(700,NULL,'Case Status','create_end_dt',1,632,NULL,NULL),(701,NULL,'Apex','app_name',2,632,NULL,NULL),(702,NULL,'Owner','owner_fnm,owner_ref_nm',6,632,NULL,NULL),(703,NULL,'Estimator','est_fnm,est_ref_nm',7,632,NULL,NULL),(704,NULL,'Gap Level','gap_lvl_nm',11,632,NULL,NULL),(705,NULL,'Skill Level','skill_lvl_nm',10,632,NULL,NULL),(706,NULL,'Cube Type','req_type_nm',9,632,NULL,NULL),(707,NULL,'Cube ID','iddev_est_reqs',5,632,NULL,NULL),(708,NULL,'Glacier ID','iddev_est',4,632,NULL,NULL),(709,NULL,'Category','category_nm',8,632,NULL,NULL),(710,NULL,'Result','case_status_name',3,632,NULL,NULL),(711,NULL,'Creator','created_by_fnm,created_by_nm',12,632,NULL,NULL),(712,NULL,'Executor','executed_by_fnm,executed_by_nm',13,632,NULL,NULL),(713,NULL,'Phase','req_status_nm',14,632,NULL,NULL),(714,NULL,'Create Year','create_dt_yr',15,632,NULL,NULL),(715,NULL,'Create Month','create_dt_mon',16,632,NULL,NULL),(716,NULL,'Close Yr','create_end_dt_yr',17,632,NULL,NULL),(717,NULL,'Close Month','create_end_dt_mon',18,632,NULL,NULL),(718,NULL,'Archiver','archv_by_fnm,archv_by_nm',19,632,NULL,NULL),(719,NULL,'Archiver Year','archv_dt_yr',20,632,NULL,NULL),(720,NULL,'Archiver Month','archv_dt_mon',21,632,NULL,NULL),(721,NULL,'Employee Name',NULL,1,349,NULL,NULL),(722,NULL,'My Work Order Access',NULL,2,349,NULL,NULL),(723,NULL,'My Reqs Access',NULL,3,349,NULL,NULL),(724,NULL,'My Req Acceptance Access',NULL,4,349,NULL,NULL),(725,NULL,'Access Pagination',NULL,3,348,NULL,NULL),(765,'wd_5_pr','Updated','last_updated_fmt,updater_fnm,updater_nm',13,352,NULL,NULL),(738,'wd_5_pr','Credence','dev_est_reqs_case_access',12,352,NULL,NULL),(734,'wd_5_pr','Glacier','dev_est_access',10,352,NULL,NULL),(735,'wd_5_pr','Cube','dev_est_req_access',11,352,NULL,NULL),(726,'wd_7_pr','App Name','app_name',1,352,NULL,NULL),(727,'wd_5_pr','Glacier ID','iddev_est',2,352,NULL,NULL),(729,'wd_10_pr','Summary','dev_est_smry',4,352,NULL,NULL),(728,'wd_4_pr','Ph Tm','est_time_vir',3,352,NULL,NULL),(730,'wd_10_pr','Owner','owner_fnm,owner_ref_nm',5,352,NULL,NULL),(739,NULL,'Access To','dev_est_emp_id_nm',7,362,NULL,NULL),(740,NULL,'File Summary',NULL,1,7,NULL,NULL),(741,NULL,'Storage Location','sto_loc',2,180,NULL,NULL),(742,NULL,'File size','file_size',3,180,NULL,NULL),(743,NULL,'Owner','owner_fnm, owner_nm',4,180,NULL,NULL),(744,NULL,'Create Dt ','create_dt',5,180,NULL,NULL),(745,NULL,'Summary','smry',9,180,NULL,NULL),(746,NULL,'Usage','usage',10,180,NULL,NULL),(747,NULL,'App ID','iddev_apps',1,133,NULL,NULL),(748,NULL,'Stat Time','app_stat_tm_vir',5,6,NULL,NULL),(749,NULL,'Lag Time','app_lag_tm_vir',6,6,NULL,NULL),(750,NULL,'Skill Avg','app_skill_avg',7,6,NULL,NULL),(751,NULL,'Gap Avg','app_gap_avg',8,6,NULL,NULL),(752,NULL,'Glacier','app_est_pcnt, app_est_cnt_tol',10,6,NULL,NULL),(753,NULL,'Cubes','app_est_req_pcnt, app_est_req_cnt_tol',11,6,NULL,NULL),(754,NULL,'Steps','app_est_req_stat_pcnt, app_est_req_stat_cnt_tol',12,6,NULL,NULL),(755,NULL,'Cases','app_case_pcnt, app_case_cnt_tol',13,6,NULL,NULL),(756,NULL,'Tries','app_case_atmpt',14,6,NULL,NULL),(757,NULL,'Budget','app_use_pcnt, app_bud_use_amt',15,6,NULL,NULL),(758,NULL,'Paid','app_pay_pcnt, app_pay_bal',16,6,NULL,NULL),(759,NULL,'File Size','file_size',3,7,NULL,NULL),(760,NULL,'Public','public',5,7,NULL,NULL),(761,NULL,'Self View','self_view',6,7,NULL,NULL),(762,NULL,'paid','app_pay_pcnt, app_pay_bal',14,132,NULL,NULL),(763,NULL,'Deleted Record','Holds deleted records prior to completely remove it',1,NULL,NULL,'2022-05-25 04:12:30'),(764,'wd_12_pr','45','No of Days',1,763,NULL,'2021-06-15 07:03:56'),(766,NULL,'Category','category',1,726,NULL,NULL),(767,NULL,'Estimate ','est_skill',2,726,NULL,NULL),(768,NULL,'Start Date','est_st_dt_fmt',1,729,NULL,NULL),(769,NULL,'End Date','est_e_dt_fmt',2,729,NULL,NULL),(770,NULL,'Priority','priority',3,726,NULL,NULL),(771,NULL,'Estimate gap level','est_gap_lvl',4,726,NULL,NULL),(772,NULL,'Cube Status','dev_est_reqs_cur_stat',9,273,NULL,NULL),(773,NULL,'Apex Status','app_e_dt',1,369,NULL,NULL),(774,NULL,'Sorting',NULL,5,269,NULL,NULL),(775,NULL,'Apex','app_name',1,774,NULL,'2022-02-18 08:09:21'),(776,NULL,'Owner','owner_ref_nm',2,774,NULL,NULL),(777,NULL,'Estimator','est_ref_nm',3,774,NULL,NULL),(778,NULL,'W.Or ID','iddev_est',4,774,NULL,'2022-02-21 04:22:44'),(779,NULL,'Cube ID','iddev_est_reqs',5,774,NULL,NULL),(780,NULL,'Cube Tm','req_time_vir',7,774,NULL,NULL),(781,NULL,'Cubes Start','req_st_dt',8,774,NULL,NULL),(782,NULL,'Cube End','req_e_dt',9,774,NULL,NULL),(783,NULL,'Cubes','est_req_pcnt',10,774,NULL,NULL),(784,NULL,'Cube Lag','req_lag_tm_vir',11,774,NULL,NULL),(785,NULL,'Steps','req_stat_pcnt',12,774,NULL,NULL),(786,NULL,'Phase','req_status_nm',13,774,NULL,NULL),(787,NULL,'Phase Start','req_stat_st_dt',14,774,NULL,NULL),(788,NULL,'Phase End','req_stat_e_dt',15,774,NULL,NULL),(789,NULL,'Cases','est_case_pcnt',17,774,NULL,NULL),(790,NULL,'Tries','est_case_atmpt',18,774,NULL,NULL),(791,NULL,'Phase Lag','req_stat_lag_tm_vir',19,774,NULL,NULL),(792,NULL,'Assign To','assigned_to_nm',20,774,NULL,NULL),(793,NULL,'Last Updated','last_updated',21,774,NULL,NULL),(794,NULL,'Phase Tm','req_stat_time_vir',16,774,NULL,NULL),(795,NULL,'Disp. Order','disp_order',6,774,NULL,NULL),(796,NULL,'Assign To Now','cur_assigned_to_nm',9,408,NULL,NULL),(797,NULL,'Section','priority_nm',7,273,NULL,NULL),(798,'wd_5_pr','Skill','est_skill',13,197,NULL,NULL),(799,'wd_5_pr','Gap','est_gap_lvl',14,197,NULL,NULL),(800,NULL,'Glacier Cubes',NULL,3,159,NULL,NULL),(801,NULL,'Glacier Cube Main',NULL,1,800,NULL,NULL),(802,NULL,'Glacier Cube Nested',NULL,2,800,NULL,NULL),(803,NULL,'Glacier Cube Forecast',NULL,1,802,NULL,NULL),(804,NULL,'Glacier Cube Actuals',NULL,2,802,NULL,NULL),(805,NULL,'Glacier Cube Credence',NULL,5,802,NULL,NULL),(806,NULL,'Glacier Cube Credence Main',NULL,1,805,NULL,NULL),(807,NULL,'Glacier Cube Forecast Notes',NULL,3,802,NULL,NULL),(808,NULL,'Glacier Cube Actuals Notes',NULL,4,802,NULL,NULL),(809,'wd_3_pr','Cube Id','iddev_est_reqs',1,801,NULL,NULL),(810,'wd_4_pr','Req. Lag Tm','req_lag_tm_vir',2,801,NULL,NULL),(811,'wd_4_pr','Req Tm','req_time_vir',3,801,NULL,NULL),(812,'wd_15_pr','Requirement Desc.','req_desc',4,801,NULL,NULL),(813,'wd_5_pr','Steps','req_stat_cnt_tol',5,801,NULL,NULL),(814,'wd_5_pr','Phase','req_status_nm',6,801,NULL,NULL),(815,'wd_3_pr','Phase Lag Tm','req_stat_lag_tm_vir',7,801,NULL,NULL),(816,'wd_13_pr','Assign To','assigned_to_nm',8,801,NULL,NULL),(817,'wd_5_pr','Ph. Tm','req_stat_time_vir',9,801,NULL,NULL),(818,'wd_5_pr','Cases','req_case_cnt_tol',10,801,NULL,NULL),(819,'wd_5_pr','Tries','req_case_atmpt',11,801,NULL,NULL),(820,'wd_5_pr','Budget','req_bud_use_amt',12,801,NULL,NULL),(821,'wd_5_pr','Paid','req_pay_bal',13,801,NULL,NULL),(822,'wd_15_pr','Last Updated','last_updated_fmt',14,801,NULL,NULL),(823,'wd_3_pr',' Id','iddev_est_reqs_status_forcast',1,803,NULL,NULL),(824,'wd_5_pr','Phase','req_status_nm',2,803,NULL,NULL),(825,'wd_3_pr','Lag Tm','for_lag_time_vir',3,803,NULL,NULL),(826,'wd_10_pr','Started - Ended','for_stat_st_dt_fmt',4,803,NULL,NULL),(827,'wd_4_pr','Budget','for_req_bud_stat_amt',6,803,NULL,NULL),(829,'wd_15_pr','Assigned To','assigned_to_nm',7,803,NULL,NULL),(835,'wd_3_pr','Ph. Tm','for_stat_time_vir',5,803,NULL,NULL),(837,'wd_3_pr','Id','iddev_est_reqs_status',1,804,NULL,NULL),(838,'wd_7_pr','Phase','req_status_nm',2,804,NULL,NULL),(839,'wd_5_pr','Lag Tm','stat_lag_time_vir',3,804,NULL,NULL),(840,'wd_8_pr','Started - Ended','stat_st_dt_fmt',4,804,NULL,NULL),(841,'wd_8_pr','Paid','req_stat_paid',6,804,NULL,NULL),(842,'wd_5_pr','Ph. Tm','stat_time_vir',5,804,NULL,NULL),(843,'wd_5_pr','Assigned To','assigned_to_nm',7,804,NULL,NULL),(844,'wd_15_pr','Phase','req_status_nm',1,808,NULL,NULL),(845,'wd_25_pr','Note Details','dev_steps_details',2,808,NULL,NULL),(846,'wd_15_pr','Updater','last_updated_fmt',3,808,NULL,NULL),(847,'wd_10_pr','File Name','file_name',1,263,NULL,NULL),(848,'wd_20_pr','Storage Location','sto_loc',2,263,NULL,NULL),(849,'wd_10_pr','File size','file_size',3,263,NULL,NULL),(850,'wd_15_pr','Owner','owner_nm',4,263,NULL,NULL),(851,'wd_6_pr','Usage','usage',5,263,NULL,NULL),(852,'wd_15_pr','Note Detail','dev_steps_details',1,807,NULL,NULL),(853,'wd_10_pr','Update','updated_fmt',2,807,NULL,NULL),(854,'wd_3_pr','Case Id','iddev_est_reqs_case',1,806,NULL,NULL),(855,'wd_5_pr','Create Time','create_time_vir',2,806,NULL,NULL),(856,'wd_5_pr','Cases','req_case_cnt_tol',3,806,NULL,NULL),(857,'wd_7_pr','Req Cases','reqs_cases',4,806,NULL,NULL),(858,'wd_5_pr','Cases Data','case_data',5,806,NULL,NULL),(859,'wd_15_pr','Cases Result Description','case_result_desc',6,806,NULL,NULL),(860,'wd_5_pr','Tries','case_cnt',7,806,NULL,NULL),(861,'wd_5_pr','Result','case_status_name',8,806,NULL,NULL),(862,'wd_15_pr','Last Updated','last_updated_fmt',9,806,NULL,NULL),(863,NULL,'Category','category_nm',1,810,NULL,NULL),(870,NULL,'Glacier Cube Credence Attachment',NULL,2,805,NULL,NULL),(871,NULL,'Glacier Cube Credence Nested',NULL,3,805,NULL,NULL),(872,'wd_15_pr','File Name','file_name',1,870,NULL,NULL),(873,'wd_8_pr','Location','sto_cloud_nm',2,870,NULL,NULL),(874,'wd_8_pr','File Size','file_size_fmt',3,870,NULL,NULL),(875,'wd_10_pr','Owner','owner_nm',4,870,NULL,NULL),(876,'wd_6_pr','Usage','usage',5,870,NULL,NULL),(877,'wd_5_pr','ID','iddev_est_reqs_case_result',1,871,NULL,NULL),(878,'wd_15_pr','Case Data','case_data',2,871,NULL,NULL),(879,'wd_10_pr','Case Result Desc','case_result_desc',3,871,NULL,NULL),(880,'wd_10_pr','Status Name','case_status_nm',4,871,NULL,NULL),(881,'wd_25_pr','Execute Name','executed_by_nm',5,871,NULL,NULL),(882,'wd_10_pr','Execute Date','execute_dt_fmt',6,871,NULL,NULL),(883,'wd_20_pr','Last Updated','last_updated_fmt',7,871,NULL,NULL),(733,'wd_10_pr','Access To','access_to_fnm,dev_est_emp_id_nm',8,352,NULL,NULL),(732,'wd_5_pr','Est Type','est_type',7,352,NULL,NULL),(731,'wd_10_pr','Estimater','est_fnm,est_ref_nm',6,352,NULL,NULL),(736,'wd_5_pr','Apex','dev_app_access',9,352,NULL,NULL),(884,NULL,'Workflow','wrk_flow_nm',10,273,NULL,NULL),(885,NULL,'Workflow','wrk_flow_nm',5,95,NULL,NULL),(886,NULL,'Workflow','wrk_flow_nm',4,408,NULL,NULL),(888,NULL,'Arch Record','dev_est_archv_stat',2,362,NULL,NULL),(889,NULL,'Del Record','dev_est_del_stat',3,362,NULL,NULL),(890,NULL,'Workflow','wrk_flow_nm',NULL,296,NULL,NULL),(891,NULL,'Skills','skill_lvl_nm',NULL,296,NULL,NULL),(892,NULL,'Cube Type','req_type_nm',NULL,296,NULL,NULL),(893,NULL,'Gap','gap_lvl_nm',NULL,296,NULL,NULL),(894,NULL,'Disp Order','disp_order',NULL,297,NULL,NULL),(895,NULL,'Started','est_st_dt_fmt',3,290,NULL,NULL),(896,NULL,'Ended','est_e_dt_fmt',4,290,NULL,NULL),(897,NULL,'Glacier Type','est_type',7,290,NULL,NULL),(898,NULL,'Section','priority_nm',8,290,NULL,NULL),(899,NULL,'Category','category_nm',9,290,NULL,NULL); /*!40000 ALTER TABLE `dev_lk_label` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:58 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `dev_look` -- LOCK TABLES `dev_look` WRITE; /*!40000 ALTER TABLE `dev_look` DISABLE KEYS */; INSERT INTO `dev_look` VALUES (11,'Work Order Priority','This Value is used in Work Order Priority Columns.',2,NULL,'2025-07-30 12:52:37',NULL),(2,'Work Order Category',NULL,4,NULL,'2025-07-30 12:52:37',NULL),(4,'Requirement Type',NULL,3,NULL,'2025-07-30 12:52:37',NULL),(6,'Req Case Status',NULL,6,NULL,'2025-07-30 12:52:37',NULL),(7,'WorkFlow',NULL,7,NULL,'2025-07-30 12:52:37',NULL),(1,'Deleted Record','Hold records after delete',8,NULL,'2025-07-30 12:52:37',NULL),(9,'Quote Action','Used in Quotes section',5,NULL,'2025-07-30 12:52:37',NULL); /*!40000 ALTER TABLE `dev_look` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:59 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `emp_lk` -- LOCK TABLES `emp_lk` WRITE; /*!40000 ALTER TABLE `emp_lk` DISABLE KEYS */; INSERT INTO `emp_lk` VALUES (1,'Employee Type',NULL,'18',NULL,'2025-03-20 06:55:00',NULL),(2,'Days Off ',NULL,'12',NULL,'2025-03-20 06:55:00',NULL),(3,'Gender',NULL,'14',NULL,'2025-03-20 06:55:00',NULL),(4,'Storage Size',NULL,'13',NULL,'2025-03-20 06:55:00',NULL),(5,'Contact Type',NULL,'16',NULL,'2025-03-20 06:55:00',NULL),(6,'Level',NULL,'15',NULL,'2025-03-20 06:55:00',NULL),(7,'Time Out','Session time out in minutes','20',NULL,'2025-03-20 06:55:00',NULL),(9,'Legal ID Type','Passport, Certificate, etc','17',NULL,'2025-03-20 06:55:00',NULL),(8,'Job Title',NULL,'1',NULL,'2025-03-20 06:55:00',NULL),(10,'University','College Name','2',NULL,'2025-03-20 06:55:00',2),(11,'Degree','Physical, BioTech, Surgine','19',NULL,'2025-03-20 06:55:00',NULL),(12,'Degree Level','Bachelor, Master, Associate','11',NULL,'2025-03-20 06:55:00',NULL); /*!40000 ALTER TABLE `emp_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:59 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `feature` -- LOCK TABLES `feature` WRITE; /*!40000 ALTER TABLE `feature` DISABLE KEYS */; INSERT INTO `feature` VALUES (1,1,'Login History View',' Login History View',1),(2,2,'Login History Delete','Login History Delete',2),(3,3,'Login History Print and Export','Login History Print',3),(4,4,'Login History Archive Print and Export','Login History export',4),(5,5,'Login History Archive','To Archive / Deleted records',5),(6,6,'Login History Restore','To restore Archive / Deleted Records',6),(7,7,'Login History Erase','To Delete records forever',7),(8,151,'Network Log View','Network Log View',151),(11,301,'Employee Listing View','Employee View',301),(12,302,'Employee Listing Edit','Employee Edit',302),(13,303,'Employee Listing Add','Employee Add',303),(14,304,'Employee Listing Delete','Employee Delete',304),(15,321,'Emp Kundali View','Emp Report View',321),(16,322,'Emp Kundali Execute','Emp Report Execute',322),(17,331,'Employee Values View','Emp Values View',331),(18,332,'Employee Values Edit','Emp Values Edit',332),(19,11,'My Login History Toggle','My Login History View',11),(20,451,'Storage Files View','Storage Files View',451),(21,452,'Storage Uploads','Storage Uploads',452),(22,453,'Storage Delete','Storage Delete',453),(23,461,'Storage Attachment View','Storage Folder View',461),(24,462,'Storage Attachment Edit','Storage Folder Edit',462),(25,463,'Storage Attachment Add','Storage Folder Add',463),(26,464,'Storage Attachment Delete','Storage Folder Delete',464),(27,471,'Storage Tags View','Storage Values View',471),(28,472,'Storage Tags Edit','Storage Values Edit',472),(29,473,'Storage Tags Add','Storage Values Add',473),(30,474,'Storage Tags Delete','Storage Values Delete',474),(335,2045,'Global Audit Archive','Global Audit Archive',2045),(33,601,'Company View','Company View',601),(34,602,'Company Edit','Company Edit',602),(35,603,'Company Add','Company Add',603),(36,611,'Company Engage View','Company Engage View',611),(37,612,'Company Engage Edit','Company Engage Edit',612),(38,613,'Company Engage Add','Company Engage Add',613),(39,621,'Royalty View','Royalty View',621),(40,622,'Royalty Edit','Royalty Edit',622),(41,623,'Royalty Add','Royalty Add',623),(42,631,'Client Listing View','Client Listing View',631),(43,632,'Client Listing Edit','Client Listing Edit',632),(44,633,'Client Listing Add','Client Listing Add',633),(45,641,'Festival Edit','Festival Edit',641),(46,651,'Company Product View','Company Product View',651),(47,652,'Company Product Edit','Company Product Edit',652),(48,653,'Employment View','Company Product Add',653),(49,654,'Company Product Delete','Company Product Delete',654),(331,2558,'Legal Restore','Legal Restore',2558),(330,2557,'Legal Archive','Legal Archive',2557),(52,893,'Hours Timecard Cycle Execute','Hours Timecard Cycle Execute',893),(53,884,'Hours Bill Cycle Print','Hours Bill Cycle Print',884),(54,883,'Hours Bill Cycle Execute','Hours Bill Cycle Execute',883),(55,761,'Hours View','Hours View',761),(56,762,'Hours Edit','Hours Edit',762),(57,763,'Hours Add','Hours Add',763),(714,392,'Emp Schedule Edit','Emp Schedule Edit',392),(59,781,'Hours Approve Edit','Hours Approve Edit',781),(60,791,'Hours Pending Process Edit','Hours Pending Process Edit',791),(61,801,'Timecard View','Timecard View',801),(62,802,'Timecard Edit','Timecard Edit',802),(63,804,'Timecard Delete','Timecard Delete',803),(340,162,'Block Domain Edit','Block Domain Edit',162),(66,901,'Asset View','Asset View',901),(67,902,'Asset Edit','Asset Add/Edit',902),(68,903,'Asset Add','Asset Delete',903),(339,161,'Block Domain View','Block Domain View',161),(71,1051,'Inventory View','Inventory View',1051),(72,1052,'Inventory Edit','Inventory Edit',1052),(73,1053,'Inventory Add','Inventory Add',1053),(338,334,'Employee Values Delete','Employee Values Delete',334),(76,1201,'Invoice View','Invoice View',1201),(77,1202,'Invoice Edit','Invoice Edit',1202),(78,1203,'Invoice Add','Invoice Add',1203),(79,1211,'Self Invoice View','Self Invoice View',1211),(80,1212,'Self Invoice Edit','Self Invoice Edit',1212),(81,1213,'Self Invoice Add','Self Invoice Add',1213),(337,2047,'Global Audit Erase','Global Audit Erase',2047),(84,1351,'Sales All Rights','Sales All Rights',1351),(85,1352,'Consultant Tags View Recruite','Consultant view (Need to be deleted once HR-->Recruite tag completed)',1352),(86,1353,'Consultant Tags Edit Recruite','Consultant Edit Recruite Tags (Need to be deleted once HR-->Recruite tag completed)',1353),(87,1354,'Consultant Tags Add Recruite','Consultant Add Recruite Tags (Need to be deleted once HR-->Recruite tag completed)',1354),(88,1355,'Consultant Tags Delete Recruite','Consultant Delete Recruite',1355),(89,1356,'Consult Recruite Tags Execute','Consult Recruite Tags Execute (Need to be deleted once HR-->Recruite tag completed)',1356),(90,1357,'Consult Recruite Tags Print','Consult Recruite Tags Print / Export / CSV (Need to be deleted once HR-->Recruite tag completed)',1357),(91,1361,'Consultant Log View','Consultant Log View',1361),(92,1362,'Consultant Log Delete','Tag Employee Add/Edit',1362),(93,1371,'Tag Employee Edit','Tag Employee Edit',1371),(94,1381,'Consultant Conversion','Consultant Conversion',1381),(95,1391,'Leads View','Leads View',1391),(96,1392,'Leads Edit','Leads Edit',1392),(97,1393,'Leads Add','Leads Add',1393),(98,1394,'Leads Delete','Leads Delete',1394),(99,1401,'My Leads Edit','My Leads Edit',1401),(100,1411,'Virtual Leads View','Virtual Leads View',1411),(329,2556,'Legal Export','Legal Export',2556),(328,2555,'Legal Print','Legal Print',2555),(103,1501,'Mkt Company View','Mkt Company View',1501),(104,1511,'Mkt Open View','Mkt Reqs View',1511),(105,1561,'Mkt Open Log View','Mkt Reqs Log View',1561),(106,1562,'Mkt Open Log Delete','Mkt Reqs Log Delete',1562),(107,1531,'Mkt Assist View','Mkt Marketing View',1531),(108,1541,'Mkt My Marketing Edit','Mkt My Marketing Edit',1541),(336,2046,'Global Audit Restore','Global Audit Restore',2046),(111,1651,'Agile Apex View','Agile Apex View',1651),(112,1652,'Agile Apex Edit','Agile Apex Edit',1652),(113,1653,'Agile Apex Add','Agile Apex Add',1653),(114,1655,'Agile Apex Print and Export','Agile Application Print and Export',1654),(115,1656,'Agile Apex Archive Print and Export','Agile Apex Archive Print and Export',1656),(116,1657,'Agile Apex Archive','Agile Apex Archive',1657),(117,1658,'Agile Apex Restore','Agile Apex Restore',1658),(118,1659,'Agile Apex Erase','Agile Apex Erase',1659),(119,1661,'Agile Glacier View','Agile Glacier View',1661),(270,1703,'Agile Credence Add','Agile Req Acceptance Add',1703),(120,1662,'Agile Glacier Edit','Agile Glacier Edit',1662),(121,1663,'Agile Glacier Add','Agile Glacier Add',1663),(122,1675,'Agile Virtual Glacier View','Agile Virtual Glacier View',1675),(123,1681,'Agile Cubes View','Agile Cubes View',1681),(124,1682,'Agile Cubes Edit','Agile Cubes Edit',1682),(125,1683,'Agile Cubes Add','Agile Cubes Add',1683),(126,1691,'Agile Virtual Cubes View','Agile Virtual Reqs View',1691),(127,1701,'Agile Credence View','Agile Req Acceptance View',1701),(128,1702,'Agile Credence Edit','Agile Req Acceptance Add / Edit',1702),(129,1711,'Agile Kundali View','Agile Kundali View',1711),(130,1712,'Agile Kundali Print','Agile Kundali Print',1712),(131,1713,'Agile Kundali Execute','Agile Kundali Execute',1713),(132,1731,'Agile Burning View','Agile Burning View',1731),(133,1732,'Agile Burning Print and Export','Agile Burning Print and Export',1732),(134,1741,'Agile My Burning Toggle','Agile My Burning Toggle',1741),(135,1751,'Agile Quotes View','Agile Quotes View',1751),(136,1752,'Agile Quotes Edit','Agile Quotes Edit',1752),(137,1753,'Agile Quotes Add','Agile Quotes Add',1753),(138,1754,'Agile Quotes Delete','IT Quotes Delete',1754),(139,1755,'Agile Quotes Print and Export','IT Quotes Print and Export and CSV',1755),(140,1756,'Agile Quotes Archive Print and Export','IT Quotes Archive Print, Export and CSV',1756),(141,1757,'Agile Quotes Archive','IT Quotes Archive',1757),(142,1758,'Agile Quotes Restore','Agile Quotes Restore',1758),(143,1759,'Agile Quotes Erase','Agile Quotes Erase',1759),(144,1735,'Agile Burning Archive Print and Export','Agile Burning Archive Print and Export',1735),(145,1762,'Agile My Quotes Edit','Agile My Quotes Edit',1762),(146,1763,'Agile My Quotes Add','Agile My Quotes Add',1763),(147,1764,'Agile My Quotes Delete','Agile My Quotes Delete',1764),(148,1767,'Agile My Quotes Archive','Agile My Quotes Archive',1767),(149,1771,'Agile Access View','Agile Access View',1771),(150,1772,'Agile Access Edit','Agile Access Edit',1772),(151,1773,'Agile Access Add','Agile Access Add',1773),(152,1774,'Agile Access Delete','Agile Access Delete',1774),(153,1781,'Agile Label View','Agile Label View',1781),(154,1782,'Agile Label Edit','Agile Label Edit',1782),(155,2551,'Legal View','Immigration View',2551),(156,2552,'Legal Edit','Immigration Add/Edit',2552),(157,2554,'Legal Delete','Immigration Delete',2554),(332,2559,'Legal Erase','Legal Erase',2559),(160,1951,'Features View','Features View',1951),(161,1952,'Features Edit','Features Edit',1952),(162,1953,'Features Add','Features Add',1953),(163,1961,'Feature Group View','Feature Group View',1961),(164,1962,'Feature Group Edit','Feature Group Edit',1962),(165,1963,'Feature Group Add','Feature Group Add',1963),(166,1964,'Feature Group Delete','Feature Group Delete',1964),(167,1965,'Feature Group Execute','Feature Group Execute',1965),(168,604,'Company Delete','Company Delete',604),(169,614,'Company Engage Delete','Company Engage Delete',614),(170,624,'Royalty Delete','Royalty Delete',624),(171,634,'Client Listing Delete','Client Listing Delete',634),(172,642,'Festival Add','Festival Add',642),(173,305,'Employee Listing Print','Employee Print',305),(174,306,'Employee Listing Archive Print','Employee Archive Print',306),(175,307,'Employee Listing Archive','Employee Listing Archive',307),(176,465,'Storage Attachment Archive','Storage Folder Archive',465),(177,466,'Storage Attachment Restore','Storage Folder Restore',466),(178,467,'Storage Attachment Erase','Storage Folder Erase',467),(179,764,'Hours Delete','Hours Delete',764),(181,782,'Hours Approve Add','Hours Approve Add',782),(182,792,'Hours Pending Process Add','Hours Pending Process Add',792),(183,803,'Timecard Add','Timecard Add',803),(184,904,'Asset Delete','Asset Delete',904),(185,1054,'Inventory Delete','Inventory Delete',1054),(186,1204,'Invoice Delete','Invoice Delete',1204),(187,1214,'Self Invoice Delete','Self Invoice Delete',1214),(188,1358,'Consult Recruite Tags Export/CSV','Consult Recruite Tags Export/CSV (Need to be deleted once HR-->Recruite tag completed)',1358),(189,1372,'Tag Employee Add','Tag Employee Add',1372),(190,811,'My Timecard Edit','My Timecard Edit',811),(191,812,'My Timecard Add','My Timecard Add',812),(192,1402,'My Leads Add','My Leads Add',1402),(193,1502,'Mkt Company Edit','Mkt Company Print and Export',1502),(194,1503,'Mkt Company Add','Mkt Company Add',1503),(195,1512,'Mkt Open Edit','Mkt Reqs Edit',1512),(196,1513,'Mkt Open Add','Mkt Reqs Add',1513),(197,1532,'Mkt Assist Edit','Mkt Marketing Edit',1532),(198,1533,'Mkt Assist Add','Mkt Marketing Add',1533),(199,1542,'Mkt My Marketing Add','Mkt My Marketing Add',1542),(200,1654,'Agile Apex Delete','Agile Application Delete',1654),(201,1664,'Agile Glacier Delete','Agile Glacier Delete',1664),(202,1684,'Agile Cubes Delete','Agile Cubes Delete',1684),(203,1971,'Config Audit View','Feature Group Log View',1971),(204,1972,'Config Audit Delete','Feature Group Log Delete',1972),(205,1981,'Menu Header View','Menu Header View',1981),(206,1991,'Menu View','Menu View',1991),(207,1992,'Menu Edit','Menu Edit',1992),(208,1993,'Menu Add','Menu Add',1993),(209,1994,'Menu Delete','Menu Delete',1994),(210,2001,'Menu Feature View','Menu Feature View',2001),(211,2002,'Menu Feature Edit','Menu Feature Edit',2002),(212,2003,'Menu Feature Add','Menu Feature Add',2003),(213,2004,'Menu Feature Delete','Menu Feature Delete',2004),(214,2011,'Addresses View','Addresses View',2011),(215,2012,'Addresses Edit','Addresses Edit',2012),(216,2013,'Addresses Add','Addresses Add',2013),(217,2014,'Addresses Erase','Addresses Erase',2014),(218,2021,'Config Value View','Config Value View',2021),(219,2022,'Config Value Edit','Config Value Edit',2022),(220,2023,'Config Value Add','Config Value Add',2023),(221,2024,'Config Value Delete','Config Value Delete',2024),(222,2031,'Config Label View','Config Label View',2031),(223,2032,'Config Label Edit','Config Label Edit',2031),(224,2041,'Global Audit View','Config Audit View',2041),(225,2042,'Global Audit Delete','Config Audit Delete',2042),(226,2101,'Recruite View','Recruite View',2101),(227,2102,'Recruite Edit','Recruite Edit',2102),(228,2103,'Recruite Add','Recruite Add',2103),(229,2104,'Recruite Delete','Recruite Delete',2104),(230,2111,'HR Values View','Recruite Values View',2111),(231,2112,'HR Values Edit','Recruite Values Edit',2112),(232,2113,'HR Values Add','Recruite Values Add',2113),(233,2114,'HR Values Delete','Recruite Values Delete',2114),(234,2121,'Recruite Tags View','Recruite Tags View',2121),(235,2122,'Recruite Tags Edit','Recruite Tags Edit',2122),(236,2123,'Recruite Tags Add','Recruite Tags Add',2123),(237,2124,'Recruite Tags Delete','Recruite Tags Delete',2124),(238,2131,'Review View','Review View',2131),(239,2132,'Review Edit','Review Edit',2132),(240,2133,'Review Add','Review Add',2133),(241,2134,'Review Delete','Review Delete',2134),(242,1421,'Sales Values View','Sales Values View',1421),(243,1422,'Sales Values Edit','Sales Values Edit',1422),(244,1423,'Sales Values Add','Sales Values Add',1423),(245,1424,'Sales Values Delete','Sales Values Delete',1424),(246,2151,'Review Tags View','Review Tags View',2151),(247,2152,'Review Tags Edit','Review Tags Edit',2152),(248,2153,'Review Tags Add','Review Tags Add',2153),(249,2154,'Review Tags Delete','Review Tags Delete',2154),(250,2161,'HR Policies View','HR Policies View',2161),(251,2162,'HR Policies Edit','HR Policies Edit',2162),(252,2163,'HR Policies Add','HR Policies Add',2163),(253,2164,'HR Policies Delete','HR Policies Delete',2164),(341,163,'Block Domain Add','Block Domain Add',163),(256,2251,'Bank Account View','Bank Account View',2251),(257,2252,'Bank Account Edit','Bank Account Edit',2252),(258,2253,'Bank Account Add','Bank Account Add',2253),(259,2254,'Bank Account Delete','Bank Account Delete',2254),(260,2261,'Bank Record View','Bank Record View',2261),(261,2262,'Bank Record Edit','Bank Record Edit',2262),(262,2263,'Bank Record Add','Bank Record Add',2263),(263,2264,'Bank Record Delete','Bank Record Delete',2264),(264,2271,'Bank Labels View','Bank Labels View',2271),(265,2272,'Bank Labels Edit','Bank Labels Edit',2272),(266,311,'Emp Access View','Emp Access View',311),(267,312,'Emp Access Edit','Emp Access Edit',312),(268,313,'Emp Access Add','Emp Access Add',313),(269,314,'Emp Access Delete','Emp Access Delete',314),(271,2553,'Legal Add','Legal Add/Edit',2553),(272,1660,'Agile Apex Execute','Agile Apex Execute',1660),(274,1734,'Agile Burning Toggle','Agile Burning Toggle',1734),(276,911,'Asset Values View','Asset Values View',921),(277,912,'Asset Values Edit','Asset Values Edit',922),(278,913,'Asset Values Add','Asset Values Add',923),(279,914,'Asset Values Delete','Asset Values Delete',924),(280,1685,'Agile Cubes Print and Export','Agile Cubes Print and Export',1685),(281,1686,'Agile Cubes Archive Print and Export','Agile Cubes Arvhive Print and Export',1686),(282,1687,'Agile Cubes Archive','Agile Cubes Archive',1687),(283,1688,'Agile Cubes Restore','Agile Cubes Restore',1688),(284,1689,'Agile Cubes Erase','Agile Cubes Erase',1689),(285,1690,'Agile Cubes Execute','Agile Cubes Execute',1690),(286,1504,'Mkt Company Delete','Mkt Company Delete',1504),(287,1505,'Mkt Company Print and Export','Mkt Company Print and Export',1505),(288,1506,'Mkt Company Archive Print and Export','Mkt Company Archive Print and Export',1506),(289,1507,'Mkt Company Archive','Mkt Company Archive',1507),(290,1508,'Mkt Company Restore','Mkt Company Restore',1508),(291,1509,'Mkt Company Erase','Mkt Company Erase',1509),(292,1510,'Mkt Company Execute','Mkt Company Execute',1510),(293,2181,'HR Meeting Edit','HR Meeting Edit',2181),(294,2182,'HR Meeting Add','HR Meeting Add',2182),(295,2183,'HR Meeting Delete','HR Meeting Delete',2183),(296,2184,'HR Meeting Print and Export','HR Meeting Print',2184),(297,674,'Company Audit Archive Print and Export','Company Audit Archive Print and Export',674),(519,675,'Company Audit Archive','Company Audit Archive',675),(298,1403,'My Leads Delete','My Leads Delete',1403),(299,1405,'My Leads Export','My Leads Export',1405),(300,1404,'My Leads Print','My Leads Print',1404),(301,1406,'My Leads Archive','My Leads Archive',1406),(302,1407,'My Leads Restore','My Leads Restore',1407),(303,1408,'My Leads Erase','My Leads Erase',1408),(304,1791,'Agile Values View','Agile Values View',1791),(305,1792,'Agile Values Edit','Agile Values Edit',1792),(306,1793,'Agile Values Add','Agile Values Add',1793),(307,1794,'Agile Values Delete','Agile Values Delete',1794),(308,1801,'Agile Workflow View','Agile Workflow View',1801),(309,1802,'Agile Workflow Edit','Agile Workflow Edit',1802),(310,1803,'Agile Workflow Add','Agile Workflow Add',1803),(311,1804,'Agile Workflow Delete','Agile Workflow Delete',1804),(312,491,'Storage Values View','Storage Values View',491),(313,492,'Storage Values Edit','Storage Values Edit',492),(314,493,'Storage Values Add','Storage Values Add',493),(315,494,'Storage Values Delete','Storage Values Delete',494),(316,468,'Storage Attachment Toggle','Storage Attachment Toggle',468),(317,1395,'Leads Print','Leads Print',1395),(318,1396,'Leads Export','Leads Export',1396),(319,1397,'Leads Archive','Leads Archive',1397),(320,1398,'Leads Restore','Leads Restore',1398),(321,1399,'Leads Erase','Leads Erase',1399),(322,12,'My Login History Print and Export','My Login History Print',12),(323,13,'My Login History Archive Print and Export','My Login History Export',13),(334,2044,'Global Audit Archive Print and Export','Global Audit Archive Print and Export',2044),(333,2043,'Global Audit Print and Export','Global Audit Print and Export',2043),(324,333,'Employee Values Add','Emp Values View',333),(325,1409,'My Leads Toggle view','My Leads Toggle view',1409),(326,1400,'Leads Toggle view','Leads Toggle view',1400),(327,308,'Employee Listing Restore','Employee Listing Restore',308),(342,164,'Block Domain Delete','Block Domain Delete',164),(343,165,'Block Domain Print and Export','Block Domain Print',165),(344,1452,'Sales Kundali Print','Sales Kundali Print',1452),(713,391,'Emp Schedule View','Emp Schedule View',391),(711,2203,'HR Contact Add','HR Contact Edit',2203),(348,605,'Company Print and Export','Company Print',605),(349,813,'My Timecard Delete','My Timecard Delete',813),(350,814,'My Timecard Print','My Timecard Print',814),(351,815,'My Timecard Export','My Timecard Export',815),(352,1760,'Agile Quote Approve','Agile Approve Quotes',1760),(353,2105,'Recruite Print','Recruite Print',2105),(354,2106,'Recruite Export','Recruite Export',2106),(355,2107,'Recruite Archive','Recruite Archive',2107),(381,661,'Company Values View',' Company Values View',661),(356,2108,'Recruite Restore','Recruite Restore',2108),(357,2109,'Recruite Erase','Recruite Erase',2109),(358,2110,'Recruite Execute','Recruite Execute',2110),(359,2561,'Legal Workflow View','Legal Workflow View',NULL),(360,2562,'Legal Workflow Edit','Legal Workflow Edit',NULL),(361,2563,'Legal Workflow Add','Legal Workflow Add',NULL),(362,2564,'Legal Workflow Delete','Legal Workflow Delete',NULL),(363,1551,'Mkt Workflow View','Mkt Workflow View',NULL),(364,1552,'Mkt Workflow Edit',' Mkt Workflow Edit',NULL),(365,1553,'Mkt Workflow Add',' Mkt Workflow Add',NULL),(366,1554,'Mkt Workflow Delete',' Mkt Workflow Delete',NULL),(367,1534,'Mkt Assist Delete',' Mkt Marketing Delete',1534),(368,1535,'Mkt Assist Print & Export',' Mkt Marketing Print',1535),(369,1536,'Mkt Assist Archive Print & Export',' Mkt Marketing Export',1536),(370,1537,'Mkt Assist Archive',' Mkt Marketing Archive',1537),(371,1538,'Mkt Assist Restore',' Mkt Marketing Restore',1538),(372,1539,'Mkt Assist Erase',' Mkt Marketing Erase',1539),(373,1431,'Sales Audit View',' Sales Audit View',1431),(374,1432,'Sales Audit Delete',' Sales Audit Delete',1432),(375,1433,'Sales Audit Print and Export',' Sales Audit Print',1433),(376,1434,'Sales Audit Archive Print and Export',' Sales Audit Export',1434),(377,1435,'Sales Audit Archive',' Sales Audit Archive',1435),(378,1436,'Sales Audit Restore',' Sales Audit Restore',1436),(379,1437,'Sales Audit Erase',' Sales Audit Erase',1437),(740,203,'Network Scripts Add','Network Scripts Add',NULL),(382,662,'Company Values Edit',' Company Values Edit',662),(383,663,'Company Values Add',' Company Values Add',663),(384,664,'Company Values Delete',' Company Values Delete',664),(385,1205,'Invoice Print',' Invoice Print',1205),(386,1206,'Invoice Export',' Invoice Export',1206),(387,1207,'Invoice Archive',' Invoice Archive',1207),(388,1208,'Invoice Restore',' Invoice Restore',1208),(389,1209,'Invoice Erase',' Invoice Erase',1209),(390,1761,'Agile Quotes Toggle','Toggle Button Only',1761),(391,1770,'Agile My Quotes Toggle','Toggle Button Only',1770),(392,1210,'Invoice Toggle View',' Invoice Toggle View',1210),(393,1704,'Agile Credence Delete','Agile Credence delete',1704),(394,1705,'Agile Credence Print and Export','Agile Credence Print and Export',1705),(395,1706,'Agile Credence Archive Print and Export','Agile Credence Archive Print and Export',1706),(396,1707,'Agile Credence Archive','Agile Credence Archive',1707),(397,1708,'Agile Credence Restore','Agile Credence Restore',1708),(398,1709,'Agile Credence Erase','Agile Credence Erase',1709),(399,1710,'Agile Credence Toggle','Agile Credence Toggle',1710),(400,1514,'Mkt Open Delete',' Mkt Reqs Delete',1514),(401,1515,'Mkt Open Print & Export',' Mkt Reqs Print',1515),(402,1516,'Mkt Open Archive Print & Export',' Mkt Reqs Export',1516),(403,1517,'Mkt Open Archive',' Mkt Reqs Archive',1517),(404,1518,'Mkt Open Restore',' Mkt Reqs Restore',1518),(405,1519,'Mkt Open Erase',' Mkt Reqs Erase',1519),(406,1520,'Mkt Open Execute',' Mkt Reqs Execute',1520),(407,1521,'Mkt Open Toggle',' Mkt Reqs Toggle',1521),(408,1530,'Mkt Assist Execute','Mkt Assist Execute',1530),(476,2256,'Bank Account Archive Print and Export',' Bank Account Archive Print and Export',2256),(410,1650,'Agile Apex Toggle',' Agile Apex Toggle',1650),(411,1665,'Agile Glacier Print and Export','Agile Glacier Print and Export',1665),(412,1666,'Agile Glacier Archive Print and Export','Agile Glacier Archive Print and Export',1666),(413,1667,'Agile Glacier Archive','Agile Glacier Archive',1667),(414,1668,'Agile Glacier Restore','Agile Glacier Restore',1668),(415,1669,'Agile Glacier Erase','Agile Glacier Erase',1669),(416,1671,'Agile Glacier Execute','Agile Glacier Execute',1671),(473,1670,'Agile Glacier Toggle','Agile Glacier Toggle',1670),(417,1499,'MKT Company Toggle',' MKT Company Toggle',NULL),(418,1540,'MKT Assist Toggle','MKT Assist Toggle',1540),(419,1831,'Agile Audit View','Agile Audit View',1831),(420,1832,'Agile Audit Delete','Agile Audit Delete',1832),(421,1833,'Agile Audit Archive Print and Export','Agile Audit Print and Export',1833),(422,1834,'Agile Audit Archive Print and Export','Agile Audit Archive Print and Export',1834),(423,1835,'Agile Audit Archive','Agile Audit Archive',1835),(424,1836,'Agile Audit Restore','Agile Audit Restore',1836),(425,1837,'Agile Audit Erase','Agile Audit Erase',1837),(739,202,'Network Scripts Edit','Network Scripts Edit',NULL),(427,1839,'Agile Audit Toggle','Toggle button only',1839),(475,2255,'Bank Account Print and Export',' Bank Account Print and Export',2255),(429,351,'Employment View','Employment View',351),(430,352,'Employment Edit','Employment Edit',352),(431,353,'Employment Add','Employment Add',353),(432,354,'Employment Delete','Employment Delete',354),(433,357,'Employment Archive','Employment Archive',357),(434,358,'Employment Restore','Employment Restore',358),(435,359,'Employment Erase','Employment Erase',359),(436,361,'Employment Toggle','Employment Toggle',361),(437,2701,'Equity View','Equity View',2701),(438,2702,'Equity Edit','Equity Edit',2702),(439,2703,'Equity Add','Equity Add',2703),(440,2704,'Equity Delete','Equity Delete',2704),(441,2705,'Equity Print and Export','Equity Print',2705),(442,2706,'Equity Archive Print and Export','Equity Export',2706),(443,2707,'Equity Archive','Equity Archive',2707),(444,2708,'Equity Restore','Equity Restore',2708),(445,2709,'Equity Erase','Equity Erase',2709),(446,2710,'Equity Execute','Equity Execute',2710),(447,2711,'Equity Toggle','Equity Toggle',2711),(448,1453,'Sales Kundali Execute','Sales Kundali Execute',1453),(449,355,'Employment Print and Export','Employment Print',355),(450,356,'Employment Archive Print and Export','Employment Export',356),(451,360,'Employment Execute','Employment Execute',360),(452,1451,'Sales Kundali View','Sales Kundali View',1451),(453,1766,'Agile My Quotes Archive Print and Export','Agile My Quotes Archive Print and Export',1766),(454,1765,'Agile My Quotes Print and Export','Agile My Quotes Printand Export',1765),(455,1768,'Agile My Quotes Restore','Agile My Quotes Restore',1768),(456,1769,'Agile My Quotes Erase','Agile My Quotes Erase',1769),(457,2801,'Finance Values View',' Finance Values View',2801),(458,2802,'Finance Values Edit',' Finance Values Edit',2802),(459,2803,'Finance Values Add',' Finance Values Add',2803),(460,2804,'Finance Values Delete',' Finance Values Delete',2804),(461,2951,'Taxes Values View',' Taxes Values View',2951),(462,2952,'Taxes Values Edit',' Taxes Values Edit',2952),(463,2953,'Taxes Values Add',' Taxes Values Add',2953),(464,2954,'Taxes Values Delete',' Taxes Values Delete',2954),(465,1601,'MKT Values View',' MKT Values View',1601),(466,1602,'MKT Values Edit',' MKT Values Edit',1602),(467,1603,'MKT Values Add',' MKT Values Add',1603),(468,1604,'MKT Values Delete',' MKT Values Delete',1604),(469,851,'Bifurcate View','Bifurcate View',851),(470,852,'Bifurcate Edit','Bifurcate Edit',852),(471,853,'Bifurcate Add','Bifurcate Add',853),(472,854,'Bank Bifurcate Delete','Bank Bifurcate Delete',854),(474,1680,'Agile Cubes Toggle','Agile Cubes Toggle',1680),(477,2257,'Bank Account Archive',' Bank Account Archive',2257),(478,2258,'Bank Account Restore',' Bank Account Restore
',2258),(479,2259,'Bank Account Erase',' Bank Account Erase',2259),(480,2260,'Bank Account Toggle',' Bank Account Toggle Only',2260),(481,2265,'Bank Record Print and Export','Bank Record Print and Export',2265),(482,2266,'Bank Record Archive Print and Export','Bank Record Archive Print and Export',2266),(483,2267,'Bank Record Archive','Bank Record Archive',2267),(484,2268,'Bank Record Restore','Bank Record Restore',2268),(485,2269,'Bank Record Erase','Bank Record Erase',2269),(486,2270,'Bank Record Toggle',' Bank Record Toggle Only',2270),(487,2971,'Taxes Register View',' Taxes Register View',2971),(488,2972,'Taxes Register Edit',' Taxes Register Edit',2972),(489,2973,'Taxes Register Add',' Taxes Register Add',2973),(490,2974,'Taxes Register Delete',' Taxes Register Delete',2974),(491,2975,'Taxes Register Print and Export',' Taxes Register Print and Export',2975),(492,615,'Company Engage Print and Export',' Company Engage Print and Export',615),(493,616,'Company Engage Archive Print and Export',' Company Engage Archive Print and Export',616),(494,617,'Company Engage Archive',' Company Engage Archive',617),(495,618,'Company Engage Restore',' Company Engage Restore',618),(496,619,'Company Engage Erase',' Company Engage Erase',619),(497,620,'Company Engage Toggle',' Company Engage Toggle Only',620),(511,625,'Royalty Print and Export',' Royalty Print and Export',625),(498,606,'Company Archive Print and Export',' Company Archive Print and Export',NULL),(499,607,'Company Archive',' Company Archive',NULL),(500,608,'Company Restore',' Company Restore',NULL),(501,609,'Company Erase',' Company Erase',NULL),(502,610,'Company Execute',' Company Execute',NULL),(503,600,'Company Toggle',' Company Toggle Only',600),(504,765,'Hours Print and Export',' Hours Print and Export',NULL),(505,766,'Hours Archive Print and Export',' Hours Archive Print and Export',NULL),(506,767,'Hours Archive',' Hours Archive',NULL),(507,768,'Hours Restore',' Hours Restore',NULL),(508,769,'Hours Erase',' Hours Erase',NULL),(509,770,'Hours Execute',' Hours Execute',NULL),(510,760,'Hours Toggle',' Hours Toggle Only',NULL),(512,626,'Royalty Archive Print and Export',' Royalty Archive Print and Export',626),(513,627,'Royalty Archive',' Royalty Archive',627),(514,628,'Royalty Restore',' Royalty Restore',628),(515,629,'Royalty Erase',' Royalty Erase',629),(516,630,'Royalty Toggle',' Royalty Toggle',630),(517,1699,'Agile Credence Execute','Agile Credence Execute',NULL),(518,1439,'Sales Audit Toggle',' Sales Audit Toggle',1439),(520,676,'Company Audit Restore','Company Audit Restore',NULL),(521,677,'Company Audit Erase','Company Audit Erase',NULL),(738,201,'Network Scripts View','Network Scripts View',NULL),(523,679,'Company Audit Toggle','Company Audit Toggle',NULL),(524,371,'Employee Audit View','Employee Audit View',371),(525,372,'Employee Audit Delete','Employee Audit Delete',372),(526,373,'Employee Audit Print and Export','Employee Audit Print and Export',373),(527,374,'Employee Audit Archive Print and Export','Employee Audit Archive Print and Export',374),(528,375,'Employee Audit Archive','Employee Audit Archive',375),(529,376,'Employee Audit Restore','Employee Audit Restore',376),(530,377,'Employee Audit Erase','Employee Audit Erase',377),(532,379,'Employee Audit Toggle','Employee Audit Toggle',379),(533,2191,'HR Audit View','HR Audit View',NULL),(534,2192,'HR Audit Delete','HR Audit Delete',NULL),(535,2193,'HR Audit Print and Export','HR Audit Print and Export',NULL),(536,2194,'HR Audit Archive Print and Export','HR Audit Archive Print and Export',NULL),(537,2195,'HR Audit Archive','HR Audit Archive',NULL),(538,2196,'HR Audit Restore','HR Audit Restore',NULL),(539,2197,'HR Audit Erase','HR Audit Erase',NULL),(737,194,'Network Releases Print and Export','Network Releases Print and Export',NULL),(541,2199,'HR Audit Toggle','HR Audit Toggle',NULL),(542,171,'Network Audit View','Network Audit View',171),(543,172,'Network Audit Delete','Network Audit Delete',172),(544,173,'Network Audit Print and Export','Network Audit Print and Export',173),(545,174,'Network Audit Archive Print and Export','Network Audit Archive Print and Export',174),(546,175,'Network Audit Archive','Network Audit Archive',175),(547,176,'Network Audit Restore','Network Audit Restore',175),(548,177,'Network Audit Erase','Network Audit Erase',177),(550,179,'Network Audit Toggle','Network Audit Toggle',179),(551,2281,'Bank Audit View','Bank Audit View',NULL),(552,2282,'Bank Audit Delete','Bank Audit Delete',NULL),(553,2283,'Bank Audit Print and Export','Bank Audit Print and Export',NULL),(554,2284,'Bank Audit Archive Print and Export','Bank Audit Archive Print and Export',NULL),(555,2285,'Bank Audit Archive','Bank Audit Archive',NULL),(556,2286,'Bank Audit Restore','Bank Audit Restore',NULL),(557,2287,'Bank Audit Erase','Bank Audit Erase',NULL),(736,193,'Network Releases Erase','Network Releases Erase',NULL),(559,2289,'Bank Audit Toggle','Bank Audit Toggle',NULL),(560,2981,'Taxes Audit View','Taxes Audit View',NULL),(561,2982,'Taxes Audit Delete','Taxes Audit Delete',NULL),(562,2983,'Taxes Audit Print and Export','Taxes Audit Print and Export',NULL),(563,2984,'Taxes Audit Archive Print and Export','Taxes Audit Archive Print and Export',NULL),(564,2985,'Taxes Audit Archive','Taxes Audit Archive',NULL),(565,2986,'Taxes Audit Restore','Taxes Audit Restore',NULL),(566,2987,'Taxes Audit Erase','Taxes Audit Erase',NULL),(568,2989,'Taxes Audit Toggle','Taxes Audit Toggle',NULL),(746,217,'Network Secure Toggle','Network Secure Toggle',217),(745,213,'Network Secure Print and Export','Network Secure Print and Export',213),(744,211,'Network Secure View','Network Secure View',211),(743,206,'Network Scripts Execute','Network Scripts Execute',NULL),(742,205,'Network Scripts Print and Export','Network Scripts Print and Export',NULL),(741,204,'Network Scripts Erase','Network Scripts Erase',NULL),(578,671,'Company Audit View','Company Audit View',NULL),(579,672,'Company Audit Delete','Company Audit Delete',NULL),(580,673,'Company Audit Print and Execute','Company Audit Print and Execute',NULL),(581,1973,'Config Audit Print and Export','Config Audit Print and Export',NULL),(582,1974,'Config Audit Archive Print and Export','Config Audit Archive Print and Export',NULL),(583,1975,'Config Audit Archive','Config Audit Archive',NULL),(584,1976,'Config Audit Restore','Config Audit Restore',NULL),(585,1977,'Config Audit Erase','Config Audit Erase',NULL),(587,1979,'Config Audit Toggle','Config Audit Toggle',NULL),(588,1221,'Invoice Audit View','Invoice Audit View',NULL),(589,1222,'Invoice Audit Delete','Invoice Audit Delete',NULL),(590,1223,'Invoice Audit Print and Export','Invoice Audit Print and Export',NULL),(591,1224,'Invoice Audit Archive Print and Export','Invoice Audit Archive Print and Export',NULL),(592,1225,'Invoice Audit Archive','Invoice Audit Archive',NULL),(593,1226,'Invoice Audit Restore','Invoice Audit Restore',NULL),(594,1227,'Invoice Audit Erase','Invoice Audit Erase',NULL),(733,1473,'Sales Activity Toggle','Sales Activity Toggle',NULL),(596,1229,'Invoice Audit Toggle','Invoice Audit Toggle',NULL),(597,2811,'Finance Audit View','Finance Audit View',NULL),(598,2812,'Finance Audit Delete','Finance Audit Delete',NULL),(599,2813,'Finance Audit Print and Export','Finance Audit Print and Export',NULL),(600,2814,'Finance Audit Archive Print and Export','Finance Audit Archive Print and Export',NULL),(601,2815,'Finance Audit Archive','Finance Audit Archive Print and Export',NULL),(602,2816,'Finance Audit Restore','Finance Audit Restore',NULL),(603,2817,'Finance Audit Erase','Finance Audit Erase',NULL),(732,1472,'Sales Activity Print and Export','Sales Activity Print and Export',NULL),(605,2819,'Finance Audit Toggle','Finance Audit Toggle',NULL),(606,1611,'MKT Audit View','MKT Audit View',NULL),(607,1612,'MKT Audit Delete','MKT Audit Delete',NULL),(608,1613,'MKT Audit Print and Archive','MKT Audit Print and Archive',NULL),(609,1614,'MKT Audit Archive Print and Archive','MKT Audit Archive Print and Archive',NULL),(610,1615,'MKT Audit Archive','MKT Audit Archive',NULL),(611,1616,'MKT Audit Restore','MKT Audit Restore',NULL),(612,1617,'MKT Audit Erase','MKT Audit Erase',NULL),(735,192,'Network Releases Edit','Network Releases Edit',NULL),(614,1619,'MKT Audit Toggle','MKT Audit Toggle',NULL),(615,2571,'Legal Audit View','Legal Audit View',NULL),(616,2572,'Legal Audit Delete','Legal Audit Delete',NULL),(617,2573,'Legal Audit Print and Export','Legal Audit Print and Export',NULL),(618,2574,'Legal Audit Archive Print and Export','Legal Audit Archive Print and Export',NULL),(619,2575,'Legal Audit Archive','Legal Audit Archive',NULL),(620,2576,'Legal Audit Restore','Legal Audit Restore',NULL),(621,2577,'Legal Audit Erase','Legal Audit Erase',NULL),(731,1471,'Sales Activity View','Sales Activity View',NULL),(623,2579,'Legal Audit Toggle','Legal Audit Toggle',NULL),(624,501,'Storage Audit View','Storage Audit View',501),(625,502,'Storage Audit Delete','Storage Audit Delete',502),(626,503,'Storage Audit Print and Export','Storage Audit Print and Export',503),(627,504,'Storage Audit Archive Print and Export','Storage Audit Archive Print and Export',504),(628,505,'Storage Audit Archive','Storage Audit Archive',505),(629,506,'Storage Audit Restore','Storage Audit Restore',506),(630,507,'Storage Audit Erase','Storage Audit Erase',507),(734,191,'Network Releases View','Network Releases View',NULL),(632,509,'Storage Audit Toggle','Storage Audit Toggle',509),(633,2991,'Pay Tax View','Pay Tax View',NULL),(634,2992,'Pay Tax Edit','Pay Tax Edit',NULL),(635,2993,'Pay Tax Add','Pay Tax Add',NULL),(636,8,'Login History Toggle Only','Login History Toggle Only',8),(637,2291,'Bank Budget Listing View','Bank Emp Account View',NULL),(638,2292,'Bank Budget Listing Edit','Bank Emp Account Edit',NULL),(639,2293,'Bank Budget Listing Add','Bank Emp Account Add',NULL),(640,2294,'Bank Budget Listing Delete','Bank Emp Account Delete',NULL),(641,2295,'Bank Budget Listing Print and Export','Bank Emp Account Print and Export',NULL),(642,2296,'Bank Budget Listing Archive Print and Export','Bank Emp Account Archive Print and Export',NULL),(643,2297,'Bank Budget Listing Archive','Bank Emp Account Archive',NULL),(644,2298,'Bank Budget Listing Restore','Bank Emp Account Restore',NULL),(645,2299,'Bank Budget Listing Erase','Bank Emp Account Erase',NULL),(646,2300,'Bank Budget Listing Toggle','Bank Emp Account Only Toggle',NULL),(647,2301,'Bank Budget Record View','Bank Emp Record View',NULL),(648,2302,'Bank Budget Record Edit','Bank Emp Record Edit',NULL),(649,2303,'Bank Budget Record Add','Bank Emp Record Add',NULL),(650,2304,'Bank Budget Record Delete','Bank Emp Record Delete',NULL),(651,2305,'Bank Budget Record Print and Export','Bank Emp Record Print and Export',NULL),(652,2306,'Bank Budget Record Archive Print and Export','Bank Emp Record Archive Print and Export',NULL),(653,2307,'Bank Budget Record Archive','Bank Emp Record Archive',NULL),(654,2308,'Bank Budget Record Restore','Bank Emp Record Restore',NULL),(655,2309,'Bank Budget Record Erase','Bank Emp Record Erase',NULL),(656,2310,'Bank Budget Record Toggle','Bank Emp Record Toggle Only',NULL),(657,2311,'Bank My Budget Listing Toggle','Bank My Emp Account Toggle',NULL),(658,2312,'Bank My Budget Listing Print and Export','Bank My Emp Account Print and Export',NULL),(659,2313,'Bank My Budget ListingArchive Print and Expor','Bank My Emp Account Archive Print and Export',NULL),(660,2321,'Bank My Budget Record Toggle','Bank My Emp Record Toggle',NULL),(661,2322,'Bank My Budget Record Print','Bank My Emp Record Print and Export',NULL),(662,2323,'Bank My Budget Record Archive Print and Expor','Bank My Emp Record Archive Print and Export',NULL),(663,2331,'Bank Kundali View','Bank Kundali View',NULL),(664,2332,'Bank Kundali Execute','Bank Kundali Execute',NULL),(665,2333,'Bank Kundali Print','Bank Kundali Print',NULL),(666,871,'Hours Attrition View','Hours Attrition View',NULL),(667,872,'Hours Attrition Execute','Hours Attrition Execute',NULL),(668,873,'Hours Attrition Print','Hours Attrition Print',NULL),(669,881,'Hours Bill Cycle View','Hours Bill Cycle View',881),(670,882,'Hours Bill Cycle Edit','Hours Bill Cycle Edit',882),(671,891,'Hours Timecard Cycle View','Hours Timecard Cycle View',891),(672,892,'Hours Timecard Cycle Edit','Hours Timecard Cycle Edit',892),(712,2204,'HR Contact Execute','HR Contact Execute',2204),(673,681,'Company Engage Entity View','Company Engage Entity View',NULL),(674,682,'Company Engage Entity Edit','Company Engage Entity Edit',NULL),(675,683,'Company Engage Entity Add','Company Engage Entity Add',NULL),(676,684,'Company Engage Entity Delete','Company Engage Entity Delete',NULL),(677,685,'Company Engage Entity Print and Export','Company Engage Entity Print and Export',NULL),(678,686,'Company Engage Entity Archive Print and Expor','Company Engage Entity Archive Print and Export',NULL),(679,687,'Company Engage Entity Archive','Company Engage Entity Archive Print and Export',NULL),(680,688,'Company Engage Entity Restore','Company Engage Entity Restore',NULL),(681,1461,'Sales Access View','Sales Access View',1461),(682,855,'Bank Bifurcate Print and Export','Bank Bifurcate Print and Export',855),(683,691,'Company Kundali View','Company Kundali View',691),(684,692,'Company Kundali Print','Company Kundali Print',692),(685,693,'Company Kundali Execute','Company Kundali Execute',693),(686,1462,'Sales Access Edit','Sales Access Edit',1462),(687,1463,'Sales Access Add','Sales Access Add',1463),(688,1464,'Sales Access Erase','Sales Access Erase',1464),(689,894,'Hours Timecard Cycle Print','Hours Timecard Cycle Print',894),(752,2550,'My Legal Toggle','My Legal Toggle',NULL),(690,2201,'HR Contact View','HR Contact View',2201),(691,2202,'HR Contact Edit','HR Contact Edit',2202),(692,1851,'Agile Budget View','Agile Budget View',1851),(693,1852,'Agile Budget Edit','Agile Budget Edit',1852),(694,1853,'Agile Budget Print and Export','Agile Budget Print and Export',1853),(703,1854,'Agile Budget Toggle','Agile Budget Toggle',NULL),(695,805,'Timecard Print and Export','Timecard Print and Export',NULL),(696,806,'Timecard Archive Print and Export','Timecard Archive Print and Export',NULL),(697,807,'Timecard Archive','Timecard Archive',NULL),(698,808,'Timecard Restore','Timecard Restore',NULL),(699,809,'Timecard Erase','Timecard Erase',NULL),(700,810,'Timecard Execute','Timecard Execute',NULL),(701,800,'Timecard Toggle','Timecard Toggle',NULL),(702,821,'Hours Access View','Hours Access View',821),(704,822,'Hours Access Edit','Hours Access Edit',NULL),(705,823,'Hours Access Add','Hours Access Add',NULL),(706,824,'Hours Access Delete','Hours Access Delete',NULL),(707,381,'Employment Access View','Employment Access View',381),(708,382,'Employment Access Edit','Employment Access Edit',382),(709,383,'Employment Access Add','Employment Access Add',383),(710,384,'Employment Access Delete','Employment Access Delete',384),(715,393,'Emp Schedule Add','Emp Schedule Add',393),(716,394,'Emp Schedule Delete','Emp Schedule Delete',394),(717,395,'Emp Schedule Print and Export','Emp Schedule Print and Export',395),(718,396,'Emp Schedule Archive Print and Export','Emp Schedule Archive Print and Export',396),(719,397,'Emp Schedule Archive','Emp Schedule Archive',397),(720,398,'Emp Schedule Restore','Emp Schedule Restore',398),(721,399,'Emp Schedule Erase','Emp Schedule Erase',399),(722,400,'Emp Schedule Execute','Emp Schedule Execute',400),(723,401,'Emp Schedule Toggle','Emp Schedule Toggle',401),(724,2048,'Global Audit Toggle','Global Audit Toggle',NULL),(749,215,'Network Secure Restore','Network Secure Restore',215),(748,214,'Network Secure Archive','Network Secure Archive',214),(747,212,'Network Secure Delete','Network Secure Delete',212),(728,402,'Emp Workforce View','Emp Workforce View',NULL),(729,403,'Emp Workforce Print and Export','Emp Workforce Print and Export',NULL),(730,404,'Emp Workforce Toggle','Emp Workforce Toggle',NULL),(750,216,'Network Secure Erase','Network Secure Erase',216),(751,2560,'Legal Toggle','Legal Toggle',2560),(753,2015,'Addresses Print & Export','Addresses Print & Export',NULL),(754,221,'Network Server View','Network Server View',NULL),(755,410,'Emp Education Toggle','Emp Education Toggle',NULL),(756,411,'Emp Education View','Emp Education View',NULL),(757,412,'Emp Education Edit','Emp Education Edit',NULL),(758,413,'Emp Education Add','Emp Education Add',NULL),(759,414,'Emp Education Erase','Emp Education Erase',NULL),(760,415,'Emp Education Print and Export','Emp Education Print and Export',NULL),(770,231,'Network Storage Drives Execute','Network Storage Drives Execute',NULL),(766,300,'Employee Listing Toggle','Employee Listing Toggle',NULL),(767,309,'Employee Listing Erase','Employee Listing Erase',NULL),(768,310,'Employee Listing Execute','Employee Listing Execute',NULL),(771,9041,'Std1 Table View','Std Table View',NULL),(772,9042,'Std1 Table Edit','Std Table Edit',NULL),(773,9043,'Std1 Table Add','Std Table Add',NULL),(774,9044,'Std1 Table Delete','Std Table Delete',NULL),(775,9045,'Std1 Table Print and Export','Std Table Print and Export',NULL),(776,9051,'Std1 Sub Table View','Std Sub Table View',NULL),(777,9052,'Std1 Sub Table Edit','Std Sub Table Edit',NULL),(778,9053,'Std1 Sub Table Add','Std Sub Table Add',NULL),(779,9054,'Std1 Sub Table Delete','Std Sub Table Delete',NULL),(780,9055,'Std1 Sub Table Print and Export','Std Sub Table Print and Export',NULL),(781,9056,'Std1 Sub Table Archive Print and Export','Std1 Sub Table Archive Print and Export',NULL),(782,9057,'Std1 Sub Table Archive','Std1 Sub Table Archive',NULL),(783,9058,'Std1 Sub Table Restore','Std1 Sub Table Restore',NULL),(784,9059,'Std1 Sub Table Erase','Std1 Sub Table Erase',NULL),(785,9060,'Std1 Sub Table Execute','Std1 Sub Table Execute',NULL),(786,9061,'Std1 Sub Table Toggle','Std1 Sub Table Toggle',NULL),(787,9071,'Std2 Table View','Std2 Table View',NULL),(788,9072,'Std2 Table Edit','Std2 Table Edit',NULL),(789,9073,'Std2 Table Add','Std2 Table Add',NULL),(790,9074,'Std2 Table Delete','Std2 Table Delete',NULL),(791,9075,'Std2 Table Print and Export','Std2 Table Print and Export',NULL),(792,9081,'Std2 Sub Table View','Std2 Sub Table View',NULL),(793,9082,'Std2 Sub Table Edit','Std2 Sub Table Edit',NULL),(794,9083,'Std2 Sub Table Add','Std2 Sub Table Add',NULL),(795,9084,'Std2 Sub Table Delete','Std2 Sub Table Delete',NULL),(796,9085,'Std2 Sub Table Print and Export','Std2 Sub Table Print and Export',NULL),(797,9086,'Std2 Sub Table Archive Print and Export','Std2 Sub Table Archive Print and Export',NULL),(798,9087,'Std2 Sub Table Archive','Std2 Sub Table Archive',NULL),(799,9088,'Std2 Sub Table Restore','Std2 Sub Table Restore',NULL),(800,9089,'Std2 Sub Table Erase','Std2 Sub Table Erase',NULL),(801,9090,'Std2 Sub Table Execute','Std2 Sub Table Execute',NULL),(802,9091,'Std2 Sub Table Toggle','Std2 Sub Table Toggle',NULL),(803,10001,'Std3 Table View','Std3 Table View',NULL),(804,10002,'Std3 Table Edit','Std3 Table Edit',NULL),(805,10003,'Std3 Table Add','Std3 Table Add',NULL),(806,10004,'Std3 Table Delete','Std3 Table Delete',NULL),(807,10005,'Std3 Table Print and Export','Std3 Table Print and Export',NULL),(808,10011,'Std3 Sub Table View','Std3 Sub Table View',NULL),(809,10012,'Std3 Sub Table Edit','Std3 Sub Table Edit',NULL),(810,10013,'Std3 Sub Table Add','Std3 Sub Table Add',NULL),(811,10014,'Std3 Sub Table Delete','Std3 Sub Table Delete',NULL),(812,10015,'Std3 Sub Table Print and Export','Std3 Sub Table Print and Export',NULL),(813,10016,'Std3 Sub Table Archive Print and Export','Std3 Sub Table Archive Print and Export',NULL),(814,10017,'Std3 Sub Table Archive','Std3 Sub Table Archive Print and Export',NULL),(815,10018,'Std3 Sub Table Restore','Std3 Sub Table Restore',NULL),(816,10019,'Std3 Sub Table Erase','Std3 Sub Table Erase',NULL),(817,10020,'Std3 Sub Table Execute','Std3 Sub Table Execute',NULL),(818,10021,'Std3 Sub Table Toggle','Std3 Sub Table Toggle',NULL); /*!40000 ALTER TABLE `feature` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:59 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `feature_lk` -- LOCK TABLES `feature_lk` WRITE; /*!40000 ALTER TABLE `feature_lk` DISABLE KEYS */; INSERT INTO `feature_lk` VALUES (1,'Street Type','ffffffffffffffff',5,NULL,'2025-08-15 03:26:39',NULL),(2,'Property Type','123',1,NULL,'2025-08-15 03:26:39',NULL),(3,'Allowed Docs General','File type e.g .doc, xls, pdf',2,NULL,'2025-08-15 03:26:39',NULL),(4,'Contact Subjects','Google, Amazon, etc',3,NULL,'2025-08-15 03:26:39',NULL),(5,'Allowd Docs Custom 1','Timesheet',4,NULL,'2025-08-15 03:26:39',NULL),(6,'Country Flag','Flag Code',6,NULL,'2025-08-15 03:26:39',NULL); /*!40000 ALTER TABLE `feature_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:59 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `hr_recruit_lk` -- LOCK TABLES `hr_recruit_lk` WRITE; /*!40000 ALTER TABLE `hr_recruit_lk` DISABLE KEYS */; INSERT INTO `hr_recruit_lk` VALUES (1,'Emp Type ooo',NULL,2,NULL,'2021-04-29 08:23:43'),(2,'Emp Type 99999','test',1,NULL,'2021-04-29 08:23:43'),(3,'test2 dfhgjdhfjg','asdasdasd',4,NULL,'2021-04-29 08:23:44'),(4,'Forth Record',NULL,3,NULL,'2021-04-29 08:23:44'); /*!40000 ALTER TABLE `hr_recruit_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:11:59 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `immi_lk` -- LOCK TABLES `immi_lk` WRITE; /*!40000 ALTER TABLE `immi_lk` DISABLE KEYS */; INSERT INTO `immi_lk` VALUES (1,'Receipts',NULL,1,NULL,NULL,2),(3,'OCC Code',NULL,3,NULL,NULL,NULL),(6,'Education',NULL,6,NULL,NULL,NULL),(4,'Skill Level',NULL,4,NULL,NULL,NULL),(5,'Salary Type',NULL,5,NULL,NULL,NULL),(8,'Workflow',NULL,8,NULL,NULL,NULL),(7,'Experience Yrs',NULL,7,NULL,NULL,NULL),(9,'Salary Amt',NULL,9,NULL,NULL,NULL),(2,'Title',NULL,2,NULL,NULL,NULL); /*!40000 ALTER TABLE `immi_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_country` -- LOCK TABLES `look_country` WRITE; /*!40000 ALTER TABLE `look_country` DISABLE KEYS */; INSERT INTO `look_country` VALUES (1,'US','United States','US','US',1,10),(2,'India','India','IN','IN',91,10),(3,'test',NULL,NULL,NULL,NULL,NULL),(5,'ENGLAND',NULL,NULL,NULL,NULL,NULL),(6,'test2',NULL,NULL,NULL,NULL,NULL),(7,'UK','United KIngdom','UK','UK',44,8),(9,'Latvia',NULL,NULL,NULL,NULL,NULL),(10,'Mexico',NULL,NULL,NULL,NULL,NULL),(11,'CANADA',NULL,NULL,NULL,NULL,NULL),(12,'Russia',NULL,NULL,NULL,NULL,NULL),(13,'Eswatini',NULL,NULL,NULL,NULL,NULL),(14,'Paraguay',NULL,NULL,NULL,NULL,NULL),(15,'Kazakhstan',NULL,NULL,NULL,NULL,NULL),(16,'Poland',NULL,NULL,NULL,NULL,NULL),(17,'Norway',NULL,NULL,NULL,NULL,NULL),(18,'Hungary',NULL,NULL,NULL,NULL,NULL),(19,'Bangladesh',NULL,NULL,NULL,NULL,NULL),(20,'barmuda',NULL,NULL,NULL,NULL,NULL),(21,'CHINA',NULL,NULL,NULL,NULL,NULL),(22,'Sri Lanka','Sri Lanka','SL','SL',94,10),(23,'New sl','new Srilanka',NULL,NULL,NULL,NULL),(24,'ZMB','Zimbabwe',NULL,NULL,NULL,NULL),(25,'Singapore','Singapore',NULL,NULL,NULL,NULL),(27,'Canada New','Canada New',NULL,NULL,NULL,NULL),(28,'Philippine','Philippine',NULL,NULL,NULL,NULL),(29,'CRMSN','COMOROS NEW',NULL,NULL,NULL,NULL),(30,'Fiji','Fiji',NULL,NULL,NULL,NULL),(31,'Cuba','Cuba',NULL,NULL,NULL,NULL),(32,'United Arab Emirates','United Arab Emirates','AE','AE',971,10),(33,'Switzerland','Switzerland','CH','CH',41,9),(34,'Australia','Australia','AS','AS',61,10),(35,'TH','Thailand',NULL,NULL,66,8),(36,'Sri Lanka 2','Sri Lanka','SL','SL',94,10),(37,'Country_test','Country For Test','CT','CT',96,10),(38,'ATS','Apex',NULL,NULL,1,10),(39,'UK','United KIngdom',NULL,NULL,44,10),(40,'UK','United Kingdom',NULL,NULL,44,10),(41,'UK','United Kingdom',NULL,NULL,44,10); /*!40000 ALTER TABLE `look_country` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_state` -- LOCK TABLES `look_state` WRITE; /*!40000 ALTER TABLE `look_state` DISABLE KEYS */; INSERT INTO `look_state` VALUES (1,1,'NH','New Hampshire'),(2,1,'NY','New York'),(3,1,'PR',NULL),(4,1,'VI',NULL),(5,1,'MA','Massachusetts'),(6,1,'RI','Rhode island'),(7,1,'ME','Maine'),(8,1,'VT','Vermont'),(9,1,'CT','Connecticut'),(10,1,'NJ','New Jersey'),(11,1,'PA','Pennsylvania'),(12,1,'DE',NULL),(13,1,'DC',NULL),(14,1,'VA',NULL),(15,1,'MD',NULL),(16,1,'WV',NULL),(17,1,'NC',NULL),(18,1,'SC',NULL),(19,1,'GA',NULL),(20,1,'FL',NULL),(21,1,'AL',NULL),(22,1,'TN',NULL),(23,1,'MS',NULL),(24,1,'KY',NULL),(25,1,'OH',NULL),(26,1,'IN',NULL),(27,1,'MI',NULL),(28,1,'IA',NULL),(29,1,'WI',NULL),(30,1,'MN',NULL),(31,1,'SD',NULL),(32,1,'ND',NULL),(33,1,'MT',NULL),(34,1,'IL',NULL),(35,1,'MO',NULL),(36,1,'KS',NULL),(37,1,'NE',NULL),(38,1,'LA',NULL),(39,1,'AR',NULL),(40,1,'OK',NULL),(41,1,'TX',NULL),(42,1,'CO',NULL),(43,1,'WY',NULL),(44,1,'ID',NULL),(45,1,'UT',NULL),(46,1,'AZ',NULL),(47,1,'NM',NULL),(48,1,'NV',NULL),(49,1,'CA',NULL),(50,1,'HI',NULL),(51,1,'AS',NULL),(52,1,'GU',NULL),(53,1,'PW',NULL),(54,1,'FM',NULL),(55,1,'MP',NULL),(56,1,'MH',NULL),(57,1,'OR',NULL),(58,1,'WA',NULL),(59,1,'AK',NULL),(60,2,'Asam',NULL),(61,2,'Bihar',NULL),(62,2,'Chattisgarh',NULL),(63,2,'Daman',NULL),(64,2,'Jammu',NULL),(65,2,'Karnataka',NULL),(66,2,'Maharstra',NULL),(67,2,'Kerala',NULL),(68,2,'Rajastan',NULL),(69,2,'Tamilnadu',NULL),(70,2,'MP',NULL),(71,2,'Add State',NULL),(72,2,'SDF',NULL),(73,2,'Punjab',NULL),(74,2,'UP',NULL),(75,2,'AP',NULL),(108,2,'GJ','Gujarat'),(113,2,'PB',NULL),(114,3,'testnewst',NULL),(115,5,'englandstate',NULL),(116,3,'substate1',NULL),(117,3,'ns1',NULL),(118,1,'DF',NULL),(119,1,'SS',NULL),(120,2,'TS','Telangana'),(121,2,'test',NULL),(122,7,'UK State',NULL),(123,7,'states',NULL),(124,2,'Andhra Pardesh',NULL),(125,13,'gorogoo',NULL),(126,1,'zm',NULL),(127,19,'Rangpur',NULL),(128,20,'new state',NULL),(129,10,'cxx',NULL),(130,19,'Rajshahi',NULL),(131,11,'Ontario',NULL),(132,21,'Beijing',NULL),(133,2,'Uttarakhand',NULL),(134,22,'Kandy',NULL),(135,22,'NW','North Western'),(136,22,'WP','Western province'),(137,28,'Mindanau','Mindanau'),(138,2,'Uttar Predesh',NULL),(139,35,'BA','Bangkok'),(140,36,'NW','North Western'),(141,37,'state_test','State For Testing'),(142,2,'MH','Maharashtra'); /*!40000 ALTER TABLE `look_state` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_city` -- LOCK TABLES `look_city` WRITE; /*!40000 ALTER TABLE `look_city` DISABLE KEYS */; INSERT INTO `look_city` VALUES (3582,1,'AVENEL'),(3588,1,'CARTERET'),(3591,16,'CLIFTON'),(3626,1,'PORT READING'),(3629,1,'COLONIA'),(3638,1,'SEWAREN'),(3641,1,'SOUTH PLAINFIELD'),(3651,1,'WOODBRIDGE'),(3869,8,'ALLOWAY'),(3880,6,'BRIDGEPORT'),(3885,6,'CLARKSBORO'),(3888,8,'DEEPWATER'),(3889,6,'EWAN'),(3891,6,'GIBBSTOWN'),(3892,6,'GLASSBORO'),(3896,6,'GRENLOCH'),(3901,8,'HANCOCKS BRIDGE'),(3902,6,'HARRISONVILLE'),(3911,6,'MANTUA'),(3916,6,'MICKLETON'),(3920,6,'MOUNT ROYAL'),(3921,6,'MULLICA HILL'),(3922,6,'NATIONAL PARK'),(3925,6,'PAULSBORO'),(3926,8,'PEDRICKTOWN'),(3928,8,'PENNS GROVE'),(3929,8,'PENNSVILLE'),(3930,6,'PITMAN'),(3931,8,'QUINTON'),(3933,6,'RICHWOOD'),(3937,8,'SALEM'),(3938,6,'SEWELL'),(3942,6,'SWEDESBORO'),(3943,6,'THOROFARE'),(3947,6,'WENONAH'),(3950,6,'WESTVILLE'),(3951,6,'WILLIAMSTOWN'),(3953,6,'WOODBURY'),(3954,6,'WOODBURY HEIGHTS'),(3955,8,'WOODSTOWN'),(3998,7,'BRIDGETON'),(4000,7,'CEDARVILLE'),(4001,6,'CLAYTON'),(4002,7,'DEERFIELD STREET'),(4003,7,'DELMONT'),(4004,7,'DIVIDING CREEK'),(4005,7,'DORCHESTER'),(4007,8,'ELMER'),(4009,7,'FAIRTON'),(4010,7,'FORTESCUE'),(4011,6,'FRANKLINVILLE'),(4012,7,'GREENWICH'),(4013,7,'HEISLERVILLE'),(4015,7,'LEESBURG'),(4016,6,'MALAGA'),(4017,7,'MAURICETOWN'),(4019,7,'MILLVILLE'),(4023,6,'MONROEVILLE'),(4024,6,'NEWFIELD'),(4025,7,'NEWPORT'),(4027,8,'NORMA'),(4028,7,'PORT ELIZABETH'),(4029,7,'PORT NORRIS'),(4031,7,'ROSENHAYN'),(4032,7,'SHILOH'),(4033,7,'VINELAND'),(4044,1,'CRANBURY'),(4057,1,'PLAINSBORO'),(4103,1,'DAYTON'),(4105,1,'EAST BRUNSWICK'),(4106,1,'EDISON'),(4110,1,'KENDALL PARK'),(4114,1,'HELMETTA'),(4116,1,'ISELIN'),(4117,1,'JAMESBURG'),(4118,1,'KEASBEY'),(4123,1,'METUCHEN'),(4124,1,'MIDDLESEX'),(4126,1,'MILLTOWN'),(4127,1,'MONMOUTH JUNCTION'),(4129,1,'PISCATAWAY'),(4130,1,'OLD BRIDGE'),(4132,1,'PARLIN'),(4133,1,'PERTH AMBOY'),(4134,1,'FORDS'),(4140,1,'SAYREVILLE'),(4143,1,'SOUTH RIVER'),(4144,1,'SOUTH AMBOY'),(4153,1,'NEW BRUNSWICK'),(4154,1,'NORTH BRUNSWICK'),(4155,1,'HIGHLAND PARK'),(30175,159,'hyderabad'),(30193,2,'Puttalam'),(30197,2,'Puttalam city'),(30198,3,'Puttalam'),(30199,5,'city_test'),(30203,160,'Makarpura'),(30204,2,'puttalam city2'),(30205,160,'Manjalpur'),(30206,160,'Ajwa Road'),(30207,161,'Vallabh Vidhyanagar'),(30208,160,'Karjan'),(30209,160,'Sevasi'); /*!40000 ALTER TABLE `look_city` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_postal` -- LOCK TABLES `look_postal` WRITE; /*!40000 ALTER TABLE `look_postal` DISABLE KEYS */; INSERT INTO `look_postal` VALUES (1,1,'00211'),(2,1,'00212'),(3,1,'00213'),(4,1,'00214'),(5,1,'00215'),(6,1,'03801'),(7,1,'03802'),(8,1,'03803'),(9,1,'03804'),(10,2,'03031'),(11,3,'03032'),(12,4,'03033'),(13,5,'03034'),(14,6,'03036'),(15,7,'03037'),(16,8,'03038'),(17,9,'03040'),(18,10,'03041'),(19,11,'03042'),(20,12,'03043'),(21,13,'03044'),(22,14,'03045'),(23,15,'03047'),(24,16,'03048'),(25,17,'03049'),(26,18,'03051'),(27,19,'03052'),(28,20,'03053'),(29,21,'03054'),(30,22,'03055'),(31,23,'03057'),(32,24,'03060'),(33,24,'03061'),(34,24,'03062'),(35,24,'03063'),(36,24,'03064'),(37,25,'03070'),(38,26,'03071'),(39,27,'03073'),(40,28,'03076'),(41,29,'03077'),(42,30,'03079'),(43,31,'03082'),(44,32,'03084'),(45,33,'03086'),(46,34,'03087'),(47,35,'03101'),(48,35,'03102'),(49,35,'03103'),(50,35,'03104'),(51,35,'03105'),(52,35,'03107'),(53,35,'03108'),(54,35,'03109'),(55,35,'03111'),(56,36,'03106'),(57,37,'03110'),(58,38,'03215'),(59,39,'03216'),(60,40,'03217'),(61,41,'03218'),(62,42,'03220'),(63,43,'03221'),(64,44,'03222'),(65,45,'03223'),(66,46,'03224'),(67,47,'03225'),(68,48,'03226'),(69,49,'03227'),(70,50,'03229'),(71,51,'03230'),(72,52,'03231'),(73,53,'03232'),(74,54,'03233'),(75,55,'03234'),(76,56,'03235'),(77,57,'03237'),(78,58,'03238'),(79,59,'03240'),(80,60,'03241'),(81,61,'03242'),(82,62,'03243'),(83,63,'03244'),(84,64,'03245'),(85,65,'03246'),(86,65,'03247'),(87,66,'03251'),(88,67,'03252'),(89,68,'03253'),(90,69,'03254'),(91,70,'03255'),(92,71,'03256'),(93,72,'03257'),(94,73,'03259'),(95,74,'03260'),(96,75,'03261'),(97,76,'03262'),(98,77,'03263'),(99,78,'03264'),(100,79,'03266'),(101,80,'03268'),(102,81,'03269'),(103,82,'03272'),(104,83,'03273'),(105,84,'03274'),(106,85,'03275'),(107,86,'03276'),(108,86,'03298'),(109,86,'03299'),(110,87,'03278'),(111,88,'03279'),(112,89,'03280'),(113,90,'03281'),(114,91,'03282'),(115,92,'03284'),(116,93,'03287'),(117,94,'03289'),(118,95,'03290'),(119,96,'03291'),(120,97,'03293'),(121,98,'03301'),(122,98,'03302'),(123,98,'03303'),(124,98,'03305'),(125,99,'03304'),(126,100,'03307'),(127,101,'03431'),(128,101,'03435'),(129,102,'03440'),(130,103,'03441'),(131,104,'03442'),(132,105,'03443'),(133,106,'03444'),(134,107,'03445'),(135,108,'03446'),(136,109,'03447'),(137,110,'03448'),(138,111,'03449'),(139,112,'03450'),(140,113,'03451'),(141,114,'03452'),(142,115,'03455'),(143,116,'03456'),(144,117,'03457'),(145,118,'03458'),(146,119,'03461'),(147,120,'03462'),(148,121,'03464'),(149,122,'03465'),(150,123,'03466'),(151,124,'03467'),(152,125,'03468'),(153,126,'03469'),(154,127,'03470'),(155,128,'03561'),(156,129,'03570'),(157,130,'03574'),(158,131,'03575'),(159,132,'03576'),(160,133,'03579'),(161,134,'03580'),(162,135,'03581'),(163,136,'03582'),(164,137,'03583'),(165,138,'03584'),(166,139,'03585'),(167,140,'03587'),(168,141,'03588'),(169,142,'03589'),(170,143,'03590'),(171,144,'03592'),(172,145,'03595'),(173,146,'03597'),(174,147,'03598'),(175,148,'03601'),(176,149,'03602'),(177,150,'03603'),(178,151,'03604'),(179,152,'03605'),(180,153,'03607'),(181,154,'03608'),(182,155,'03609'),(183,156,'03740'),(184,157,'03741'),(185,158,'03743'),(186,159,'03745'),(187,160,'03746'),(188,161,'03748'),(189,162,'03749'),(190,163,'03750'),(191,164,'03751'),(192,165,'03752'),(193,166,'03753'),(194,167,'03754'),(195,168,'03755'),(196,169,'03756'),(197,169,'03766'),(198,170,'03765'),(199,171,'03768'),(200,172,'03769'),(201,173,'03770'),(202,174,'03771'),(203,175,'03773'),(204,176,'03774'),(205,177,'03777'),(206,178,'03779'),(207,179,'03780'),(208,180,'03781'),(209,181,'03782'),(210,182,'03784'),(211,183,'03785'),(212,184,'03805'),(213,184,'03869'),(214,185,'03809'),(215,186,'03810'),(216,187,'03811'),(217,188,'03812'),(218,189,'03813'),(219,190,'03814'),(220,191,'03815'),(221,192,'03816'),(222,193,'03817'),(223,194,'03818'),(224,195,'03819'),(225,196,'03820'),(226,196,'03821'),(227,196,'03822'),(228,197,'03824'),(229,198,'03825'),(230,199,'03826'),(231,200,'03827'),(232,201,'03830'),(233,202,'03832'),(234,203,'03833'),(235,204,'03835'),(236,205,'03836'),(237,206,'03837'),(238,207,'03838'),(239,208,'03839'),(240,208,'03866'),(241,208,'03867'),(242,208,'03868'),(243,209,'03840'),(244,210,'03841'),(245,211,'03842'),(246,211,'03843'),(247,212,'03844'),(248,213,'03845'),(249,214,'03846'),(250,215,'03847'),(251,216,'03848'),(252,217,'03849'),(253,218,'03850'),(254,219,'03851'),(255,220,'03852'),(256,221,'03853'),(257,222,'03854'),(258,223,'03855'),(259,224,'03856'),(260,225,'03857'),(261,226,'03858'),(262,227,'03859'),(263,228,'03860'),(264,229,'03862'),(265,230,'03864'),(266,231,'03865'),(267,232,'03870'),(268,233,'03871'),(269,234,'03872'),(270,235,'03873'),(271,236,'03874'),(272,237,'03875'),(273,238,'03878'),(274,239,'03882'),(275,240,'03883'),(276,241,'03884'),(277,242,'03885'),(278,243,'03886'),(279,244,'03887'),(280,245,'03890'),(281,246,'03894'),(282,247,'03896'),(283,248,'03897'),(284,249,'00501'),(285,249,'00544'),(286,249,'11742'),(287,250,'06390'),(288,251,'10001'),(289,251,'10002'),(290,251,'10003'),(291,251,'10004'),(292,251,'10005'),(293,251,'10006'),(294,251,'10007'),(295,251,'10008'),(296,251,'10009'),(297,251,'10010'),(298,251,'10011'),(299,251,'10012'),(300,251,'10013'),(301,251,'10014'),(302,251,'10015'),(303,251,'10016'),(304,251,'10017'),(305,251,'10018'),(306,251,'10019'),(307,251,'10020'),(308,251,'10021'),(309,251,'10022'),(310,251,'10023'),(311,251,'10024'),(312,251,'10025'),(313,251,'10026'),(314,251,'10027'),(315,251,'10028'),(316,251,'10029'),(317,251,'10030'),(318,251,'10031'),(319,251,'10032'),(320,251,'10033'),(321,251,'10034'),(322,251,'10035'),(323,251,'10036'),(324,251,'10037'),(325,251,'10038'),(326,251,'10039'),(327,251,'10040'),(328,251,'10041'),(329,251,'10043'),(330,251,'10044'),(331,251,'10045'),(332,251,'10046'),(333,251,'10047'),(334,251,'10048'),(335,251,'10055'),(336,251,'10060'),(337,251,'10069'),(338,251,'10072'),(339,251,'10079'),(340,251,'10080'),(341,251,'10081'),(342,251,'10082'),(343,251,'10087'),(344,251,'10090'),(345,251,'10094'),(346,251,'10095'),(347,251,'10096'),(348,251,'10098'),(349,251,'10099'),(350,251,'10101'),(351,251,'10102'),(352,251,'10103'),(353,251,'10104'),(354,251,'10105'),(355,251,'10106'),(356,251,'10107'),(357,251,'10108'),(358,251,'10109'),(359,251,'10110'),(360,251,'10111'),(361,251,'10112'),(362,251,'10113'),(363,251,'10114'),(364,251,'10115'),(365,251,'10116'),(366,251,'10117'),(367,251,'10118'),(368,251,'10119'),(369,251,'10120'),(370,251,'10121'),(371,251,'10122'),(372,251,'10123'),(373,251,'10124'),(374,251,'10125'),(375,251,'10126'),(376,251,'10128'),(377,251,'10129'),(378,251,'10130'),(379,251,'10131'),(380,251,'10132'),(381,251,'10133'),(382,251,'10138'),(383,251,'10149'),(384,251,'10150'),(385,251,'10151'),(386,251,'10152'),(387,251,'10153'),(388,251,'10154'),(389,251,'10155'),(390,251,'10156'),(391,251,'10157'),(392,251,'10158'),(393,251,'10159'),(394,251,'10160'),(395,251,'10161'),(396,251,'10162'),(397,251,'10163'),(398,251,'10164'),(399,251,'10165'),(400,251,'10166'),(401,251,'10167'),(402,251,'10168'),(403,251,'10169'),(404,251,'10170'),(405,251,'10171'),(406,251,'10172'),(407,251,'10173'),(408,251,'10174'),(409,251,'10175'),(410,251,'10176'),(411,251,'10177'),(412,251,'10178'),(413,251,'10179'),(414,251,'10184'),(415,251,'10185'),(416,251,'10196'),(417,251,'10197'),(418,251,'10199'),(419,251,'10203'),(420,251,'10211'),(421,251,'10212'),(422,251,'10213'),(423,251,'10242'),(424,251,'10249'),(425,251,'10256'),(426,251,'10257'),(427,251,'10258'),(428,251,'10259'),(429,251,'10260'),(430,251,'10261'),(431,251,'10265'),(432,251,'10268'),(433,251,'10269'),(434,251,'10270'),(435,251,'10271'),(436,251,'10272'),(437,251,'10273'),(438,251,'10274'),(439,251,'10275'),(440,251,'10276'),(441,251,'10277'),(442,251,'10278'),(443,251,'10279'),(444,251,'10280'),(445,251,'10281'),(446,251,'10282'),(447,251,'10285'),(448,251,'10286'),(449,251,'10292'),(450,252,'10301'),(451,252,'10302'),(452,252,'10303'),(453,252,'10304'),(454,252,'10305'),(455,252,'10306'),(456,252,'10307'),(457,252,'10308'),(458,252,'10309'),(459,252,'10310'),(460,252,'10311'),(461,252,'10312'),(462,252,'10313'),(463,252,'10314'),(464,253,'10451'),(465,253,'10452'),(466,253,'10453'),(467,253,'10454'),(468,253,'10455'),(469,253,'10456'),(470,253,'10457'),(471,253,'10458'),(472,253,'10459'),(473,253,'10460'),(474,253,'10461'),(475,253,'10462'),(476,253,'10463'),(477,253,'10464'),(478,253,'10465'),(479,253,'10466'),(480,253,'10467'),(481,253,'10468'),(482,253,'10469'),(483,253,'10470'),(484,253,'10471'),(485,253,'10472'),(486,253,'10473'),(487,253,'10474'),(488,253,'10475'),(489,253,'10499'),(490,254,'10501'),(491,255,'10502'),(492,256,'10503'),(493,257,'10504'),(494,258,'10505'),(495,259,'10506'),(496,260,'10507'),(497,261,'10509'),(498,262,'10510'),(499,263,'10511'),(500,264,'10512'),(501,265,'10514'),(502,266,'10516'),(503,267,'10517'),(504,268,'10518'),(505,269,'10519'),(506,270,'10520'),(507,270,'10521'),(508,271,'10522'),(509,272,'10523'),(510,273,'10524'),(511,274,'10526'),(512,275,'10527'),(513,276,'10528'),(514,277,'10530'),(515,278,'10532'),(516,279,'10533'),(517,280,'10535'),(518,281,'10536'),(519,282,'10537'),(520,283,'10538'),(521,284,'10540'),(522,285,'10541'),(523,286,'10542'),(524,287,'10543'),(525,288,'10545'),(526,289,'10546'),(527,290,'10547'),(528,291,'10548'),(529,292,'10549'),(530,293,'10550'),(531,293,'10551'),(532,293,'10552'),(533,293,'10553'),(534,293,'10557'),(535,293,'10558'),(536,293,'10559'),(537,294,'10560'),(538,295,'10562'),(539,296,'10566'),(540,297,'10567'),(541,298,'10570'),(542,298,'10571'),(543,298,'10572'),(544,299,'10573'),(545,300,'10576'),(546,301,'10577'),(547,302,'10578'),(548,303,'10579'),(549,304,'10580'),(550,304,'10581'),(551,305,'10583'),(552,306,'10587'),(553,307,'10588'),(554,308,'10589'),(555,309,'10590'),(556,310,'10591'),(557,310,'10592'),(558,311,'10594'),(559,312,'10595'),(560,313,'10596'),(561,314,'10597'),(562,315,'10598'),(563,316,'10601'),(564,316,'10602'),(565,316,'10603'),(566,316,'10605'),(567,316,'10606'),(568,316,'10607'),(569,316,'10610'),(570,316,'10625'),(571,316,'10629'),(572,316,'10633'),(573,316,'10650'),(574,317,'10604'),(575,318,'10701'),(576,318,'10702'),(577,318,'10703'),(578,318,'10704'),(579,318,'10705'),(580,318,'10710'),(581,319,'10706'),(582,320,'10707'),(583,321,'10708'),(584,322,'10709'),(585,323,'10801'),(586,323,'10802'),(587,323,'10805'),(588,324,'10803'),(589,325,'10804'),(590,326,'10901'),(591,327,'10910'),(592,328,'10911'),(593,329,'10912'),(594,330,'10913'),(595,331,'10914'),(596,332,'10915'),(597,333,'10916'),(598,334,'10917'),(599,335,'10918'),(600,336,'10919'),(601,337,'10920'),(602,338,'10921'),(603,339,'10922'),(604,340,'10923'),(605,341,'10924'),(606,342,'10925'),(607,343,'10926'),(608,344,'10927'),(609,345,'10928'),(610,346,'10930'),(611,347,'10931'),(612,348,'10932'),(613,349,'10933'),(614,350,'10940'),(615,350,'10941'),(616,350,'10943'),(617,351,'10950'),(618,352,'10952'),(619,353,'10953'),(620,354,'10954'),(621,355,'10956'),(622,356,'10958'),(623,357,'10959'),(624,358,'10960'),(625,359,'10962'),(626,360,'10963'),(627,361,'10964'),(628,362,'10965'),(629,363,'10968'),(630,364,'10969'),(631,365,'10970'),(632,366,'10973'),(633,367,'10974'),(634,368,'10975'),(635,369,'10976'),(636,370,'10977'),(637,371,'10979'),(638,372,'10980'),(639,373,'10981'),(640,374,'10982'),(641,375,'10983'),(642,376,'10984'),(643,377,'10985'),(644,378,'10986'),(645,379,'10987'),(646,380,'10988'),(647,381,'10989'),(648,382,'10990'),(649,383,'10992'),(650,384,'10993'),(651,385,'10994'),(652,385,'10995'),(653,386,'10996'),(654,386,'10997'),(655,387,'10998'),(656,388,'11001'),(657,388,'11002'),(658,388,'11005'),(659,389,'11003'),(660,390,'11004'),(661,391,'11010'),(662,392,'11020'),(663,392,'11021'),(664,392,'11022'),(665,392,'11023'),(666,392,'11024'),(667,392,'11025'),(668,392,'11026'),(669,392,'11027'),(670,393,'11030'),(671,394,'11040'),(672,394,'11041'),(673,394,'11042'),(674,394,'11043'),(675,394,'11044'),(676,394,'11099'),(677,395,'11050'),(678,395,'11051'),(679,395,'11052'),(680,395,'11053'),(681,395,'11054'),(682,395,'11055'),(683,396,'11096'),(684,396,'11696'),(685,397,'11101'),(686,397,'11109'),(687,397,'11120'),(688,398,'11102'),(689,398,'11103'),(690,398,'11105'),(691,398,'11106'),(692,399,'11104'),(693,400,'11201'),(694,400,'11202'),(695,400,'11203'),(696,400,'11204'),(697,400,'11205'),(698,400,'11206'),(699,400,'11207'),(700,400,'11208'),(701,400,'11209'),(702,400,'11210'),(703,400,'11211'),(704,400,'11212'),(705,400,'11213'),(706,400,'11214'),(707,400,'11215'),(708,400,'11216'),(709,400,'11217'),(710,400,'11218'),(711,400,'11219'),(712,400,'11220'),(713,400,'11221'),(714,400,'11222'),(715,400,'11223'),(716,400,'11224'),(717,400,'11225'),(718,400,'11226'),(719,400,'11228'),(720,400,'11229'),(721,400,'11230'),(722,400,'11231'),(723,400,'11232'),(724,400,'11233'),(725,400,'11234'),(726,400,'11235'),(727,400,'11236'),(728,400,'11237'),(729,400,'11238'),(730,400,'11239'),(731,400,'11240'),(732,400,'11241'),(733,400,'11242'),(734,400,'11243'),(735,400,'11244'),(736,400,'11245'),(737,400,'11247'),(738,400,'11248'),(739,400,'11249'),(740,400,'11251'),(741,400,'11252'),(742,400,'11254'),(743,400,'11255'),(744,400,'11256'),(745,401,'11351'),(746,401,'11352'),(747,401,'11353'),(748,401,'11354'),(749,401,'11355'),(750,401,'11358'),(751,401,'11367'),(752,401,'11371'),(753,401,'11381'),(754,401,'11388'),(755,401,'11390'),(756,402,'11356'),(757,403,'11357'),(758,404,'11359'),(759,404,'11360'),(760,404,'11361'),(761,405,'11362'),(762,405,'11363'),(763,406,'11364'),(764,407,'11365'),(765,407,'11366'),(766,408,'11368'),(767,409,'11369'),(768,409,'11370'),(769,410,'11372'),(770,411,'11373'),(771,411,'11380'),(772,412,'11374'),(773,413,'11375'),(774,414,'11377'),(775,415,'11378'),(776,416,'11379'),(777,417,'11385'),(778,417,'11386'),(779,418,'11405'),(780,418,'11424'),(781,418,'11425'),(782,418,'11430'),(783,418,'11431'),(784,418,'11432'),(785,418,'11433'),(786,418,'11434'),(787,418,'11435'),(788,418,'11436'),(789,418,'11439'),(790,418,'11451'),(791,418,'11484'),(792,418,'11499'),(793,419,'11411'),(794,420,'11412'),(795,421,'11413'),(796,422,'11414'),(797,423,'11415'),(798,424,'11416'),(799,424,'11417'),(800,425,'11418'),(801,426,'11419'),(802,427,'11420'),(803,428,'11421'),(804,429,'11422'),(805,430,'11423'),(806,431,'11426'),(807,432,'11427'),(808,432,'11428'),(809,432,'11429'),(810,433,'11501'),(811,434,'11507'),(812,435,'11509'),(813,436,'11510'),(814,437,'11514'),(815,438,'11516'),(816,439,'11518'),(817,440,'11520'),(818,441,'11530'),(819,441,'11531'),(820,441,'11535'),(821,441,'11536'),(822,441,'11599'),(823,442,'11542'),(824,443,'11545'),(825,444,'11547'),(826,445,'11548'),(827,446,'11549'),(828,446,'11550'),(829,446,'11551'),(830,447,'11552'),(831,448,'11553'),(832,448,'11555'),(833,448,'11556'),(834,448,'11588'),(835,449,'11554'),(836,450,'11557'),(837,451,'11558'),(838,452,'11559'),(839,453,'11560'),(840,454,'11561'),(841,455,'11563'),(842,455,'11564'),(843,456,'11565'),(844,457,'11566'),(845,458,'11568'),(846,459,'11569'),(847,460,'11570'),(848,460,'11571'),(849,460,'11592'),(850,461,'11572'),(851,462,'11575'),(852,463,'11576'),(853,464,'11577'),(854,465,'11579'),(855,466,'11580'),(856,466,'11581'),(857,466,'11582'),(858,466,'11583'),(859,467,'11590'),(860,467,'11593'),(861,467,'11594'),(862,467,'11595'),(863,467,'11597'),(864,468,'11596'),(865,469,'11598'),(866,470,'11690'),(867,470,'11691'),(868,470,'11693'),(869,470,'11695'),(870,471,'11692'),(871,472,'11694'),(872,473,'11697'),(873,474,'11701'),(874,474,'11708'),(875,475,'11702'),(876,476,'11703'),(877,477,'11704'),(878,477,'11707'),(879,478,'11705'),(880,479,'11706'),(881,480,'11709'),(882,481,'11710'),(883,482,'11713'),(884,483,'11714'),(885,484,'11715'),(886,485,'11716'),(887,486,'11717'),(888,487,'11718'),(889,488,'11719'),(890,489,'11720'),(891,490,'11721'),(892,491,'11722'),(893,492,'11724'),(894,493,'11725'),(895,494,'11726'),(896,495,'11727'),(897,496,'11729'),(898,497,'11730'),(899,498,'11731'),(900,499,'11732'),(901,500,'11733'),(902,501,'11735'),(903,501,'11736'),(904,501,'11737'),(905,501,'11774'),(906,502,'11738'),(907,503,'11739'),(908,504,'11740'),(909,505,'11741'),(910,506,'11743'),(911,507,'11745'),(912,507,'11787'),(913,508,'11746'),(914,508,'11750'),(915,509,'11747'),(916,509,'11775'),(917,510,'11749'),(918,511,'11751'),(919,512,'11752'),(920,513,'11753'),(921,513,'11853'),(922,514,'11754'),(923,515,'11755'),(924,516,'11756'),(925,517,'11757'),(926,518,'11758'),(927,519,'11760'),(928,519,'11788'),(929,520,'11762'),(930,521,'11763'),(931,522,'11764'),(932,523,'11765'),(933,524,'11766'),(934,525,'11767'),(935,526,'11768'),(936,527,'11769'),(937,528,'11770'),(938,529,'11771'),(939,530,'11772'),(940,531,'11773'),(941,531,'11791'),(942,532,'11776'),(943,533,'11777'),(944,534,'11778'),(945,535,'11779'),(946,536,'11780'),(947,537,'11782'),(948,538,'11783'),(949,539,'11784'),(950,540,'11786'),(951,541,'11789'),(952,542,'11790'),(953,542,'11794'),(954,543,'11792'),(955,544,'11793'),(956,545,'11795'),(957,546,'11796'),(958,547,'11797'),(959,548,'11798'),(960,549,'11801'),(961,549,'11802'),(962,549,'11815'),(963,549,'11819'),(964,549,'11854'),(965,549,'11855'),(966,550,'11803'),(967,551,'11804'),(968,552,'11805'),(969,553,'11901'),(970,554,'11930'),(971,555,'11931'),(972,556,'11932'),(973,557,'11933'),(974,558,'11934'),(975,559,'11935'),(976,560,'11937'),(977,561,'11939'),(978,562,'11940'),(979,563,'11941'),(980,564,'11942'),(981,565,'11944'),(982,566,'11946'),(983,567,'11947'),(984,568,'11948'),(985,569,'11949'),(986,570,'11950'),(987,571,'11951'),(988,572,'11952'),(989,573,'11953'),(990,574,'11954'),(991,575,'11955'),(992,576,'11956'),(993,577,'11957'),(994,578,'11958'),(995,579,'11959'),(996,580,'11960'),(997,581,'11961'),(998,582,'11962'),(999,583,'11963'),(1000,584,'11964'),(1001,585,'11965'),(1002,586,'11967'),(1003,587,'11968'),(1004,587,'11969'),(1005,588,'11970'),(1006,589,'11971'),(1007,590,'11972'),(1008,591,'11973'),(1009,592,'11975'),(1010,593,'11976'),(1011,594,'11977'),(1012,595,'11978'),(1013,596,'11980'),(1014,597,'12007'),(1015,598,'12008'),(1016,599,'12009'),(1017,600,'12010'),(1018,601,'12015'),(1019,602,'12016'),(1020,603,'12017'),(1021,604,'12018'),(1022,605,'12019'),(1023,606,'12020'),(1024,607,'12022'),(1025,608,'12023'),(1026,609,'12024'),(1027,610,'12025'),(1028,611,'12027'),(1029,612,'12028'),(1030,613,'12029'),(1031,614,'12031'),(1032,615,'12032'),(1033,616,'12033'),(1034,617,'12035'),(1035,618,'12036'),(1036,619,'12037'),(1037,620,'12040'),(1038,621,'12041'),(1039,622,'12042'),(1040,623,'12043'),(1041,624,'12045'),(1042,625,'12046'),(1043,626,'12047'),(1044,627,'12050'),(1045,628,'12051'),(1046,629,'12052'),(1047,630,'12053'),(1048,631,'12054'),(1049,632,'12055'),(1050,633,'12056'),(1051,634,'12057'),(1052,635,'12058'),(1053,636,'12059'),(1054,637,'12060'),(1055,638,'12061'),(1056,639,'12062'),(1057,640,'12063'),(1058,641,'12064'),(1059,642,'12065'),(1060,643,'12066'),(1061,644,'12067'),(1062,645,'12068'),(1063,646,'12069'),(1064,647,'12070'),(1065,648,'12071'),(1066,649,'12072'),(1067,650,'12073'),(1068,651,'12074'),(1069,652,'12075'),(1070,653,'12076'),(1071,654,'12077'),(1072,655,'12078'),(1073,656,'12082'),(1074,657,'12083'),(1075,658,'12084'),(1076,659,'12085'),(1077,660,'12086'),(1078,661,'12087'),(1079,662,'12089'),(1080,663,'12090'),(1081,664,'12092'),(1082,665,'12093'),(1083,666,'12094'),(1084,667,'12095'),(1085,668,'12106'),(1086,669,'12107'),(1087,670,'12108'),(1088,671,'12110'),(1089,671,'12111'),(1090,672,'12115'),(1091,673,'12116'),(1092,674,'12117'),(1093,675,'12118'),(1094,676,'12120'),(1095,677,'12121'),(1096,678,'12122'),(1097,679,'12123'),(1098,680,'12124'),(1099,681,'12125'),(1100,682,'12128'),(1101,683,'12130'),(1102,684,'12131'),(1103,685,'12132'),(1104,686,'12133'),(1105,687,'12134'),(1106,688,'12136'),(1107,689,'12137'),(1108,690,'12138'),(1109,691,'12139'),(1110,692,'12140'),(1111,693,'12141'),(1112,694,'12143'),(1113,695,'12144'),(1114,696,'12147'),(1115,697,'12148'),(1116,698,'12149'),(1117,699,'12150'),(1118,700,'12151'),(1119,701,'12153'),(1120,702,'12154'),(1121,703,'12155'),(1122,704,'12156'),(1123,705,'12157'),(1124,706,'12158'),(1125,707,'12159'),(1126,708,'12160'),(1127,709,'12161'),(1128,710,'12162'),(1129,711,'12164'),(1130,712,'12165'),(1131,713,'12166'),(1132,714,'12167'),(1133,715,'12168'),(1134,715,'12169'),(1135,716,'12170'),(1136,717,'12172'),(1137,718,'12173'),(1138,719,'12174'),(1139,720,'12175'),(1140,721,'12176'),(1141,722,'12177'),(1142,723,'12179'),(1143,723,'12180'),(1144,723,'12181'),(1145,723,'12182'),(1146,723,'12183'),(1147,724,'12184'),(1148,725,'12185'),(1149,726,'12186'),(1150,727,'12187'),(1151,728,'12188'),(1152,729,'12189'),(1153,730,'12190'),(1154,731,'12192'),(1155,732,'12193'),(1156,733,'12194'),(1157,734,'12195'),(1158,735,'12196'),(1159,736,'12197'),(1160,737,'12198'),(1161,738,'12201'),(1162,738,'12202'),(1163,738,'12203'),(1164,738,'12204'),(1165,738,'12205'),(1166,738,'12206'),(1167,738,'12207'),(1168,738,'12208'),(1169,738,'12209'),(1170,738,'12210'),(1171,738,'12211'),(1172,738,'12212'),(1173,738,'12214'),(1174,738,'12220'),(1175,738,'12222'),(1176,738,'12223'),(1177,738,'12224'),(1178,738,'12225'),(1179,738,'12226'),(1180,738,'12227'),(1181,738,'12228'),(1182,738,'12229'),(1183,738,'12230'),(1184,738,'12231'),(1185,738,'12232'),(1186,738,'12233'),(1187,738,'12234'),(1188,738,'12235'),(1189,738,'12236'),(1190,738,'12237'),(1191,738,'12238'),(1192,738,'12239'),(1193,738,'12240'),(1194,738,'12241'),(1195,738,'12242'),(1196,738,'12243'),(1197,738,'12244'),(1198,738,'12245'),(1199,738,'12246'),(1200,738,'12247'),(1201,738,'12248'),(1202,738,'12249'),(1203,738,'12250'),(1204,738,'12252'),(1205,738,'12255'),(1206,738,'12256'),(1207,738,'12257'),(1208,738,'12260'),(1209,738,'12261'),(1210,738,'12262'),(1211,738,'12288'),(1212,739,'12301'),(1213,739,'12302'),(1214,739,'12303'),(1215,739,'12304'),(1216,739,'12305'),(1217,739,'12306'),(1218,739,'12307'),(1219,739,'12308'),(1220,739,'12309'),(1221,739,'12325'),(1222,739,'12345'),(1223,740,'12401'),(1224,740,'12402'),(1225,741,'12404'),(1226,742,'12405'),(1227,743,'12406'),(1228,744,'12407'),(1229,745,'12409'),(1230,746,'12410'),(1231,747,'12411'),(1232,748,'12412'),(1233,749,'12413'),(1234,750,'12414'),(1235,751,'12416'),(1236,752,'12417'),(1237,753,'12418'),(1238,754,'12419'),(1239,755,'12420'),(1240,756,'12421'),(1241,757,'12422'),(1242,758,'12423'),(1243,759,'12424'),(1244,760,'12427'),(1245,761,'12428'),(1246,762,'12429'),(1247,763,'12430'),(1248,764,'12431'),(1249,765,'12432'),(1250,766,'12433'),(1251,767,'12434'),(1252,768,'12435'),(1253,769,'12436'),(1254,770,'12438'),(1255,771,'12439'),(1256,772,'12440'),(1257,773,'12441'),(1258,774,'12442'),(1259,775,'12443'),(1260,776,'12444'),(1261,777,'12446'),(1262,778,'12448'),(1263,779,'12449'),(1264,780,'12450'),(1265,781,'12451'),(1266,782,'12452'),(1267,783,'12453'),(1268,784,'12454'),(1269,785,'12455'),(1270,786,'12456'),(1271,787,'12457'),(1272,788,'12458'),(1273,789,'12459'),(1274,790,'12460'),(1275,791,'12461'),(1276,792,'12463'),(1277,793,'12464'),(1278,794,'12465'),(1279,795,'12466'),(1280,796,'12468'),(1281,797,'12469'),(1282,798,'12470'),(1283,799,'12471'),(1284,800,'12472'),(1285,801,'12473'),(1286,802,'12474'),(1287,803,'12475'),(1288,804,'12477'),(1289,805,'12480'),(1290,806,'12481'),(1291,807,'12482'),(1292,808,'12483'),(1293,809,'12484'),(1294,810,'12485'),(1295,811,'12486'),(1296,812,'12487'),(1297,813,'12489'),(1298,814,'12490'),(1299,815,'12491'),(1300,816,'12492'),(1301,817,'12493'),(1302,818,'12494'),(1303,819,'12495'),(1304,820,'12496'),(1305,821,'12498'),(1306,822,'12501'),(1307,823,'12502'),(1308,824,'12503'),(1309,825,'12504'),(1310,826,'12506'),(1311,827,'12507'),(1312,828,'12508'),(1313,829,'12510'),(1314,830,'12511'),(1315,831,'12512'),(1316,832,'12513'),(1317,833,'12514'),(1318,834,'12515'),(1319,835,'12516'),(1320,836,'12517'),(1321,837,'12518'),(1322,838,'12520'),(1323,839,'12521'),(1324,840,'12522'),(1325,841,'12523'),(1326,842,'12524'),(1327,843,'12525'),(1328,844,'12526'),(1329,845,'12527'),(1330,846,'12528'),(1331,847,'12529'),(1332,848,'12530'),(1333,849,'12531'),(1334,850,'12533'),(1335,851,'12534'),(1336,852,'12537'),(1337,853,'12538'),(1338,854,'12540'),(1339,855,'12541'),(1340,856,'12542'),(1341,857,'12543'),(1342,858,'12544'),(1343,859,'12545'),(1344,860,'12546'),(1345,861,'12547'),(1346,862,'12548'),(1347,863,'12549'),(1348,864,'12550'),(1349,864,'12551'),(1350,864,'12552'),(1351,865,'12553'),(1352,866,'12555'),(1353,867,'12561'),(1354,868,'12563'),(1355,869,'12564'),(1356,870,'12565'),(1357,871,'12566'),(1358,872,'12567'),(1359,873,'12568'),(1360,874,'12569'),(1361,875,'12570'),(1362,876,'12571'),(1363,877,'12572'),(1364,878,'12574'),(1365,879,'12575'),(1366,880,'12577'),(1367,881,'12578'),(1368,882,'12580'),(1369,883,'12581'),(1370,884,'12582'),(1371,885,'12583'),(1372,886,'12584'),(1373,887,'12585'),(1374,888,'12586'),(1375,889,'12588'),(1376,890,'12589'),(1377,891,'12590'),(1378,892,'12592'),(1379,893,'12593'),(1380,894,'12594'),(1381,895,'12601'),(1382,895,'12602'),(1383,895,'12603'),(1384,895,'12604'),(1385,896,'12701'),(1386,897,'12719'),(1387,898,'12720'),(1388,899,'12721'),(1389,900,'12722'),(1390,901,'12723'),(1391,902,'12724'),(1392,903,'12725'),(1393,904,'12726'),(1394,905,'12727'),(1395,906,'12729'),(1396,907,'12732'),(1397,908,'12733'),(1398,909,'12734'),(1399,910,'12736'),(1400,911,'12737'),(1401,912,'12738'),(1402,913,'12739'),(1403,914,'12740'),(1404,915,'12741'),(1405,916,'12742'),(1406,917,'12743'),(1407,918,'12745'),(1408,919,'12746'),(1409,920,'12747'),(1410,921,'12748'),(1411,922,'12749'),(1412,923,'12750'),(1413,924,'12751'),(1414,925,'12752'),(1415,926,'12754'),(1416,927,'12758'),(1417,928,'12759'),(1418,929,'12760'),(1419,930,'12762'),(1420,931,'12763'),(1421,932,'12764'),(1422,933,'12765'),(1423,934,'12766'),(1424,935,'12767'),(1425,936,'12768'),(1426,937,'12769'),(1427,938,'12770'),(1428,939,'12771'),(1429,940,'12775'),(1430,941,'12776'),(1431,942,'12777'),(1432,943,'12778'),(1433,944,'12779'),(1434,945,'12780'),(1435,946,'12781'),(1436,947,'12782'),(1437,948,'12783'),(1438,949,'12784'),(1439,950,'12785'),(1440,951,'12786'),(1441,952,'12787'),(1442,953,'12788'),(1443,954,'12789'),(1444,955,'12790'),(1445,956,'12791'),(1446,957,'12792'),(1447,958,'12801'),(1448,959,'12803'),(1449,960,'12804'),(1450,961,'12808'),(1451,962,'12809'),(1452,963,'12810'),(1453,964,'12811'),(1454,965,'12812'),(1455,966,'12814'),(1456,967,'12815'),(1457,968,'12816'),(1458,969,'12817'),(1459,970,'12819'),(1460,971,'12820'),(1461,972,'12821'),(1462,973,'12822'),(1463,974,'12823'),(1464,975,'12824'),(1465,976,'12827'),(1466,977,'12828'),(1467,978,'12831'),(1468,979,'12832'),(1469,980,'12833'),(1470,981,'12834'),(1471,982,'12835'),(1472,983,'12836'),(1473,984,'12837'),(1474,985,'12838'),(1475,986,'12839'),(1476,987,'12841'),(1477,988,'12842'),(1478,989,'12843'),(1479,990,'12844'),(1480,991,'12845'),(1481,992,'12846'),(1482,993,'12847'),(1483,994,'12848'),(1484,995,'12849'),(1485,996,'12850'),(1486,997,'12851'),(1487,998,'12852'),(1488,998,'12879'),(1489,999,'12853'),(1490,1000,'12854'),(1491,1001,'12855'),(1492,1002,'12856'),(1493,1003,'12857'),(1494,1004,'12858'),(1495,1005,'12859'),(1496,1006,'12860'),(1497,1007,'12861'),(1498,1008,'12862'),(1499,1009,'12863'),(1500,1010,'12864'),(1501,1011,'12865'),(1502,1012,'12866'),(1503,1013,'12870'),(1504,1014,'12871'),(1505,1015,'12872'),(1506,1016,'12873'),(1507,1017,'12874'),(1508,1018,'12878'),(1509,1019,'12883'),(1510,1020,'12884'),(1511,1021,'12885'),(1512,1022,'12886'),(1513,1023,'12887'),(1514,1024,'12901'),(1515,1024,'12903'),(1516,1025,'12910'),(1517,1026,'12911'),(1518,1026,'12924'),(1519,1026,'12944'),(1520,1027,'12912'),(1521,1028,'12913'),(1522,1029,'12914'),(1523,1030,'12915'),(1524,1031,'12916'),(1525,1032,'12917'),(1526,1033,'12918'),(1527,1034,'12919'),(1528,1035,'12920'),(1529,1036,'12921'),(1530,1037,'12922'),(1531,1038,'12923'),(1532,1039,'12926'),(1533,1040,'12927'),(1534,1041,'12928'),(1535,1042,'12929'),(1536,1043,'12930'),(1537,1044,'12932'),(1538,1045,'12933'),(1539,1046,'12934'),(1540,1047,'12935'),(1541,1048,'12936'),(1542,1049,'12937'),(1543,1050,'12939'),(1544,1051,'12941'),(1545,1052,'12942'),(1546,1053,'12943'),(1547,1054,'12945'),(1548,1055,'12946'),(1549,1056,'12949'),(1550,1057,'12950'),(1551,1058,'12952'),(1552,1058,'12955'),(1553,1059,'12953'),(1554,1060,'12956'),(1555,1061,'12957'),(1556,1062,'12958'),(1557,1063,'12959'),(1558,1064,'12960'),(1559,1065,'12961'),(1560,1066,'12962'),(1561,1067,'12964'),(1562,1068,'12965'),(1563,1069,'12966'),(1564,1070,'12967'),(1565,1071,'12969'),(1566,1072,'12970'),(1567,1073,'12972'),(1568,1074,'12973'),(1569,1075,'12974'),(1570,1076,'12975'),(1571,1077,'12976'),(1572,1078,'12977'),(1573,1079,'12978'),(1574,1080,'12979'),(1575,1081,'12980'),(1576,1082,'12981'),(1577,1083,'12983'),(1578,1084,'12985'),(1579,1085,'12986'),(1580,1086,'12987'),(1581,1087,'12989'),(1582,1088,'12992'),(1583,1089,'12993'),(1584,1090,'12995'),(1585,1091,'12996'),(1586,1092,'12997'),(1587,1093,'12998'),(1588,1094,'13020'),(1589,1095,'13021'),(1590,1095,'13022'),(1591,1095,'13024'),(1592,1096,'13026'),(1593,1097,'13027'),(1594,1098,'13028'),(1595,1099,'13029'),(1596,1100,'13030'),(1597,1101,'13031'),(1598,1102,'13032'),(1599,1103,'13033'),(1600,1104,'13034'),(1601,1105,'13035'),(1602,1106,'13036'),(1603,1107,'13037'),(1604,1108,'13039'),(1605,1109,'13040'),(1606,1110,'13041'),(1607,1111,'13042'),(1608,1112,'13043'),(1609,1113,'13044'),(1610,1114,'13045'),(1611,1115,'13051'),(1612,1116,'13052'),(1613,1117,'13053'),(1614,1118,'13054'),(1615,1119,'13056'),(1616,1120,'13057'),(1617,1121,'13060'),(1618,1122,'13061'),(1619,1123,'13062'),(1620,1124,'13063'),(1621,1125,'13064'),(1622,1126,'13065'),(1623,1127,'13066'),(1624,1128,'13068'),(1625,1129,'13069'),(1626,1130,'13071'),(1627,1131,'13072'),(1628,1131,'13129'),(1629,1132,'13073'),(1630,1133,'13074'),(1631,1134,'13076'),(1632,1135,'13077'),(1633,1136,'13078'),(1634,1137,'13080'),(1635,1138,'13081'),(1636,1139,'13082'),(1637,1140,'13083'),(1638,1141,'13084'),(1639,1142,'13087'),(1640,1143,'13088'),(1641,1143,'13089'),(1642,1143,'13090'),(1643,1144,'13092'),(1644,1145,'13093'),(1645,1146,'13101'),(1646,1147,'13102'),(1647,1148,'13103'),(1648,1149,'13104'),(1649,1150,'13107'),(1650,1151,'13108'),(1651,1152,'13110'),(1652,1153,'13111'),(1653,1154,'13112'),(1654,1155,'13113'),(1655,1156,'13114'),(1656,1157,'13115'),(1657,1158,'13116'),(1658,1159,'13117'),(1659,1160,'13118'),(1660,1161,'13119'),(1661,1162,'13120'),(1662,1163,'13121'),(1663,1164,'13122'),(1664,1165,'13123'),(1665,1166,'13124'),(1666,1167,'13126'),(1667,1168,'13131'),(1668,1169,'13132'),(1669,1170,'13134'),(1670,1171,'13135'),(1671,1172,'13136'),(1672,1173,'13137'),(1673,1174,'13138'),(1674,1175,'13139'),(1675,1176,'13140'),(1676,1177,'13141'),(1677,1178,'13142'),(1678,1179,'13143'),(1679,1180,'13144'),(1680,1181,'13145'),(1681,1182,'13146'),(1682,1183,'13147'),(1683,1184,'13148'),(1684,1185,'13152'),(1685,1186,'13153'),(1686,1187,'13154'),(1687,1188,'13155'),(1688,1189,'13156'),(1689,1190,'13157'),(1690,1191,'13158'),(1691,1192,'13159'),(1692,1193,'13160'),(1693,1194,'13162'),(1694,1195,'13163'),(1695,1196,'13164'),(1696,1197,'13165'),(1697,1198,'13166'),(1698,1199,'13167'),(1699,1200,'13201'),(1700,1200,'13202'),(1701,1200,'13203'),(1702,1200,'13204'),(1703,1200,'13205'),(1704,1200,'13206'),(1705,1200,'13207'),(1706,1200,'13208'),(1707,1200,'13209'),(1708,1200,'13210'),(1709,1200,'13211'),(1710,1200,'13212'),(1711,1200,'13214'),(1712,1200,'13215'),(1713,1200,'13217'),(1714,1200,'13218'),(1715,1200,'13219'),(1716,1200,'13220'),(1717,1200,'13221'),(1718,1200,'13224'),(1719,1200,'13225'),(1720,1200,'13244'),(1721,1200,'13250'),(1722,1200,'13251'),(1723,1200,'13252'),(1724,1200,'13260'),(1725,1200,'13261'),(1726,1200,'13290'),(1727,1201,'13301'),(1728,1202,'13302'),(1729,1203,'13303'),(1730,1204,'13304'),(1731,1205,'13305'),(1732,1206,'13308'),(1733,1207,'13309'),(1734,1208,'13310'),(1735,1209,'13312'),(1736,1210,'13313'),(1737,1211,'13314'),(1738,1212,'13315'),(1739,1213,'13316'),(1740,1214,'13317'),(1741,1215,'13318'),(1742,1216,'13319'),(1743,1217,'13320'),(1744,1218,'13321'),(1745,1219,'13322'),(1746,1220,'13323'),(1747,1221,'13324'),(1748,1222,'13325'),(1749,1223,'13326'),(1750,1224,'13327'),(1751,1225,'13328'),(1752,1226,'13329'),(1753,1227,'13331'),(1754,1228,'13332'),(1755,1229,'13333'),(1756,1230,'13334'),(1757,1231,'13335'),(1758,1232,'13337'),(1759,1233,'13338'),(1760,1234,'13339'),(1761,1235,'13340'),(1762,1236,'13341'),(1763,1237,'13342'),(1764,1238,'13343'),(1765,1239,'13345'),(1766,1240,'13346'),(1767,1241,'13348'),(1768,1242,'13350'),(1769,1243,'13352'),(1770,1244,'13353'),(1771,1245,'13354'),(1772,1246,'13355'),(1773,1247,'13357'),(1774,1248,'13360'),(1775,1249,'13361'),(1776,1250,'13362'),(1777,1251,'13363'),(1778,1252,'13364'),(1779,1253,'13365'),(1780,1254,'13367'),(1781,1255,'13368'),(1782,1256,'13401'),(1783,1257,'13402'),(1784,1258,'13403'),(1785,1259,'13404'),(1786,1260,'13406'),(1787,1261,'13407'),(1788,1262,'13408'),(1789,1263,'13409'),(1790,1264,'13410'),(1791,1265,'13411'),(1792,1266,'13413'),(1793,1267,'13415'),(1794,1268,'13416'),(1795,1269,'13417'),(1796,1270,'13418'),(1797,1271,'13420'),(1798,1272,'13421'),(1799,1273,'13424'),(1800,1274,'13425'),(1801,1275,'13426'),(1802,1276,'13428'),(1803,1277,'13431'),(1804,1278,'13433'),(1805,1279,'13435'),(1806,1280,'13436'),(1807,1281,'13437'),(1808,1282,'13438'),(1809,1283,'13439'),(1810,1284,'13440'),(1811,1284,'13441'),(1812,1284,'13442'),(1813,1284,'13449'),(1814,1285,'13450'),(1815,1286,'13452'),(1816,1287,'13454'),(1817,1288,'13455'),(1818,1289,'13456'),(1819,1290,'13457'),(1820,1291,'13459'),(1821,1292,'13460'),(1822,1293,'13461'),(1823,1294,'13464'),(1824,1295,'13465'),(1825,1296,'13468'),(1826,1297,'13469'),(1827,1298,'13470'),(1828,1299,'13471'),(1829,1300,'13472'),(1830,1301,'13473'),(1831,1302,'13475'),(1832,1303,'13476'),(1833,1304,'13477'),(1834,1305,'13478'),(1835,1306,'13479'),(1836,1307,'13480'),(1837,1308,'13482'),(1838,1309,'13483'),(1839,1310,'13484'),(1840,1311,'13485'),(1841,1312,'13486'),(1842,1313,'13488'),(1843,1314,'13489'),(1844,1315,'13490'),(1845,1316,'13491'),(1846,1317,'13492'),(1847,1318,'13493'),(1848,1319,'13494'),(1849,1320,'13495'),(1850,1321,'13501'),(1851,1321,'13502'),(1852,1321,'13503'),(1853,1321,'13504'),(1854,1321,'13505'),(1855,1321,'13599'),(1856,1322,'13601'),(1857,1322,'13603'),(1858,1323,'13602'),(1859,1324,'13605'),(1860,1325,'13606'),(1861,1326,'13607'),(1862,1327,'13608'),(1863,1328,'13610'),(1864,1328,'13682'),(1865,1329,'13611'),(1866,1330,'13612'),(1867,1331,'13613'),(1868,1332,'13614'),(1869,1333,'13615'),(1870,1334,'13616'),(1871,1335,'13617'),(1872,1336,'13618'),(1873,1337,'13619'),(1874,1338,'13620'),(1875,1339,'13621'),(1876,1340,'13622'),(1877,1341,'13623'),(1878,1342,'13624'),(1879,1343,'13625'),(1880,1344,'13626'),(1881,1345,'13627'),(1882,1346,'13628'),(1883,1347,'13630'),(1884,1348,'13631'),(1885,1349,'13632'),(1886,1350,'13633'),(1887,1351,'13634'),(1888,1352,'13635'),(1889,1353,'13636'),(1890,1354,'13637'),(1891,1355,'13638'),(1892,1356,'13639'),(1893,1357,'13640'),(1894,1358,'13641'),(1895,1359,'13642'),(1896,1360,'13643'),(1897,1361,'13645'),(1898,1362,'13646'),(1899,1363,'13647'),(1900,1364,'13648'),(1901,1365,'13649'),(1902,1366,'13650'),(1903,1367,'13651'),(1904,1368,'13652'),(1905,1369,'13654'),(1906,1370,'13655'),(1907,1371,'13656'),(1908,1372,'13657'),(1909,1373,'13658'),(1910,1374,'13659'),(1911,1375,'13660'),(1912,1376,'13661'),(1913,1377,'13662'),(1914,1378,'13664'),(1915,1379,'13665'),(1916,1380,'13666'),(1917,1381,'13667'),(1918,1382,'13668'),(1919,1383,'13669'),(1920,1384,'13670'),(1921,1385,'13671'),(1922,1386,'13672'),(1923,1387,'13673'),(1924,1388,'13674'),(1925,1389,'13675'),(1926,1390,'13676'),(1927,1390,'13699'),(1928,1391,'13677'),(1929,1392,'13678'),(1930,1393,'13679'),(1931,1394,'13680'),(1932,1395,'13681'),(1933,1396,'13683'),(1934,1397,'13684'),(1935,1398,'13685'),(1936,1399,'13687'),(1937,1400,'13688'),(1938,1401,'13690'),(1939,1402,'13691'),(1940,1403,'13692'),(1941,1404,'13693'),(1942,1405,'13694'),(1943,1406,'13695'),(1944,1407,'13696'),(1945,1408,'13697'),(1946,1409,'13730'),(1947,1410,'13731'),(1948,1411,'13732'),(1949,1412,'13733'),(1950,1413,'13734'),(1951,1414,'13736'),(1952,1415,'13737'),(1953,1416,'13738'),(1954,1417,'13739'),(1955,1418,'13740'),(1956,1419,'13743'),(1957,1420,'13744'),(1958,1421,'13745'),(1959,1422,'13746'),(1960,1423,'13747'),(1961,1424,'13748'),(1962,1425,'13749'),(1963,1426,'13750'),(1964,1427,'13751'),(1965,1428,'13752'),(1966,1429,'13753'),(1967,1430,'13754'),(1968,1431,'13755'),(1969,1432,'13756'),(1970,1433,'13757'),(1971,1434,'13758'),(1972,1435,'13760'),(1973,1435,'13761'),(1974,1435,'13763'),(1975,1436,'13762'),(1976,1437,'13774'),(1977,1438,'13775'),(1978,1439,'13776'),(1979,1440,'13777'),(1980,1441,'13778'),(1981,1442,'13780'),(1982,1443,'13782'),(1983,1444,'13783'),(1984,1445,'13784'),(1985,1446,'13786'),(1986,1447,'13787'),(1987,1448,'13788'),(1988,1449,'13790'),(1989,1450,'13794'),(1990,1451,'13795'),(1991,1452,'13796'),(1992,1453,'13797'),(1993,1454,'13801'),(1994,1455,'13802'),(1995,1456,'13803'),(1996,1457,'13804'),(1997,1458,'13806'),(1998,1459,'13807'),(1999,1460,'13808'),(2000,1461,'13809'),(2001,1462,'13810'),(2002,1463,'13811'),(2003,1464,'13812'),(2004,1465,'13813'),(2005,1466,'13814'),(2006,1467,'13815'),(2007,1468,'13820'),(2008,1469,'13825'),(2009,1470,'13826'),(2010,1471,'13827'),(2011,1472,'13830'),(2012,1473,'13832'),(2013,1474,'13833'),(2014,1475,'13834'),(2015,1476,'13835'),(2016,1477,'13837'),(2017,1478,'13838'),(2018,1479,'13839'),(2019,1480,'13840'),(2020,1481,'13841'),(2021,1482,'13842'),(2022,1483,'13843'),(2023,1484,'13844'),(2024,1485,'13845'),(2025,1486,'13846'),(2026,1487,'13847'),(2027,1488,'13848'),(2028,1489,'13849'),(2029,1490,'13850'),(2030,1490,'13851'),(2031,1491,'13856'),(2032,1492,'13859'),(2033,1493,'13860'),(2034,1494,'13861'),(2035,1495,'13862'),(2036,1496,'13863'),(2037,1497,'13864'),(2038,1498,'13865'),(2039,1499,'13901'),(2040,1499,'13902'),(2041,1499,'13903'),(2042,1499,'13904'),(2043,1499,'13905'),(2044,1500,'14001'),(2045,1501,'14003'),(2046,1502,'14004'),(2047,1503,'14005'),(2048,1504,'14006'),(2049,1505,'14008'),(2050,1506,'14009'),(2051,1507,'14010'),(2052,1508,'14011'),(2053,1509,'14012'),(2054,1510,'14013'),(2055,1511,'14020'),(2056,1511,'14021'),(2057,1512,'14024'),(2058,1513,'14025'),(2059,1514,'14026'),(2060,1515,'14027'),(2061,1516,'14028'),(2062,1517,'14029'),(2063,1518,'14030'),(2064,1519,'14031'),(2065,1520,'14032'),(2066,1521,'14033'),(2067,1522,'14034'),(2068,1523,'14035'),(2069,1524,'14036'),(2070,1525,'14037'),(2071,1526,'14038'),(2072,1527,'14039'),(2073,1528,'14040'),(2074,1529,'14041'),(2075,1530,'14042'),(2076,1531,'14043'),(2077,1532,'14047'),(2078,1533,'14048'),(2079,1534,'14051'),(2080,1535,'14052'),(2081,1536,'14054'),(2082,1537,'14055'),(2083,1538,'14056'),(2084,1539,'14057'),(2085,1540,'14058'),(2086,1541,'14059'),(2087,1542,'14060'),(2088,1543,'14061'),(2089,1544,'14062'),(2090,1545,'14063'),(2091,1546,'14065'),(2092,1547,'14066'),(2093,1548,'14067'),(2094,1549,'14068'),(2095,1550,'14069'),(2096,1551,'14070'),(2097,1552,'14072'),(2098,1553,'14075'),(2099,1554,'14080'),(2100,1555,'14081'),(2101,1556,'14082'),(2102,1557,'14083'),(2103,1558,'14085'),(2104,1559,'14086'),(2105,1560,'14091'),(2106,1561,'14092'),(2107,1562,'14094'),(2108,1562,'14095'),(2109,1563,'14098'),(2110,1564,'14101'),(2111,1565,'14102'),(2112,1566,'14103'),(2113,1567,'14105'),(2114,1568,'14107'),(2115,1569,'14108'),(2116,1570,'14109'),(2117,1571,'14110'),(2118,1572,'14111'),(2119,1573,'14112'),(2120,1574,'14113'),(2121,1575,'14120'),(2122,1576,'14125'),(2123,1577,'14126'),(2124,1578,'14127'),(2125,1579,'14129'),(2126,1580,'14130'),(2127,1581,'14131'),(2128,1582,'14132'),(2129,1583,'14133'),(2130,1584,'14134'),(2131,1585,'14135'),(2132,1586,'14136'),(2133,1587,'14138'),(2134,1588,'14139'),(2135,1589,'14140'),(2136,1590,'14141'),(2137,1591,'14143'),(2138,1592,'14144'),(2139,1593,'14145'),(2140,1594,'14150'),(2141,1594,'14151'),(2142,1595,'14166'),(2143,1596,'14167'),(2144,1597,'14168'),(2145,1598,'14169'),(2146,1599,'14170'),(2147,1600,'14171'),(2148,1601,'14172'),(2149,1602,'14173'),(2150,1603,'14174'),(2151,1604,'14201'),(2152,1604,'14202'),(2153,1604,'14203'),(2154,1604,'14204'),(2155,1604,'14205'),(2156,1604,'14206'),(2157,1604,'14207'),(2158,1604,'14208'),(2159,1604,'14209'),(2160,1604,'14210'),(2161,1604,'14211'),(2162,1604,'14212'),(2163,1604,'14213'),(2164,1604,'14214'),(2165,1604,'14215'),(2166,1604,'14216'),(2167,1604,'14217'),(2168,1604,'14218'),(2169,1604,'14219'),(2170,1604,'14220'),(2171,1604,'14221'),(2172,1604,'14222'),(2173,1604,'14223'),(2174,1604,'14224'),(2175,1604,'14225'),(2176,1604,'14226'),(2177,1604,'14227'),(2178,1604,'14228'),(2179,1604,'14231'),(2180,1604,'14233'),(2181,1604,'14240'),(2182,1604,'14241'),(2183,1604,'14260'),(2184,1604,'14261'),(2185,1604,'14263'),(2186,1604,'14264'),(2187,1604,'14265'),(2188,1604,'14267'),(2189,1604,'14269'),(2190,1604,'14270'),(2191,1604,'14272'),(2192,1604,'14273'),(2193,1604,'14276'),(2194,1604,'14280'),(2195,1605,'14301'),(2196,1605,'14302'),(2197,1605,'14303'),(2198,1605,'14304'),(2199,1605,'14305'),(2200,1606,'14410'),(2201,1607,'14411'),(2202,1608,'14413'),(2203,1609,'14414'),(2204,1610,'14415'),(2205,1611,'14416'),(2206,1612,'14418'),(2207,1613,'14420'),(2208,1614,'14422'),(2209,1615,'14423'),(2210,1616,'14424'),(2211,1617,'14425'),(2212,1618,'14427'),(2213,1619,'14428'),(2214,1620,'14429'),(2215,1621,'14430'),(2216,1622,'14432'),(2217,1623,'14433'),(2218,1624,'14435'),(2219,1625,'14437'),(2220,1626,'14441'),(2221,1627,'14443'),(2222,1628,'14445'),(2223,1629,'14449'),(2224,1630,'14450'),(2225,1631,'14452'),(2226,1632,'14453'),(2227,1633,'14454'),(2228,1634,'14456'),(2229,1635,'14461'),(2230,1636,'14462'),(2231,1637,'14463'),(2232,1638,'14464'),(2233,1639,'14466'),(2234,1640,'14467'),(2235,1641,'14468'),(2236,1642,'14469'),(2237,1643,'14470'),(2238,1644,'14471'),(2239,1645,'14472'),(2240,1646,'14475'),(2241,1647,'14476'),(2242,1648,'14477'),(2243,1649,'14478'),(2244,1650,'14479'),(2245,1651,'14480'),(2246,1652,'14481'),(2247,1653,'14482'),(2248,1654,'14485'),(2249,1655,'14486'),(2250,1656,'14487'),(2251,1657,'14488'),(2252,1658,'14489'),(2253,1659,'14502'),(2254,1660,'14504'),(2255,1661,'14505'),(2256,1662,'14506'),(2257,1663,'14507'),(2258,1664,'14508'),(2259,1665,'14510'),(2260,1666,'14511'),(2261,1667,'14512'),(2262,1668,'14513'),(2263,1669,'14514'),(2264,1670,'14515'),(2265,1671,'14516'),(2266,1672,'14517'),(2267,1673,'14518'),(2268,1674,'14519'),(2269,1675,'14520'),(2270,1676,'14521'),(2271,1677,'14522'),(2272,1678,'14525'),(2273,1679,'14526'),(2274,1680,'14527'),(2275,1681,'14529'),(2276,1682,'14530'),(2277,1683,'14532'),(2278,1684,'14533'),(2279,1685,'14534'),(2280,1686,'14536'),(2281,1687,'14537'),(2282,1688,'14538'),(2283,1689,'14539'),(2284,1690,'14541'),(2285,1691,'14542'),(2286,1692,'14543'),(2287,1693,'14544'),(2288,1694,'14545'),(2289,1695,'14546'),(2290,1696,'14547'),(2291,1697,'14548'),(2292,1698,'14549'),(2293,1699,'14550'),(2294,1700,'14551'),(2295,1701,'14555'),(2296,1702,'14556'),(2297,1703,'14557'),(2298,1704,'14558'),(2299,1705,'14559'),(2300,1706,'14560'),(2301,1707,'14561'),(2302,1708,'14563'),(2303,1709,'14564'),(2304,1710,'14568'),(2305,1711,'14569'),(2306,1712,'14571'),(2307,1713,'14572'),(2308,1714,'14580'),(2309,1715,'14585'),(2310,1716,'14586'),(2311,1717,'14588'),(2312,1718,'14589'),(2313,1719,'14590'),(2314,1720,'14591'),(2315,1721,'14592'),(2316,1722,'14601'),(2317,1722,'14602'),(2318,1722,'14603'),(2319,1722,'14604'),(2320,1722,'14605'),(2321,1722,'14606'),(2322,1722,'14607'),(2323,1722,'14608'),(2324,1722,'14609'),(2325,1722,'14610'),(2326,1722,'14611'),(2327,1722,'14612'),(2328,1722,'14613'),(2329,1722,'14614'),(2330,1722,'14615'),(2331,1722,'14616'),(2332,1722,'14617'),(2333,1722,'14618'),(2334,1722,'14619'),(2335,1722,'14620'),(2336,1722,'14621'),(2337,1722,'14622'),(2338,1722,'14623'),(2339,1722,'14624'),(2340,1722,'14625'),(2341,1722,'14626'),(2342,1722,'14627'),(2343,1722,'14638'),(2344,1722,'14639'),(2345,1722,'14642'),(2346,1722,'14643'),(2347,1722,'14644'),(2348,1722,'14645'),(2349,1722,'14646'),(2350,1722,'14647'),(2351,1722,'14649'),(2352,1722,'14650'),(2353,1722,'14651'),(2354,1722,'14652'),(2355,1722,'14653'),(2356,1722,'14660'),(2357,1722,'14664'),(2358,1722,'14673'),(2359,1722,'14683'),(2360,1722,'14692'),(2361,1722,'14694'),(2362,1723,'14701'),(2363,1723,'14702'),(2364,1723,'14703'),(2365,1723,'14704'),(2366,1724,'14706'),(2367,1725,'14707'),(2368,1726,'14708'),(2369,1727,'14709'),(2370,1728,'14710'),(2371,1729,'14711'),(2372,1730,'14712'),(2373,1731,'14714'),(2374,1732,'14715'),(2375,1733,'14716'),(2376,1734,'14717'),(2377,1735,'14718'),(2378,1736,'14719'),(2379,1737,'14720'),(2380,1738,'14721'),(2381,1739,'14722'),(2382,1740,'14723'),(2383,1741,'14724'),(2384,1742,'14726'),(2385,1743,'14727'),(2386,1744,'14728'),(2387,1745,'14729'),(2388,1746,'14730'),(2389,1747,'14731'),(2390,1748,'14732'),(2391,1749,'14733'),(2392,1750,'14735'),(2393,1751,'14736'),(2394,1752,'14737'),(2395,1753,'14738'),(2396,1754,'14739'),(2397,1755,'14740'),(2398,1756,'14741'),(2399,1757,'14742'),(2400,1758,'14743'),(2401,1759,'14744'),(2402,1760,'14745'),(2403,1761,'14747'),(2404,1762,'14748'),(2405,1763,'14750'),(2406,1764,'14751'),(2407,1765,'14752'),(2408,1766,'14753'),(2409,1767,'14754'),(2410,1768,'14755'),(2411,1769,'14756'),(2412,1770,'14757'),(2413,1771,'14758'),(2414,1772,'14760'),(2415,1773,'14766'),(2416,1774,'14767'),(2417,1775,'14769'),(2418,1776,'14770'),(2419,1777,'14772'),(2420,1778,'14774'),(2421,1779,'14775'),(2422,1780,'14776'),(2423,1781,'14777'),(2424,1782,'14778'),(2425,1783,'14779'),(2426,1784,'14781'),(2427,1785,'14782'),(2428,1786,'14783'),(2429,1787,'14784'),(2430,1788,'14785'),(2431,1789,'14786'),(2432,1790,'14787'),(2433,1791,'14788'),(2434,1792,'14801'),(2435,1793,'14802'),(2436,1794,'14803'),(2437,1795,'14804'),(2438,1796,'14805'),(2439,1797,'14806'),(2440,1798,'14807'),(2441,1799,'14808'),(2442,1800,'14809'),(2443,1801,'14810'),(2444,1802,'14812'),(2445,1803,'14813'),(2446,1804,'14814'),(2447,1805,'14815'),(2448,1806,'14816'),(2449,1807,'14817'),(2450,1808,'14818'),(2451,1809,'14819'),(2452,1810,'14820'),(2453,1811,'14821'),(2454,1812,'14822'),(2455,1813,'14823'),(2456,1814,'14824'),(2457,1815,'14825'),(2458,1816,'14826'),(2459,1817,'14827'),(2460,1818,'14830'),(2461,1818,'14831'),(2462,1819,'14836'),(2463,1820,'14837'),(2464,1821,'14838'),(2465,1822,'14839'),(2466,1823,'14840'),(2467,1824,'14841'),(2468,1825,'14842'),(2469,1826,'14843'),(2470,1827,'14844'),(2471,1827,'14845'),(2472,1828,'14846'),(2473,1829,'14847'),(2474,1830,'14850'),(2475,1830,'14851'),(2476,1830,'14852'),(2477,1830,'14853'),(2478,1831,'14854'),(2479,1832,'14855'),(2480,1833,'14856'),(2481,1834,'14857'),(2482,1835,'14858'),(2483,1836,'14859'),(2484,1837,'14860'),(2485,1838,'14861'),(2486,1839,'14863'),(2487,1840,'14864'),(2488,1841,'14865'),(2489,1842,'14867'),(2490,1843,'14869'),(2491,1844,'14870'),(2492,1845,'14871'),(2493,1846,'14872'),(2494,1847,'14873'),(2495,1848,'14874'),(2496,1849,'14876'),(2497,1850,'14877'),(2498,1851,'14878'),(2499,1852,'14879'),(2500,1853,'14880'),(2501,1854,'14881'),(2502,1855,'14882'),(2503,1856,'14883'),(2504,1857,'14884'),(2505,1858,'14885'),(2506,1859,'14886'),(2507,1860,'14887'),(2508,1861,'14889'),(2509,1862,'14891'),(2510,1863,'14892'),(2511,1864,'14893'),(2512,1865,'14894'),(2513,1866,'14895'),(2514,1867,'14897'),(2515,1868,'14898'),(2516,1869,'14901'),(2517,1869,'14902'),(2518,1869,'14903'),(2519,1869,'14904'),(2520,1869,'14905'),(2521,1869,'14925'),(2522,1870,'00601'),(2523,1871,'00602'),(2524,1872,'00603'),(2525,1872,'00604'),(2526,1872,'00605'),(2527,1873,'00606'),(2528,1874,'00610'),(2529,1875,'00611'),(2530,1876,'00612'),(2531,1876,'00613'),(2532,1876,'00614'),(2533,1877,'00616'),(2534,1878,'00617'),(2535,1879,'00622'),(2536,1880,'00623'),(2537,1881,'00624'),(2538,1882,'00627'),(2539,1883,'00631'),(2540,1884,'00636'),(2541,1885,'00637'),(2542,1886,'00638'),(2543,1887,'00641'),(2544,1888,'00646'),(2545,1889,'00647'),(2546,1890,'00650'),(2547,1891,'00652'),(2548,1892,'00653'),(2549,1893,'00656'),(2550,1894,'00659'),(2551,1895,'00660'),(2552,1896,'00662'),(2553,1897,'00664'),(2554,1898,'00667'),(2555,1899,'00669'),(2556,1900,'00670'),(2557,1901,'00674'),(2558,1902,'00676'),(2559,1903,'00677'),(2560,1904,'00678'),(2561,1905,'00680'),(2562,1905,'00681'),(2563,1905,'00682'),(2564,1906,'00683'),(2565,1907,'00685'),(2566,1908,'00687'),(2567,1909,'00688'),(2568,1910,'00690'),(2569,1911,'00692'),(2570,1912,'00693'),(2571,1912,'00694'),(2572,1913,'00698'),(2573,1914,'00703'),(2574,1915,'00704'),(2575,1916,'00705'),(2576,1917,'00707'),(2577,1918,'00714'),(2578,1919,'00715'),(2579,1920,'00716'),(2580,1920,'00717'),(2581,1920,'00728'),(2582,1920,'00730'),(2583,1920,'00731'),(2584,1920,'00732'),(2585,1920,'00733'),(2586,1920,'00734'),(2587,1921,'00718'),(2588,1922,'00719'),(2589,1923,'00720'),(2590,1924,'00721'),(2591,1925,'00723'),(2592,1926,'00725'),(2593,1926,'00726'),(2594,1927,'00729'),(2595,1928,'00735'),(2596,1929,'00736'),(2597,1929,'00737'),(2598,1930,'00738'),(2599,1931,'00739'),(2600,1932,'00740'),(2601,1933,'00741'),(2602,1934,'00742'),(2603,1935,'00744'),(2604,1936,'00745'),(2605,1937,'00751'),(2606,1938,'00754'),(2607,1939,'00757'),(2608,1940,'00765'),(2609,1941,'00766'),(2610,1942,'00767'),(2611,1943,'00769'),(2612,1944,'00771'),(2613,1945,'00772'),(2614,1946,'00773'),(2615,1947,'00775'),(2616,1948,'00777'),(2617,1949,'00778'),(2618,1950,'00780'),(2619,1951,'00782'),(2620,1952,'00783'),(2621,1953,'00784'),(2622,1953,'00785'),(2623,1954,'00786'),(2624,1955,'00791'),(2625,1955,'00792'),(2626,1956,'00794'),(2627,1957,'00795'),(2628,1958,'00901'),(2629,1958,'00902'),(2630,1958,'00906'),(2631,1958,'00907'),(2632,1958,'00908'),(2633,1958,'00909'),(2634,1958,'00910'),(2635,1958,'00911'),(2636,1958,'00912'),(2637,1958,'00913'),(2638,1958,'00914'),(2639,1958,'00915'),(2640,1958,'00916'),(2641,1958,'00917'),(2642,1958,'00918'),(2643,1958,'00919'),(2644,1958,'00920'),(2645,1958,'00921'),(2646,1958,'00922'),(2647,1958,'00923'),(2648,1958,'00924'),(2649,1958,'00925'),(2650,1958,'00926'),(2651,1958,'00927'),(2652,1958,'00928'),(2653,1958,'00929'),(2654,1958,'00930'),(2655,1958,'00931'),(2656,1958,'00933'),(2657,1958,'00935'),(2658,1958,'00936'),(2659,1958,'00937'),(2660,1958,'00938'),(2661,1958,'00939'),(2662,1958,'00940'),(2663,1958,'00955'),(2664,1958,'00975'),(2665,1959,'00934'),(2666,1960,'00949'),(2667,1960,'00950'),(2668,1960,'00951'),(2669,1961,'00952'),(2670,1962,'00953'),(2671,1962,'00954'),(2672,1963,'00956'),(2673,1963,'00957'),(2674,1963,'00958'),(2675,1963,'00959'),(2676,1963,'00960'),(2677,1963,'00961'),(2678,1964,'00962'),(2679,1964,'00963'),(2680,1965,'00965'),(2681,1965,'00966'),(2682,1965,'00968'),(2683,1965,'00969'),(2684,1965,'00970'),(2685,1965,'00971'),(2686,1966,'00976'),(2687,1966,'00977'),(2688,1967,'00978'),(2689,1968,'00979'),(2690,1968,'00981'),(2691,1968,'00982'),(2692,1968,'00983'),(2693,1968,'00984'),(2694,1968,'00985'),(2695,1968,'00986'),(2696,1968,'00987'),(2697,1968,'00988'),(2698,1969,'00801'),(2699,1969,'00802'),(2700,1969,'00803'),(2701,1969,'00804'),(2702,1969,'00805'),(2703,1970,'00820'),(2704,1970,'00821'),(2705,1970,'00822'),(2706,1970,'00823'),(2707,1970,'00824'),(2708,1971,'00830'),(2709,1971,'00831'),(2710,1972,'00840'),(2711,1972,'00841'),(2712,1973,'00850'),(2713,1973,'00851'),(2714,1974,'01001'),(2715,1975,'01002'),(2716,1975,'01003'),(2717,1975,'01004'),(2718,1976,'01005'),(2719,1977,'01007'),(2720,1978,'01008'),(2721,1979,'01009'),(2722,1980,'01010'),(2723,1981,'01011'),(2724,1982,'01012'),(2725,1983,'01013'),(2726,1983,'01014'),(2727,1983,'01020'),(2728,1983,'01021'),(2729,1983,'01022'),(2730,1984,'01026'),(2731,1985,'01027'),(2732,1986,'01028'),(2733,1987,'01029'),(2734,1988,'01030'),(2735,1989,'01031'),(2736,1990,'01032'),(2737,1991,'01033'),(2738,1992,'01034'),(2739,1993,'01035'),(2740,1994,'01036'),(2741,1995,'01037'),(2742,1996,'01038'),(2743,1997,'01039'),(2744,1998,'01040'),(2745,1998,'01041'),(2746,1999,'01050'),(2747,2000,'01053'),(2748,2001,'01054'),(2749,2002,'01056'),(2750,2003,'01057'),(2751,2004,'01059'),(2752,2005,'01060'),(2753,2005,'01061'),(2754,2005,'01063'),(2755,2006,'01062'),(2756,2007,'01066'),(2757,2008,'01068'),(2758,2009,'01069'),(2759,2010,'01070'),(2760,2011,'01071'),(2761,2012,'01072'),(2762,2013,'01073'),(2763,2014,'01074'),(2764,2015,'01075'),(2765,2016,'01077'),(2766,2017,'01079'),(2767,2018,'01080'),(2768,2019,'01081'),(2769,2020,'01082'),(2770,2021,'01083'),(2771,2022,'01084'),(2772,2023,'01085'),(2773,2023,'01086'),(2774,2024,'01088'),(2775,2025,'01089'),(2776,2025,'01090'),(2777,2026,'01092'),(2778,2027,'01093'),(2779,2028,'01094'),(2780,2029,'01095'),(2781,2030,'01096'),(2782,2031,'01097'),(2783,2032,'01098'),(2784,2033,'01101'),(2785,2033,'01102'),(2786,2033,'01103'),(2787,2033,'01104'),(2788,2033,'01105'),(2789,2033,'01107'),(2790,2033,'01108'),(2791,2033,'01109'),(2792,2033,'01111'),(2793,2033,'01114'),(2794,2033,'01115'),(2795,2033,'01118'),(2796,2033,'01119'),(2797,2033,'01128'),(2798,2033,'01129'),(2799,2033,'01133'),(2800,2033,'01138'),(2801,2033,'01139'),(2802,2033,'01144'),(2803,2033,'01152'),(2804,2033,'01199'),(2805,2034,'01106'),(2806,2034,'01116'),(2807,2035,'01151'),(2808,2036,'01201'),(2809,2036,'01202'),(2810,2036,'01203'),(2811,2037,'01220'),(2812,2038,'01222'),(2813,2039,'01223'),(2814,2040,'01224'),(2815,2041,'01225'),(2816,2042,'01226'),(2817,2042,'01227'),(2818,2043,'01229'),(2819,2044,'01230'),(2820,2045,'01235'),(2821,2046,'01236'),(2822,2047,'01237'),(2823,2048,'01238'),(2824,2049,'01240'),(2825,2050,'01242'),(2826,2051,'01243'),(2827,2052,'01244'),(2828,2053,'01245'),(2829,2054,'01247'),(2830,2055,'01252'),(2831,2056,'01253'),(2832,2057,'01254'),(2833,2058,'01255'),(2834,2059,'01256'),(2835,2060,'01257'),(2836,2061,'01258'),(2837,2062,'01259'),(2838,2063,'01260'),(2839,2064,'01262'),(2840,2064,'01263'),(2841,2065,'01264'),(2842,2066,'01266'),(2843,2067,'01267'),(2844,2068,'01270'),(2845,2069,'01301'),(2846,2069,'01302'),(2847,2070,'01330'),(2848,2071,'01331'),(2849,2072,'01337'),(2850,2073,'01338'),(2851,2074,'01339'),(2852,2075,'01340'),(2853,2076,'01341'),(2854,2077,'01342'),(2855,2078,'01343'),(2856,2079,'01344'),(2857,2080,'01346'),(2858,2081,'01347'),(2859,2082,'01349'),(2860,2082,'01376'),(2861,2083,'01350'),(2862,2084,'01351'),(2863,2085,'01354'),(2864,2085,'01360'),(2865,2086,'01355'),(2866,2087,'01364'),(2867,2088,'01366'),(2868,2089,'01367'),(2869,2090,'01368'),(2870,2091,'01369'),(2871,2092,'01370'),(2872,2093,'01373'),(2873,2094,'01375'),(2874,2095,'01378'),(2875,2096,'01379'),(2876,2097,'01380'),(2877,2098,'01420'),(2878,2099,'01430'),(2879,2100,'01431'),(2880,2101,'01432'),(2881,2102,'01436'),(2882,2103,'01438'),(2883,2104,'01440'),(2884,2104,'01441'),(2885,2105,'01450'),(2886,2105,'01470'),(2887,2105,'01471'),(2888,2106,'01451'),(2889,2107,'01452'),(2890,2108,'01453'),(2891,2109,'01460'),(2892,2110,'01462'),(2893,2111,'01463'),(2894,2112,'01464'),(2895,2113,'01467'),(2896,2114,'01468'),(2897,2115,'01469'),(2898,2116,'01472'),(2899,2117,'01473'),(2900,2118,'01474'),(2901,2119,'01475'),(2902,2120,'01477'),(2903,2121,'01501'),(2904,2122,'01503'),(2905,2123,'01504'),(2906,2124,'01505'),(2907,2125,'01506'),(2908,2126,'01507'),(2909,2127,'01508'),(2910,2128,'01509'),(2911,2129,'01510'),(2912,2130,'01515'),(2913,2131,'01516'),(2914,2132,'01517'),(2915,2133,'01518'),(2916,2134,'01519'),(2917,2135,'01520'),(2918,2136,'01521'),(2919,2137,'01522'),(2920,2138,'01523'),(2921,2139,'01524'),(2922,2140,'01525'),(2923,2141,'01526'),(2924,2142,'01527'),(2925,2143,'01529'),(2926,2144,'01531'),(2927,2145,'01532'),(2928,2146,'01534'),(2929,2147,'01535'),(2930,2148,'01536'),(2931,2149,'01537'),(2932,2150,'01538'),(2933,2151,'01540'),(2934,2152,'01541'),(2935,2153,'01542'),(2936,2154,'01543'),(2937,2155,'01545'),(2938,2155,'01546'),(2939,2156,'01550'),(2940,2157,'01560'),(2941,2158,'01561'),(2942,2159,'01562'),(2943,2160,'01564'),(2944,2161,'01566'),(2945,2162,'01568'),(2946,2163,'01569'),(2947,2164,'01570'),(2948,2165,'01571'),(2949,2166,'01580'),(2950,2166,'01581'),(2951,2166,'01582'),(2952,2167,'01583'),(2953,2168,'01585'),(2954,2169,'01586'),(2955,2170,'01588'),(2956,2171,'01590'),(2957,2172,'01601'),(2958,2172,'01602'),(2959,2172,'01603'),(2960,2172,'01604'),(2961,2172,'01605'),(2962,2172,'01606'),(2963,2172,'01607'),(2964,2172,'01608'),(2965,2172,'01609'),(2966,2172,'01610'),(2967,2172,'01613'),(2968,2172,'01614'),(2969,2172,'01615'),(2970,2172,'01653'),(2971,2172,'01654'),(2972,2172,'01655'),(2973,2173,'01611'),(2974,2174,'01612'),(2975,2175,'01701'),(2976,2175,'01702'),(2977,2175,'01703'),(2978,2175,'01704'),(2979,2175,'01705'),(2980,2176,'01718'),(2981,2177,'01719'),(2982,2178,'01720'),(2983,2179,'01721'),(2984,2180,'01730'),(2985,2181,'01731'),(2986,2182,'01740'),(2987,2183,'01741'),(2988,2184,'01742'),(2989,2185,'01745'),(2990,2186,'01746'),(2991,2187,'01747'),(2992,2188,'01748'),(2993,2189,'01749'),(2994,2190,'01752'),(2995,2191,'01754'),(2996,2192,'01756'),(2997,2193,'01757'),(2998,2194,'01760'),(2999,2195,'01770'),(3000,2196,'01772'),(3001,2197,'01773'),(3002,2198,'01775'),(3003,2199,'01776'),(3004,2200,'01778'),(3005,2201,'01784'),(3006,2202,'01801'),(3007,2202,'01806'),(3008,2202,'01807'),(3009,2202,'01808'),(3010,2202,'01813'),(3011,2202,'01815'),(3012,2202,'01888'),(3013,2203,'01803'),(3014,2203,'01805'),(3015,2204,'01810'),(3016,2204,'01812'),(3017,2204,'01899'),(3018,2204,'05501'),(3019,2204,'05544'),(3020,2205,'01821'),(3021,2205,'01822'),(3022,2206,'01824'),(3023,2207,'01826'),(3024,2208,'01827'),(3025,2209,'01830'),(3026,2209,'01831'),(3027,2209,'01832'),(3028,2209,'01835'),(3029,2210,'01833'),(3030,2211,'01834'),(3031,2212,'01840'),(3032,2212,'01841'),(3033,2212,'01842'),(3034,2212,'01843'),(3035,2213,'01844'),(3036,2214,'01845'),(3037,2215,'01850'),(3038,2215,'01851'),(3039,2215,'01852'),(3040,2215,'01853'),(3041,2215,'01854'),(3042,2216,'01860'),(3043,2217,'01862'),(3044,2218,'01863'),(3045,2219,'01864'),(3046,2219,'01889'),(3047,2220,'01865'),(3048,2221,'01866'),(3049,2222,'01867'),(3050,2223,'01876'),(3051,2224,'01879'),(3052,2225,'01880'),(3053,2226,'01885'),(3054,2227,'01886'),(3055,2228,'01887'),(3056,2229,'01890'),(3057,2230,'01901'),(3058,2230,'01902'),(3059,2230,'01903'),(3060,2230,'01904'),(3061,2230,'01905'),(3062,2230,'01910'),(3063,2231,'01906'),(3064,2232,'01907'),(3065,2233,'01908'),(3066,2234,'01913'),(3067,2235,'01915'),(3068,2236,'01921'),(3069,2237,'01922'),(3070,2238,'01923'),(3071,2239,'01929'),(3072,2240,'01930'),(3073,2240,'01931'),(3074,2241,'01936'),(3075,2242,'01937'),(3076,2243,'01938'),(3077,2244,'01940'),(3078,2245,'01944'),(3079,2246,'01945'),(3080,2247,'01947'),(3081,2247,'01970'),(3082,2247,'01971'),(3083,2248,'01949'),(3084,2249,'01950'),(3085,2250,'01951'),(3086,2251,'01952'),(3087,2252,'01960'),(3088,2252,'01961'),(3089,2253,'01965'),(3090,2254,'01966'),(3091,2255,'01969'),(3092,2256,'01982'),(3093,2257,'01983'),(3094,2258,'01984'),(3095,2259,'01985'),(3096,2260,'02018'),(3097,2261,'02019'),(3098,2262,'02020'),(3099,2263,'02021'),(3100,2264,'02025'),(3101,2265,'02026'),(3102,2265,'02027'),(3103,2266,'02030'),(3104,2267,'02031'),(3105,2268,'02032'),(3106,2269,'02035'),(3107,2270,'02038'),(3108,2271,'02040'),(3109,2272,'02041'),(3110,2273,'02043'),(3111,2273,'02044'),(3112,2274,'02045'),(3113,2275,'02047'),(3114,2276,'02048'),(3115,2277,'02050'),(3116,2278,'02051'),(3117,2279,'02052'),(3118,2280,'02053'),(3119,2281,'02054'),(3120,2282,'02055'),(3121,2283,'02056'),(3122,2284,'02059'),(3123,2285,'02060'),(3124,2286,'02061'),(3125,2287,'02062'),(3126,2288,'02065'),(3127,2289,'02066'),(3128,2290,'02067'),(3129,2291,'02070'),(3130,2292,'02071'),(3131,2293,'02072'),(3132,2294,'02081'),(3133,2295,'02090'),(3134,2296,'02093'),(3135,2297,'02101'),(3136,2297,'02102'),(3137,2297,'02103'),(3138,2297,'02104'),(3139,2297,'02105'),(3140,2297,'02106'),(3141,2297,'02107'),(3142,2297,'02108'),(3143,2297,'02109'),(3144,2297,'02110'),(3145,2297,'02111'),(3146,2297,'02112'),(3147,2297,'02113'),(3148,2297,'02114'),(3149,2297,'02115'),(3150,2297,'02116'),(3151,2297,'02117'),(3152,2297,'02118'),(3153,2297,'02119'),(3154,2297,'02120'),(3155,2297,'02121'),(3156,2297,'02122'),(3157,2297,'02123'),(3158,2297,'02124'),(3159,2297,'02125'),(3160,2297,'02127'),(3161,2297,'02128'),(3162,2297,'02133'),(3163,2297,'02163'),(3164,2297,'02196'),(3165,2297,'02199'),(3166,2297,'02201'),(3167,2297,'02202'),(3168,2297,'02203'),(3169,2297,'02204'),(3170,2297,'02205'),(3171,2297,'02206'),(3172,2297,'02207'),(3173,2297,'02208'),(3174,2297,'02209'),(3175,2297,'02210'),(3176,2297,'02211'),(3177,2297,'02212'),(3178,2297,'02215'),(3179,2297,'02216'),(3180,2297,'02217'),(3181,2297,'02222'),(3182,2297,'02241'),(3183,2297,'02266'),(3184,2297,'02283'),(3185,2297,'02284'),(3186,2297,'02293'),(3187,2297,'02295'),(3188,2297,'02297'),(3189,2298,'02126'),(3190,2299,'02129'),(3191,2300,'02130'),(3192,2301,'02131'),(3193,2302,'02132'),(3194,2303,'02134'),(3195,2304,'02135'),(3196,2305,'02136'),(3197,2306,'02137'),(3198,2307,'02138'),(3199,2307,'02139'),(3200,2307,'02140'),(3201,2307,'02141'),(3202,2307,'02142'),(3203,2307,'02238'),(3204,2307,'02239'),(3205,2308,'02143'),(3206,2308,'02144'),(3207,2308,'02145'),(3208,2309,'02146'),(3209,2309,'02445'),(3210,2309,'02446'),(3211,2310,'02147'),(3212,2310,'02447'),(3213,2311,'02148'),(3214,2312,'02149'),(3215,2313,'02150'),(3216,2314,'02151'),(3217,2315,'02152'),(3218,2316,'02153'),(3219,2316,'02155'),(3220,2317,'02154'),(3221,2317,'02254'),(3222,2317,'02451'),(3223,2317,'02452'),(3224,2317,'02453'),(3225,2317,'02454'),(3226,2318,'02156'),(3227,2319,'02157'),(3228,2319,'02457'),(3229,2320,'02158'),(3230,2320,'02159'),(3231,2320,'02160'),(3232,2320,'02161'),(3233,2320,'02162'),(3234,2320,'02164'),(3235,2320,'02165'),(3236,2320,'02195'),(3237,2320,'02258'),(3238,2320,'02458'),(3239,2321,'02166'),(3240,2321,'02466'),(3241,2322,'02167'),(3242,2322,'02467'),(3243,2323,'02168'),(3244,2323,'02468'),(3245,2324,'02169'),(3246,2324,'02170'),(3247,2324,'02171'),(3248,2324,'02269'),(3249,2325,'02172'),(3250,2325,'02272'),(3251,2325,'02277'),(3252,2325,'02471'),(3253,2325,'02472'),(3254,2325,'02477'),(3255,2326,'02173'),(3256,2326,'02420'),(3257,2326,'02421'),(3258,2327,'02174'),(3259,2327,'02474'),(3260,2327,'02476'),(3261,2328,'02175'),(3262,2328,'02475'),(3263,2329,'02176'),(3264,2329,'02177'),(3265,2330,'02178'),(3266,2330,'02478'),(3267,2331,'02179'),(3268,2331,'02479'),(3269,2332,'02180'),(3270,2333,'02181'),(3271,2333,'02482'),(3272,2334,'02184'),(3273,2334,'02185'),(3274,2335,'02186'),(3275,2336,'02187'),(3276,2337,'02188'),(3277,2337,'02189'),(3278,2337,'02190'),(3279,2337,'02191'),(3280,2338,'02192'),(3281,2338,'02194'),(3282,2338,'02492'),(3283,2338,'02494'),(3284,2339,'02193'),(3285,2339,'02493'),(3286,2340,'02301'),(3287,2340,'02302'),(3288,2340,'02303'),(3289,2340,'02304'),(3290,2340,'02305'),(3291,2340,'02401'),(3292,2340,'02402'),(3293,2340,'02403'),(3294,2340,'02404'),(3295,2340,'02405'),(3296,2341,'02322'),(3297,2342,'02324'),(3298,2342,'02325'),(3299,2343,'02327'),(3300,2344,'02330'),(3301,2345,'02331'),(3302,2345,'02332'),(3303,2346,'02333'),(3304,2347,'02334'),(3305,2348,'02337'),(3306,2349,'02338'),(3307,2350,'02339'),(3308,2351,'02341'),(3309,2352,'02343'),(3310,2353,'02344'),(3311,2353,'02346'),(3312,2353,'02348'),(3313,2353,'02349'),(3314,2354,'02345'),(3315,2355,'02347'),(3316,2356,'02350'),(3317,2357,'02351'),(3318,2358,'02355'),(3319,2359,'02356'),(3320,2359,'02357'),(3321,2360,'02358'),(3322,2361,'02359'),(3323,2362,'02360'),(3324,2362,'02361'),(3325,2362,'02362'),(3326,2363,'02364'),(3327,2364,'02366'),(3328,2365,'02367'),(3329,2366,'02368'),(3330,2367,'02370'),(3331,2368,'02375'),(3332,2369,'02379'),(3333,2370,'02381'),(3334,2371,'02382'),(3335,2372,'02456'),(3336,2373,'02459'),(3337,2374,'02460'),(3338,2375,'02461'),(3339,2376,'02462'),(3340,2377,'02464'),(3341,2378,'02465'),(3342,2379,'02481'),(3343,2380,'02495'),(3344,2381,'02532'),(3345,2381,'02542'),(3346,2382,'02534'),(3347,2383,'02535'),(3348,2384,'02536'),(3349,2385,'02537'),(3350,2386,'02538'),(3351,2387,'02539'),(3352,2388,'02540'),(3353,2388,'02541'),(3354,2389,'02543'),(3355,2390,'02552'),(3356,2391,'02553'),(3357,2392,'02554'),(3358,2392,'02584'),(3359,2393,'02556'),(3360,2394,'02557'),(3361,2395,'02558'),(3362,2396,'02559'),(3363,2397,'02561'),(3364,2398,'02562'),(3365,2399,'02563'),(3366,2400,'02564'),(3367,2401,'02565'),(3368,2402,'02568'),(3369,2402,'02573'),(3370,2403,'02571'),(3371,2404,'02574'),(3372,2405,'02575'),(3373,2406,'02576'),(3374,2407,'02601'),(3375,2408,'02630'),(3376,2409,'02631'),(3377,2410,'02632'),(3378,2410,'02634'),(3379,2410,'02636'),(3380,2411,'02633'),(3381,2412,'02635'),(3382,2413,'02637'),(3383,2414,'02638'),(3384,2415,'02639'),(3385,2416,'02641'),(3386,2417,'02642'),(3387,2418,'02643'),(3388,2419,'02644'),(3389,2420,'02645'),(3390,2421,'02646'),(3391,2422,'02647'),(3392,2423,'02648'),(3393,2424,'02649'),(3394,2425,'02650'),(3395,2426,'02651'),(3396,2427,'02652'),(3397,2428,'02653'),(3398,2429,'02655'),(3399,2430,'02657'),(3400,2431,'02659'),(3401,2432,'02660'),(3402,2433,'02661'),(3403,2434,'02662'),(3404,2435,'02663'),(3405,2436,'02664'),(3406,2437,'02666'),(3407,2438,'02667'),(3408,2439,'02668'),(3409,2440,'02669'),(3410,2441,'02670'),(3411,2442,'02671'),(3412,2443,'02672'),(3413,2444,'02673'),(3414,2445,'02675'),(3415,2446,'02702'),(3416,2447,'02703'),(3417,2448,'02712'),(3418,2449,'02713'),(3419,2450,'02714'),(3420,2451,'02715'),(3421,2452,'02717'),(3422,2453,'02718'),(3423,2454,'02719'),(3424,2455,'02720'),(3425,2455,'02721'),(3426,2455,'02722'),(3427,2455,'02723'),(3428,2455,'02724'),(3429,2456,'02725'),(3430,2456,'02726'),(3431,2457,'02738'),(3432,2458,'02739'),(3433,2459,'02740'),(3434,2459,'02741'),(3435,2459,'02742'),(3436,2459,'02744'),(3437,2459,'02745'),(3438,2459,'02746'),(3439,2460,'02743'),(3440,2461,'02747'),(3441,2462,'02748'),(3442,2463,'02760'),(3443,2463,'02761'),(3444,2464,'02762'),(3445,2465,'02763'),(3446,2466,'02764'),(3447,2467,'02766'),(3448,2468,'02767'),(3449,2469,'02768'),(3450,2470,'02769'),(3451,2471,'02770'),(3452,2472,'02771'),(3453,2473,'02777'),(3454,2474,'02779'),(3455,2475,'02780'),(3456,2475,'02783'),(3457,2476,'02790'),(3458,2477,'02791'),(3459,2478,'02801'),(3460,2479,'02802'),(3461,2480,'02804'),(3462,2481,'02806'),(3463,2482,'02807'),(3464,2483,'02808'),(3465,2484,'02809'),(3466,2485,'02812'),(3467,2486,'02813'),(3468,2487,'02814'),(3469,2488,'02815'),(3470,2489,'02816'),(3471,2490,'02817'),(3472,2491,'02818'),(3473,2492,'02822'),(3474,2493,'02823'),(3475,2494,'02824'),(3476,2495,'02825'),(3477,2496,'02826'),(3478,2497,'02827'),(3479,2498,'02828'),(3480,2499,'02829'),(3481,2500,'02830'),(3482,2501,'02831'),(3483,2502,'02832'),(3484,2503,'02833'),(3485,2504,'02835'),(3486,2505,'02836'),(3487,2506,'02837'),(3488,2507,'02838'),(3489,2508,'02839'),(3490,2509,'02840'),(3491,2509,'02841'),(3492,2510,'02842'),(3493,2511,'02852'),(3494,2511,'02854'),(3495,2512,'02857'),(3496,2513,'02858'),(3497,2514,'02859'),(3498,2515,'02860'),(3499,2515,'02861'),(3500,2515,'02862'),(3501,2516,'02863'),(3502,2517,'02864'),(3503,2518,'02865'),(3504,2519,'02871'),(3505,2520,'02872'),(3506,2521,'02873'),(3507,2522,'02874'),(3508,2523,'02875'),(3509,2524,'02876'),(3510,2525,'02877'),(3511,2526,'02878'),(3512,2527,'02879'),(3513,2527,'02880'),(3514,2528,'02881'),(3515,2529,'02882'),(3516,2530,'02883'),(3517,2531,'02885'),(3518,2532,'02886'),(3519,2532,'02887'),(3520,2532,'02888'),(3521,2532,'02889'),(3522,2533,'02891'),(3523,2534,'02892'),(3524,2535,'02893'),(3525,2536,'02894'),(3526,2537,'02895'),(3527,2538,'02896'),(3528,2539,'02898'),(3529,2540,'02901'),(3530,2540,'02902'),(3531,2540,'02903'),(3532,2540,'02904'),(3533,2540,'02905'),(3534,2540,'02906'),(3535,2540,'02907'),(3536,2540,'02908'),(3537,2540,'02909'),(3538,2540,'02912'),(3539,2540,'02918'),(3540,2540,'02940'),(3541,2541,'02910'),(3542,2541,'02920'),(3543,2541,'02921'),(3544,2542,'02911'),(3545,2543,'02914'),(3546,2544,'02915'),(3547,2545,'02916'),(3548,2546,'02917'),(3549,2547,'02919'),(3550,2548,'03901'),(3551,2549,'03902'),(3552,2550,'03903'),(3553,2551,'03904'),(3554,2552,'03905'),(3555,2553,'03906'),(3556,2554,'03907'),(3557,2555,'03908'),(3558,2556,'03909'),(3559,2557,'03910'),(3560,2558,'03911'),(3561,2559,'04001'),(3562,2560,'04002'),(3563,2561,'04003'),(3564,2562,'04004'),(3565,2563,'04005'),(3566,2563,'04007'),(3567,2564,'04006'),(3568,2565,'04008'),(3569,2566,'04009'),(3570,2567,'04010'),(3571,2568,'04011'),(3572,2569,'04013'),(3573,2570,'04014'),(3574,2571,'04015'),(3575,2572,'04016'),(3576,2573,'04017'),(3577,2574,'04019'),(3578,2575,'04020'),(3579,2576,'04021'),(3580,2577,'04022'),(3581,2578,'04024'),(3582,2579,'04027'),(3583,2580,'04028'),(3584,2581,'04029'),(3585,2582,'04030'),(3586,2583,'04032'),(3587,2583,'04033'),(3588,2583,'04034'),(3589,2584,'04037'),(3590,2585,'04038'),(3591,2586,'04039'),(3592,2587,'04040'),(3593,2588,'04041'),(3594,2589,'04042'),(3595,2590,'04043'),(3596,2591,'04046'),(3597,2592,'04047'),(3598,2593,'04048'),(3599,2594,'04049'),(3600,2595,'04050'),(3601,2596,'04051'),(3602,2597,'04053'),(3603,2598,'04054'),(3604,2599,'04055'),(3605,2600,'04056'),(3606,2601,'04057'),(3607,2602,'04061'),(3608,2603,'04062'),(3609,2604,'04063'),(3610,2605,'04064'),(3611,2606,'04066'),(3612,2607,'04068'),(3613,2608,'04069'),(3614,2609,'04070'),(3615,2609,'04074'),(3616,2610,'04071'),(3617,2611,'04072'),(3618,2612,'04073'),(3619,2613,'04075'),(3620,2614,'04076'),(3621,2615,'04077'),(3622,2616,'04078'),(3623,2617,'04079'),(3624,2618,'04081'),(3625,2619,'04082'),(3626,2620,'04083'),(3627,2621,'04084'),(3628,2622,'04085'),(3629,2623,'04086'),(3630,2624,'04087'),(3631,2625,'04088'),(3632,2626,'04090'),(3633,2627,'04091'),(3634,2628,'04092'),(3635,2628,'04098'),(3636,2629,'04093'),(3637,2630,'04094'),(3638,2631,'04095'),(3639,2632,'04096'),(3640,2633,'04097'),(3641,2634,'04101'),(3642,2634,'04102'),(3643,2634,'04103'),(3644,2634,'04104'),(3645,2634,'04109'),(3646,2634,'04112'),(3647,2634,'04122'),(3648,2634,'04123'),(3649,2634,'04124'),(3650,2635,'04105'),(3651,2636,'04106'),(3652,2636,'04116'),(3653,2637,'04107'),(3654,2638,'04108'),(3655,2639,'04110'),(3656,2640,'04210'),(3657,2640,'04211'),(3658,2640,'04212'),(3659,2641,'04216'),(3660,2642,'04217'),(3661,2643,'04219'),(3662,2644,'04220'),(3663,2645,'04221'),(3664,2646,'04222'),(3665,2647,'04223'),(3666,2648,'04224'),(3667,2649,'04225'),(3668,2650,'04226'),(3669,2651,'04227'),(3670,2652,'04228'),(3671,2653,'04230'),(3672,2654,'04231'),(3673,2655,'04234'),(3674,2656,'04236'),(3675,2657,'04237'),(3676,2658,'04238'),(3677,2659,'04239'),(3678,2660,'04240'),(3679,2660,'04241'),(3680,2660,'04243'),(3681,2661,'04250'),(3682,2662,'04252'),(3683,2663,'04253'),(3684,2664,'04254'),(3685,2665,'04255'),(3686,2666,'04256'),(3687,2667,'04257'),(3688,2668,'04258'),(3689,2669,'04259'),(3690,2670,'04260'),(3691,2671,'04261'),(3692,2672,'04262'),(3693,2673,'04263'),(3694,2674,'04265'),(3695,2675,'04266'),(3696,2676,'04267'),(3697,2677,'04268'),(3698,2678,'04270'),(3699,2679,'04271'),(3700,2680,'04274'),(3701,2681,'04275'),(3702,2682,'04276'),(3703,2683,'04278'),(3704,2684,'04280'),(3705,2685,'04281'),(3706,2686,'04282'),(3707,2687,'04283'),(3708,2688,'04284'),(3709,2689,'04285'),(3710,2690,'04286'),(3711,2691,'04287'),(3712,2692,'04288'),(3713,2693,'04289'),(3714,2694,'04290'),(3715,2695,'04291'),(3716,2696,'04292'),(3717,2697,'04294'),(3718,2698,'04330'),(3719,2698,'04332'),(3720,2698,'04333'),(3721,2698,'04336'),(3722,2698,'04338'),(3723,2699,'04341'),(3724,2700,'04342'),(3725,2701,'04343'),(3726,2702,'04344'),(3727,2703,'04345'),(3728,2704,'04346'),(3729,2705,'04347'),(3730,2706,'04348'),(3731,2707,'04349'),(3732,2708,'04350'),(3733,2709,'04351'),(3734,2710,'04352'),(3735,2711,'04353'),(3736,2712,'04354'),(3737,2713,'04355'),(3738,2714,'04357'),(3739,2715,'04358'),(3740,2716,'04359'),(3741,2717,'04360'),(3742,2718,'04363'),(3743,2719,'04364'),(3744,2720,'04401'),(3745,2720,'04402'),(3746,2721,'04406'),(3747,2722,'04408'),(3748,2723,'04410'),(3749,2724,'04411'),(3750,2725,'04412'),(3751,2726,'04413'),(3752,2727,'04414'),(3753,2728,'04415'),(3754,2729,'04416'),(3755,2730,'04417'),(3756,2731,'04418'),(3757,2732,'04419'),(3758,2733,'04420'),(3759,2733,'04421'),(3760,2734,'04422'),(3761,2735,'04423'),(3762,2736,'04424'),(3763,2737,'04426'),(3764,2738,'04427'),(3765,2739,'04428'),(3766,2740,'04429'),(3767,2741,'04430'),(3768,2742,'04431'),(3769,2743,'04434'),(3770,2744,'04435'),(3771,2745,'04438'),(3772,2746,'04441'),(3773,2747,'04442'),(3774,2748,'04443'),(3775,2749,'04444'),(3776,2750,'04448'),(3777,2751,'04449'),(3778,2752,'04450'),(3779,2753,'04451'),(3780,2754,'04453'),(3781,2755,'04454'),(3782,2756,'04455'),(3783,2757,'04456'),(3784,2758,'04457'),(3785,2759,'04459'),(3786,2760,'04460'),(3787,2761,'04461'),(3788,2762,'04462'),(3789,2763,'04463'),(3790,2764,'04464'),(3791,2765,'04467'),(3792,2766,'04468'),(3793,2767,'04469'),(3794,2767,'04473'),(3795,2768,'04471'),(3796,2769,'04472'),(3797,2770,'04474'),(3798,2771,'04475'),(3799,2772,'04476'),(3800,2773,'04478'),(3801,2774,'04479'),(3802,2775,'04481'),(3803,2776,'04485'),(3804,2777,'04487'),(3805,2778,'04488'),(3806,2779,'04489'),(3807,2780,'04490'),(3808,2781,'04491'),(3809,2782,'04492'),(3810,2783,'04493'),(3811,2784,'04495'),(3812,2785,'04496'),(3813,2786,'04497'),(3814,2787,'04530'),(3815,2788,'04535'),(3816,2789,'04536'),(3817,2790,'04537'),(3818,2791,'04538'),(3819,2792,'04539'),(3820,2793,'04541'),(3821,2794,'04543'),(3822,2795,'04544'),(3823,2796,'04547'),(3824,2797,'04548'),(3825,2798,'04549'),(3826,2799,'04551'),(3827,2800,'04552'),(3828,2801,'04553'),(3829,2802,'04554'),(3830,2803,'04555'),(3831,2804,'04556'),(3832,2805,'04558'),(3833,2806,'04562'),(3834,2807,'04563'),(3835,2808,'04564'),(3836,2809,'04565'),(3837,2810,'04567'),(3838,2811,'04568'),(3839,2812,'04570'),(3840,2813,'04571'),(3841,2814,'04572'),(3842,2815,'04573'),(3843,2816,'04574'),(3844,2817,'04575'),(3845,2818,'04576'),(3846,2819,'04578'),(3847,2820,'04579'),(3848,2821,'04605'),(3849,2822,'04606'),(3850,2823,'04607'),(3851,2824,'04609'),(3852,2825,'04611'),(3853,2826,'04612'),(3854,2827,'04613'),(3855,2828,'04614'),(3856,2829,'04615'),(3857,2830,'04616'),(3858,2831,'04617'),(3859,2832,'04619'),(3860,2833,'04622'),(3861,2834,'04623'),(3862,2835,'04624'),(3863,2836,'04625'),(3864,2837,'04626'),(3865,2838,'04627'),(3866,2839,'04628'),(3867,2840,'04629'),(3868,2841,'04630'),(3869,2842,'04631'),(3870,2843,'04634'),(3871,2844,'04635'),(3872,2845,'04637'),(3873,2846,'04640'),(3874,2847,'04642'),(3875,2848,'04643'),(3876,2849,'04644'),(3877,2850,'04645'),(3878,2851,'04646'),(3879,2852,'04648'),(3880,2853,'04649'),(3881,2854,'04650'),(3882,2855,'04652'),(3883,2856,'04653'),(3884,2857,'04654'),(3885,2858,'04655'),(3886,2859,'04656'),(3887,2860,'04657'),(3888,2861,'04658'),(3889,2862,'04660'),(3890,2863,'04662'),(3891,2864,'04664'),(3892,2865,'04665'),(3893,2866,'04666'),(3894,2867,'04667'),(3895,2868,'04668'),(3896,2869,'04669'),(3897,2870,'04671'),(3898,2871,'04672'),(3899,2872,'04673'),(3900,2873,'04674'),(3901,2874,'04675'),(3902,2875,'04676'),(3903,2876,'04677'),(3904,2877,'04679'),(3905,2878,'04680'),(3906,2879,'04681'),(3907,2880,'04683'),(3908,2881,'04684'),(3909,2882,'04685'),(3910,2883,'04686'),(3911,2884,'04690'),(3912,2885,'04691'),(3913,2886,'04693'),(3914,2887,'04694'),(3915,2888,'04730'),(3916,2889,'04732'),(3917,2890,'04733'),(3918,2891,'04734'),(3919,2892,'04735'),(3920,2893,'04736'),(3921,2894,'04737'),(3922,2895,'04738'),(3923,2896,'04739'),(3924,2897,'04740'),(3925,2898,'04741'),(3926,2899,'04742'),(3927,2900,'04743'),(3928,2901,'04744'),(3929,2902,'04745'),(3930,2903,'04746'),(3931,2904,'04747'),(3932,2905,'04750'),(3933,2905,'04751'),(3934,2906,'04756'),(3935,2907,'04757'),(3936,2908,'04758'),(3937,2909,'04759'),(3938,2910,'04760'),(3939,2911,'04761'),(3940,2912,'04762'),(3941,2913,'04763'),(3942,2914,'04764'),(3943,2915,'04765'),(3944,2916,'04766'),(3945,2917,'04768'),(3946,2918,'04769'),(3947,2919,'04770'),(3948,2920,'04772'),(3949,2921,'04773'),(3950,2922,'04774'),(3951,2923,'04775'),(3952,2924,'04776'),(3953,2925,'04777'),(3954,2926,'04779'),(3955,2927,'04780'),(3956,2928,'04781'),(3957,2929,'04782'),(3958,2930,'04783'),(3959,2931,'04785'),(3960,2932,'04786'),(3961,2933,'04787'),(3962,2934,'04788'),(3963,2935,'04841'),(3964,2936,'04843'),(3965,2937,'04846'),(3966,2938,'04847'),(3967,2939,'04848'),(3968,2940,'04849'),(3969,2941,'04850'),(3970,2942,'04851'),(3971,2943,'04852'),(3972,2944,'04853'),(3973,2945,'04854'),(3974,2946,'04855'),(3975,2947,'04856'),(3976,2948,'04857'),(3977,2949,'04858'),(3978,2950,'04859'),(3979,2951,'04860'),(3980,2952,'04861'),(3981,2953,'04862'),(3982,2954,'04863'),(3983,2955,'04864'),(3984,2956,'04865'),(3985,2957,'04901'),(3986,2957,'04903'),(3987,2958,'04910'),(3988,2959,'04911'),(3989,2960,'04912'),(3990,2961,'04915'),(3991,2962,'04917'),(3992,2963,'04918'),(3993,2964,'04920'),(3994,2965,'04921'),(3995,2966,'04922'),(3996,2967,'04923'),(3997,2968,'04924'),(3998,2969,'04925'),(3999,2970,'04926'),(4000,2971,'04927'),(4001,2972,'04928'),(4002,2973,'04929'),(4003,2974,'04930'),(4004,2975,'04932'),(4005,2976,'04933'),(4006,2977,'04935'),(4007,2978,'04936'),(4008,2979,'04937'),(4009,2980,'04938'),(4010,2981,'04939'),(4011,2982,'04940'),(4012,2983,'04941'),(4013,2984,'04942'),(4014,2985,'04943'),(4015,2986,'04944'),(4016,2987,'04945'),(4017,2988,'04947'),(4018,2989,'04949'),(4019,2990,'04950'),(4020,2991,'04951'),(4021,2992,'04952'),(4022,2993,'04953'),(4023,2994,'04954'),(4024,2995,'04955'),(4025,2996,'04956'),(4026,2997,'04957'),(4027,2998,'04958'),(4028,2999,'04961'),(4029,3000,'04962'),(4030,3001,'04963'),(4031,3002,'04964'),(4032,3003,'04965'),(4033,3004,'04966'),(4034,3005,'04967'),(4035,3006,'04969'),(4036,3007,'04970'),(4037,3008,'04971'),(4038,3009,'04972'),(4039,3010,'04973'),(4040,3011,'04974'),(4041,3012,'04975'),(4042,3013,'04976'),(4043,3014,'04978'),(4044,3015,'04979'),(4045,3016,'04981'),(4046,3017,'04982'),(4047,3018,'04983'),(4048,3019,'04984'),(4049,3020,'04985'),(4050,3021,'04986'),(4051,3022,'04987'),(4052,3023,'04988'),(4053,3024,'04989'),(4054,3025,'04992'),(4055,3026,'05001'),(4056,3026,'05009'),(4057,3027,'05030'),(4058,3028,'05031'),(4059,3029,'05032'),(4060,3030,'05033'),(4061,3031,'05034'),(4062,3032,'05035'),(4063,3033,'05036'),(4064,3034,'05037'),(4065,3035,'05038'),(4066,3036,'05039'),(4067,3037,'05040'),(4068,3037,'05076'),(4069,3038,'05041'),(4070,3039,'05042'),(4071,3040,'05043'),(4072,3041,'05045'),(4073,3042,'05046'),(4074,3043,'05047'),(4075,3044,'05048'),(4076,3045,'05049'),(4077,3046,'05050'),(4078,3047,'05051'),(4079,3048,'05052'),(4080,3049,'05053'),(4081,3050,'05054'),(4082,3051,'05055'),(4083,3052,'05056'),(4084,3053,'05058'),(4085,3054,'05059'),(4086,3055,'05060'),(4087,3056,'05061'),(4088,3057,'05062'),(4089,3058,'05065'),(4090,3059,'05067'),(4091,3060,'05068'),(4092,3061,'05069'),(4093,3062,'05070'),(4094,3063,'05071'),(4095,3064,'05072'),(4096,3065,'05073'),(4097,3066,'05074'),(4098,3067,'05075'),(4099,3068,'05077'),(4100,3069,'05079'),(4101,3070,'05081'),(4102,3071,'05083'),(4103,3072,'05084'),(4104,3073,'05085'),(4105,3074,'05086'),(4106,3075,'05088'),(4107,3076,'05089'),(4108,3077,'05091'),(4109,3078,'05101'),(4110,3079,'05141'),(4111,3080,'05142'),(4112,3081,'05143'),(4113,3082,'05144'),(4114,3083,'05146'),(4115,3084,'05148'),(4116,3085,'05149'),(4117,3086,'05150'),(4118,3087,'05151'),(4119,3088,'05152'),(4120,3089,'05153'),(4121,3090,'05154'),(4122,3091,'05155'),(4123,3092,'05156'),(4124,3093,'05158'),(4125,3094,'05159'),(4126,3095,'05161'),(4127,3096,'05201'),(4128,3097,'05250'),(4129,3098,'05251'),(4130,3099,'05252'),(4131,3100,'05253'),(4132,3101,'05254'),(4133,3102,'05255'),(4134,3103,'05257'),(4135,3104,'05260'),(4136,3105,'05261'),(4137,3106,'05262'),(4138,3107,'05301'),(4139,3107,'05302'),(4140,3107,'05303'),(4141,3107,'05304'),(4142,3108,'05340'),(4143,3109,'05341'),(4144,3110,'05342'),(4145,3111,'05343'),(4146,3112,'05344'),(4147,3113,'05345'),(4148,3114,'05346'),(4149,3115,'05350'),(4150,3115,'05352'),(4151,3116,'05351'),(4152,3117,'05353'),(4153,3118,'05354'),(4154,3119,'05355'),(4155,3120,'05356'),(4156,3121,'05357'),(4157,3122,'05358'),(4158,3123,'05359'),(4159,3124,'05360'),(4160,3125,'05361'),(4161,3126,'05362'),(4162,3127,'05363'),(4163,3128,'05401'),(4164,3128,'05402'),(4165,3128,'05405'),(4166,3128,'05406'),(4167,3129,'05403'),(4168,3129,'05407'),(4169,3130,'05404'),(4170,3131,'05439'),(4171,3131,'05446'),(4172,3131,'05449'),(4173,3132,'05440'),(4174,3133,'05441'),(4175,3134,'05442'),(4176,3135,'05443'),(4177,3136,'05444'),(4178,3137,'05445'),(4179,3138,'05447'),(4180,3139,'05448'),(4181,3140,'05450'),(4182,3141,'05451'),(4183,3142,'05452'),(4184,3142,'05453'),(4185,3143,'05454'),(4186,3144,'05455'),(4187,3145,'05456'),(4188,3146,'05457'),(4189,3147,'05458'),(4190,3148,'05459'),(4191,3149,'05460'),(4192,3150,'05461'),(4193,3151,'05462'),(4194,3152,'05463'),(4195,3153,'05464'),(4196,3154,'05465'),(4197,3155,'05466'),(4198,3156,'05468'),(4199,3157,'05469'),(4200,3158,'05470'),(4201,3159,'05471'),(4202,3160,'05472'),(4203,3161,'05473'),(4204,3162,'05474'),(4205,3163,'05476'),(4206,3164,'05477'),(4207,3165,'05478'),(4208,3165,'05479'),(4209,3166,'05481'),(4210,3167,'05482'),(4211,3168,'05483'),(4212,3169,'05485'),(4213,3170,'05486'),(4214,3171,'05487'),(4215,3172,'05488'),(4216,3173,'05489'),(4217,3174,'05490'),(4218,3175,'05491'),(4219,3176,'05492'),(4220,3177,'05494'),(4221,3178,'05495'),(4222,3179,'05601'),(4223,3179,'05602'),(4224,3179,'05603'),(4225,3179,'05604'),(4226,3179,'05609'),(4227,3179,'05620'),(4228,3179,'05633'),(4229,3180,'05640'),(4230,3181,'05641'),(4231,3182,'05647'),(4232,3183,'05648'),(4233,3184,'05649'),(4234,3185,'05650'),(4235,3186,'05651'),(4236,3187,'05652'),(4237,3188,'05653'),(4238,3189,'05654'),(4239,3190,'05655'),(4240,3191,'05656'),(4241,3192,'05657'),(4242,3193,'05658'),(4243,3194,'05660'),(4244,3195,'05661'),(4245,3196,'05662'),(4246,3197,'05663'),(4247,3198,'05664'),(4248,3199,'05665'),(4249,3200,'05666'),(4250,3201,'05667'),(4251,3202,'05669'),(4252,3203,'05670'),(4253,3204,'05671'),(4254,3204,'05676'),(4255,3205,'05672'),(4256,3206,'05673'),(4257,3207,'05674'),(4258,3208,'05675'),(4259,3209,'05677'),(4260,3210,'05678'),(4261,3211,'05679'),(4262,3212,'05680'),(4263,3213,'05681'),(4264,3214,'05682'),(4265,3215,'05701'),(4266,3215,'05702'),(4267,3216,'05730'),(4268,3217,'05731'),(4269,3218,'05732'),(4270,3219,'05733'),(4271,3220,'05734'),(4272,3221,'05735'),(4273,3222,'05736'),(4274,3223,'05737'),(4275,3224,'05738'),(4276,3225,'05739'),(4277,3226,'05740'),(4278,3227,'05741'),(4279,3228,'05742'),(4280,3229,'05743'),(4281,3230,'05744'),(4282,3231,'05745'),(4283,3232,'05746'),(4284,3233,'05747'),(4285,3234,'05748'),(4286,3235,'05750'),(4287,3236,'05751'),(4288,3237,'05753'),(4289,3238,'05757'),(4290,3239,'05758'),(4291,3240,'05759'),(4292,3241,'05760'),(4293,3242,'05761'),(4294,3243,'05762'),(4295,3244,'05763'),(4296,3245,'05764'),(4297,3246,'05765'),(4298,3247,'05766'),(4299,3248,'05767'),(4300,3249,'05768'),(4301,3250,'05769'),(4302,3251,'05770'),(4303,3252,'05772'),(4304,3253,'05773'),(4305,3254,'05774'),(4306,3255,'05775'),(4307,3256,'05776'),(4308,3257,'05777'),(4309,3258,'05778'),(4310,3259,'05819'),(4311,3260,'05820'),(4312,3261,'05821'),(4313,3262,'05822'),(4314,3263,'05823'),(4315,3264,'05824'),(4316,3265,'05825'),(4317,3266,'05826'),(4318,3267,'05827'),(4319,3268,'05828'),(4320,3269,'05829'),(4321,3270,'05830'),(4322,3271,'05832'),(4323,3272,'05833'),(4324,3273,'05836'),(4325,3274,'05837'),(4326,3275,'05838'),(4327,3276,'05839'),(4328,3277,'05840'),(4329,3278,'05841'),(4330,3279,'05842'),(4331,3280,'05843'),(4332,3281,'05845'),(4333,3282,'05846'),(4334,3283,'05847'),(4335,3284,'05848'),(4336,3285,'05849'),(4337,3286,'05850'),(4338,3287,'05851'),(4339,3288,'05853'),(4340,3289,'05855'),(4341,3290,'05857'),(4342,3291,'05858'),(4343,3292,'05859'),(4344,3293,'05860'),(4345,3294,'05861'),(4346,3295,'05862'),(4347,3296,'05863'),(4348,3297,'05866'),(4349,3298,'05867'),(4350,3299,'05868'),(4351,3300,'05871'),(4352,3301,'05872'),(4353,3302,'05873'),(4354,3303,'05874'),(4355,3304,'05875'),(4356,3305,'05901'),(4357,3306,'05902'),(4358,3307,'05903'),(4359,3308,'05904'),(4360,3309,'05905'),(4361,3310,'05906'),(4362,3311,'05907'),(4363,3312,'06001'),(4364,3313,'06002'),(4365,3314,'06006'),(4366,3314,'06095'),(4367,3315,'06010'),(4368,3315,'06011'),(4369,3316,'06013'),(4370,3317,'06016'),(4371,3318,'06018'),(4372,3319,'06019'),(4373,3320,'06020'),(4374,3321,'06021'),(4375,3322,'06022'),(4376,3323,'06023'),(4377,3324,'06024'),(4378,3325,'06025'),(4379,3326,'06026'),(4380,3327,'06027'),(4381,3328,'06028'),(4382,3329,'06029'),(4383,3330,'06030'),(4384,3330,'06032'),(4385,3330,'06034'),(4386,3331,'06031'),(4387,3332,'06033'),(4388,3333,'06035'),(4389,3334,'06037'),(4390,3335,'06039'),(4391,3336,'06040'),(4392,3336,'06041'),(4393,3336,'06045'),(4394,3337,'06043'),(4395,3338,'06049'),(4396,3339,'06050'),(4397,3339,'06051'),(4398,3339,'06052'),(4399,3339,'06053'),(4400,3340,'06057'),(4401,3341,'06058'),(4402,3342,'06059'),(4403,3343,'06060'),(4404,3344,'06061'),(4405,3345,'06062'),(4406,3346,'06063'),(4407,3347,'06064'),(4408,3348,'06065'),(4409,3349,'06066'),(4410,3350,'06067'),(4411,3351,'06068'),(4412,3352,'06069'),(4413,3353,'06070'),(4414,3354,'06071'),(4415,3355,'06072'),(4416,3356,'06073'),(4417,3357,'06074'),(4418,3358,'06075'),(4419,3359,'06076'),(4420,3360,'06077'),(4421,3361,'06078'),(4422,3361,'06080'),(4423,3362,'06079'),(4424,3363,'06081'),(4425,3364,'06082'),(4426,3364,'06083'),(4427,3365,'06084'),(4428,3366,'06085'),(4429,3366,'06087'),(4430,3367,'06088'),(4431,3368,'06089'),(4432,3369,'06090'),(4433,3370,'06091'),(4434,3371,'06092'),(4435,3372,'06093'),(4436,3373,'06094'),(4437,3374,'06096'),(4438,3375,'06098'),(4439,3376,'06101'),(4440,3376,'06102'),(4441,3376,'06103'),(4442,3376,'06104'),(4443,3376,'06105'),(4444,3376,'06106'),(4445,3376,'06112'),(4446,3376,'06114'),(4447,3376,'06115'),(4448,3376,'06120'),(4449,3376,'06123'),(4450,3376,'06126'),(4451,3376,'06132'),(4452,3376,'06134'),(4453,3376,'06140'),(4454,3376,'06141'),(4455,3376,'06142'),(4456,3376,'06143'),(4457,3376,'06144'),(4458,3376,'06145'),(4459,3376,'06146'),(4460,3376,'06147'),(4461,3376,'06150'),(4462,3376,'06151'),(4463,3376,'06152'),(4464,3376,'06153'),(4465,3376,'06154'),(4466,3376,'06155'),(4467,3376,'06156'),(4468,3376,'06160'),(4469,3376,'06161'),(4470,3376,'06167'),(4471,3376,'06176'),(4472,3376,'06180'),(4473,3376,'06183'),(4474,3376,'06199'),(4475,3377,'06107'),(4476,3377,'06110'),(4477,3377,'06117'),(4478,3377,'06119'),(4479,3377,'06127'),(4480,3377,'06133'),(4481,3377,'06137'),(4482,3378,'06108'),(4483,3378,'06118'),(4484,3378,'06128'),(4485,3378,'06138'),(4486,3379,'06109'),(4487,3379,'06129'),(4488,3380,'06111'),(4489,3380,'06131'),(4490,3381,'06226'),(4491,3382,'06230'),(4492,3383,'06231'),(4493,3384,'06232'),(4494,3385,'06233'),(4495,3386,'06234'),(4496,3387,'06235'),(4497,3388,'06237'),(4498,3389,'06238'),(4499,3390,'06239'),(4500,3391,'06241'),(4501,3392,'06242'),(4502,3393,'06243'),(4503,3394,'06244'),(4504,3395,'06245'),(4505,3396,'06246'),(4506,3397,'06247'),(4507,3398,'06248'),(4508,3399,'06249'),(4509,3400,'06250'),(4510,3401,'06251'),(4511,3402,'06254'),(4512,3403,'06255'),(4513,3404,'06256'),(4514,3405,'06258'),(4515,3406,'06259'),(4516,3407,'06260'),(4517,3408,'06262'),(4518,3409,'06263'),(4519,3410,'06264'),(4520,3411,'06265'),(4521,3412,'06266'),(4522,3413,'06267'),(4523,3414,'06268'),(4524,3414,'06269'),(4525,3415,'06277'),(4526,3416,'06278'),(4527,3417,'06279'),(4528,3418,'06280'),(4529,3419,'06281'),(4530,3420,'06282'),(4531,3421,'06320'),(4532,3422,'06330'),(4533,3423,'06331'),(4534,3424,'06332'),(4535,3425,'06333'),(4536,3426,'06334'),(4537,3427,'06335'),(4538,3428,'06336'),(4539,3429,'06337'),(4540,3430,'06339'),(4541,3431,'06340'),(4542,3431,'06349'),(4543,3432,'06350'),(4544,3433,'06351'),(4545,3434,'06353'),(4546,3435,'06354'),(4547,3436,'06355'),(4548,3437,'06357'),(4549,3438,'06359'),(4550,3439,'06360'),(4551,3440,'06365'),(4552,3441,'06370'),(4553,3442,'06371'),(4554,3443,'06372'),(4555,3444,'06373'),(4556,3445,'06374'),(4557,3446,'06375'),(4558,3447,'06376'),(4559,3448,'06377'),(4560,3449,'06378'),(4561,3450,'06379'),(4562,3451,'06380'),(4563,3452,'06382'),(4564,3453,'06383'),(4565,3454,'06384'),(4566,3455,'06385'),(4567,3455,'06386'),(4568,3456,'06387'),(4569,3457,'06388'),(4570,3458,'06389'),(4571,3459,'06401'),(4572,3460,'06403'),(4573,3461,'06404'),(4574,3462,'06405'),(4575,3463,'06408'),(4576,3463,'06410'),(4577,3463,'06411'),(4578,3464,'06409'),(4579,3465,'06412'),(4580,3466,'06413'),(4581,3467,'06414'),(4582,3468,'06415'),(4583,3469,'06416'),(4584,3470,'06417'),(4585,3471,'06418'),(4586,3472,'06419'),(4587,3473,'06420'),(4588,3474,'06422'),(4589,3475,'06423'),(4590,3476,'06424'),(4591,3477,'06426'),(4592,3478,'06430'),(4593,3478,'06431'),(4594,3478,'06432'),(4595,3479,'06436'),(4596,3480,'06437'),(4597,3481,'06438'),(4598,3482,'06439'),(4599,3483,'06440'),(4600,3484,'06441'),(4601,3485,'06442'),(4602,3486,'06443'),(4603,3487,'06444'),(4604,3488,'06447'),(4605,3489,'06450'),(4606,3489,'06451'),(4607,3489,'06454'),(4608,3490,'06455'),(4609,3491,'06456'),(4610,3492,'06457'),(4611,3492,'06459'),(4612,3493,'06460'),(4613,3494,'06467'),(4614,3495,'06468'),(4615,3496,'06469'),(4616,3497,'06470'),(4617,3498,'06471'),(4618,3499,'06472'),(4619,3500,'06473'),(4620,3501,'06474'),(4621,3502,'06475'),(4622,3503,'06477'),(4623,3504,'06478'),(4624,3505,'06479'),(4625,3506,'06480'),(4626,3507,'06481'),(4627,3508,'06482'),(4628,3509,'06483'),(4629,3510,'06484'),(4630,3511,'06487'),(4631,3512,'06488'),(4632,3513,'06489'),(4633,3514,'06490'),(4634,3515,'06491'),(4635,3516,'06492'),(4636,3516,'06493'),(4637,3516,'06494'),(4638,3517,'06497'),(4639,3517,'06614'),(4640,3517,'06615'),(4641,3518,'06498'),(4642,3519,'06501'),(4643,3519,'06502'),(4644,3519,'06503'),(4645,3519,'06504'),(4646,3519,'06505'),(4647,3519,'06506'),(4648,3519,'06507'),(4649,3519,'06508'),(4650,3519,'06509'),(4651,3519,'06510'),(4652,3519,'06511'),(4653,3519,'06513'),(4654,3519,'06515'),(4655,3519,'06519'),(4656,3519,'06520'),(4657,3519,'06521'),(4658,3519,'06530'),(4659,3519,'06531'),(4660,3519,'06532'),(4661,3519,'06533'),(4662,3519,'06534'),(4663,3519,'06535'),(4664,3519,'06536'),(4665,3519,'06537'),(4666,3519,'06538'),(4667,3519,'06540'),(4668,3520,'06512'),(4669,3521,'06514'),(4670,3521,'06517'),(4671,3521,'06518'),(4672,3522,'06516'),(4673,3523,'06524'),(4674,3524,'06525'),(4675,3525,'06601'),(4676,3525,'06602'),(4677,3525,'06604'),(4678,3525,'06605'),(4679,3525,'06606'),(4680,3525,'06607'),(4681,3525,'06608'),(4682,3525,'06610'),(4683,3525,'06650'),(4684,3525,'06673'),(4685,3525,'06699'),(4686,3526,'06611'),(4687,3527,'06612'),(4688,3528,'06701'),(4689,3528,'06702'),(4690,3528,'06703'),(4691,3528,'06704'),(4692,3528,'06705'),(4693,3528,'06706'),(4694,3528,'06708'),(4695,3528,'06710'),(4696,3528,'06720'),(4697,3528,'06721'),(4698,3528,'06722'),(4699,3528,'06723'),(4700,3528,'06724'),(4701,3528,'06725'),(4702,3528,'06726'),(4703,3528,'06749'),(4704,3529,'06712'),(4705,3530,'06716'),(4706,3531,'06750'),(4707,3532,'06751'),(4708,3533,'06752'),(4709,3534,'06753'),(4710,3535,'06754'),(4711,3536,'06755'),(4712,3537,'06756'),(4713,3538,'06757'),(4714,3539,'06758'),(4715,3540,'06759'),(4716,3541,'06762'),(4717,3542,'06763'),(4718,3543,'06770'),(4719,3544,'06776'),(4720,3545,'06777'),(4721,3546,'06778'),(4722,3547,'06779'),(4723,3548,'06781'),(4724,3549,'06782'),(4725,3550,'06783'),(4726,3551,'06784'),(4727,3552,'06785'),(4728,3553,'06786'),(4729,3554,'06787'),(4730,3555,'06790'),(4731,3556,'06791'),(4732,3557,'06793'),(4733,3558,'06794'),(4734,3559,'06795'),(4735,3560,'06796'),(4736,3561,'06798'),(4737,3562,'06801'),(4738,3563,'06804'),(4739,3564,'06807'),(4740,3565,'06810'),(4741,3565,'06811'),(4742,3565,'06813'),(4743,3565,'06814'),(4744,3565,'06816'),(4745,3565,'06817'),(4746,3566,'06812'),(4747,3567,'06820'),(4748,3568,'06829'),(4749,3569,'06830'),(4750,3569,'06831'),(4751,3569,'06832'),(4752,3569,'06836'),(4753,3570,'06840'),(4754,3570,'06842'),(4755,3571,'06850'),(4756,3571,'06851'),(4757,3571,'06852'),(4758,3571,'06853'),(4759,3571,'06854'),(4760,3571,'06855'),(4761,3571,'06856'),(4762,3571,'06857'),(4763,3571,'06858'),(4764,3571,'06859'),(4765,3571,'06860'),(4766,3572,'06870'),(4767,3573,'06875'),(4768,3574,'06876'),(4769,3575,'06877'),(4770,3575,'06879'),(4771,3576,'06878'),(4772,3577,'06880'),(4773,3577,'06881'),(4774,3577,'06888'),(4775,3577,'06889'),(4776,3578,'06883'),(4777,3579,'06896'),(4778,3580,'06897'),(4779,3581,'06901'),(4780,3581,'06902'),(4781,3581,'06903'),(4782,3581,'06904'),(4783,3581,'06905'),(4784,3581,'06906'),(4785,3581,'06907'),(4786,3581,'06910'),(4787,3581,'06911'),(4788,3581,'06912'),(4789,3581,'06913'),(4790,3581,'06914'),(4791,3581,'06920'),(4792,3581,'06921'),(4793,3581,'06922'),(4794,3581,'06925'),(4795,3581,'06926'),(4796,3581,'06927'),(4797,3581,'06928'),(4798,3582,'07001'),(4799,3583,'07002'),(4800,3584,'07003'),(4801,3585,'07004'),(4802,3586,'07005'),(4803,3587,'07006'),(4804,3587,'07007'),(4805,3588,'07008'),(4806,3589,'07009'),(4807,3590,'07010'),(4808,3591,'07011'),(4809,3591,'07012'),(4810,3591,'07013'),(4811,3591,'07014'),(4812,3591,'07015'),(4813,3592,'07016'),(4814,3593,'07017'),(4815,3593,'07018'),(4816,3593,'07019'),(4817,3594,'07020'),(4818,3595,'07021'),(4819,3596,'07022'),(4820,3597,'07023'),(4821,3598,'07024'),(4822,3599,'07026'),(4823,3600,'07027'),(4824,3601,'07028'),(4825,3602,'07029'),(4826,3603,'07030'),(4827,3604,'07031'),(4828,3605,'07032'),(4829,3605,'07099'),(4830,3606,'07033'),(4831,3607,'07034'),(4832,3608,'07035'),(4833,3609,'07036'),(4834,3610,'07039'),(4835,3611,'07040'),(4836,3612,'07041'),(4837,3613,'07042'),(4838,3613,'07043'),(4839,3614,'07044'),(4840,3615,'07045'),(4841,3616,'07046'),(4842,3617,'07047'),(4843,3618,'07050'),(4844,3618,'07051'),(4845,3619,'07052'),(4846,3620,'07054'),(4847,3621,'07055'),(4848,3622,'07057'),(4849,3623,'07058'),(4850,3624,'07059'),(4851,3625,'07060'),(4852,3625,'07061'),(4853,3625,'07062'),(4854,3625,'07063'),(4855,3626,'07064'),(4856,3627,'07065'),(4857,3628,'07066'),(4858,3629,'07067'),(4859,3630,'07068'),(4860,3631,'07070'),(4861,3632,'07071'),(4862,3633,'07072'),(4863,3634,'07073'),(4864,3635,'07074'),(4865,3636,'07075'),(4866,3637,'07076'),(4867,3638,'07077'),(4868,3639,'07078'),(4869,3640,'07079'),(4870,3641,'07080'),(4871,3642,'07081'),(4872,3643,'07082'),(4873,3644,'07083'),(4874,3645,'07087'),(4875,3646,'07088'),(4876,3647,'07090'),(4877,3647,'07091'),(4878,3648,'07092'),(4879,3649,'07093'),(4880,3650,'07094'),(4881,3650,'07096'),(4882,3651,'07095'),(4883,3652,'07097'),(4884,3652,'07302'),(4885,3652,'07303'),(4886,3652,'07304'),(4887,3652,'07305'),(4888,3652,'07306'),(4889,3652,'07307'),(4890,3652,'07308'),(4891,3652,'07309'),(4892,3652,'07310'),(4893,3652,'07311'),(4894,3652,'07399'),(4895,3653,'07101'),(4896,3653,'07102'),(4897,3653,'07103'),(4898,3653,'07104'),(4899,3653,'07105'),(4900,3653,'07106'),(4901,3653,'07107'),(4902,3653,'07108'),(4903,3653,'07112'),(4904,3653,'07114'),(4905,3653,'07175'),(4906,3653,'07182'),(4907,3653,'07184'),(4908,3653,'07188'),(4909,3653,'07189'),(4910,3653,'07191'),(4911,3653,'07192'),(4912,3653,'07193'),(4913,3653,'07194'),(4914,3653,'07195'),(4915,3653,'07197'),(4916,3653,'07198'),(4917,3653,'07199'),(4918,3654,'07109'),(4919,3655,'07110'),(4920,3656,'07111'),(4921,3657,'07201'),(4922,3657,'07202'),(4923,3657,'07206'),(4924,3657,'07207'),(4925,3657,'07208'),(4926,3658,'07203'),(4927,3659,'07204'),(4928,3660,'07205'),(4929,3661,'07401'),(4930,3662,'07403'),(4931,3663,'07405'),(4932,3664,'07407'),(4933,3665,'07410'),(4934,3666,'07416'),(4935,3667,'07417'),(4936,3668,'07418'),(4937,3669,'07419'),(4938,3670,'07420'),(4939,3671,'07421'),(4940,3672,'07422'),(4941,3673,'07423'),(4942,3674,'07424'),(4943,3675,'07428'),(4944,3676,'07430'),(4945,3676,'07495'),(4946,3676,'07498'),(4947,3677,'07432'),(4948,3678,'07435'),(4949,3679,'07436'),(4950,3680,'07438'),(4951,3681,'07439'),(4952,3682,'07440'),(4953,3683,'07442'),(4954,3684,'07444'),(4955,3685,'07446'),(4956,3686,'07450'),(4957,3686,'07451'),(4958,3687,'07452'),(4959,3688,'07456'),(4960,3689,'07457'),(4961,3690,'07458'),(4962,3691,'07460'),(4963,3692,'07461'),(4964,3693,'07462'),(4965,3694,'07463'),(4966,3695,'07465'),(4967,3696,'07470'),(4968,3696,'07474'),(4969,3696,'07477'),(4970,3697,'07480'),(4971,3698,'07481'),(4972,3699,'07501'),(4973,3699,'07502'),(4974,3699,'07503'),(4975,3699,'07504'),(4976,3699,'07505'),(4977,3699,'07509'),(4978,3699,'07510'),(4979,3699,'07513'),(4980,3699,'07514'),(4981,3699,'07522'),(4982,3699,'07524'),(4983,3699,'07530'),(4984,3699,'07533'),(4985,3699,'07543'),(4986,3699,'07544'),(4987,3700,'07506'),(4988,3700,'07507'),(4989,3701,'07508'),(4990,3701,'07538'),(4991,3702,'07511'),(4992,3702,'07512'),(4993,3703,'07601'),(4994,3703,'07602'),(4995,3704,'07603'),(4996,3705,'07604'),(4997,3706,'07605'),(4998,3707,'07606'),(4999,3708,'07607'),(5000,3709,'07608'),(5001,3710,'07620'),(5002,3711,'07621'),(5003,3712,'07624'),(5004,3713,'07626'),(5005,3714,'07627'),(5006,3715,'07628'),(5007,3716,'07630'),(5008,3717,'07631'),(5009,3718,'07632'),(5010,3719,'07640'),(5011,3720,'07641'),(5012,3721,'07642'),(5013,3722,'07643'),(5014,3723,'07644'),(5015,3724,'07645'),(5016,3725,'07646'),(5017,3726,'07647'),(5018,3727,'07648'),(5019,3728,'07649'),(5020,3729,'07650'),(5021,3730,'07652'),(5022,3730,'07653'),(5023,3731,'07656'),(5024,3732,'07657'),(5025,3733,'07660'),(5026,3734,'07661'),(5027,3735,'07662'),(5028,3736,'07663'),(5029,3737,'07666'),(5030,3737,'07688'),(5031,3738,'07670'),(5032,3739,'07675'),(5033,3740,'07701'),(5034,3741,'07702'),(5035,3742,'07703'),(5036,3743,'07704'),(5037,3744,'07709'),(5038,3744,'07711'),(5039,3745,'07710'),(5040,3746,'07712'),(5041,3747,'07715'),(5042,3747,'07719'),(5043,3748,'07716'),(5044,3749,'07717'),(5045,3750,'07718'),(5046,3751,'07720'),(5047,3752,'07721'),(5048,3753,'07722'),(5049,3754,'07723'),(5050,3755,'07724'),(5051,3755,'07799'),(5052,3756,'07726'),(5053,3757,'07727'),(5054,3758,'07728'),(5055,3759,'07730'),(5056,3760,'07731'),(5057,3761,'07732'),(5058,3762,'07733'),(5059,3762,'07777'),(5060,3763,'07734'),(5061,3764,'07735'),(5062,3765,'07737'),(5063,3766,'07738'),(5064,3767,'07739'),(5065,3768,'07740'),(5066,3769,'07746'),(5067,3770,'07747'),(5068,3771,'07748'),(5069,3772,'07750'),(5070,3773,'07751'),(5071,3774,'07752'),(5072,3775,'07753'),(5073,3775,'07754'),(5074,3776,'07755'),(5075,3777,'07756'),(5076,3778,'07757'),(5077,3779,'07758'),(5078,3780,'07760'),(5079,3781,'07762'),(5080,3782,'07763'),(5081,3783,'07764'),(5082,3784,'07765'),(5083,3785,'07801'),(5084,3785,'07802'),(5085,3786,'07803'),(5086,3787,'07806'),(5087,3788,'07820'),(5088,3789,'07821'),(5089,3790,'07822'),(5090,3791,'07823'),(5091,3792,'07825'),(5092,3793,'07826'),(5093,3793,'07890'),(5094,3794,'07827'),(5095,3795,'07828'),(5096,3796,'07829'),(5097,3797,'07830'),(5098,3798,'07831'),(5099,3799,'07832'),(5100,3800,'07833'),(5101,3801,'07834'),(5102,3802,'07836'),(5103,3803,'07837'),(5104,3804,'07838'),(5105,3805,'07839'),(5106,3806,'07840'),(5107,3807,'07842'),(5108,3808,'07843'),(5109,3809,'07844'),(5110,3810,'07845'),(5111,3811,'07846'),(5112,3812,'07847'),(5113,3813,'07848'),(5114,3814,'07849'),(5115,3815,'07850'),(5116,3816,'07851'),(5117,3817,'07852'),(5118,3818,'07853'),(5119,3819,'07855'),(5120,3820,'07856'),(5121,3821,'07857'),(5122,3822,'07860'),(5123,3823,'07863'),(5124,3824,'07865'),(5125,3825,'07866'),(5126,3826,'07869'),(5127,3827,'07870'),(5128,3828,'07871'),(5129,3829,'07874'),(5130,3830,'07875'),(5131,3831,'07876'),(5132,3832,'07877'),(5133,3833,'07878'),(5134,3834,'07879'),(5135,3835,'07880'),(5136,3836,'07881'),(5137,3837,'07882'),(5138,3838,'07885'),(5139,3839,'07901'),(5140,3839,'07902'),(5141,3840,'07920'),(5142,3841,'07921'),(5143,3842,'07922'),(5144,3843,'07924'),(5145,3844,'07926'),(5146,3845,'07927'),(5147,3846,'07928'),(5148,3847,'07930'),(5149,3848,'07931'),(5150,3849,'07932'),(5151,3850,'07933'),(5152,3851,'07934'),(5153,3852,'07935'),(5154,3853,'07936'),(5155,3854,'07938'),(5156,3855,'07939'),(5157,3856,'07940'),(5158,3857,'07945'),(5159,3858,'07946'),(5160,3859,'07950'),(5161,3860,'07960'),(5162,3860,'07961'),(5163,3860,'07962'),(5164,3860,'07963'),(5165,3861,'07970'),(5166,3862,'07974'),(5167,3863,'07976'),(5168,3864,'07977'),(5169,3865,'07978'),(5170,3866,'07979'),(5171,3867,'07980'),(5172,3868,'07981'),(5173,3868,'07983'),(5174,3868,'07999'),(5175,3869,'08001'),(5176,3870,'08002'),(5177,3870,'08003'),(5178,3870,'08034'),(5179,3871,'08004'),(5180,3872,'08005'),(5181,3873,'08006'),(5182,3874,'08007'),(5183,3875,'08008'),(5184,3876,'08009'),(5185,3877,'08010'),(5186,3878,'08011'),(5187,3879,'08012'),(5188,3880,'08014'),(5189,3881,'08015'),(5190,3882,'08016'),(5191,3883,'08018'),(5192,3884,'08019'),(5193,3885,'08020'),(5194,3886,'08021'),(5195,3887,'08022'),(5196,3888,'08023'),(5197,3889,'08025'),(5198,3890,'08026'),(5199,3891,'08027'),(5200,3892,'08028'),(5201,3893,'08029'),(5202,3894,'08030'),(5203,3895,'08031'),(5204,3895,'08099'),(5205,3896,'08032'),(5206,3897,'08033'),(5207,3898,'08035'),(5208,3899,'08036'),(5209,3900,'08037'),(5210,3901,'08038'),(5211,3902,'08039'),(5212,3903,'08041'),(5213,3904,'08042'),(5214,3905,'08043'),(5215,3906,'08045'),(5216,3907,'08046'),(5217,3908,'08048'),(5218,3909,'08049'),(5219,3910,'08050'),(5220,3911,'08051'),(5221,3912,'08052'),(5222,3913,'08053'),(5223,3914,'08054'),(5224,3915,'08055'),(5225,3916,'08056'),(5226,3917,'08057'),(5227,3918,'08059'),(5228,3919,'08060'),(5229,3920,'08061'),(5230,3921,'08062'),(5231,3922,'08063'),(5232,3923,'08064'),(5233,3924,'08065'),(5234,3925,'08066'),(5235,3926,'08067'),(5236,3927,'08068'),(5237,3928,'08069'),(5238,3929,'08070'),(5239,3930,'08071'),(5240,3931,'08072'),(5241,3932,'08073'),(5242,3933,'08074'),(5243,3934,'08075'),(5244,3934,'08370'),(5245,3935,'08076'),(5246,3935,'08077'),(5247,3936,'08078'),(5248,3937,'08079'),(5249,3938,'08080'),(5250,3939,'08081'),(5251,3940,'08083'),(5252,3941,'08084'),(5253,3942,'08085'),(5254,3943,'08086'),(5255,3944,'08087'),(5256,3945,'08088'),(5257,3946,'08089'),(5258,3947,'08090'),(5259,3948,'08091'),(5260,3949,'08092'),(5261,3950,'08093'),(5262,3951,'08094'),(5263,3952,'08095'),(5264,3953,'08096'),(5265,3954,'08097'),(5266,3955,'08098'),(5267,3956,'08101'),(5268,3956,'08102'),(5269,3956,'08103'),(5270,3956,'08104'),(5271,3956,'08105'),(5272,3957,'08106'),(5273,3958,'08107'),(5274,3959,'08108'),(5275,3960,'08109'),(5276,3961,'08110'),(5277,3962,'08201'),(5278,3963,'08202'),(5279,3964,'08203'),(5280,3965,'08204'),(5281,3966,'08210'),(5282,3967,'08212'),(5283,3968,'08213'),(5284,3969,'08214'),(5285,3970,'08215'),(5286,3971,'08217'),(5287,3972,'08218'),(5288,3973,'08219'),(5289,3974,'08220'),(5290,3975,'08221'),(5291,3976,'08223'),(5292,3977,'08224'),(5293,3978,'08225'),(5294,3979,'08226'),(5295,3980,'08230'),(5296,3981,'08231'),(5297,3982,'08232'),(5298,3983,'08234'),(5299,3984,'08240'),(5300,3985,'08241'),(5301,3986,'08242'),(5302,3987,'08243'),(5303,3988,'08244'),(5304,3989,'08245'),(5305,3990,'08246'),(5306,3991,'08247'),(5307,3992,'08248'),(5308,3993,'08250'),(5309,3994,'08251'),(5310,3995,'08252'),(5311,3996,'08260'),(5312,3997,'08270'),(5313,3998,'08302'),(5314,3999,'08310'),(5315,4000,'08311'),(5316,4001,'08312'),(5317,4002,'08313'),(5318,4003,'08314'),(5319,4004,'08315'),(5320,4005,'08316'),(5321,4006,'08317'),(5322,4007,'08318'),(5323,4008,'08319'),(5324,4009,'08320'),(5325,4010,'08321'),(5326,4011,'08322'),(5327,4012,'08323'),(5328,4013,'08324'),(5329,4014,'08326'),(5330,4015,'08327'),(5331,4016,'08328'),(5332,4017,'08329'),(5333,4018,'08330'),(5334,4019,'08332'),(5335,4020,'08340'),(5336,4021,'08341'),(5337,4022,'08342'),(5338,4023,'08343'),(5339,4024,'08344'),(5340,4025,'08345'),(5341,4026,'08346'),(5342,4027,'08347'),(5343,4028,'08348'),(5344,4029,'08349'),(5345,4030,'08350'),(5346,4031,'08352'),(5347,4032,'08353'),(5348,4033,'08360'),(5349,4033,'08361'),(5350,4033,'08362'),(5351,4034,'08401'),(5352,4034,'08404'),(5353,4034,'08405'),(5354,4035,'08402'),(5355,4036,'08403'),(5356,4037,'08406'),(5357,4038,'08501'),(5358,4039,'08502'),(5359,4040,'08504'),(5360,4041,'08505'),(5361,4042,'08510'),(5362,4043,'08511'),(5363,4044,'08512'),(5364,4044,'08570'),(5365,4045,'08514'),(5366,4046,'08515'),(5367,4047,'08518'),(5368,4048,'08520'),(5369,4049,'08525'),(5370,4050,'08526'),(5371,4051,'08527'),(5372,4052,'08528'),(5373,4053,'08530'),(5374,4054,'08533'),(5375,4055,'08534'),(5376,4056,'08535'),(5377,4057,'08536'),(5378,4058,'08540'),(5379,4058,'08541'),(5380,4058,'08542'),(5381,4058,'08543'),(5382,4058,'08544'),(5383,4059,'08550'),(5384,4060,'08551'),(5385,4061,'08553'),(5386,4062,'08554'),(5387,4063,'08555'),(5388,4064,'08556'),(5389,4065,'08557'),(5390,4066,'08558'),(5391,4067,'08559'),(5392,4068,'08560'),(5393,4069,'08561'),(5394,4070,'08562'),(5395,4071,'08601'),(5396,4071,'08602'),(5397,4071,'08603'),(5398,4071,'08604'),(5399,4071,'08605'),(5400,4071,'08606'),(5401,4071,'08607'),(5402,4071,'08608'),(5403,4071,'08609'),(5404,4071,'08610'),(5405,4071,'08611'),(5406,4071,'08618'),(5407,4071,'08619'),(5408,4071,'08620'),(5409,4071,'08625'),(5410,4071,'08628'),(5411,4071,'08629'),(5412,4071,'08638'),(5413,4071,'08640'),(5414,4071,'08641'),(5415,4071,'08645'),(5416,4071,'08646'),(5417,4071,'08647'),(5418,4071,'08648'),(5419,4071,'08650'),(5420,4071,'08666'),(5421,4071,'08677'),(5422,4071,'08690'),(5423,4071,'08691'),(5424,4071,'08695'),(5425,4072,'08701'),(5426,4073,'08720'),(5427,4074,'08721'),(5428,4075,'08722'),(5429,4076,'08723'),(5430,4076,'08724'),(5431,4077,'08730'),(5432,4078,'08731'),(5433,4079,'08732'),(5434,4080,'08733'),(5435,4081,'08734'),(5436,4082,'08735'),(5437,4083,'08736'),(5438,4084,'08738'),(5439,4085,'08739'),(5440,4086,'08740'),(5441,4087,'08741'),(5442,4088,'08742'),(5443,4089,'08750'),(5444,4090,'08751'),(5445,4091,'08752'),(5446,4092,'08753'),(5447,4092,'08754'),(5448,4092,'08755'),(5449,4092,'08756'),(5450,4092,'08757'),(5451,4093,'08758'),(5452,4094,'08759'),(5453,4095,'08801'),(5454,4096,'08802'),(5455,4097,'08803'),(5456,4098,'08804'),(5457,4099,'08805'),(5458,4100,'08807'),(5459,4101,'08808'),(5460,4102,'08809'),(5461,4103,'08810'),(5462,4104,'08812'),(5463,4105,'08816'),(5464,4106,'08817'),(5465,4106,'08818'),(5466,4106,'08820'),(5467,4106,'08837'),(5468,4106,'08899'),(5469,4107,'08821'),(5470,4108,'08822'),(5471,4109,'08823'),(5472,4110,'08824'),(5473,4111,'08825'),(5474,4112,'08826'),(5475,4113,'08827'),(5476,4114,'08828'),(5477,4115,'08829'),(5478,4116,'08830'),(5479,4117,'08831'),(5480,4118,'08832'),(5481,4119,'08833'),(5482,4120,'08834'),(5483,4121,'08835'),(5484,4122,'08836'),(5485,4123,'08840'),(5486,4124,'08846'),(5487,4125,'08848'),(5488,4126,'08850'),(5489,4127,'08852'),(5490,4128,'08853'),(5491,4129,'08854'),(5492,4129,'08855'),(5493,4130,'08857'),(5494,4131,'08858'),(5495,4132,'08859'),(5496,4133,'08861'),(5497,4133,'08862'),(5498,4134,'08863'),(5499,4135,'08865'),(5500,4136,'08867'),(5501,4137,'08868'),(5502,4138,'08869'),(5503,4138,'08896'),(5504,4139,'08870'),(5505,4140,'08871'),(5506,4140,'08872'),(5507,4141,'08873'),(5508,4141,'08875'),(5509,4142,'08876'),(5510,4143,'08877'),(5511,4143,'08882'),(5512,4144,'08878'),(5513,4144,'08879'),(5514,4145,'08880'),(5515,4146,'08884'),(5516,4147,'08885'),(5517,4148,'08886'),(5518,4149,'08887'),(5519,4150,'08888'),(5520,4151,'08889'),(5521,4152,'08890'),(5522,4153,'08901'),(5523,4153,'08903'),(5524,4153,'08905'),(5525,4153,'08906'),(5526,4153,'08922'),(5527,4153,'08933'),(5528,4153,'08988'),(5529,4153,'08989'),(5530,4154,'08902'),(5531,4155,'08904'),(5532,4156,'15001'),(5533,4157,'15003'),(5534,4158,'15004'),(5535,4159,'15005'),(5536,4160,'15006'),(5537,4161,'15007'),(5538,4162,'15009'),(5539,4163,'15010'),(5540,4164,'15012'),(5541,4165,'15014'),(5542,4166,'15015'),(5543,4167,'15017'),(5544,4168,'15018'),(5545,4169,'15019'),(5546,4170,'15020'),(5547,4171,'15021'),(5548,4172,'15022'),(5549,4173,'15024'),(5550,4174,'15025'),(5551,4175,'15026'),(5552,4176,'15027'),(5553,4177,'15028'),(5554,4178,'15030'),(5555,4179,'15031'),(5556,4180,'15032'),(5557,4181,'15033'),(5558,4182,'15034'),(5559,4183,'15035'),(5560,4184,'15036'),(5561,4185,'15037'),(5562,4186,'15038'),(5563,4187,'15042'),(5564,4188,'15043'),(5565,4189,'15044'),(5566,4190,'15045'),(5567,4191,'15046'),(5568,4192,'15047'),(5569,4193,'15049'),(5570,4194,'15050'),(5571,4195,'15051'),(5572,4196,'15052'),(5573,4197,'15053'),(5574,4198,'15054'),(5575,4199,'15055'),(5576,4200,'15056'),(5577,4201,'15057'),(5578,4202,'15059'),(5579,4203,'15060'),(5580,4204,'15061'),(5581,4205,'15062'),(5582,4206,'15063'),(5583,4207,'15064'),(5584,4208,'15065'),(5585,4209,'15066'),(5586,4210,'15067'),(5587,4211,'15068'),(5588,4211,'15069'),(5589,4212,'15071'),(5590,4213,'15072'),(5591,4214,'15074'),(5592,4215,'15075'),(5593,4216,'15076'),(5594,4217,'15077'),(5595,4218,'15078'),(5596,4219,'15081'),(5597,4220,'15082'),(5598,4221,'15083'),(5599,4222,'15084'),(5600,4223,'15085'),(5601,4224,'15086'),(5602,4224,'15095'),(5603,4224,'15096'),(5604,4225,'15087'),(5605,4226,'15088'),(5606,4227,'15089'),(5607,4228,'15090'),(5608,4229,'15091'),(5609,4230,'15101'),(5610,4231,'15102'),(5611,4232,'15104'),(5612,4233,'15106'),(5613,4234,'15108'),(5614,4235,'15110'),(5615,4236,'15112'),(5616,4237,'15116'),(5617,4238,'15120'),(5618,4239,'15122'),(5619,4239,'15123'),(5620,4240,'15126'),(5621,4241,'15127'),(5622,4242,'15129'),(5623,4243,'15130'),(5624,4243,'15131'),(5625,4243,'15132'),(5626,4243,'15133'),(5627,4243,'15134'),(5628,4243,'15135'),(5629,4244,'15136'),(5630,4245,'15137'),(5631,4246,'15139'),(5632,4247,'15140'),(5633,4248,'15142'),(5634,4249,'15143'),(5635,4249,'15189'),(5636,4250,'15144'),(5637,4251,'15145'),(5638,4252,'15146'),(5639,4253,'15147'),(5640,4254,'15148'),(5641,4255,'15201'),(5642,4255,'15202'),(5643,4255,'15203'),(5644,4255,'15204'),(5645,4255,'15205'),(5646,4255,'15206'),(5647,4255,'15207'),(5648,4255,'15208'),(5649,4255,'15209'),(5650,4255,'15210'),(5651,4255,'15211'),(5652,4255,'15212'),(5653,4255,'15213'),(5654,4255,'15214'),(5655,4255,'15215'),(5656,4255,'15216'),(5657,4255,'15217'),(5658,4255,'15218'),(5659,4255,'15219'),(5660,4255,'15220'),(5661,4255,'15221'),(5662,4255,'15222'),(5663,4255,'15223'),(5664,4255,'15224'),(5665,4255,'15225'),(5666,4255,'15226'),(5667,4255,'15227'),(5668,4255,'15228'),(5669,4255,'15229'),(5670,4255,'15230'),(5671,4255,'15231'),(5672,4255,'15232'),(5673,4255,'15233'),(5674,4255,'15234'),(5675,4255,'15235'),(5676,4255,'15236'),(5677,4255,'15237'),(5678,4255,'15238'),(5679,4255,'15239'),(5680,4255,'15240'),(5681,4255,'15241'),(5682,4255,'15242'),(5683,4255,'15243'),(5684,4255,'15244'),(5685,4255,'15250'),(5686,4255,'15251'),(5687,4255,'15252'),(5688,4255,'15253'),(5689,4255,'15254'),(5690,4255,'15255'),(5691,4255,'15257'),(5692,4255,'15258'),(5693,4255,'15259'),(5694,4255,'15260'),(5695,4255,'15261'),(5696,4255,'15262'),(5697,4255,'15263'),(5698,4255,'15264'),(5699,4255,'15265'),(5700,4255,'15266'),(5701,4255,'15267'),(5702,4255,'15268'),(5703,4255,'15270'),(5704,4255,'15272'),(5705,4255,'15274'),(5706,4255,'15275'),(5707,4255,'15276'),(5708,4255,'15277'),(5709,4255,'15278'),(5710,4255,'15279'),(5711,4255,'15281'),(5712,4255,'15282'),(5713,4255,'15283'),(5714,4255,'15285'),(5715,4255,'15286'),(5716,4255,'15290'),(5717,4256,'15301'),(5718,4257,'15310'),(5719,4258,'15311'),(5720,4259,'15312'),(5721,4260,'15313'),(5722,4261,'15314'),(5723,4262,'15315'),(5724,4263,'15316'),(5725,4264,'15317'),(5726,4265,'15320'),(5727,4266,'15321'),(5728,4267,'15322'),(5729,4268,'15323'),(5730,4269,'15324'),(5731,4270,'15325'),(5732,4271,'15327'),(5733,4272,'15329'),(5734,4273,'15330'),(5735,4274,'15331'),(5736,4275,'15332'),(5737,4276,'15333'),(5738,4277,'15334'),(5739,4278,'15336'),(5740,4279,'15337'),(5741,4280,'15338'),(5742,4281,'15339'),(5743,4282,'15340'),(5744,4283,'15341'),(5745,4284,'15342'),(5746,4285,'15344'),(5747,4286,'15345'),(5748,4287,'15346'),(5749,4288,'15347'),(5750,4289,'15348'),(5751,4290,'15349'),(5752,4291,'15350'),(5753,4292,'15351'),(5754,4293,'15352'),(5755,4294,'15353'),(5756,4295,'15354'),(5757,4296,'15357'),(5758,4297,'15358'),(5759,4298,'15359'),(5760,4299,'15360'),(5761,4300,'15361'),(5762,4301,'15362'),(5763,4302,'15363'),(5764,4303,'15364'),(5765,4304,'15365'),(5766,4305,'15366'),(5767,4306,'15367'),(5768,4307,'15368'),(5769,4308,'15370'),(5770,4309,'15376'),(5771,4310,'15377'),(5772,4311,'15378'),(5773,4312,'15379'),(5774,4313,'15380'),(5775,4314,'15401'),(5776,4315,'15410'),(5777,4316,'15411'),(5778,4317,'15412'),(5779,4318,'15413'),(5780,4319,'15415'),(5781,4320,'15416'),(5782,4321,'15417'),(5783,4322,'15419'),(5784,4323,'15420'),(5785,4324,'15421'),(5786,4325,'15422'),(5787,4326,'15423'),(5788,4327,'15424'),(5789,4328,'15425'),(5790,4329,'15427'),(5791,4330,'15428'),(5792,4331,'15429'),(5793,4332,'15430'),(5794,4333,'15431'),(5795,4334,'15432'),(5796,4335,'15433'),(5797,4336,'15434'),(5798,4337,'15435'),(5799,4338,'15436'),(5800,4339,'15437'),(5801,4340,'15438'),(5802,4341,'15439'),(5803,4342,'15440'),(5804,4343,'15442'),(5805,4344,'15443'),(5806,4345,'15444'),(5807,4346,'15445'),(5808,4347,'15446'),(5809,4348,'15447'),(5810,4349,'15448'),(5811,4350,'15449'),(5812,4351,'15450'),(5813,4352,'15451'),(5814,4353,'15454'),(5815,4354,'15455'),(5816,4355,'15456'),(5817,4356,'15458'),(5818,4357,'15459'),(5819,4358,'15460'),(5820,4359,'15461'),(5821,4360,'15462'),(5822,4361,'15463'),(5823,4362,'15464'),(5824,4363,'15465'),(5825,4364,'15466'),(5826,4365,'15467'),(5827,4366,'15468'),(5828,4367,'15469'),(5829,4368,'15470'),(5830,4369,'15472'),(5831,4370,'15473'),(5832,4371,'15474'),(5833,4372,'15475'),(5834,4373,'15476'),(5835,4374,'15477'),(5836,4375,'15478'),(5837,4376,'15479'),(5838,4377,'15480'),(5839,4378,'15482'),(5840,4379,'15483'),(5841,4380,'15484'),(5842,4381,'15485'),(5843,4382,'15486'),(5844,4383,'15488'),(5845,4384,'15489'),(5846,4385,'15490'),(5847,4386,'15492'),(5848,4387,'15501'),(5849,4387,'15510'),(5850,4388,'15502'),(5851,4389,'15520'),(5852,4390,'15521'),(5853,4391,'15522'),(5854,4392,'15530'),(5855,4393,'15531'),(5856,4394,'15532'),(5857,4395,'15533'),(5858,4396,'15534'),(5859,4397,'15535'),(5860,4398,'15536'),(5861,4399,'15537'),(5862,4400,'15538'),(5863,4401,'15539'),(5864,4402,'15540'),(5865,4403,'15541'),(5866,4404,'15542'),(5867,4405,'15544'),(5868,4406,'15545'),(5869,4407,'15546'),(5870,4408,'15547'),(5871,4409,'15548'),(5872,4410,'15549'),(5873,4411,'15550'),(5874,4412,'15551'),(5875,4413,'15552'),(5876,4414,'15553'),(5877,4415,'15554'),(5878,4416,'15555'),(5879,4417,'15557'),(5880,4418,'15558'),(5881,4419,'15559'),(5882,4420,'15560'),(5883,4421,'15561'),(5884,4422,'15562'),(5885,4423,'15563'),(5886,4424,'15564'),(5887,4425,'15565'),(5888,4426,'15601'),(5889,4426,'15605'),(5890,4426,'15606'),(5891,4427,'15610'),(5892,4428,'15611'),(5893,4429,'15612'),(5894,4430,'15613'),(5895,4431,'15615'),(5896,4432,'15616'),(5897,4433,'15617'),(5898,4434,'15618'),(5899,4435,'15619'),(5900,4436,'15620'),(5901,4437,'15621'),(5902,4438,'15622'),(5903,4439,'15623'),(5904,4440,'15624'),(5905,4441,'15625'),(5906,4442,'15626'),(5907,4443,'15627'),(5908,4444,'15628'),(5909,4445,'15629'),(5910,4446,'15630'),(5911,4447,'15631'),(5912,4448,'15632'),(5913,4449,'15633'),(5914,4450,'15634'),(5915,4451,'15635'),(5916,4452,'15636'),(5917,4453,'15637'),(5918,4454,'15638'),(5919,4455,'15639'),(5920,4456,'15640'),(5921,4457,'15641'),(5922,4458,'15642'),(5923,4459,'15644'),(5924,4460,'15646'),(5925,4461,'15647'),(5926,4462,'15650'),(5927,4463,'15655'),(5928,4464,'15656'),(5929,4465,'15658'),(5930,4466,'15660'),(5931,4467,'15661'),(5932,4468,'15662'),(5933,4469,'15663'),(5934,4470,'15664'),(5935,4471,'15665'),(5936,4472,'15666'),(5937,4473,'15668'),(5938,4474,'15670'),(5939,4475,'15671'),(5940,4476,'15672'),(5941,4477,'15673'),(5942,4478,'15674'),(5943,4479,'15675'),(5944,4480,'15676'),(5945,4481,'15677'),(5946,4482,'15678'),(5947,4483,'15679'),(5948,4484,'15680'),(5949,4485,'15681'),(5950,4486,'15682'),(5951,4487,'15683'),(5952,4488,'15684'),(5953,4489,'15685'),(5954,4490,'15686'),(5955,4491,'15687'),(5956,4492,'15688'),(5957,4493,'15689'),(5958,4494,'15690'),(5959,4495,'15691'),(5960,4496,'15692'),(5961,4497,'15693'),(5962,4498,'15695'),(5963,4499,'15696'),(5964,4500,'15697'),(5965,4501,'15698'),(5966,4502,'15701'),(5967,4502,'15705'),(5968,4503,'15710'),(5969,4504,'15711'),(5970,4505,'15712'),(5971,4506,'15713'),(5972,4507,'15714'),(5973,4508,'15715'),(5974,4509,'15716'),(5975,4510,'15717'),(5976,4511,'15720'),(5977,4512,'15721'),(5978,4513,'15722'),(5979,4514,'15723'),(5980,4515,'15724'),(5981,4516,'15725'),(5982,4517,'15727'),(5983,4518,'15728'),(5984,4519,'15729'),(5985,4520,'15730'),(5986,4521,'15731'),(5987,4522,'15732'),(5988,4523,'15733'),(5989,4524,'15734'),(5990,4525,'15736'),(5991,4526,'15737'),(5992,4527,'15738'),(5993,4528,'15739'),(5994,4529,'15740'),(5995,4530,'15741'),(5996,4531,'15742'),(5997,4532,'15744'),(5998,4533,'15745'),(5999,4534,'15746'),(6000,4535,'15747'),(6001,4536,'15748'),(6002,4537,'15750'),(6003,4538,'15751'),(6004,4539,'15752'),(6005,4540,'15753'),(6006,4541,'15754'),(6007,4542,'15756'),(6008,4543,'15757'),(6009,4544,'15758'),(6010,4545,'15759'),(6011,4546,'15760'),(6012,4547,'15761'),(6013,4548,'15762'),(6014,4549,'15763'),(6015,4550,'15764'),(6016,4551,'15765'),(6017,4552,'15767'),(6018,4553,'15770'),(6019,4554,'15771'),(6020,4555,'15772'),(6021,4556,'15773'),(6022,4557,'15774'),(6023,4558,'15775'),(6024,4559,'15776'),(6025,4560,'15777'),(6026,4561,'15778'),(6027,4562,'15779'),(6028,4563,'15780'),(6029,4564,'15781'),(6030,4565,'15783'),(6031,4566,'15784'),(6032,4567,'15801'),(6033,4568,'15821'),(6034,4569,'15822'),(6035,4570,'15823'),(6036,4571,'15824'),(6037,4572,'15825'),(6038,4573,'15827'),(6039,4574,'15828'),(6040,4575,'15829'),(6041,4576,'15831'),(6042,4577,'15832'),(6043,4578,'15834'),(6044,4579,'15840'),(6045,4580,'15841'),(6046,4581,'15845'),(6047,4582,'15846'),(6048,4583,'15847'),(6049,4584,'15848'),(6050,4585,'15849'),(6051,4586,'15851'),(6052,4587,'15853'),(6053,4588,'15856'),(6054,4589,'15857'),(6055,4590,'15860'),(6056,4591,'15861'),(6057,4592,'15863'),(6058,4593,'15864'),(6059,4594,'15865'),(6060,4595,'15866'),(6061,4596,'15868'),(6062,4597,'15870'),(6063,4598,'15901'),(6064,4598,'15902'),(6065,4598,'15904'),(6066,4598,'15905'),(6067,4598,'15906'),(6068,4598,'15907'),(6069,4598,'15909'),(6070,4598,'15915'),(6071,4599,'15920'),(6072,4600,'15921'),(6073,4601,'15922'),(6074,4602,'15923'),(6075,4603,'15924'),(6076,4604,'15925'),(6077,4605,'15926'),(6078,4606,'15927'),(6079,4607,'15928'),(6080,4608,'15929'),(6081,4609,'15930'),(6082,4610,'15931'),(6083,4611,'15934'),(6084,4612,'15935'),(6085,4613,'15936'),(6086,4614,'15937'),(6087,4615,'15938'),(6088,4616,'15940'),(6089,4617,'15942'),(6090,4618,'15943'),(6091,4619,'15944'),(6092,4620,'15945'),(6093,4621,'15946'),(6094,4622,'15948'),(6095,4623,'15949'),(6096,4624,'15951'),(6097,4625,'15952'),(6098,4626,'15953'),(6099,4627,'15954'),(6100,4628,'15955'),(6101,4629,'15956'),(6102,4630,'15957'),(6103,4631,'15958'),(6104,4632,'15959'),(6105,4633,'15960'),(6106,4634,'15961'),(6107,4635,'15962'),(6108,4636,'15963'),(6109,4637,'16001'),(6110,4637,'16002'),(6111,4637,'16003'),(6112,4638,'16016'),(6113,4638,'16017'),(6114,4638,'16018'),(6115,4638,'16020'),(6116,4639,'16021'),(6117,4640,'16022'),(6118,4641,'16023'),(6119,4642,'16024'),(6120,4643,'16025'),(6121,4644,'16027'),(6122,4645,'16028'),(6123,4646,'16029'),(6124,4647,'16030'),(6125,4648,'16033'),(6126,4649,'16034'),(6127,4650,'16035'),(6128,4651,'16036'),(6129,4652,'16037'),(6130,4653,'16038'),(6131,4654,'16039'),(6132,4655,'16040'),(6133,4656,'16041'),(6134,4657,'16045'),(6135,4658,'16046'),(6136,4659,'16048'),(6137,4660,'16049'),(6138,4661,'16050'),(6139,4662,'16051'),(6140,4663,'16052'),(6141,4664,'16053'),(6142,4665,'16054'),(6143,4666,'16055'),(6144,4667,'16056'),(6145,4668,'16057'),(6146,4669,'16058'),(6147,4670,'16059'),(6148,4671,'16061'),(6149,4672,'16063'),(6150,4673,'16066'),(6151,4674,'16101'),(6152,4674,'16102'),(6153,4674,'16103'),(6154,4674,'16105'),(6155,4674,'16107'),(6156,4674,'16108'),(6157,4675,'16110'),(6158,4676,'16111'),(6159,4677,'16112'),(6160,4678,'16113'),(6161,4679,'16114'),(6162,4680,'16115'),(6163,4681,'16116'),(6164,4682,'16117'),(6165,4683,'16120'),(6166,4684,'16121'),(6167,4685,'16123'),(6168,4686,'16124'),(6169,4687,'16125'),(6170,4688,'16127'),(6171,4689,'16130'),(6172,4690,'16131'),(6173,4691,'16132'),(6174,4692,'16133'),(6175,4693,'16134'),(6176,4694,'16136'),(6177,4695,'16137'),(6178,4696,'16140'),(6179,4697,'16141'),(6180,4698,'16142'),(6181,4698,'16172'),(6182,4699,'16143'),(6183,4700,'16145'),(6184,4701,'16146'),(6185,4702,'16148'),(6186,4703,'16150'),(6187,4704,'16151'),(6188,4705,'16153'),(6189,4706,'16154'),(6190,4707,'16155'),(6191,4708,'16156'),(6192,4709,'16157'),(6193,4710,'16159'),(6194,4711,'16160'),(6195,4712,'16161'),(6196,4713,'16201'),(6197,4713,'16215'),(6198,4714,'16210'),(6199,4715,'16211'),(6200,4716,'16212'),(6201,4717,'16213'),(6202,4718,'16214'),(6203,4719,'16216'),(6204,4720,'16217'),(6205,4721,'16218'),(6206,4722,'16220'),(6207,4723,'16221'),(6208,4724,'16222'),(6209,4725,'16223'),(6210,4726,'16224'),(6211,4727,'16225'),(6212,4728,'16226'),(6213,4729,'16228'),(6214,4730,'16229'),(6215,4731,'16230'),(6216,4732,'16232'),(6217,4733,'16233'),(6218,4734,'16234'),(6219,4735,'16235'),(6220,4736,'16236'),(6221,4737,'16238'),(6222,4738,'16239'),(6223,4739,'16240'),(6224,4740,'16242'),(6225,4741,'16244'),(6226,4742,'16245'),(6227,4743,'16246'),(6228,4744,'16248'),(6229,4745,'16249'),(6230,4746,'16250'),(6231,4747,'16253'),(6232,4748,'16254'),(6233,4749,'16255'),(6234,4750,'16256'),(6235,4751,'16257'),(6236,4752,'16258'),(6237,4753,'16259'),(6238,4754,'16260'),(6239,4755,'16261'),(6240,4756,'16262'),(6241,4757,'16263'),(6242,4758,'16301'),(6243,4759,'16311'),(6244,4760,'16312'),(6245,4761,'16313'),(6246,4762,'16314'),(6247,4763,'16316'),(6248,4764,'16317'),(6249,4765,'16319'),(6250,4766,'16321'),(6251,4767,'16322'),(6252,4768,'16323'),(6253,4769,'16326'),(6254,4770,'16327'),(6255,4771,'16328'),(6256,4772,'16329'),(6257,4772,'16368'),(6258,4772,'16369'),(6259,4773,'16331'),(6260,4774,'16332'),(6261,4775,'16333'),(6262,4776,'16334'),(6263,4777,'16335'),(6264,4777,'16388'),(6265,4778,'16340'),(6266,4779,'16341'),(6267,4780,'16342'),(6268,4781,'16343'),(6269,4782,'16344'),(6270,4783,'16345'),(6271,4784,'16346'),(6272,4785,'16347'),(6273,4786,'16350'),(6274,4787,'16351'),(6275,4788,'16352'),(6276,4789,'16353'),(6277,4790,'16354'),(6278,4791,'16360'),(6279,4792,'16361'),(6280,4793,'16362'),(6281,4794,'16364'),(6282,4795,'16365'),(6283,4795,'16366'),(6284,4795,'16367'),(6285,4796,'16370'),(6286,4797,'16371'),(6287,4798,'16372'),(6288,4799,'16373'),(6289,4800,'16374'),(6290,4801,'16375'),(6291,4802,'16401'),(6292,4802,'16475'),(6293,4803,'16402'),(6294,4804,'16403'),(6295,4805,'16404'),(6296,4806,'16405'),(6297,4807,'16406'),(6298,4808,'16407'),(6299,4809,'16410'),(6300,4810,'16411'),(6301,4811,'16412'),(6302,4811,'16444'),(6303,4812,'16413'),(6304,4813,'16415'),(6305,4814,'16416'),(6306,4815,'16417'),(6307,4816,'16420'),(6308,4817,'16421'),(6309,4818,'16422'),(6310,4819,'16423'),(6311,4820,'16424'),(6312,4821,'16426'),(6313,4822,'16427'),(6314,4823,'16428'),(6315,4824,'16430'),(6316,4825,'16432'),(6317,4826,'16433'),(6318,4827,'16434'),(6319,4828,'16435'),(6320,4829,'16436'),(6321,4830,'16438'),(6322,4831,'16440'),(6323,4832,'16441'),(6324,4833,'16442'),(6325,4834,'16443'),(6326,4835,'16501'),(6327,4835,'16502'),(6328,4835,'16503'),(6329,4835,'16504'),(6330,4835,'16505'),(6331,4835,'16506'),(6332,4835,'16507'),(6333,4835,'16508'),(6334,4835,'16509'),(6335,4835,'16510'),(6336,4835,'16511'),(6337,4835,'16512'),(6338,4835,'16514'),(6339,4835,'16515'),(6340,4835,'16522'),(6341,4835,'16530'),(6342,4835,'16531'),(6343,4835,'16532'),(6344,4835,'16533'),(6345,4835,'16534'),(6346,4835,'16538'),(6347,4835,'16541'),(6348,4835,'16544'),(6349,4835,'16546'),(6350,4835,'16550'),(6351,4835,'16553'),(6352,4835,'16554'),(6353,4835,'16558'),(6354,4835,'16563'),(6355,4835,'16565'),(6356,4836,'16601'),(6357,4836,'16602'),(6358,4836,'16603'),(6359,4837,'16611'),(6360,4838,'16613'),(6361,4839,'16614'),(6362,4840,'16616'),(6363,4841,'16617'),(6364,4842,'16619'),(6365,4843,'16620'),(6366,4844,'16621'),(6367,4845,'16622'),(6368,4846,'16623'),(6369,4847,'16624'),(6370,4848,'16625'),(6371,4849,'16627'),(6372,4850,'16629'),(6373,4851,'16630'),(6374,4851,'16699'),(6375,4852,'16631'),(6376,4853,'16633'),(6377,4854,'16634'),(6378,4855,'16635'),(6379,4856,'16636'),(6380,4857,'16637'),(6381,4858,'16638'),(6382,4859,'16639'),(6383,4860,'16640'),(6384,4861,'16641'),(6385,4862,'16644'),(6386,4863,'16645'),(6387,4864,'16646'),(6388,4865,'16647'),(6389,4866,'16648'),(6390,4867,'16650'),(6391,4868,'16651'),(6392,4868,'16698'),(6393,4869,'16652'),(6394,4869,'16654'),(6395,4870,'16655'),(6396,4871,'16656'),(6397,4872,'16657'),(6398,4873,'16659'),(6399,4874,'16660'),(6400,4875,'16661'),(6401,4876,'16662'),(6402,4877,'16663'),(6403,4878,'16664'),(6404,4879,'16665'),(6405,4880,'16666'),(6406,4881,'16667'),(6407,4882,'16668'),(6408,4883,'16669'),(6409,4884,'16670'),(6410,4885,'16671'),(6411,4886,'16672'),(6412,4887,'16673'),(6413,4888,'16674'),(6414,4889,'16675'),(6415,4890,'16677'),(6416,4891,'16678'),(6417,4892,'16679'),(6418,4893,'16680'),(6419,4894,'16681'),(6420,4895,'16682'),(6421,4896,'16683'),(6422,4897,'16684'),(6423,4898,'16685'),(6424,4899,'16686'),(6425,4900,'16689'),(6426,4901,'16691'),(6427,4902,'16692'),(6428,4903,'16693'),(6429,4904,'16694'),(6430,4905,'16695'),(6431,4906,'16701'),(6432,4907,'16720'),(6433,4908,'16724'),(6434,4909,'16725'),(6435,4910,'16726'),(6436,4911,'16727'),(6437,4912,'16728'),(6438,4913,'16729'),(6439,4914,'16730'),(6440,4915,'16731'),(6441,4916,'16732'),(6442,4917,'16733'),(6443,4918,'16734'),(6444,4919,'16735'),(6445,4920,'16738'),(6446,4921,'16740'),(6447,4922,'16743'),(6448,4923,'16744'),(6449,4924,'16745'),(6450,4925,'16746'),(6451,4926,'16748'),(6452,4927,'16749'),(6453,4928,'16750'),(6454,4929,'16751'),(6455,4930,'16801'),(6456,4930,'16803'),(6457,4930,'16804'),(6458,4930,'16805'),(6459,4931,'16802'),(6460,4932,'16820'),(6461,4933,'16821'),(6462,4934,'16822'),(6463,4935,'16823'),(6464,4936,'16825'),(6465,4937,'16826'),(6466,4938,'16827'),(6467,4939,'16828'),(6468,4940,'16829'),(6469,4941,'16830'),(6470,4942,'16832'),(6471,4943,'16833'),(6472,4944,'16834'),(6473,4945,'16835'),(6474,4946,'16836'),(6475,4947,'16837'),(6476,4948,'16838'),(6477,4949,'16839'),(6478,4950,'16840'),(6479,4951,'16841'),(6480,4952,'16843'),(6481,4953,'16844'),(6482,4954,'16845'),(6483,4955,'16847'),(6484,4956,'16848'),(6485,4957,'16849'),(6486,4958,'16850'),(6487,4959,'16851'),(6488,4960,'16852'),(6489,4961,'16853'),(6490,4962,'16854'),(6491,4963,'16855'),(6492,4964,'16856'),(6493,4965,'16858'),(6494,4966,'16859'),(6495,4967,'16860'),(6496,4968,'16861'),(6497,4969,'16863'),(6498,4970,'16864'),(6499,4971,'16865'),(6500,4972,'16866'),(6501,4973,'16868'),(6502,4974,'16870'),(6503,4975,'16871'),(6504,4976,'16872'),(6505,4977,'16873'),(6506,4978,'16874'),(6507,4979,'16875'),(6508,4980,'16876'),(6509,4981,'16877'),(6510,4982,'16878'),(6511,4983,'16879'),(6512,4984,'16881'),(6513,4985,'16882'),(6514,4986,'16901'),(6515,4987,'16910'),(6516,4988,'16911'),(6517,4989,'16912'),(6518,4990,'16914'),(6519,4991,'16915'),(6520,4992,'16917'),(6521,4993,'16918'),(6522,4994,'16920'),(6523,4995,'16921'),(6524,4996,'16922'),(6525,4997,'16923'),(6526,4997,'16941'),(6527,4998,'16925'),(6528,4999,'16926'),(6529,5000,'16927'),(6530,5001,'16928'),(6531,5002,'16929'),(6532,5003,'16930'),(6533,5004,'16932'),(6534,5005,'16933'),(6535,5006,'16935'),(6536,5007,'16936'),(6537,5008,'16937'),(6538,5009,'16938'),(6539,5010,'16939'),(6540,5011,'16940'),(6541,5012,'16942'),(6542,5013,'16943'),(6543,5014,'16945'),(6544,5015,'16946'),(6545,5016,'16947'),(6546,5017,'16948'),(6547,5018,'16950'),(6548,5019,'17001'),(6549,5019,'17011'),(6550,5019,'17012'),(6551,5019,'17089'),(6552,5019,'17091'),(6553,5020,'17002'),(6554,5021,'17003'),(6555,5022,'17004'),(6556,5023,'17005'),(6557,5024,'17006'),(6558,5025,'17007'),(6559,5026,'17008'),(6560,5027,'17009'),(6561,5028,'17010'),(6562,5029,'17013'),(6563,5030,'17014'),(6564,5031,'17016'),(6565,5032,'17017'),(6566,5033,'17018'),(6567,5034,'17019'),(6568,5035,'17020'),(6569,5036,'17021'),(6570,5037,'17022'),(6571,5038,'17023'),(6572,5039,'17024'),(6573,5040,'17025'),(6574,5041,'17026'),(6575,5042,'17027'),(6576,5043,'17028'),(6577,5044,'17029'),(6578,5045,'17030'),(6579,5046,'17031'),(6580,5047,'17032'),(6581,5048,'17033'),(6582,5049,'17034'),(6583,5050,'17035'),(6584,5051,'17036'),(6585,5052,'17037'),(6586,5053,'17038'),(6587,5054,'17039'),(6588,5055,'17040'),(6589,5056,'17041'),(6590,5057,'17042'),(6591,5057,'17046'),(6592,5058,'17043'),(6593,5059,'17044'),(6594,5060,'17045'),(6595,5061,'17047'),(6596,5062,'17048'),(6597,5063,'17049'),(6598,5064,'17051'),(6599,5065,'17052'),(6600,5066,'17053'),(6601,5067,'17054'),(6602,5068,'17055'),(6603,5069,'17056'),(6604,5070,'17057'),(6605,5071,'17058'),(6606,5072,'17059'),(6607,5073,'17060'),(6608,5074,'17061'),(6609,5075,'17062'),(6610,5076,'17063'),(6611,5077,'17064'),(6612,5078,'17065'),(6613,5079,'17066'),(6614,5080,'17067'),(6615,5081,'17068'),(6616,5082,'17069'),(6617,5083,'17070'),(6618,5084,'17071'),(6619,5085,'17072'),(6620,5086,'17073'),(6621,5087,'17074'),(6622,5088,'17075'),(6623,5089,'17076'),(6624,5090,'17077'),(6625,5091,'17078'),(6626,5092,'17080'),(6627,5093,'17081'),(6628,5094,'17082'),(6629,5095,'17083'),(6630,5096,'17084'),(6631,5097,'17085'),(6632,5098,'17086'),(6633,5099,'17087'),(6634,5100,'17088'),(6635,5101,'17090'),(6636,5102,'17093'),(6637,5103,'17094'),(6638,5104,'17097'),(6639,5105,'17098'),(6640,5106,'17099'),(6641,5107,'17101'),(6642,5107,'17102'),(6643,5107,'17103'),(6644,5107,'17104'),(6645,5107,'17105'),(6646,5107,'17106'),(6647,5107,'17107'),(6648,5107,'17108'),(6649,5107,'17109'),(6650,5107,'17110'),(6651,5107,'17111'),(6652,5107,'17112'),(6653,5107,'17113'),(6654,5107,'17120'),(6655,5107,'17121'),(6656,5107,'17122'),(6657,5107,'17123'),(6658,5107,'17124'),(6659,5107,'17125'),(6660,5107,'17126'),(6661,5107,'17127'),(6662,5107,'17128'),(6663,5107,'17129'),(6664,5107,'17130'),(6665,5107,'17140'),(6666,5107,'17177'),(6667,5108,'17201'),(6668,5109,'17210'),(6669,5110,'17211'),(6670,5111,'17212'),(6671,5112,'17213'),(6672,5113,'17214'),(6673,5113,'17294'),(6674,5114,'17215'),(6675,5115,'17217'),(6676,5116,'17219'),(6677,5117,'17220'),(6678,5118,'17221'),(6679,5119,'17222'),(6680,5120,'17223'),(6681,5121,'17224'),(6682,5122,'17225'),(6683,5123,'17228'),(6684,5124,'17229'),(6685,5125,'17231'),(6686,5126,'17232'),(6687,5127,'17233'),(6688,5128,'17235'),(6689,5129,'17236'),(6690,5130,'17237'),(6691,5131,'17238'),(6692,5132,'17239'),(6693,5133,'17240'),(6694,5134,'17241'),(6695,5135,'17243'),(6696,5136,'17244'),(6697,5137,'17246'),(6698,5138,'17247'),(6699,5139,'17249'),(6700,5140,'17250'),(6701,5141,'17251'),(6702,5142,'17252'),(6703,5143,'17253'),(6704,5144,'17254'),(6705,5145,'17255'),(6706,5146,'17256'),(6707,5147,'17257'),(6708,5148,'17260'),(6709,5149,'17261'),(6710,5150,'17262'),(6711,5151,'17263'),(6712,5152,'17264'),(6713,5153,'17265'),(6714,5154,'17266'),(6715,5155,'17267'),(6716,5156,'17268'),(6717,5157,'17270'),(6718,5158,'17271'),(6719,5159,'17272'),(6720,5160,'17301'),(6721,5161,'17302'),(6722,5162,'17303'),(6723,5163,'17304'),(6724,5164,'17306'),(6725,5165,'17307'),(6726,5166,'17309'),(6727,5167,'17310'),(6728,5168,'17311'),(6729,5169,'17312'),(6730,5170,'17313'),(6731,5171,'17314'),(6732,5172,'17315'),(6733,5173,'17316'),(6734,5174,'17317'),(6735,5175,'17318'),(6736,5176,'17319'),(6737,5177,'17320'),(6738,5178,'17321'),(6739,5179,'17322'),(6740,5180,'17323'),(6741,5181,'17324'),(6742,5182,'17325'),(6743,5182,'17326'),(6744,5183,'17327'),(6745,5184,'17329'),(6746,5185,'17331'),(6747,5185,'17332'),(6748,5185,'17333'),(6749,5186,'17337'),(6750,5187,'17339'),(6751,5188,'17340'),(6752,5189,'17342'),(6753,5190,'17343'),(6754,5191,'17344'),(6755,5192,'17345'),(6756,5193,'17346'),(6757,5194,'17347'),(6758,5195,'17349'),(6759,5196,'17350'),(6760,5197,'17352'),(6761,5198,'17353'),(6762,5199,'17354'),(6763,5200,'17355'),(6764,5201,'17356'),(6765,5202,'17358'),(6766,5203,'17360'),(6767,5204,'17361'),(6768,5205,'17362'),(6769,5206,'17363'),(6770,5207,'17364'),(6771,5208,'17365'),(6772,5209,'17366'),(6773,5210,'17368'),(6774,5211,'17370'),(6775,5212,'17371'),(6776,5213,'17372'),(6777,5214,'17375'),(6778,5215,'17401'),(6779,5215,'17402'),(6780,5215,'17403'),(6781,5215,'17404'),(6782,5215,'17405'),(6783,5215,'17406'),(6784,5215,'17407'),(6785,5215,'17415'),(6786,5216,'17501'),(6787,5217,'17502'),(6788,5218,'17503'),(6789,5219,'17504'),(6790,5220,'17505'),(6791,5221,'17506'),(6792,5222,'17507'),(6793,5223,'17508'),(6794,5224,'17509'),(6795,5225,'17512'),(6796,5226,'17516'),(6797,5227,'17517'),(6798,5228,'17518'),(6799,5229,'17519'),(6800,5230,'17520'),(6801,5231,'17521'),(6802,5232,'17522'),(6803,5233,'17527'),(6804,5234,'17528'),(6805,5235,'17529'),(6806,5236,'17532'),(6807,5237,'17533'),(6808,5238,'17534'),(6809,5239,'17535'),(6810,5240,'17536'),(6811,5241,'17537'),(6812,5242,'17538'),(6813,5243,'17540'),(6814,5244,'17543'),(6815,5245,'17545'),(6816,5246,'17547'),(6817,5247,'17549'),(6818,5248,'17550'),(6819,5249,'17551'),(6820,5250,'17552'),(6821,5251,'17554'),(6822,5252,'17555'),(6823,5253,'17557'),(6824,5254,'17560'),(6825,5255,'17562'),(6826,5256,'17563'),(6827,5257,'17564'),(6828,5258,'17565'),(6829,5259,'17566'),(6830,5260,'17567'),(6831,5261,'17568'),(6832,5262,'17569'),(6833,5263,'17570'),(6834,5264,'17572'),(6835,5264,'17573'),(6836,5265,'17575'),(6837,5266,'17576'),(6838,5267,'17577'),(6839,5268,'17578'),(6840,5269,'17579'),(6841,5270,'17580'),(6842,5271,'17581'),(6843,5272,'17582'),(6844,5273,'17583'),(6845,5274,'17584'),(6846,5275,'17585'),(6847,5276,'17601'),(6848,5276,'17602'),(6849,5276,'17603'),(6850,5276,'17604'),(6851,5276,'17605'),(6852,5276,'17606'),(6853,5276,'17607'),(6854,5276,'17608'),(6855,5276,'17699'),(6856,5277,'17701'),(6857,5277,'17702'),(6858,5277,'17703'),(6859,5277,'17705'),(6860,5278,'17720'),(6861,5279,'17721'),(6862,5280,'17722'),(6863,5281,'17723'),(6864,5281,'17740'),(6865,5282,'17724'),(6866,5283,'17726'),(6867,5284,'17727'),(6868,5285,'17728'),(6869,5286,'17729'),(6870,5287,'17730'),(6871,5288,'17731'),(6872,5289,'17735'),(6873,5290,'17737'),(6874,5291,'17738'),(6875,5292,'17739'),(6876,5293,'17742'),(6877,5294,'17743'),(6878,5295,'17744'),(6879,5296,'17745'),(6880,5297,'17747'),(6881,5298,'17748'),(6882,5299,'17749'),(6883,5300,'17750'),(6884,5301,'17751'),(6885,5302,'17752'),(6886,5303,'17754'),(6887,5304,'17756'),(6888,5305,'17758'),(6889,5306,'17759'),(6890,5307,'17760'),(6891,5308,'17762'),(6892,5309,'17763'),(6893,5310,'17764'),(6894,5311,'17765'),(6895,5312,'17767'),(6896,5313,'17768'),(6897,5314,'17769'),(6898,5315,'17771'),(6899,5316,'17772'),(6900,5317,'17773'),(6901,5318,'17774'),(6902,5319,'17776'),(6903,5320,'17777'),(6904,5321,'17778'),(6905,5322,'17779'),(6906,5323,'17801'),(6907,5324,'17810'),(6908,5325,'17812'),(6909,5325,'17843'),(6910,5326,'17813'),(6911,5327,'17814'),(6912,5328,'17815'),(6913,5329,'17820'),(6914,5330,'17821'),(6915,5330,'17822'),(6916,5331,'17823'),(6917,5332,'17824'),(6918,5333,'17825'),(6919,5334,'17827'),(6920,5335,'17828'),(6921,5336,'17829'),(6922,5337,'17830'),(6923,5338,'17831'),(6924,5339,'17832'),(6925,5340,'17833'),(6926,5341,'17834'),(6927,5342,'17835'),(6928,5343,'17836'),(6929,5344,'17837'),(6930,5345,'17839'),(6931,5346,'17840'),(6932,5347,'17841'),(6933,5348,'17842'),(6934,5349,'17844'),(6935,5350,'17845'),(6936,5351,'17846'),(6937,5352,'17847'),(6938,5353,'17850'),(6939,5354,'17851'),(6940,5355,'17853'),(6941,5356,'17855'),(6942,5357,'17856'),(6943,5358,'17857'),(6944,5359,'17858'),(6945,5360,'17859'),(6946,5361,'17860'),(6947,5362,'17861'),(6948,5363,'17862'),(6949,5364,'17864'),(6950,5365,'17865'),(6951,5366,'17866'),(6952,5367,'17867'),(6953,5368,'17868'),(6954,5369,'17870'),(6955,5370,'17872'),(6956,5371,'17876'),(6957,5372,'17877'),(6958,5373,'17878'),(6959,5374,'17880'),(6960,5375,'17881'),(6961,5376,'17882'),(6962,5377,'17883'),(6963,5378,'17884'),(6964,5379,'17885'),(6965,5380,'17886'),(6966,5381,'17887'),(6967,5382,'17888'),(6968,5383,'17889'),(6969,5384,'17901'),(6970,5385,'17920'),(6971,5386,'17921'),(6972,5387,'17922'),(6973,5388,'17923'),(6974,5389,'17925'),(6975,5390,'17927'),(6976,5391,'17929'),(6977,5392,'17930'),(6978,5393,'17931'),(6979,5393,'17932'),(6980,5394,'17933'),(6981,5395,'17934'),(6982,5396,'17935'),(6983,5397,'17936'),(6984,5398,'17938'),(6985,5399,'17941'),(6986,5400,'17942'),(6987,5401,'17943'),(6988,5402,'17944'),(6989,5403,'17945'),(6990,5404,'17946'),(6991,5405,'17948'),(6992,5406,'17949'),(6993,5407,'17951'),(6994,5408,'17952'),(6995,5409,'17953'),(6996,5410,'17954'),(6997,5411,'17957'),(6998,5412,'17959'),(6999,5413,'17960'),(7000,5414,'17961'),(7001,5415,'17963'),(7002,5416,'17964'),(7003,5417,'17965'),(7004,5418,'17966'),(7005,5419,'17967'),(7006,5420,'17968'),(7007,5421,'17970'),(7008,5422,'17972'),(7009,5423,'17974'),(7010,5424,'17976'),(7011,5425,'17978'),(7012,5426,'17979'),(7013,5427,'17980'),(7014,5428,'17981'),(7015,5429,'17982'),(7016,5430,'17983'),(7017,5431,'17985'),(7018,5432,'18001'),(7019,5432,'18002'),(7020,5432,'18003'),(7021,5433,'18010'),(7022,5434,'18011'),(7023,5435,'18012'),(7024,5436,'18013'),(7025,5437,'18014'),(7026,5438,'18015'),(7027,5438,'18016'),(7028,5438,'18017'),(7029,5438,'18018'),(7030,5438,'18020'),(7031,5438,'18025'),(7032,5439,'18030'),(7033,5440,'18031'),(7034,5441,'18032'),(7035,5442,'18034'),(7036,5443,'18035'),(7037,5444,'18036'),(7038,5445,'18037'),(7039,5446,'18038'),(7040,5447,'18039'),(7041,5448,'18040'),(7042,5448,'18042'),(7043,5448,'18043'),(7044,5448,'18044'),(7045,5448,'18045'),(7046,5449,'18041'),(7047,5450,'18046'),(7048,5451,'18049'),(7049,5451,'18098'),(7050,5451,'18099'),(7051,5452,'18050'),(7052,5453,'18051'),(7053,5454,'18052'),(7054,5455,'18053'),(7055,5456,'18054'),(7056,5457,'18055'),(7057,5458,'18056'),(7058,5459,'18058'),(7059,5460,'18059'),(7060,5461,'18060'),(7061,5462,'18062'),(7062,5463,'18063'),(7063,5464,'18064'),(7064,5465,'18065'),(7065,5466,'18066'),(7066,5467,'18067'),(7067,5468,'18068'),(7068,5469,'18069'),(7069,5470,'18070'),(7070,5471,'18071'),(7071,5472,'18072'),(7072,5473,'18073'),(7073,5474,'18074'),(7074,5475,'18076'),(7075,5476,'18077'),(7076,5477,'18078'),(7077,5478,'18079'),(7078,5479,'18080'),(7079,5480,'18081'),(7080,5481,'18083'),(7081,5482,'18084'),(7082,5483,'18085'),(7083,5484,'18086'),(7084,5485,'18087'),(7085,5486,'18088'),(7086,5487,'18091'),(7087,5488,'18092'),(7088,5489,'18101'),(7089,5489,'18102'),(7090,5489,'18103'),(7091,5489,'18104'),(7092,5489,'18105'),(7093,5489,'18106'),(7094,5489,'18109'),(7095,5489,'18175'),(7096,5489,'18195'),(7097,5490,'18201'),(7098,5491,'18210'),(7099,5492,'18211'),(7100,5493,'18212'),(7101,5494,'18214'),(7102,5495,'18216'),(7103,5496,'18218'),(7104,5497,'18219'),(7105,5498,'18220'),(7106,5499,'18221'),(7107,5500,'18222'),(7108,5501,'18223'),(7109,5502,'18224'),(7110,5503,'18225'),(7111,5504,'18229'),(7112,5505,'18230'),(7113,5506,'18231'),(7114,5507,'18232'),(7115,5508,'18234'),(7116,5509,'18235'),(7117,5510,'18237'),(7118,5511,'18239'),(7119,5512,'18240'),(7120,5513,'18241'),(7121,5514,'18242'),(7122,5515,'18243'),(7123,5516,'18244'),(7124,5517,'18245'),(7125,5518,'18246'),(7126,5519,'18247'),(7127,5520,'18248'),(7128,5521,'18249'),(7129,5522,'18250'),(7130,5523,'18251'),(7131,5524,'18252'),(7132,5525,'18254'),(7133,5526,'18255'),(7134,5527,'18256'),(7135,5528,'18301'),(7136,5529,'18320'),(7137,5530,'18321'),(7138,5531,'18322'),(7139,5532,'18323'),(7140,5533,'18324'),(7141,5534,'18325'),(7142,5535,'18326'),(7143,5536,'18327'),(7144,5537,'18328'),(7145,5538,'18330'),(7146,5539,'18331'),(7147,5540,'18332'),(7148,5541,'18333'),(7149,5542,'18334'),(7150,5543,'18335'),(7151,5544,'18336'),(7152,5545,'18337'),(7153,5546,'18340'),(7154,5547,'18341'),(7155,5548,'18342'),(7156,5549,'18343'),(7157,5550,'18344'),(7158,5551,'18346'),(7159,5552,'18347'),(7160,5553,'18348'),(7161,5554,'18349'),(7162,5555,'18350'),(7163,5556,'18351'),(7164,5557,'18352'),(7165,5558,'18353'),(7166,5559,'18354'),(7167,5560,'18355'),(7168,5561,'18356'),(7169,5562,'18357'),(7170,5563,'18360'),(7171,5564,'18370'),(7172,5565,'18371'),(7173,5566,'18372'),(7174,5567,'18373'),(7175,5568,'18401'),(7176,5569,'18403'),(7177,5570,'18405'),(7178,5571,'18407'),(7179,5572,'18410'),(7180,5573,'18411'),(7181,5574,'18413'),(7182,5575,'18414'),(7183,5576,'18415'),(7184,5577,'18416'),(7185,5578,'18417'),(7186,5579,'18419'),(7187,5580,'18420'),(7188,5581,'18421'),(7189,5582,'18424'),(7190,5583,'18425'),(7191,5584,'18426'),(7192,5585,'18427'),(7193,5586,'18428'),(7194,5587,'18430'),(7195,5588,'18431'),(7196,5589,'18433'),(7197,5590,'18434'),(7198,5591,'18435'),(7199,5592,'18436'),(7200,5593,'18437'),(7201,5594,'18438'),(7202,5595,'18439'),(7203,5596,'18440'),(7204,5597,'18441'),(7205,5598,'18443'),(7206,5599,'18444'),(7207,5600,'18445'),(7208,5601,'18446'),(7209,5602,'18447'),(7210,5602,'18448'),(7211,5603,'18449'),(7212,5604,'18451'),(7213,5605,'18452'),(7214,5606,'18453'),(7215,5607,'18454'),(7216,5608,'18455'),(7217,5609,'18456'),(7218,5610,'18457'),(7219,5611,'18458'),(7220,5612,'18459'),(7221,5613,'18460'),(7222,5614,'18461'),(7223,5615,'18462'),(7224,5616,'18463'),(7225,5617,'18464'),(7226,5618,'18465'),(7227,5619,'18466'),(7228,5620,'18469'),(7229,5621,'18470'),(7230,5622,'18471'),(7231,5623,'18472'),(7232,5624,'18473'),(7233,5625,'18501'),(7234,5625,'18502'),(7235,5625,'18503'),(7236,5625,'18504'),(7237,5625,'18505'),(7238,5625,'18508'),(7239,5625,'18509'),(7240,5625,'18510'),(7241,5625,'18512'),(7242,5625,'18514'),(7243,5625,'18515'),(7244,5625,'18522'),(7245,5625,'18540'),(7246,5625,'18577'),(7247,5626,'18507'),(7248,5627,'18517'),(7249,5628,'18518'),(7250,5629,'18519'),(7251,5630,'18601'),(7252,5631,'18602'),(7253,5632,'18603'),(7254,5633,'18610'),(7255,5634,'18611'),(7256,5635,'18612'),(7257,5635,'18690'),(7258,5636,'18614'),(7259,5637,'18615'),(7260,5638,'18616'),(7261,5639,'18617'),(7262,5640,'18618'),(7263,5641,'18619'),(7264,5642,'18621'),(7265,5643,'18622'),(7266,5644,'18623'),(7267,5645,'18624'),(7268,5646,'18625'),(7269,5647,'18626'),(7270,5648,'18627'),(7271,5649,'18628'),(7272,5650,'18629'),(7273,5651,'18630'),(7274,5652,'18631'),(7275,5653,'18632'),(7276,5654,'18634'),(7277,5655,'18635'),(7278,5656,'18636'),(7279,5657,'18640'),(7280,5657,'18641'),(7281,5657,'18643'),(7282,5658,'18642'),(7283,5659,'18644'),(7284,5660,'18651'),(7285,5661,'18653'),(7286,5662,'18654'),(7287,5663,'18655'),(7288,5664,'18656'),(7289,5665,'18657'),(7290,5666,'18660'),(7291,5667,'18661'),(7292,5668,'18701'),(7293,5668,'18702'),(7294,5668,'18703'),(7295,5668,'18705'),(7296,5668,'18706'),(7297,5668,'18710'),(7298,5668,'18711'),(7299,5668,'18761'),(7300,5668,'18762'),(7301,5668,'18763'),(7302,5668,'18764'),(7303,5668,'18765'),(7304,5668,'18766'),(7305,5668,'18767'),(7306,5668,'18768'),(7307,5668,'18769'),(7308,5668,'18773'),(7309,5668,'18774'),(7310,5669,'18704'),(7311,5670,'18707'),(7312,5671,'18708'),(7313,5672,'18709'),(7314,5673,'18801'),(7315,5674,'18810'),(7316,5675,'18812'),(7317,5676,'18813'),(7318,5677,'18814'),(7319,5678,'18815'),(7320,5679,'18816'),(7321,5680,'18817'),(7322,5681,'18818'),(7323,5682,'18820'),(7324,5683,'18821'),(7325,5684,'18822'),(7326,5685,'18823'),(7327,5686,'18824'),(7328,5687,'18825'),(7329,5688,'18826'),(7330,5689,'18827'),(7331,5690,'18828'),(7332,5691,'18829'),(7333,5692,'18830'),(7334,5693,'18831'),(7335,5694,'18832'),(7336,5695,'18833'),(7337,5696,'18834'),(7338,5697,'18837'),(7339,5698,'18839'),(7340,5699,'18840'),(7341,5700,'18842'),(7342,5701,'18843'),(7343,5702,'18844'),(7344,5703,'18845'),(7345,5704,'18846'),(7346,5705,'18847'),(7347,5706,'18848'),(7348,5707,'18850'),(7349,5708,'18851'),(7350,5709,'18853'),(7351,5710,'18854'),(7352,5711,'18901'),(7353,5712,'18910'),(7354,5713,'18911'),(7355,5714,'18912'),(7356,5715,'18913'),(7357,5716,'18914'),(7358,5717,'18915'),(7359,5718,'18916'),(7360,5719,'18917'),(7361,5720,'18918'),(7362,5721,'18920'),(7363,5722,'18921'),(7364,5723,'18922'),(7365,5724,'18923'),(7366,5725,'18924'),(7367,5726,'18925'),(7368,5727,'18926'),(7369,5728,'18927'),(7370,5729,'18928'),(7371,5730,'18929'),(7372,5731,'18930'),(7373,5732,'18931'),(7374,5733,'18932'),(7375,5734,'18933'),(7376,5735,'18934'),(7377,5736,'18935'),(7378,5737,'18936'),(7379,5738,'18938'),(7380,5739,'18940'),(7381,5740,'18942'),(7382,5741,'18943'),(7383,5742,'18944'),(7384,5743,'18946'),(7385,5744,'18947'),(7386,5745,'18949'),(7387,5746,'18950'),(7388,5747,'18951'),(7389,5748,'18953'),(7390,5749,'18954'),(7391,5750,'18955'),(7392,5751,'18956'),(7393,5752,'18957'),(7394,5753,'18958'),(7395,5754,'18960'),(7396,5755,'18962'),(7397,5756,'18963'),(7398,5757,'18964'),(7399,5758,'18966'),(7400,5759,'18968'),(7401,5760,'18969'),(7402,5761,'18970'),(7403,5762,'18971'),(7404,5763,'18972'),(7405,5764,'18974'),(7406,5764,'18991'),(7407,5765,'18976'),(7408,5766,'18977'),(7409,5767,'18979'),(7410,5768,'18980'),(7411,5769,'18981'),(7412,5770,'19001'),(7413,5771,'19002'),(7414,5772,'19003'),(7415,5773,'19004'),(7416,5774,'19006'),(7417,5775,'19007'),(7418,5776,'19008'),(7419,5777,'19009'),(7420,5778,'19010'),(7421,5779,'19012'),(7422,5780,'19013'),(7423,5780,'19016'),(7424,5781,'19014'),(7425,5782,'19015'),(7426,5783,'19017'),(7427,5784,'19018'),(7428,5785,'19019'),(7429,5785,'19092'),(7430,5785,'19093'),(7431,5785,'19099'),(7432,5785,'19101'),(7433,5785,'19102'),(7434,5785,'19103'),(7435,5785,'19104'),(7436,5785,'19105'),(7437,5785,'19106'),(7438,5785,'19107'),(7439,5785,'19108'),(7440,5785,'19109'),(7441,5785,'19110'),(7442,5785,'19111'),(7443,5785,'19112'),(7444,5785,'19113'),(7445,5785,'19114'),(7446,5785,'19115'),(7447,5785,'19116'),(7448,5785,'19118'),(7449,5785,'19119'),(7450,5785,'19120'),(7451,5785,'19121'),(7452,5785,'19122'),(7453,5785,'19123'),(7454,5785,'19124'),(7455,5785,'19125'),(7456,5785,'19126'),(7457,5785,'19127'),(7458,5785,'19128'),(7459,5785,'19129'),(7460,5785,'19130'),(7461,5785,'19131'),(7462,5785,'19132'),(7463,5785,'19133'),(7464,5785,'19134'),(7465,5785,'19135'),(7466,5785,'19136'),(7467,5785,'19137'),(7468,5785,'19138'),(7469,5785,'19139'),(7470,5785,'19140'),(7471,5785,'19141'),(7472,5785,'19142'),(7473,5785,'19143'),(7474,5785,'19144'),(7475,5785,'19145'),(7476,5785,'19146'),(7477,5785,'19147'),(7478,5785,'19148'),(7479,5785,'19149'),(7480,5785,'19150'),(7481,5785,'19151'),(7482,5785,'19152'),(7483,5785,'19153'),(7484,5785,'19154'),(7485,5785,'19155'),(7486,5785,'19160'),(7487,5785,'19161'),(7488,5785,'19162'),(7489,5785,'19170'),(7490,5785,'19171'),(7491,5785,'19172'),(7492,5785,'19173'),(7493,5785,'19175'),(7494,5785,'19177'),(7495,5785,'19178'),(7496,5785,'19179'),(7497,5785,'19181'),(7498,5785,'19182'),(7499,5785,'19183'),(7500,5785,'19184'),(7501,5785,'19185'),(7502,5785,'19187'),(7503,5785,'19188'),(7504,5785,'19191'),(7505,5785,'19192'),(7506,5785,'19193'),(7507,5785,'19194'),(7508,5785,'19196'),(7509,5785,'19197'),(7510,5785,'19244'),(7511,5785,'19255'),(7512,5786,'19020'),(7513,5787,'19021'),(7514,5788,'19022'),(7515,5789,'19023'),(7516,5790,'19025'),(7517,5791,'19026'),(7518,5792,'19027'),(7519,5793,'19028'),(7520,5794,'19029'),(7521,5795,'19030'),(7522,5796,'19031'),(7523,5797,'19032'),(7524,5798,'19033'),(7525,5799,'19034'),(7526,5800,'19035'),(7527,5801,'19036'),(7528,5802,'19037'),(7529,5803,'19038'),(7530,5804,'19039'),(7531,5805,'19040'),(7532,5806,'19041'),(7533,5807,'19043'),(7534,5807,'19098'),(7535,5808,'19044'),(7536,5809,'19046'),(7537,5810,'19047'),(7538,5810,'19048'),(7539,5810,'19049'),(7540,5811,'19050'),(7541,5812,'19052'),(7542,5813,'19053'),(7543,5814,'19054'),(7544,5814,'19055'),(7545,5814,'19056'),(7546,5814,'19057'),(7547,5814,'19058'),(7548,5814,'19059'),(7549,5815,'19061'),(7550,5816,'19063'),(7551,5816,'19065'),(7552,5816,'19091'),(7553,5817,'19064'),(7554,5818,'19066'),(7555,5819,'19067'),(7556,5820,'19070'),(7557,5821,'19072'),(7558,5822,'19073'),(7559,5823,'19074'),(7560,5824,'19075'),(7561,5825,'19076'),(7562,5826,'19078'),(7563,5827,'19079'),(7564,5828,'19080'),(7565,5828,'19087'),(7566,5828,'19088'),(7567,5828,'19089'),(7568,5829,'19081'),(7569,5830,'19082'),(7570,5831,'19083'),(7571,5832,'19085'),(7572,5833,'19086'),(7573,5834,'19090'),(7574,5835,'19094'),(7575,5836,'19095'),(7576,5837,'19096'),(7577,5838,'19301'),(7578,5839,'19310'),(7579,5840,'19311'),(7580,5841,'19312'),(7581,5842,'19316'),(7582,5843,'19317'),(7583,5844,'19318'),(7584,5845,'19319'),(7585,5846,'19320'),(7586,5847,'19330'),(7587,5848,'19331'),(7588,5848,'19339'),(7589,5848,'19340'),(7590,5849,'19333'),(7591,5850,'19335'),(7592,5851,'19341'),(7593,5852,'19342'),(7594,5853,'19343'),(7595,5854,'19344'),(7596,5855,'19345'),(7597,5856,'19346'),(7598,5857,'19347'),(7599,5858,'19348'),(7600,5859,'19350'),(7601,5860,'19351'),(7602,5861,'19352'),(7603,5862,'19353'),(7604,5863,'19354'),(7605,5864,'19355'),(7606,5865,'19357'),(7607,5866,'19358'),(7608,5867,'19360'),(7609,5868,'19362'),(7610,5869,'19363'),(7611,5870,'19365'),(7612,5871,'19366'),(7613,5872,'19367'),(7614,5873,'19369'),(7615,5874,'19370'),(7616,5875,'19371'),(7617,5876,'19372'),(7618,5877,'19373'),(7619,5878,'19374'),(7620,5879,'19375'),(7621,5880,'19376'),(7622,5881,'19380'),(7623,5881,'19381'),(7624,5881,'19382'),(7625,5881,'19383'),(7626,5882,'19390'),(7627,5883,'19395'),(7628,5884,'19397'),(7629,5884,'19398'),(7630,5884,'19399'),(7631,5885,'19401'),(7632,5885,'19403'),(7633,5885,'19404'),(7634,5885,'19488'),(7635,5885,'19489'),(7636,5886,'19405'),(7637,5887,'19406'),(7638,5887,'19487'),(7639,5888,'19407'),(7640,5889,'19408'),(7641,5890,'19409'),(7642,5891,'19420'),(7643,5892,'19421'),(7644,5893,'19422'),(7645,5893,'19424'),(7646,5894,'19423'),(7647,5895,'19425'),(7648,5896,'19426'),(7649,5897,'19428'),(7650,5897,'19429'),(7651,5898,'19430'),(7652,5899,'19432'),(7653,5900,'19435'),(7654,5901,'19436'),(7655,5902,'19437'),(7656,5903,'19438'),(7657,5903,'19441'),(7658,5904,'19440'),(7659,5905,'19442'),(7660,5906,'19443'),(7661,5907,'19444'),(7662,5908,'19446'),(7663,5909,'19450'),(7664,5910,'19451'),(7665,5911,'19452'),(7666,5912,'19453'),(7667,5913,'19454'),(7668,5913,'19455'),(7669,5914,'19456'),(7670,5915,'19457'),(7671,5916,'19460'),(7672,5917,'19462'),(7673,5918,'19464'),(7674,5918,'19465'),(7675,5919,'19468'),(7676,5920,'19470'),(7677,5921,'19472'),(7678,5922,'19473'),(7679,5923,'19474'),(7680,5924,'19475'),(7681,5925,'19477'),(7682,5926,'19478'),(7683,5927,'19480'),(7684,5928,'19481'),(7685,5928,'19482'),(7686,5928,'19483'),(7687,5928,'19484'),(7688,5928,'19485'),(7689,5928,'19493'),(7690,5928,'19494'),(7691,5928,'19495'),(7692,5928,'19496'),(7693,5929,'19486'),(7694,5930,'19490'),(7695,5931,'19492'),(7696,5932,'19501'),(7697,5933,'19503'),(7698,5934,'19504'),(7699,5935,'19505'),(7700,5936,'19506'),(7701,5937,'19507'),(7702,5938,'19508'),(7703,5939,'19510'),(7704,5940,'19511'),(7705,5941,'19512'),(7706,5942,'19516'),(7707,5943,'19517'),(7708,5944,'19518'),(7709,5945,'19519'),(7710,5946,'19520'),(7711,5947,'19522'),(7712,5948,'19523'),(7713,5949,'19525'),(7714,5950,'19526'),(7715,5951,'19529'),(7716,5952,'19530'),(7717,5953,'19533'),(7718,5954,'19534'),(7719,5955,'19535'),(7720,5956,'19536'),(7721,5957,'19538'),(7722,5958,'19539'),(7723,5959,'19540'),(7724,5960,'19541'),(7725,5961,'19542'),(7726,5962,'19543'),(7727,5963,'19544'),(7728,5964,'19545'),(7729,5965,'19547'),(7730,5966,'19548'),(7731,5967,'19549'),(7732,5968,'19550'),(7733,5969,'19551'),(7734,5970,'19554'),(7735,5971,'19555'),(7736,5972,'19557'),(7737,5973,'19559'),(7738,5974,'19560'),(7739,5975,'19562'),(7740,5976,'19564'),(7741,5977,'19565'),(7742,5978,'19567'),(7743,5979,'19601'),(7744,5979,'19602'),(7745,5979,'19603'),(7746,5979,'19604'),(7747,5979,'19605'),(7748,5979,'19606'),(7749,5979,'19607'),(7750,5979,'19608'),(7751,5979,'19609'),(7752,5979,'19610'),(7753,5979,'19611'),(7754,5979,'19612'),(7755,5979,'19640'),(7756,5980,'19701'),(7757,5981,'19702'),(7758,5981,'19711'),(7759,5981,'19712'),(7760,5981,'19713'),(7761,5981,'19714'),(7762,5981,'19715'),(7763,5981,'19716'),(7764,5981,'19717'),(7765,5981,'19718'),(7766,5981,'19725'),(7767,5981,'19726'),(7768,5982,'19703'),(7769,5983,'19706'),(7770,5984,'19707'),(7771,5985,'19708'),(7772,5986,'19709'),(7773,5987,'19710'),(7774,5988,'19720'),(7775,5988,'19721'),(7776,5989,'19730'),(7777,5990,'19731'),(7778,5991,'19732'),(7779,5992,'19733'),(7780,5993,'19734'),(7781,5994,'19735'),(7782,5995,'19736'),(7783,5996,'19801'),(7784,5996,'19802'),(7785,5996,'19803'),(7786,5996,'19804'),(7787,5996,'19805'),(7788,5996,'19806'),(7789,5996,'19807'),(7790,5996,'19808'),(7791,5996,'19809'),(7792,5996,'19810'),(7793,5996,'19850'),(7794,5996,'19880'),(7795,5996,'19884'),(7796,5996,'19885'),(7797,5996,'19886'),(7798,5996,'19887'),(7799,5996,'19889'),(7800,5996,'19890'),(7801,5996,'19891'),(7802,5996,'19892'),(7803,5996,'19893'),(7804,5996,'19894'),(7805,5996,'19895'),(7806,5996,'19896'),(7807,5996,'19897'),(7808,5996,'19898'),(7809,5996,'19899'),(7810,5997,'19901'),(7811,5997,'19903'),(7812,5997,'19904'),(7813,5997,'19905'),(7814,5998,'19902'),(7815,5999,'19930'),(7816,6000,'19931'),(7817,6001,'19933'),(7818,6002,'19934'),(7819,6003,'19936'),(7820,6004,'19938'),(7821,6005,'19939'),(7822,6006,'19940'),(7823,6007,'19941'),(7824,6008,'19942'),(7825,6009,'19943'),(7826,6010,'19944'),(7827,6011,'19945'),(7828,6012,'19946'),(7829,6013,'19947'),(7830,6014,'19950'),(7831,6015,'19951'),(7832,6016,'19952'),(7833,6017,'19953'),(7834,6018,'19954'),(7835,6019,'19955'),(7836,6020,'19956'),(7837,6021,'19958'),(7838,6022,'19960'),(7839,6023,'19961'),(7840,6024,'19962'),(7841,6025,'19963'),(7842,6026,'19964'),(7843,6027,'19966'),(7844,6028,'19967'),(7845,6029,'19968'),(7846,6030,'19969'),(7847,6031,'19970'),(7848,6032,'19971'),(7849,6033,'19973'),(7850,6034,'19975'),(7851,6035,'19977'),(7852,6036,'19979'),(7853,6037,'19980'),(7854,6038,'20001'),(7855,6038,'20002'),(7856,6038,'20003'),(7857,6038,'20004'),(7858,6038,'20005'),(7859,6038,'20006'),(7860,6038,'20007'),(7861,6038,'20008'),(7862,6038,'20009'),(7863,6038,'20010'),(7864,6038,'20011'),(7865,6038,'20012'),(7866,6038,'20013'),(7867,6038,'20015'),(7868,6038,'20016'),(7869,6038,'20017'),(7870,6038,'20018'),(7871,6038,'20019'),(7872,6038,'20020'),(7873,6038,'20024'),(7874,6038,'20026'),(7875,6038,'20029'),(7876,6038,'20030'),(7877,6038,'20032'),(7878,6038,'20033'),(7879,6038,'20035'),(7880,6038,'20036'),(7881,6038,'20037'),(7882,6038,'20038'),(7883,6038,'20039'),(7884,6038,'20040'),(7885,6038,'20041'),(7886,6038,'20042'),(7887,6038,'20043'),(7888,6038,'20044'),(7889,6038,'20045'),(7890,6038,'20046'),(7891,6038,'20047'),(7892,6038,'20049'),(7893,6038,'20050'),(7894,6038,'20051'),(7895,6038,'20052'),(7896,6038,'20053'),(7897,6038,'20055'),(7898,6038,'20056'),(7899,6038,'20057'),(7900,6038,'20058'),(7901,6038,'20059'),(7902,6038,'20060'),(7903,6038,'20061'),(7904,6038,'20062'),(7905,6038,'20063'),(7906,6038,'20064'),(7907,6038,'20065'),(7908,6038,'20066'),(7909,6038,'20067'),(7910,6038,'20068'),(7911,6038,'20069'),(7912,6038,'20070'),(7913,6038,'20071'),(7914,6038,'20073'),(7915,6038,'20074'),(7916,6038,'20075'),(7917,6038,'20076'),(7918,6038,'20077'),(7919,6038,'20078'),(7920,6038,'20080'),(7921,6038,'20081'),(7922,6038,'20082'),(7923,6038,'20088'),(7924,6038,'20090'),(7925,6038,'20091'),(7926,6038,'20097'),(7927,6038,'20098'),(7928,6038,'20099'),(7929,6038,'20201'),(7930,6038,'20202'),(7931,6038,'20203'),(7932,6038,'20204'),(7933,6038,'20206'),(7934,6038,'20207'),(7935,6038,'20208'),(7936,6038,'20210'),(7937,6038,'20211'),(7938,6038,'20212'),(7939,6038,'20213'),(7940,6038,'20214'),(7941,6038,'20215'),(7942,6038,'20216'),(7943,6038,'20217'),(7944,6038,'20218'),(7945,6038,'20219'),(7946,6038,'20220'),(7947,6038,'20221'),(7948,6038,'20222'),(7949,6038,'20223'),(7950,6038,'20224'),(7951,6038,'20226'),(7952,6038,'20227'),(7953,6038,'20228'),(7954,6038,'20229'),(7955,6038,'20230'),(7956,6038,'20231'),(7957,6038,'20232'),(7958,6038,'20233'),(7959,6038,'20235'),(7960,6038,'20238'),(7961,6038,'20239'),(7962,6038,'20240'),(7963,6038,'20241'),(7964,6038,'20242'),(7965,6038,'20244'),(7966,6038,'20245'),(7967,6038,'20250'),(7968,6038,'20251'),(7969,6038,'20254'),(7970,6038,'20260'),(7971,6038,'20261'),(7972,6038,'20262'),(7973,6038,'20265'),(7974,6038,'20266'),(7975,6038,'20268'),(7976,6038,'20270'),(7977,6038,'20277'),(7978,6038,'20289'),(7979,6038,'20299'),(7980,6038,'20301'),(7981,6038,'20303'),(7982,6038,'20306'),(7983,6038,'20307'),(7984,6038,'20310'),(7985,6038,'20314'),(7986,6038,'20315'),(7987,6038,'20317'),(7988,6038,'20318'),(7989,6038,'20319'),(7990,6038,'20330'),(7991,6038,'20332'),(7992,6038,'20336'),(7993,6038,'20337'),(7994,6038,'20338'),(7995,6038,'20340'),(7996,6038,'20350'),(7997,6038,'20370'),(7998,6038,'20372'),(7999,6038,'20373'),(8000,6038,'20374'),(8001,6038,'20375'),(8002,6038,'20380'),(8003,6038,'20388'),(8004,6038,'20389'),(8005,6038,'20390'),(8006,6038,'20391'),(8007,6038,'20392'),(8008,6038,'20393'),(8009,6038,'20394'),(8010,6038,'20395'),(8011,6038,'20398'),(8012,6038,'20401'),(8013,6038,'20402'),(8014,6038,'20403'),(8015,6038,'20404'),(8016,6038,'20405'),(8017,6038,'20406'),(8018,6038,'20407'),(8019,6038,'20408'),(8020,6038,'20409'),(8021,6038,'20410'),(8022,6038,'20411'),(8023,6038,'20412'),(8024,6038,'20413'),(8025,6038,'20414'),(8026,6038,'20415'),(8027,6038,'20416'),(8028,6038,'20418'),(8029,6038,'20419'),(8030,6038,'20420'),(8031,6038,'20421'),(8032,6038,'20422'),(8033,6038,'20423'),(8034,6038,'20424'),(8035,6038,'20425'),(8036,6038,'20426'),(8037,6038,'20427'),(8038,6038,'20428'),(8039,6038,'20429'),(8040,6038,'20431'),(8041,6038,'20433'),(8042,6038,'20434'),(8043,6038,'20435'),(8044,6038,'20436'),(8045,6038,'20437'),(8046,6038,'20439'),(8047,6038,'20440'),(8048,6038,'20441'),(8049,6038,'20442'),(8050,6038,'20444'),(8051,6038,'20447'),(8052,6038,'20451'),(8053,6038,'20453'),(8054,6038,'20456'),(8055,6038,'20460'),(8056,6038,'20463'),(8057,6038,'20468'),(8058,6038,'20469'),(8059,6038,'20470'),(8060,6038,'20472'),(8061,6038,'20501'),(8062,6038,'20502'),(8063,6038,'20503'),(8064,6038,'20504'),(8065,6038,'20505'),(8066,6038,'20506'),(8067,6038,'20507'),(8068,6038,'20508'),(8069,6038,'20510'),(8070,6038,'20515'),(8071,6038,'20520'),(8072,6038,'20521'),(8073,6038,'20522'),(8074,6038,'20523'),(8075,6038,'20524'),(8076,6038,'20525'),(8077,6038,'20526'),(8078,6038,'20527'),(8079,6038,'20530'),(8080,6038,'20531'),(8081,6038,'20532'),(8082,6038,'20533'),(8083,6038,'20534'),(8084,6038,'20535'),(8085,6038,'20536'),(8086,6038,'20537'),(8087,6038,'20538'),(8088,6038,'20539'),(8089,6038,'20540'),(8090,6038,'20541'),(8091,6038,'20542'),(8092,6038,'20543'),(8093,6038,'20544'),(8094,6038,'20546'),(8095,6038,'20547'),(8096,6038,'20548'),(8097,6038,'20549'),(8098,6038,'20550'),(8099,6038,'20551'),(8100,6038,'20552'),(8101,6038,'20553'),(8102,6038,'20554'),(8103,6038,'20555'),(8104,6038,'20557'),(8105,6038,'20558'),(8106,6038,'20559'),(8107,6038,'20560'),(8108,6038,'20565'),(8109,6038,'20566'),(8110,6038,'20570'),(8111,6038,'20571'),(8112,6038,'20572'),(8113,6038,'20573'),(8114,6038,'20575'),(8115,6038,'20576'),(8116,6038,'20577'),(8117,6038,'20578'),(8118,6038,'20579'),(8119,6038,'20580'),(8120,6038,'20581'),(8121,6038,'20585'),(8122,6038,'20586'),(8123,6038,'20590'),(8124,6038,'20591'),(8125,6038,'20593'),(8126,6038,'20594'),(8127,6038,'20597'),(8128,6038,'20599'),(8129,6039,'20101'),(8130,6039,'20102'),(8131,6039,'20103'),(8132,6039,'20104'),(8133,6039,'20199'),(8134,6040,'20105'),(8135,6041,'20106'),(8136,6041,'22002'),(8137,6042,'20107'),(8138,6043,'20108'),(8139,6043,'20109'),(8140,6043,'20110'),(8141,6043,'20111'),(8142,6043,'20112'),(8143,6043,'20113'),(8144,6044,'20115'),(8145,6044,'20116'),(8146,6045,'20117'),(8147,6045,'20118'),(8148,6046,'20119'),(8149,6047,'20120'),(8150,6047,'20121'),(8151,6047,'20122'),(8152,6048,'20124'),(8153,6049,'20128'),(8154,6050,'20129'),(8155,6051,'20130'),(8156,6052,'20131'),(8157,6053,'20132'),(8158,6053,'20134'),(8159,6054,'20135'),(8160,6055,'20136'),(8161,6056,'20137'),(8162,6057,'20138'),(8163,6058,'20139'),(8164,6059,'20140'),(8165,6060,'20141'),(8166,6060,'20142'),(8167,6061,'20143'),(8168,6062,'20144'),(8169,6063,'20146'),(8170,6063,'20147'),(8171,6063,'20148'),(8172,6063,'20149'),(8173,6063,'22093'),(8174,6064,'20151'),(8175,6064,'20152'),(8176,6064,'20153'),(8177,6065,'20155'),(8178,6065,'20156'),(8179,6066,'20158'),(8180,6066,'20159'),(8181,6067,'20160'),(8182,6068,'20163'),(8183,6068,'20164'),(8184,6068,'20165'),(8185,6068,'20166'),(8186,6068,'20167'),(8187,6069,'20168'),(8188,6069,'20169'),(8189,6070,'20170'),(8190,6070,'20171'),(8191,6070,'20172'),(8192,6070,'20192'),(8193,6070,'22092'),(8194,6070,'22095'),(8195,6071,'20175'),(8196,6071,'20176'),(8197,6071,'20177'),(8198,6071,'20178'),(8199,6072,'20180'),(8200,6073,'20181'),(8201,6073,'20182'),(8202,6074,'20184'),(8203,6074,'20185'),(8204,6075,'20186'),(8205,6075,'20187'),(8206,6075,'20188'),(8207,6076,'20190'),(8208,6076,'20191'),(8209,6076,'20193'),(8210,6076,'20194'),(8211,6076,'20195'),(8212,6076,'20196'),(8213,6076,'22096'),(8214,6077,'20197'),(8215,6078,'20198'),(8216,6079,'22003'),(8217,6080,'22009'),(8218,6080,'22015'),(8219,6081,'22026'),(8220,6082,'22027'),(8221,6083,'22030'),(8222,6083,'22031'),(8223,6083,'22032'),(8224,6083,'22033'),(8225,6083,'22034'),(8226,6083,'22035'),(8227,6083,'22036'),(8228,6083,'22037'),(8229,6083,'22038'),(8230,6084,'22039'),(8231,6085,'22040'),(8232,6085,'22041'),(8233,6085,'22042'),(8234,6085,'22043'),(8235,6085,'22044'),(8236,6085,'22046'),(8237,6085,'22047'),(8238,6086,'22060'),(8239,6087,'22066'),(8240,6088,'22067'),(8241,6089,'22079'),(8242,6089,'22199'),(8243,6090,'22081'),(8244,6090,'22082'),(8245,6090,'22116'),(8246,6090,'22118'),(8247,6090,'22119'),(8248,6090,'22120'),(8249,6091,'22101'),(8250,6091,'22102'),(8251,6091,'22106'),(8252,6091,'22109'),(8253,6092,'22103'),(8254,6093,'22121'),(8255,6094,'22122'),(8256,6095,'22124'),(8257,6096,'22125'),(8258,6097,'22134'),(8259,6097,'22135'),(8260,6098,'22150'),(8261,6098,'22151'),(8262,6098,'22152'),(8263,6098,'22153'),(8264,6098,'22156'),(8265,6098,'22158'),(8266,6098,'22159'),(8267,6098,'22160'),(8268,6098,'22161'),(8269,6099,'22172'),(8270,6100,'22180'),(8271,6100,'22181'),(8272,6100,'22182'),(8273,6100,'22183'),(8274,6100,'22184'),(8275,6100,'22185'),(8276,6101,'22191'),(8277,6101,'22192'),(8278,6101,'22193'),(8279,6101,'22194'),(8280,6101,'22195'),(8281,6102,'22201'),(8282,6102,'22202'),(8283,6102,'22203'),(8284,6102,'22204'),(8285,6102,'22205'),(8286,6102,'22206'),(8287,6102,'22207'),(8288,6102,'22209'),(8289,6102,'22210'),(8290,6102,'22212'),(8291,6102,'22213'),(8292,6102,'22214'),(8293,6102,'22215'),(8294,6102,'22216'),(8295,6102,'22217'),(8296,6102,'22218'),(8297,6102,'22219'),(8298,6102,'22222'),(8299,6102,'22223'),(8300,6102,'22225'),(8301,6102,'22226'),(8302,6102,'22227'),(8303,6102,'22229'),(8304,6102,'22230'),(8305,6102,'22234'),(8306,6102,'22240'),(8307,6102,'22241'),(8308,6102,'22242'),(8309,6102,'22243'),(8310,6102,'22244'),(8311,6102,'22245'),(8312,6102,'22246'),(8313,6103,'22211'),(8314,6104,'22301'),(8315,6104,'22302'),(8316,6104,'22303'),(8317,6104,'22304'),(8318,6104,'22305'),(8319,6104,'22306'),(8320,6104,'22307'),(8321,6104,'22308'),(8322,6104,'22309'),(8323,6104,'22310'),(8324,6104,'22311'),(8325,6104,'22312'),(8326,6104,'22313'),(8327,6104,'22314'),(8328,6104,'22315'),(8329,6104,'22320'),(8330,6104,'22321'),(8331,6104,'22331'),(8332,6104,'22332'),(8333,6104,'22333'),(8334,6104,'22334'),(8335,6104,'22336'),(8336,6105,'22401'),(8337,6105,'22402'),(8338,6105,'22403'),(8339,6105,'22404'),(8340,6105,'22405'),(8341,6105,'22406'),(8342,6105,'22407'),(8343,6105,'22408'),(8344,6105,'22412'),(8345,6106,'22427'),(8346,6106,'22428'),(8347,6107,'22430'),(8348,6108,'22432'),(8349,6109,'22433'),(8350,6110,'22435'),(8351,6111,'22436'),(8352,6112,'22437'),(8353,6113,'22438'),(8354,6114,'22442'),(8355,6115,'22443'),(8356,6116,'22446'),(8357,6117,'22448'),(8358,6118,'22451'),(8359,6119,'22454'),(8360,6120,'22456'),(8361,6121,'22460'),(8362,6122,'22463'),(8363,6123,'22469'),(8364,6124,'22471'),(8365,6125,'22472'),(8366,6126,'22473'),(8367,6127,'22476'),(8368,6128,'22480'),(8369,6129,'22481'),(8370,6130,'22482'),(8371,6131,'22485'),(8372,6132,'22488'),(8373,6133,'22501'),(8374,6134,'22503'),(8375,6135,'22504'),(8376,6136,'22507'),(8377,6137,'22508'),(8378,6138,'22509'),(8379,6139,'22511'),(8380,6140,'22513'),(8381,6141,'22514'),(8382,6142,'22517'),(8383,6143,'22520'),(8384,6144,'22523'),(8385,6145,'22524'),(8386,6146,'22526'),(8387,6147,'22528'),(8388,6148,'22529'),(8389,6149,'22530'),(8390,6150,'22534'),(8391,6151,'22535'),(8392,6152,'22538'),(8393,6153,'22539'),(8394,6154,'22542'),(8395,6155,'22544'),(8396,6156,'22545'),(8397,6157,'22546'),(8398,6158,'22547'),(8399,6159,'22548'),(8400,6160,'22552'),(8401,6161,'22553'),(8402,6162,'22554'),(8403,6162,'22555'),(8404,6163,'22558'),(8405,6164,'22560'),(8406,6165,'22565'),(8407,6166,'22567'),(8408,6167,'22570'),(8409,6168,'22572'),(8410,6169,'22576'),(8411,6170,'22577'),(8412,6171,'22578'),(8413,6172,'22579'),(8414,6173,'22580'),(8415,6174,'22581'),(8416,6175,'22601'),(8417,6175,'22602'),(8418,6175,'22603'),(8419,6175,'22604'),(8420,6175,'22638'),(8421,6176,'22610'),(8422,6177,'22611'),(8423,6178,'22620'),(8424,6179,'22622'),(8425,6180,'22623'),(8426,6181,'22624'),(8427,6182,'22625'),(8428,6183,'22626'),(8429,6184,'22627'),(8430,6185,'22630'),(8431,6186,'22637'),(8432,6187,'22639'),(8433,6188,'22640'),(8434,6189,'22641'),(8435,6189,'22657'),(8436,6190,'22642'),(8437,6191,'22643'),(8438,6192,'22644'),(8439,6193,'22645'),(8440,6193,'22649'),(8441,6194,'22646'),(8442,6195,'22650'),(8443,6196,'22652'),(8444,6197,'22654'),(8445,6198,'22655'),(8446,6199,'22656'),(8447,6200,'22660'),(8448,6201,'22663'),(8449,6202,'22664'),(8450,6203,'22701'),(8451,6204,'22709'),(8452,6205,'22711'),(8453,6206,'22712'),(8454,6207,'22713'),(8455,6208,'22714'),(8456,6209,'22715'),(8457,6210,'22716'),(8458,6211,'22718'),(8459,6212,'22719'),(8460,6213,'22720'),(8461,6214,'22721'),(8462,6215,'22722'),(8463,6216,'22723'),(8464,6217,'22724'),(8465,6218,'22725'),(8466,6219,'22726'),(8467,6220,'22727'),(8468,6221,'22728'),(8469,6222,'22729'),(8470,6223,'22730'),(8471,6224,'22731'),(8472,6225,'22732'),(8473,6226,'22733'),(8474,6227,'22734'),(8475,6228,'22735'),(8476,6229,'22736'),(8477,6230,'22737'),(8478,6231,'22738'),(8479,6232,'22739'),(8480,6233,'22740'),(8481,6234,'22741'),(8482,6235,'22742'),(8483,6236,'22743'),(8484,6237,'22746'),(8485,6238,'22747'),(8486,6239,'22748'),(8487,6240,'22749'),(8488,6241,'22801'),(8489,6241,'22802'),(8490,6241,'22807'),(8491,6242,'22810'),(8492,6243,'22811'),(8493,6244,'22812'),(8494,6245,'22815'),(8495,6246,'22820'),(8496,6247,'22821'),(8497,6248,'22824'),(8498,6249,'22827'),(8499,6250,'22830'),(8500,6251,'22831'),(8501,6252,'22832'),(8502,6253,'22833'),(8503,6254,'22834'),(8504,6255,'22835'),(8505,6256,'22840'),(8506,6257,'22841'),(8507,6258,'22842'),(8508,6259,'22843'),(8509,6260,'22844'),(8510,6261,'22845'),(8511,6262,'22846'),(8512,6263,'22847'),(8513,6264,'22848'),(8514,6265,'22849'),(8515,6266,'22850'),(8516,6267,'22851'),(8517,6268,'22853'),(8518,6269,'22901'),(8519,6269,'22902'),(8520,6269,'22903'),(8521,6269,'22904'),(8522,6269,'22905'),(8523,6269,'22906'),(8524,6269,'22907'),(8525,6269,'22908'),(8526,6269,'22909'),(8527,6269,'22910'),(8528,6269,'22911'),(8529,6270,'22920'),(8530,6271,'22922'),(8531,6272,'22923'),(8532,6273,'22924'),(8533,6274,'22931'),(8534,6275,'22932'),(8535,6276,'22935'),(8536,6277,'22936'),(8537,6278,'22937'),(8538,6279,'22938'),(8539,6280,'22939'),(8540,6281,'22940'),(8541,6282,'22942'),(8542,6283,'22943'),(8543,6284,'22945'),(8544,6285,'22946'),(8545,6286,'22947'),(8546,6287,'22948'),(8547,6288,'22949'),(8548,6289,'22952'),(8549,6290,'22953'),(8550,6291,'22954'),(8551,6292,'22957'),(8552,6293,'22958'),(8553,6294,'22959'),(8554,6295,'22960'),(8555,6296,'22963'),(8556,6297,'22964'),(8557,6298,'22965'),(8558,6299,'22967'),(8559,6300,'22968'),(8560,6301,'22969'),(8561,6302,'22971'),(8562,6303,'22972'),(8563,6304,'22973'),(8564,6305,'22974'),(8565,6306,'22976'),(8566,6307,'22980'),(8567,6308,'22987'),(8568,6309,'22989'),(8569,6310,'23001'),(8570,6311,'23002'),(8571,6312,'23003'),(8572,6313,'23004'),(8573,6314,'23005'),(8574,6315,'23009'),(8575,6316,'23011'),(8576,6317,'23014'),(8577,6318,'23015'),(8578,6319,'23017'),(8579,6320,'23018'),(8580,6321,'23021'),(8581,6322,'23022'),(8582,6323,'23023'),(8583,6324,'23024'),(8584,6325,'23025'),(8585,6326,'23027'),(8586,6327,'23030'),(8587,6328,'23031'),(8588,6329,'23032'),(8589,6330,'23035'),(8590,6331,'23038'),(8591,6332,'23039'),(8592,6333,'23040'),(8593,6334,'23043'),(8594,6335,'23045'),(8595,6336,'23047'),(8596,6337,'23050'),(8597,6338,'23054'),(8598,6339,'23055'),(8599,6340,'23056'),(8600,6341,'23058'),(8601,6341,'23059'),(8602,6341,'23060'),(8603,6342,'23061'),(8604,6343,'23062'),(8605,6344,'23063'),(8606,6345,'23064'),(8607,6346,'23065'),(8608,6347,'23066'),(8609,6348,'23067'),(8610,6349,'23068'),(8611,6350,'23069'),(8612,6351,'23070'),(8613,6352,'23071'),(8614,6353,'23072'),(8615,6354,'23075'),(8616,6355,'23076'),(8617,6356,'23079'),(8618,6357,'23081'),(8619,6358,'23083'),(8620,6359,'23084'),(8621,6360,'23085'),(8622,6361,'23086'),(8623,6362,'23089'),(8624,6363,'23090'),(8625,6364,'23091'),(8626,6365,'23092'),(8627,6366,'23093'),(8628,6367,'23101'),(8629,6368,'23102'),(8630,6369,'23103'),(8631,6370,'23105'),(8632,6371,'23106'),(8633,6372,'23107'),(8634,6373,'23108'),(8635,6374,'23109'),(8636,6375,'23110'),(8637,6376,'23111'),(8638,6376,'23116'),(8639,6377,'23112'),(8640,6377,'23113'),(8641,6378,'23115'),(8642,6379,'23117'),(8643,6380,'23119'),(8644,6381,'23120'),(8645,6382,'23123'),(8646,6383,'23124'),(8647,6384,'23125'),(8648,6385,'23126'),(8649,6386,'23127'),(8650,6387,'23128'),(8651,6388,'23129'),(8652,6389,'23130'),(8653,6390,'23131'),(8654,6391,'23138'),(8655,6392,'23139'),(8656,6393,'23140'),(8657,6394,'23141'),(8658,6395,'23146'),(8659,6396,'23147'),(8660,6397,'23148'),(8661,6398,'23149'),(8662,6399,'23150'),(8663,6400,'23153'),(8664,6401,'23154'),(8665,6402,'23155'),(8666,6403,'23156'),(8667,6404,'23160'),(8668,6405,'23161'),(8669,6406,'23162'),(8670,6407,'23163'),(8671,6408,'23168'),(8672,6409,'23169'),(8673,6410,'23170'),(8674,6411,'23173'),(8675,6412,'23175'),(8676,6413,'23176'),(8677,6414,'23177'),(8678,6415,'23178'),(8679,6416,'23180'),(8680,6417,'23181'),(8681,6418,'23183'),(8682,6419,'23184'),(8683,6420,'23185'),(8684,6420,'23186'),(8685,6420,'23187'),(8686,6420,'23188'),(8687,6421,'23190'),(8688,6422,'23191'),(8689,6423,'23192'),(8690,6424,'23218'),(8691,6424,'23219'),(8692,6424,'23220'),(8693,6424,'23221'),(8694,6424,'23222'),(8695,6424,'23223'),(8696,6424,'23224'),(8697,6424,'23225'),(8698,6424,'23226'),(8699,6424,'23227'),(8700,6424,'23228'),(8701,6424,'23229'),(8702,6424,'23230'),(8703,6424,'23231'),(8704,6424,'23232'),(8705,6424,'23233'),(8706,6424,'23234'),(8707,6424,'23235'),(8708,6424,'23236'),(8709,6424,'23237'),(8710,6424,'23238'),(8711,6424,'23240'),(8712,6424,'23241'),(8713,6424,'23242'),(8714,6424,'23249'),(8715,6424,'23250'),(8716,6424,'23255'),(8717,6424,'23260'),(8718,6424,'23261'),(8719,6424,'23266'),(8720,6424,'23269'),(8721,6424,'23270'),(8722,6424,'23272'),(8723,6424,'23273'),(8724,6424,'23274'),(8725,6424,'23275'),(8726,6424,'23276'),(8727,6424,'23278'),(8728,6424,'23279'),(8729,6424,'23280'),(8730,6424,'23282'),(8731,6424,'23284'),(8732,6424,'23285'),(8733,6424,'23286'),(8734,6424,'23288'),(8735,6424,'23289'),(8736,6424,'23290'),(8737,6424,'23291'),(8738,6424,'23292'),(8739,6424,'23293'),(8740,6424,'23294'),(8741,6424,'23297'),(8742,6424,'23298'),(8743,6425,'23301'),(8744,6426,'23302'),(8745,6427,'23303'),(8746,6428,'23304'),(8747,6429,'23306'),(8748,6430,'23307'),(8749,6431,'23308'),(8750,6432,'23310'),(8751,6433,'23313'),(8752,6434,'23314'),(8753,6435,'23315'),(8754,6436,'23316'),(8755,6437,'23320'),(8756,6437,'23321'),(8757,6437,'23322'),(8758,6437,'23323'),(8759,6437,'23324'),(8760,6437,'23325'),(8761,6437,'23326'),(8762,6437,'23327'),(8763,6437,'23328'),(8764,6438,'23336'),(8765,6439,'23337'),(8766,6440,'23341'),(8767,6441,'23345'),(8768,6442,'23347'),(8769,6443,'23350'),(8770,6444,'23354'),(8771,6445,'23356'),(8772,6446,'23357'),(8773,6447,'23358'),(8774,6448,'23359'),(8775,6449,'23389'),(8776,6450,'23395'),(8777,6451,'23396'),(8778,6451,'23416'),(8779,6452,'23397'),(8780,6453,'23398'),(8781,6454,'23399'),(8782,6455,'23401'),(8783,6456,'23404'),(8784,6457,'23405'),(8785,6458,'23407'),(8786,6459,'23408'),(8787,6460,'23409'),(8788,6461,'23410'),(8789,6462,'23412'),(8790,6463,'23413'),(8791,6464,'23414'),(8792,6465,'23415'),(8793,6466,'23417'),(8794,6467,'23418'),(8795,6468,'23419'),(8796,6469,'23420'),(8797,6470,'23421'),(8798,6471,'23422'),(8799,6472,'23423'),(8800,6473,'23424'),(8801,6474,'23426'),(8802,6475,'23427'),(8803,6476,'23429'),(8804,6477,'23430'),(8805,6477,'23431'),(8806,6478,'23432'),(8807,6478,'23433'),(8808,6478,'23434'),(8809,6478,'23435'),(8810,6478,'23436'),(8811,6478,'23437'),(8812,6478,'23438'),(8813,6478,'23439'),(8814,6479,'23440'),(8815,6480,'23441'),(8816,6481,'23442'),(8817,6482,'23443'),(8818,6483,'23450'),(8819,6483,'23451'),(8820,6483,'23452'),(8821,6483,'23454'),(8822,6483,'23455'),(8823,6483,'23456'),(8824,6483,'23457'),(8825,6483,'23458'),(8826,6483,'23459'),(8827,6483,'23460'),(8828,6483,'23461'),(8829,6483,'23462'),(8830,6483,'23463'),(8831,6483,'23464'),(8832,6483,'23465'),(8833,6483,'23466'),(8834,6483,'23467'),(8835,6483,'23468'),(8836,6483,'23471'),(8837,6483,'23479'),(8838,6484,'23480'),(8839,6485,'23482'),(8840,6486,'23483'),(8841,6487,'23486'),(8842,6488,'23487'),(8843,6489,'23488'),(8844,6490,'23501'),(8845,6490,'23502'),(8846,6490,'23503'),(8847,6490,'23504'),(8848,6490,'23505'),(8849,6490,'23506'),(8850,6490,'23507'),(8851,6490,'23508'),(8852,6490,'23509'),(8853,6490,'23510'),(8854,6490,'23511'),(8855,6490,'23512'),(8856,6490,'23513'),(8857,6490,'23514'),(8858,6490,'23515'),(8859,6490,'23517'),(8860,6490,'23518'),(8861,6490,'23519'),(8862,6490,'23520'),(8863,6490,'23521'),(8864,6490,'23523'),(8865,6490,'23529'),(8866,6490,'23530'),(8867,6490,'23541'),(8868,6490,'23551'),(8869,6491,'23601'),(8870,6491,'23602'),(8871,6491,'23603'),(8872,6491,'23605'),(8873,6491,'23606'),(8874,6491,'23607'),(8875,6491,'23608'),(8876,6491,'23609'),(8877,6491,'23612'),(8878,6491,'23628'),(8879,6492,'23604'),(8880,6493,'23630'),(8881,6493,'23631'),(8882,6493,'23653'),(8883,6493,'23661'),(8884,6493,'23663'),(8885,6493,'23664'),(8886,6493,'23665'),(8887,6493,'23666'),(8888,6493,'23667'),(8889,6493,'23668'),(8890,6493,'23669'),(8891,6493,'23670'),(8892,6493,'23681'),(8893,6494,'23651'),(8894,6495,'23662'),(8895,6496,'23690'),(8896,6496,'23691'),(8897,6496,'23692'),(8898,6496,'23693'),(8899,6497,'23694'),(8900,6498,'23696'),(8901,6499,'23701'),(8902,6499,'23702'),(8903,6499,'23703'),(8904,6499,'23704'),(8905,6499,'23705'),(8906,6499,'23707'),(8907,6499,'23708'),(8908,6499,'23709'),(8909,6500,'23801'),(8910,6501,'23803'),(8911,6501,'23804'),(8912,6501,'23805'),(8913,6501,'23806'),(8914,6502,'23821'),(8915,6503,'23822'),(8916,6504,'23824'),(8917,6505,'23827'),(8918,6506,'23828'),(8919,6507,'23829'),(8920,6508,'23830'),(8921,6509,'23831'),(8922,6509,'23836'),(8923,6510,'23832'),(8924,6510,'23838'),(8925,6511,'23833'),(8926,6512,'23834'),(8927,6513,'23837'),(8928,6514,'23839'),(8929,6515,'23840'),(8930,6516,'23841'),(8931,6517,'23842'),(8932,6518,'23843'),(8933,6519,'23844'),(8934,6520,'23845'),(8935,6521,'23846'),(8936,6522,'23847'),(8937,6523,'23850'),(8938,6524,'23851'),(8939,6525,'23856'),(8940,6526,'23857'),(8941,6527,'23860'),(8942,6528,'23866'),(8943,6529,'23867'),(8944,6529,'23870'),(8945,6530,'23868'),(8946,6531,'23872'),(8947,6532,'23873'),(8948,6533,'23874'),(8949,6534,'23875'),(8950,6535,'23876'),(8951,6536,'23878'),(8952,6537,'23879'),(8953,6538,'23881'),(8954,6539,'23882'),(8955,6540,'23883'),(8956,6541,'23884'),(8957,6542,'23885'),(8958,6543,'23887'),(8959,6544,'23888'),(8960,6545,'23889'),(8961,6546,'23890'),(8962,6546,'23891'),(8963,6547,'23893'),(8964,6548,'23894'),(8965,6549,'23897'),(8966,6550,'23898'),(8967,6551,'23899'),(8968,6552,'23901'),(8969,6552,'23909'),(8970,6553,'23915'),(8971,6554,'23917'),(8972,6555,'23919'),(8973,6556,'23920'),(8974,6557,'23921'),(8975,6558,'23922'),(8976,6559,'23923'),(8977,6560,'23924'),(8978,6561,'23927'),(8979,6562,'23930'),(8980,6563,'23934'),(8981,6564,'23936'),(8982,6565,'23937'),(8983,6566,'23938'),(8984,6567,'23939'),(8985,6568,'23941'),(8986,6569,'23942'),(8987,6570,'23943'),(8988,6571,'23944'),(8989,6572,'23947'),(8990,6573,'23950'),(8991,6574,'23952'),(8992,6575,'23954'),(8993,6576,'23955'),(8994,6577,'23958'),(8995,6578,'23959'),(8996,6579,'23960'),(8997,6580,'23962'),(8998,6581,'23963'),(8999,6582,'23964'),(9000,6583,'23966'),(9001,6584,'23967'),(9002,6585,'23968'),(9003,6586,'23970'),(9004,6587,'23974'),(9005,6588,'23976'),(9006,6589,'24001'),(9007,6589,'24002'),(9008,6589,'24003'),(9009,6589,'24004'),(9010,6589,'24005'),(9011,6589,'24006'),(9012,6589,'24007'),(9013,6589,'24008'),(9014,6589,'24009'),(9015,6589,'24010'),(9016,6589,'24011'),(9017,6589,'24012'),(9018,6589,'24013'),(9019,6589,'24014'),(9020,6589,'24015'),(9021,6589,'24016'),(9022,6589,'24017'),(9023,6589,'24018'),(9024,6589,'24019'),(9025,6589,'24020'),(9026,6589,'24022'),(9027,6589,'24023'),(9028,6589,'24024'),(9029,6589,'24025'),(9030,6589,'24026'),(9031,6589,'24027'),(9032,6589,'24028'),(9033,6589,'24029'),(9034,6589,'24030'),(9035,6589,'24031'),(9036,6589,'24032'),(9037,6589,'24033'),(9038,6589,'24034'),(9039,6589,'24035'),(9040,6589,'24036'),(9041,6589,'24037'),(9042,6589,'24038'),(9043,6589,'24040'),(9044,6589,'24042'),(9045,6589,'24043'),(9046,6589,'24044'),(9047,6589,'24045'),(9048,6589,'24048'),(9049,6589,'24050'),(9050,6590,'24053'),(9051,6591,'24054'),(9052,6592,'24055'),(9053,6593,'24058'),(9054,6594,'24059'),(9055,6595,'24060'),(9056,6595,'24061'),(9057,6595,'24062'),(9058,6595,'24063'),(9059,6596,'24064'),(9060,6597,'24065'),(9061,6598,'24066'),(9062,6599,'24067'),(9063,6600,'24068'),(9064,6600,'24073'),(9065,6601,'24069'),(9066,6602,'24070'),(9067,6603,'24072'),(9068,6604,'24076'),(9069,6605,'24077'),(9070,6606,'24078'),(9071,6607,'24079'),(9072,6608,'24082'),(9073,6609,'24083'),(9074,6610,'24084'),(9075,6611,'24085'),(9076,6612,'24086'),(9077,6613,'24087'),(9078,6614,'24088'),(9079,6615,'24089'),(9080,6616,'24090'),(9081,6617,'24091'),(9082,6618,'24092'),(9083,6619,'24093'),(9084,6620,'24094'),(9085,6621,'24095'),(9086,6622,'24101'),(9087,6623,'24102'),(9088,6624,'24104'),(9089,6625,'24105'),(9090,6626,'24111'),(9091,6627,'24112'),(9092,6627,'24113'),(9093,6627,'24114'),(9094,6627,'24115'),(9095,6628,'24120'),(9096,6629,'24121'),(9097,6630,'24122'),(9098,6631,'24124'),(9099,6632,'24126'),(9100,6633,'24127'),(9101,6634,'24128'),(9102,6635,'24129'),(9103,6636,'24130'),(9104,6637,'24131'),(9105,6638,'24132'),(9106,6639,'24133'),(9107,6640,'24134'),(9108,6641,'24136'),(9109,6642,'24137'),(9110,6643,'24138'),(9111,6644,'24139'),(9112,6645,'24141'),(9113,6645,'24142'),(9114,6645,'24143'),(9115,6646,'24146'),(9116,6647,'24147'),(9117,6648,'24148'),(9118,6649,'24149'),(9119,6650,'24150'),(9120,6651,'24151'),(9121,6652,'24153'),(9122,6652,'24155'),(9123,6652,'24156'),(9124,6652,'24157'),(9125,6653,'24161'),(9126,6654,'24162'),(9127,6655,'24165'),(9128,6656,'24167'),(9129,6657,'24168'),(9130,6658,'24171'),(9131,6659,'24174'),(9132,6660,'24175'),(9133,6661,'24176'),(9134,6662,'24177'),(9135,6663,'24178'),(9136,6664,'24179'),(9137,6665,'24184'),(9138,6666,'24185'),(9139,6667,'24201'),(9140,6667,'24202'),(9141,6667,'24203'),(9142,6667,'24209'),(9143,6668,'24210'),(9144,6668,'24211'),(9145,6668,'24212'),(9146,6669,'24215'),(9147,6670,'24216'),(9148,6671,'24217'),(9149,6672,'24218'),(9150,6673,'24219'),(9151,6674,'24220'),(9152,6675,'24221'),(9153,6676,'24224'),(9154,6677,'24225'),(9155,6678,'24226'),(9156,6679,'24228'),(9157,6680,'24230'),(9158,6681,'24236'),(9159,6682,'24237'),(9160,6683,'24239'),(9161,6684,'24243'),(9162,6685,'24244'),(9163,6686,'24245'),(9164,6687,'24246'),(9165,6688,'24248'),(9166,6689,'24250'),(9167,6690,'24251'),(9168,6691,'24256'),(9169,6692,'24258'),(9170,6693,'24260'),(9171,6694,'24263'),(9172,6695,'24265'),(9173,6696,'24266'),(9174,6697,'24269'),(9175,6698,'24270'),(9176,6699,'24271'),(9177,6700,'24272'),(9178,6701,'24273'),(9179,6702,'24277'),(9180,6703,'24279'),(9181,6704,'24280'),(9182,6705,'24281'),(9183,6706,'24282'),(9184,6707,'24283'),(9185,6708,'24285'),(9186,6709,'24289'),(9187,6710,'24290'),(9188,6711,'24292'),(9189,6712,'24293'),(9190,6713,'24301'),(9191,6714,'24311'),(9192,6715,'24312'),(9193,6716,'24313'),(9194,6717,'24314'),(9195,6718,'24315'),(9196,6719,'24316'),(9197,6720,'24317'),(9198,6721,'24318'),(9199,6722,'24319'),(9200,6723,'24322'),(9201,6724,'24323'),(9202,6725,'24324'),(9203,6726,'24325'),(9204,6727,'24326'),(9205,6728,'24327'),(9206,6729,'24328'),(9207,6730,'24330'),(9208,6731,'24333'),(9209,6732,'24340'),(9210,6733,'24343'),(9211,6734,'24347'),(9212,6735,'24348'),(9213,6736,'24350'),(9214,6737,'24351'),(9215,6738,'24352'),(9216,6739,'24354'),(9217,6740,'24360'),(9218,6741,'24361'),(9219,6742,'24363'),(9220,6743,'24366'),(9221,6744,'24368'),(9222,6745,'24370'),(9223,6746,'24373'),(9224,6747,'24374'),(9225,6748,'24375'),(9226,6749,'24377'),(9227,6750,'24378'),(9228,6751,'24379'),(9229,6752,'24380'),(9230,6753,'24381'),(9231,6754,'24382'),(9232,6755,'24401'),(9233,6755,'24402'),(9234,6755,'24407'),(9235,6756,'24411'),(9236,6757,'24412'),(9237,6758,'24413'),(9238,6759,'24415'),(9239,6760,'24416'),(9240,6761,'24421'),(9241,6762,'24422'),(9242,6763,'24426'),(9243,6764,'24430'),(9244,6765,'24431'),(9245,6766,'24432'),(9246,6767,'24433'),(9247,6768,'24435'),(9248,6769,'24437'),(9249,6770,'24438'),(9250,6771,'24439'),(9251,6772,'24440'),(9252,6773,'24441'),(9253,6774,'24442'),(9254,6775,'24445'),(9255,6776,'24448'),(9256,6777,'24450'),(9257,6778,'24457'),(9258,6779,'24458'),(9259,6780,'24459'),(9260,6781,'24460'),(9261,6782,'24463'),(9262,6783,'24464'),(9263,6784,'24465'),(9264,6785,'24467'),(9265,6786,'24468'),(9266,6787,'24469'),(9267,6788,'24471'),(9268,6789,'24472'),(9269,6790,'24473'),(9270,6791,'24474'),(9271,6792,'24475'),(9272,6793,'24476'),(9273,6794,'24477'),(9274,6795,'24479'),(9275,6796,'24482'),(9276,6797,'24483'),(9277,6798,'24484'),(9278,6799,'24485'),(9279,6800,'24486'),(9280,6801,'24487'),(9281,6802,'24501'),(9282,6802,'24502'),(9283,6802,'24503'),(9284,6802,'24504'),(9285,6802,'24505'),(9286,6802,'24506'),(9287,6802,'24512'),(9288,6802,'24513'),(9289,6802,'24514'),(9290,6802,'24515'),(9291,6803,'24517'),(9292,6804,'24520'),(9293,6805,'24521'),(9294,6806,'24522'),(9295,6807,'24523'),(9296,6808,'24526'),(9297,6809,'24527'),(9298,6810,'24528'),(9299,6811,'24529'),(9300,6812,'24530'),(9301,6813,'24531'),(9302,6814,'24533'),(9303,6815,'24534'),(9304,6816,'24535'),(9305,6817,'24536'),(9306,6818,'24538'),(9307,6819,'24539'),(9308,6820,'24540'),(9309,6820,'24541'),(9310,6820,'24543'),(9311,6820,'24544'),(9312,6821,'24549'),(9313,6822,'24550'),(9314,6823,'24551'),(9315,6824,'24553'),(9316,6825,'24554'),(9317,6826,'24555'),(9318,6827,'24556'),(9319,6828,'24557'),(9320,6829,'24558'),(9321,6830,'24562'),(9322,6831,'24563'),(9323,6832,'24565'),(9324,6833,'24566'),(9325,6834,'24569'),(9326,6835,'24570'),(9327,6836,'24571'),(9328,6837,'24572'),(9329,6838,'24574'),(9330,6839,'24576'),(9331,6840,'24577'),(9332,6841,'24578'),(9333,6842,'24579'),(9334,6843,'24580'),(9335,6844,'24581'),(9336,6845,'24585'),(9337,6846,'24586'),(9338,6847,'24588'),(9339,6848,'24589'),(9340,6849,'24590'),(9341,6850,'24592'),(9342,6851,'24593'),(9343,6852,'24594'),(9344,6853,'24595'),(9345,6854,'24597'),(9346,6855,'24598'),(9347,6856,'24599'),(9348,6857,'24601'),(9349,6858,'24602'),(9350,6859,'24603'),(9351,6860,'24604'),(9352,6861,'24605'),(9353,6862,'24606'),(9354,6863,'24607'),(9355,6864,'24608'),(9356,6865,'24609'),(9357,6866,'24612'),(9358,6867,'24613'),(9359,6868,'24614'),(9360,6869,'24618'),(9361,6870,'24619'),(9362,6871,'24620'),(9363,6872,'24622'),(9364,6873,'24624'),(9365,6874,'24627'),(9366,6875,'24628'),(9367,6876,'24630'),(9368,6877,'24631'),(9369,6878,'24634'),(9370,6879,'24635'),(9371,6880,'24637'),(9372,6881,'24639'),(9373,6882,'24640'),(9374,6883,'24641'),(9375,6884,'24646'),(9376,6885,'24647'),(9377,6886,'24649'),(9378,6887,'24651'),(9379,6888,'24656'),(9380,6889,'24657'),(9381,6890,'24658'),(9382,6891,'20601'),(9383,6891,'20602'),(9384,6891,'20603'),(9385,6891,'20604'),(9386,6892,'20606'),(9387,6893,'20607'),(9388,6894,'20608'),(9389,6895,'20609'),(9390,6896,'20610'),(9391,6897,'20611'),(9392,6898,'20612'),(9393,6899,'20613'),(9394,6900,'20615'),(9395,6901,'20616'),(9396,6902,'20617'),(9397,6903,'20618'),(9398,6904,'20619'),(9399,6905,'20620'),(9400,6906,'20621'),(9401,6907,'20622'),(9402,6908,'20623'),(9403,6909,'20624'),(9404,6910,'20625'),(9405,6911,'20626'),(9406,6912,'20627'),(9407,6913,'20628'),(9408,6914,'20629'),(9409,6915,'20630'),(9410,6916,'20632'),(9411,6917,'20634'),(9412,6918,'20635'),(9413,6919,'20636'),(9414,6920,'20637'),(9415,6921,'20639'),(9416,6922,'20640'),(9417,6923,'20643'),(9418,6924,'20645'),(9419,6925,'20646'),(9420,6926,'20650'),(9421,6927,'20653'),(9422,6928,'20656'),(9423,6929,'20657'),(9424,6930,'20658'),(9425,6931,'20659'),(9426,6932,'20660'),(9427,6933,'20661'),(9428,6934,'20662'),(9429,6935,'20664'),(9430,6936,'20667'),(9431,6937,'20670'),(9432,6938,'20674'),(9433,6939,'20675'),(9434,6940,'20676'),(9435,6941,'20677'),(9436,6942,'20678'),(9437,6943,'20680'),(9438,6944,'20682'),(9439,6945,'20684'),(9440,6946,'20685'),(9441,6947,'20686'),(9442,6948,'20687'),(9443,6949,'20688'),(9444,6950,'20689'),(9445,6951,'20690'),(9446,6952,'20692'),(9447,6953,'20693'),(9448,6954,'20695'),(9449,6955,'20697'),(9450,6955,'20797'),(9451,6956,'20701'),(9452,6957,'20703'),(9453,6957,'20706'),(9454,6958,'20704'),(9455,6958,'20705'),(9456,6959,'20707'),(9457,6959,'20708'),(9458,6959,'20709'),(9459,6959,'20723'),(9460,6959,'20724'),(9461,6959,'20725'),(9462,6959,'20726'),(9463,6960,'20710'),(9464,6961,'20711'),(9465,6962,'20712'),(9466,6963,'20714'),(9467,6964,'20715'),(9468,6964,'20716'),(9469,6964,'20717'),(9470,6964,'20718'),(9471,6964,'20719'),(9472,6964,'20720'),(9473,6964,'20721'),(9474,6965,'20722'),(9475,6966,'20731'),(9476,6966,'20743'),(9477,6966,'20790'),(9478,6966,'20791'),(9479,6966,'20799'),(9480,6967,'20732'),(9481,6968,'20733'),(9482,6969,'20735'),(9483,6970,'20736'),(9484,6971,'20737'),(9485,6971,'20738'),(9486,6972,'20740'),(9487,6972,'20741'),(9488,6972,'20742'),(9489,6973,'20744'),(9490,6973,'20749'),(9491,6974,'20745'),(9492,6974,'20750'),(9493,6975,'20746'),(9494,6975,'20752'),(9495,6976,'20747'),(9496,6976,'20753'),(9497,6977,'20748'),(9498,6977,'20757'),(9499,6978,'20751'),(9500,6979,'20754'),(9501,6980,'20755'),(9502,6981,'20758'),(9503,6982,'20759'),(9504,6983,'20762'),(9505,6984,'20763'),(9506,6985,'20764'),(9507,6986,'20765'),(9508,6987,'20768'),(9509,6987,'20770'),(9510,6987,'20771'),(9511,6988,'20769'),(9512,6989,'20772'),(9513,6989,'20773'),(9514,6989,'20774'),(9515,6989,'20775'),(9516,6990,'20776'),(9517,6991,'20777'),(9518,6992,'20778'),(9519,6993,'20779'),(9520,6994,'20781'),(9521,6994,'20782'),(9522,6994,'20783'),(9523,6994,'20784'),(9524,6994,'20785'),(9525,6994,'20787'),(9526,6994,'20788'),(9527,6995,'20794'),(9528,6996,'20812'),(9529,6997,'20813'),(9530,6997,'20814'),(9531,6997,'20816'),(9532,6997,'20817'),(9533,6997,'20824'),(9534,6997,'20827'),(9535,6997,'20889'),(9536,6997,'20892'),(9537,6997,'20894'),(9538,6998,'20815'),(9539,6998,'20825'),(9540,6999,'20818'),(9541,7000,'20830'),(9542,7000,'20832'),(9543,7001,'20833'),(9544,7002,'20837'),(9545,7003,'20838'),(9546,7004,'20839'),(9547,7005,'20841'),(9548,7006,'20842'),(9549,7007,'20847'),(9550,7007,'20848'),(9551,7007,'20849'),(9552,7007,'20850'),(9553,7007,'20851'),(9554,7007,'20852'),(9555,7007,'20853'),(9556,7007,'20857'),(9557,7008,'20854'),(9558,7008,'20859'),(9559,7009,'20855'),(9560,7010,'20860'),(9561,7011,'20861'),(9562,7012,'20862'),(9563,7013,'20866'),(9564,7014,'20868'),(9565,7015,'20871'),(9566,7016,'20872'),(9567,7017,'20874'),(9568,7017,'20875'),(9569,7017,'20876'),(9570,7018,'20877'),(9571,7018,'20878'),(9572,7018,'20879'),(9573,7018,'20882'),(9574,7018,'20884'),(9575,7018,'20885'),(9576,7018,'20898'),(9577,7018,'20899'),(9578,7019,'20880'),(9579,7020,'20886'),(9580,7021,'20891'),(9581,7021,'20895'),(9582,7022,'20896'),(9583,7023,'20897'),(9584,7024,'20901'),(9585,7024,'20902'),(9586,7024,'20903'),(9587,7024,'20904'),(9588,7024,'20905'),(9589,7024,'20906'),(9590,7024,'20907'),(9591,7024,'20908'),(9592,7024,'20910'),(9593,7024,'20911'),(9594,7024,'20914'),(9595,7024,'20915'),(9596,7024,'20916'),(9597,7024,'20918'),(9598,7024,'20997'),(9599,7025,'20912'),(9600,7025,'20913'),(9601,7026,'21001'),(9602,7027,'21005'),(9603,7028,'21009'),(9604,7029,'21010'),(9605,7030,'21012'),(9606,7031,'21013'),(9607,7032,'21014'),(9608,7032,'21015'),(9609,7033,'21017'),(9610,7034,'21018'),(9611,7035,'21020'),(9612,7036,'21022'),(9613,7037,'21023'),(9614,7038,'21027'),(9615,7039,'21028'),(9616,7040,'21029'),(9617,7041,'21030'),(9618,7042,'21031'),(9619,7043,'21032'),(9620,7044,'21034'),(9621,7045,'21035'),(9622,7046,'21036'),(9623,7047,'21037'),(9624,7048,'21040'),(9625,7049,'21041'),(9626,7049,'21042'),(9627,7049,'21043'),(9628,7050,'21044'),(9629,7050,'21045'),(9630,7050,'21046'),(9631,7051,'21047'),(9632,7052,'21048'),(9633,7053,'21050'),(9634,7054,'21051'),(9635,7055,'21052'),(9636,7056,'21053'),(9637,7057,'21054'),(9638,7058,'21055'),(9639,7059,'21056'),(9640,7060,'21057'),(9641,7061,'21060'),(9642,7061,'21061'),(9643,7061,'21062'),(9644,7062,'21071'),(9645,7063,'21074'),(9646,7064,'21075'),(9647,7065,'21076'),(9648,7065,'21098'),(9649,7066,'21077'),(9650,7067,'21078'),(9651,7068,'21080'),(9652,7069,'21082'),(9653,7070,'21084'),(9654,7071,'21085'),(9655,7072,'21087'),(9656,7073,'21088'),(9657,7074,'21090'),(9658,7075,'21092'),(9659,7076,'21093'),(9660,7076,'21094'),(9661,7077,'21102'),(9662,7078,'21104'),(9663,7079,'21105'),(9664,7080,'21106'),(9665,7081,'21108'),(9666,7082,'21111'),(9667,7083,'21113'),(9668,7084,'21114'),(9669,7085,'21117'),(9670,7086,'21120'),(9671,7087,'21122'),(9672,7087,'21123'),(9673,7088,'21128'),(9674,7089,'21130'),(9675,7090,'21131'),(9676,7091,'21132'),(9677,7092,'21133'),(9678,7093,'21136'),(9679,7094,'21139'),(9680,7095,'21140'),(9681,7096,'21144'),(9682,7097,'21146'),(9683,7098,'21150'),(9684,7099,'21152'),(9685,7100,'21153'),(9686,7101,'21154'),(9687,7102,'21155'),(9688,7103,'21156'),(9689,7104,'21157'),(9690,7104,'21158'),(9691,7105,'21160'),(9692,7106,'21161'),(9693,7107,'21162'),(9694,7108,'21163'),(9695,7109,'21201'),(9696,7109,'21202'),(9697,7109,'21203'),(9698,7109,'21205'),(9699,7109,'21206'),(9700,7109,'21209'),(9701,7109,'21210'),(9702,7109,'21211'),(9703,7109,'21212'),(9704,7109,'21213'),(9705,7109,'21214'),(9706,7109,'21215'),(9707,7109,'21216'),(9708,7109,'21217'),(9709,7109,'21218'),(9710,7109,'21223'),(9711,7109,'21224'),(9712,7109,'21229'),(9713,7109,'21230'),(9714,7109,'21231'),(9715,7109,'21233'),(9716,7109,'21235'),(9717,7109,'21239'),(9718,7109,'21240'),(9719,7109,'21241'),(9720,7109,'21250'),(9721,7109,'21251'),(9722,7109,'21252'),(9723,7109,'21260'),(9724,7109,'21263'),(9725,7109,'21264'),(9726,7109,'21265'),(9727,7109,'21268'),(9728,7109,'21270'),(9729,7109,'21273'),(9730,7109,'21274'),(9731,7109,'21275'),(9732,7109,'21278'),(9733,7109,'21279'),(9734,7109,'21280'),(9735,7109,'21281'),(9736,7109,'21282'),(9737,7109,'21283'),(9738,7109,'21284'),(9739,7109,'21285'),(9740,7109,'21287'),(9741,7109,'21288'),(9742,7109,'21289'),(9743,7109,'21290'),(9744,7109,'21297'),(9745,7109,'21298'),(9746,7110,'21204'),(9747,7110,'21286'),(9748,7111,'21207'),(9749,7112,'21208'),(9750,7113,'21219'),(9751,7114,'21220'),(9752,7115,'21221'),(9753,7116,'21222'),(9754,7117,'21225'),(9755,7118,'21226'),(9756,7119,'21227'),(9757,7120,'21228'),(9758,7121,'21234'),(9759,7122,'21236'),(9760,7123,'21237'),(9761,7124,'21244'),(9762,7125,'21401'),(9763,7125,'21402'),(9764,7125,'21403'),(9765,7125,'21404'),(9766,7125,'21405'),(9767,7125,'21411'),(9768,7125,'21412'),(9769,7126,'21501'),(9770,7126,'21502'),(9771,7126,'21503'),(9772,7126,'21504'),(9773,7126,'21505'),(9774,7127,'21520'),(9775,7128,'21521'),(9776,7129,'21522'),(9777,7130,'21523'),(9778,7131,'21524'),(9779,7132,'21528'),(9780,7133,'21529'),(9781,7134,'21530'),(9782,7135,'21531'),(9783,7136,'21532'),(9784,7137,'21536'),(9785,7138,'21538'),(9786,7139,'21539'),(9787,7140,'21540'),(9788,7141,'21541'),(9789,7142,'21542'),(9790,7143,'21543'),(9791,7144,'21545'),(9792,7145,'21550'),(9793,7146,'21555'),(9794,7147,'21556'),(9795,7148,'21557'),(9796,7149,'21560'),(9797,7150,'21561'),(9798,7151,'21562'),(9799,7152,'21601'),(9800,7152,'21606'),(9801,7153,'21607'),(9802,7154,'21609'),(9803,7155,'21610'),(9804,7156,'21612'),(9805,7157,'21613'),(9806,7158,'21617'),(9807,7159,'21619'),(9808,7160,'21620'),(9809,7160,'21690'),(9810,7161,'21622'),(9811,7162,'21623'),(9812,7163,'21624'),(9813,7164,'21625'),(9814,7165,'21626'),(9815,7166,'21627'),(9816,7167,'21628'),(9817,7168,'21629'),(9818,7169,'21631'),(9819,7170,'21632'),(9820,7171,'21634'),(9821,7172,'21635'),(9822,7173,'21636'),(9823,7174,'21638'),(9824,7175,'21639'),(9825,7176,'21640'),(9826,7177,'21641'),(9827,7178,'21643'),(9828,7179,'21644'),(9829,7180,'21645'),(9830,7181,'21647'),(9831,7182,'21648'),(9832,7183,'21649'),(9833,7184,'21650'),(9834,7185,'21651'),(9835,7186,'21652'),(9836,7187,'21653'),(9837,7188,'21654'),(9838,7189,'21655'),(9839,7190,'21656'),(9840,7191,'21657'),(9841,7192,'21658'),(9842,7193,'21659'),(9843,7194,'21660'),(9844,7194,'21681'),(9845,7194,'21682'),(9846,7194,'21683'),(9847,7194,'21684'),(9848,7194,'21685'),(9849,7194,'21686'),(9850,7194,'21687'),(9851,7194,'21688'),(9852,7195,'21661'),(9853,7196,'21662'),(9854,7197,'21663'),(9855,7198,'21664'),(9856,7199,'21665'),(9857,7200,'21666'),(9858,7201,'21667'),(9859,7202,'21668'),(9860,7203,'21669'),(9861,7204,'21670'),(9862,7205,'21671'),(9863,7206,'21672'),(9864,7207,'21673'),(9865,7208,'21675'),(9866,7209,'21676'),(9867,7210,'21677'),(9868,7211,'21678'),(9869,7212,'21679'),(9870,7213,'21701'),(9871,7213,'21702'),(9872,7213,'21703'),(9873,7213,'21704'),(9874,7213,'21705'),(9875,7213,'21709'),(9876,7214,'21710'),(9877,7215,'21711'),(9878,7216,'21713'),(9879,7217,'21714'),(9880,7218,'21715'),(9881,7219,'21716'),(9882,7220,'21717'),(9883,7221,'21718'),(9884,7222,'21719'),(9885,7223,'21720'),(9886,7224,'21721'),(9887,7225,'21722'),(9888,7226,'21723'),(9889,7227,'21727'),(9890,7228,'21733'),(9891,7229,'21734'),(9892,7230,'21736'),(9893,7231,'21737'),(9894,7232,'21738'),(9895,7233,'21740'),(9896,7233,'21741'),(9897,7233,'21742'),(9898,7233,'21746'),(9899,7233,'21747'),(9900,7233,'21748'),(9901,7233,'21749'),(9902,7234,'21750'),(9903,7235,'21754'),(9904,7236,'21755'),(9905,7237,'21756'),(9906,7238,'21757'),(9907,7239,'21758'),(9908,7240,'21759'),(9909,7241,'21762'),(9910,7242,'21764'),(9911,7243,'21765'),(9912,7244,'21766'),(9913,7245,'21767'),(9914,7246,'21769'),(9915,7247,'21770'),(9916,7248,'21771'),(9917,7249,'21773'),(9918,7250,'21774'),(9919,7251,'21775'),(9920,7252,'21776'),(9921,7253,'21777'),(9922,7254,'21778'),(9923,7255,'21779'),(9924,7256,'21780'),(9925,7257,'21781'),(9926,7258,'21782'),(9927,7259,'21783'),(9928,7260,'21784'),(9929,7261,'21787'),(9930,7262,'21788'),(9931,7263,'21790'),(9932,7264,'21791'),(9933,7265,'21792'),(9934,7266,'21793'),(9935,7267,'21794'),(9936,7268,'21795'),(9937,7269,'21797'),(9938,7270,'21798'),(9939,7271,'21801'),(9940,7271,'21802'),(9941,7271,'21803'),(9942,7271,'21804'),(9943,7272,'21810'),(9944,7273,'21811'),(9945,7274,'21813'),(9946,7275,'21814'),(9947,7276,'21817'),(9948,7277,'21821'),(9949,7278,'21822'),(9950,7279,'21824'),(9951,7280,'21826'),(9952,7281,'21829'),(9953,7282,'21830'),(9954,7283,'21835'),(9955,7284,'21836'),(9956,7285,'21837'),(9957,7286,'21838'),(9958,7287,'21840'),(9959,7288,'21841'),(9960,7289,'21842'),(9961,7289,'21843'),(9962,7290,'21849'),(9963,7291,'21850'),(9964,7292,'21851'),(9965,7293,'21852'),(9966,7294,'21853'),(9967,7295,'21856'),(9968,7296,'21857'),(9969,7297,'21861'),(9970,7298,'21862'),(9971,7299,'21863'),(9972,7300,'21864'),(9973,7301,'21865'),(9974,7302,'21866'),(9975,7303,'21867'),(9976,7304,'21869'),(9977,7305,'21870'),(9978,7306,'21871'),(9979,7306,'21890'),(9980,7307,'21872'),(9981,7308,'21874'),(9982,7309,'21875'),(9983,7310,'21901'),(9984,7311,'21902'),(9985,7312,'21903'),(9986,7313,'21904'),(9987,7314,'21911'),(9988,7315,'21912'),(9989,7316,'21913'),(9990,7317,'21914'),(9991,7318,'21915'),(9992,7319,'21916'),(9993,7320,'21917'),(9994,7321,'21918'),(9995,7322,'21919'),(9996,7323,'21920'),(9997,7324,'21921'),(9998,7324,'21922'),(9999,7325,'21930'),(10000,7326,'24701'),(10001,7327,'24712'),(10002,7328,'24714'),(10003,7329,'24715'),(10004,7330,'24716'),(10005,7331,'24719'),(10006,7332,'24724'),(10007,7333,'24726'),(10008,7334,'24729'),(10009,7335,'24731'),(10010,7336,'24732'),(10011,7337,'24733'),(10012,7338,'24736'),(10013,7339,'24737'),(10014,7340,'24738'),(10015,7341,'24739'),(10016,7342,'24740'),(10017,7343,'24747'),(10018,7344,'24751'),(10019,7345,'24801'),(10020,7346,'24808'),(10021,7347,'24811'),(10022,7348,'24813'),(10023,7349,'24815'),(10024,7350,'24816'),(10025,7351,'24817'),(10026,7352,'24818'),(10027,7353,'24820'),(10028,7354,'24821'),(10029,7355,'24822'),(10030,7356,'24823'),(10031,7357,'24824'),(10032,7358,'24825'),(10033,7359,'24826'),(10034,7360,'24827'),(10035,7361,'24828'),(10036,7362,'24829'),(10037,7363,'24830'),(10038,7364,'24831'),(10039,7365,'24832'),(10040,7366,'24834'),(10041,7367,'24836'),(10042,7368,'24839'),(10043,7369,'24841'),(10044,7370,'24842'),(10045,7371,'24843'),(10046,7372,'24844'),(10047,7373,'24845'),(10048,7374,'24846'),(10049,7375,'24847'),(10050,7376,'24848'),(10051,7377,'24849'),(10052,7378,'24850'),(10053,7379,'24851'),(10054,7380,'24852'),(10055,7381,'24853'),(10056,7382,'24854'),(10057,7383,'24855'),(10058,7384,'24856'),(10059,7385,'24857'),(10060,7386,'24859'),(10061,7387,'24860'),(10062,7388,'24861'),(10063,7389,'24862'),(10064,7390,'24866'),(10065,7391,'24867'),(10066,7392,'24868'),(10067,7393,'24869'),(10068,7394,'24870'),(10069,7395,'24871'),(10070,7396,'24872'),(10071,7397,'24873'),(10072,7398,'24874'),(10073,7399,'24877'),(10074,7400,'24878'),(10075,7401,'24879'),(10076,7402,'24880'),(10077,7403,'24881'),(10078,7404,'24882'),(10079,7405,'24883'),(10080,7406,'24884'),(10081,7407,'24887'),(10082,7408,'24888'),(10083,7409,'24889'),(10084,7410,'24892'),(10085,7411,'24894'),(10086,7412,'24895'),(10087,7413,'24896'),(10088,7414,'24897'),(10089,7415,'24898'),(10090,7416,'24899'),(10091,7417,'24901'),(10092,7418,'24902'),(10093,7419,'24910'),(10094,7420,'24915'),(10095,7421,'24916'),(10096,7422,'24917'),(10097,7423,'24918'),(10098,7424,'24919'),(10099,7425,'24920'),(10100,7426,'24924'),(10101,7427,'24925'),(10102,7428,'24927'),(10103,7429,'24931'),(10104,7430,'24934'),(10105,7431,'24935'),(10106,7432,'24936'),(10107,7433,'24938'),(10108,7434,'24941'),(10109,7435,'24942'),(10110,7436,'24943'),(10111,7437,'24944'),(10112,7438,'24945'),(10113,7439,'24946'),(10114,7440,'24950'),(10115,7441,'24951'),(10116,7442,'24954'),(10117,7443,'24957'),(10118,7444,'24958'),(10119,7445,'24961'),(10120,7446,'24962'),(10121,7447,'24963'),(10122,7448,'24966'),(10123,7449,'24970'),(10124,7450,'24974'),(10125,7451,'24976'),(10126,7452,'24977'),(10127,7453,'24981'),(10128,7454,'24983'),(10129,7455,'24984'),(10130,7456,'24985'),(10131,7457,'24986'),(10132,7458,'24991'),(10133,7459,'24993'),(10134,7460,'25002'),(10135,7461,'25003'),(10136,7462,'25004'),(10137,7463,'25005'),(10138,7464,'25007'),(10139,7465,'25008'),(10140,7466,'25009'),(10141,7467,'25010'),(10142,7468,'25011'),(10143,7469,'25015'),(10144,7470,'25018'),(10145,7471,'25019'),(10146,7472,'25021'),(10147,7473,'25022'),(10148,7474,'25024'),(10149,7475,'25025'),(10150,7476,'25026'),(10151,7477,'25028'),(10152,7478,'25030'),(10153,7479,'25031'),(10154,7480,'25033'),(10155,7481,'25035'),(10156,7482,'25036'),(10157,7483,'25039'),(10158,7484,'25040'),(10159,7485,'25043'),(10160,7486,'25044'),(10161,7487,'25045'),(10162,7488,'25046'),(10163,7489,'25047'),(10164,7490,'25048'),(10165,7491,'25049'),(10166,7492,'25051'),(10167,7493,'25053'),(10168,7494,'25054'),(10169,7495,'25057'),(10170,7496,'25059'),(10171,7497,'25060'),(10172,7498,'25061'),(10173,7499,'25062'),(10174,7500,'25063'),(10175,7501,'25064'),(10176,7502,'25067'),(10177,7503,'25070'),(10178,7504,'25071'),(10179,7505,'25075'),(10180,7506,'25076'),(10181,7507,'25079'),(10182,7508,'25081'),(10183,7509,'25082'),(10184,7510,'25083'),(10185,7511,'25085'),(10186,7512,'25086'),(10187,7513,'25088'),(10188,7514,'25090'),(10189,7515,'25093'),(10190,7516,'25095'),(10191,7517,'25102'),(10192,7518,'25103'),(10193,7519,'25106'),(10194,7520,'25107'),(10195,7521,'25108'),(10196,7522,'25109'),(10197,7523,'25110'),(10198,7524,'25111'),(10199,7525,'25112'),(10200,7526,'25113'),(10201,7527,'25114'),(10202,7528,'25115'),(10203,7529,'25118'),(10204,7530,'25119'),(10205,7531,'25121'),(10206,7532,'25122'),(10207,7533,'25123'),(10208,7534,'25124'),(10209,7535,'25125'),(10210,7536,'25126'),(10211,7537,'25130'),(10212,7538,'25132'),(10213,7539,'25133'),(10214,7540,'25134'),(10215,7541,'25136'),(10216,7542,'25139'),(10217,7543,'25140'),(10218,7544,'25141'),(10219,7545,'25142'),(10220,7546,'25143'),(10221,7547,'25147'),(10222,7548,'25148'),(10223,7549,'25149'),(10224,7550,'25150'),(10225,7551,'25152'),(10226,7552,'25154'),(10227,7553,'25156'),(10228,7554,'25159'),(10229,7555,'25160'),(10230,7556,'25161'),(10231,7557,'25162'),(10232,7558,'25164'),(10233,7559,'25165'),(10234,7560,'25168'),(10235,7561,'25169'),(10236,7562,'25173'),(10237,7563,'25174'),(10238,7564,'25177'),(10239,7565,'25180'),(10240,7566,'25181'),(10241,7567,'25182'),(10242,7568,'25183'),(10243,7569,'25185'),(10244,7570,'25186'),(10245,7571,'25187'),(10246,7572,'25193'),(10247,7573,'25201'),(10248,7574,'25202'),(10249,7575,'25203'),(10250,7576,'25204'),(10251,7577,'25205'),(10252,7578,'25206'),(10253,7579,'25208'),(10254,7580,'25209'),(10255,7581,'25211'),(10256,7582,'25213'),(10257,7583,'25214'),(10258,7584,'25231'),(10259,7585,'25234'),(10260,7586,'25235'),(10261,7587,'25239'),(10262,7588,'25241'),(10263,7589,'25243'),(10264,7590,'25244'),(10265,7591,'25245'),(10266,7592,'25247'),(10267,7593,'25248'),(10268,7594,'25250'),(10269,7595,'25251'),(10270,7596,'25252'),(10271,7597,'25253'),(10272,7598,'25256'),(10273,7599,'25258'),(10274,7600,'25259'),(10275,7601,'25260'),(10276,7602,'25261'),(10277,7603,'25262'),(10278,7604,'25264'),(10279,7605,'25265'),(10280,7606,'25266'),(10281,7607,'25267'),(10282,7608,'25268'),(10283,7609,'25270'),(10284,7610,'25271'),(10285,7611,'25275'),(10286,7612,'25276'),(10287,7613,'25279'),(10288,7614,'25281'),(10289,7615,'25283'),(10290,7616,'25285'),(10291,7617,'25286'),(10292,7618,'25287'),(10293,7619,'25301'),(10294,7619,'25302'),(10295,7619,'25303'),(10296,7619,'25304'),(10297,7619,'25305'),(10298,7619,'25306'),(10299,7619,'25309'),(10300,7619,'25311'),(10301,7619,'25312'),(10302,7619,'25313'),(10303,7619,'25314'),(10304,7619,'25315'),(10305,7619,'25317'),(10306,7619,'25320'),(10307,7619,'25321'),(10308,7619,'25322'),(10309,7619,'25323'),(10310,7619,'25324'),(10311,7619,'25325'),(10312,7619,'25326'),(10313,7619,'25327'),(10314,7619,'25328'),(10315,7619,'25329'),(10316,7619,'25330'),(10317,7619,'25331'),(10318,7619,'25332'),(10319,7619,'25333'),(10320,7619,'25334'),(10321,7619,'25335'),(10322,7619,'25336'),(10323,7619,'25337'),(10324,7619,'25338'),(10325,7619,'25339'),(10326,7619,'25350'),(10327,7619,'25356'),(10328,7619,'25357'),(10329,7619,'25358'),(10330,7619,'25360'),(10331,7619,'25361'),(10332,7619,'25362'),(10333,7619,'25364'),(10334,7619,'25365'),(10335,7619,'25375'),(10336,7619,'25387'),(10337,7619,'25389'),(10338,7619,'25392'),(10339,7619,'25396'),(10340,7620,'25401'),(10341,7620,'25402'),(10342,7621,'25410'),(10343,7622,'25411'),(10344,7623,'25413'),(10345,7624,'25414'),(10346,7625,'25419'),(10347,7626,'25420'),(10348,7627,'25421'),(10349,7628,'25422'),(10350,7629,'25423'),(10351,7630,'25425'),(10352,7631,'25427'),(10353,7632,'25428'),(10354,7633,'25429'),(10355,7633,'25430'),(10356,7634,'25431'),(10357,7635,'25432'),(10358,7636,'25434'),(10359,7637,'25437'),(10360,7638,'25438'),(10361,7639,'25440'),(10362,7640,'25441'),(10363,7641,'25442'),(10364,7642,'25443'),(10365,7643,'25444'),(10366,7644,'25446'),(10367,7645,'25501'),(10368,7646,'25502'),(10369,7647,'25503'),(10370,7648,'25504'),(10371,7649,'25505'),(10372,7650,'25506'),(10373,7651,'25507'),(10374,7652,'25508'),(10375,7653,'25510'),(10376,7654,'25511'),(10377,7655,'25512'),(10378,7656,'25514'),(10379,7657,'25515'),(10380,7658,'25517'),(10381,7659,'25519'),(10382,7660,'25520'),(10383,7661,'25521'),(10384,7662,'25523'),(10385,7663,'25524'),(10386,7664,'25526'),(10387,7665,'25529'),(10388,7666,'25530'),(10389,7667,'25534'),(10390,7668,'25535'),(10391,7669,'25537'),(10392,7670,'25540'),(10393,7671,'25541'),(10394,7672,'25544'),(10395,7673,'25545'),(10396,7674,'25547'),(10397,7675,'25550'),(10398,7676,'25555'),(10399,7677,'25557'),(10400,7678,'25559'),(10401,7679,'25560'),(10402,7680,'25562'),(10403,7681,'25564'),(10404,7682,'25565'),(10405,7683,'25567'),(10406,7684,'25569'),(10407,7685,'25570'),(10408,7686,'25571'),(10409,7687,'25572'),(10410,7688,'25573'),(10411,7689,'25601'),(10412,7690,'25606'),(10413,7691,'25607'),(10414,7692,'25608'),(10415,7693,'25611'),(10416,7694,'25612'),(10417,7695,'25614'),(10418,7696,'25617'),(10419,7697,'25621'),(10420,7698,'25623'),(10421,7699,'25624'),(10422,7700,'25625'),(10423,7701,'25628'),(10424,7702,'25630'),(10425,7703,'25632'),(10426,7704,'25634'),(10427,7705,'25635'),(10428,7706,'25636'),(10429,7707,'25637'),(10430,7708,'25638'),(10431,7709,'25639'),(10432,7710,'25644'),(10433,7711,'25645'),(10434,7712,'25646'),(10435,7713,'25647'),(10436,7714,'25649'),(10437,7715,'25650'),(10438,7716,'25651'),(10439,7717,'25652'),(10440,7718,'25653'),(10441,7719,'25654'),(10442,7720,'25661'),(10443,7721,'25665'),(10444,7722,'25666'),(10445,7723,'25667'),(10446,7724,'25669'),(10447,7725,'25670'),(10448,7726,'25671'),(10449,7727,'25672'),(10450,7728,'25674'),(10451,7729,'25676'),(10452,7730,'25678'),(10453,7731,'25682'),(10454,7732,'25685'),(10455,7733,'25686'),(10456,7734,'25687'),(10457,7735,'25688'),(10458,7736,'25690'),(10459,7737,'25691'),(10460,7738,'25692'),(10461,7739,'25694'),(10462,7740,'25696'),(10463,7741,'25697'),(10464,7742,'25699'),(10465,7743,'25701'),(10466,7743,'25702'),(10467,7743,'25703'),(10468,7743,'25704'),(10469,7743,'25705'),(10470,7743,'25706'),(10471,7743,'25707'),(10472,7743,'25708'),(10473,7743,'25709'),(10474,7743,'25710'),(10475,7743,'25711'),(10476,7743,'25712'),(10477,7743,'25713'),(10478,7743,'25714'),(10479,7743,'25715'),(10480,7743,'25716'),(10481,7743,'25717'),(10482,7743,'25718'),(10483,7743,'25719'),(10484,7743,'25720'),(10485,7743,'25721'),(10486,7743,'25722'),(10487,7743,'25723'),(10488,7743,'25724'),(10489,7743,'25725'),(10490,7743,'25726'),(10491,7743,'25727'),(10492,7743,'25728'),(10493,7743,'25729'),(10494,7743,'25755'),(10495,7743,'25770'),(10496,7743,'25771'),(10497,7743,'25772'),(10498,7743,'25773'),(10499,7743,'25774'),(10500,7743,'25775'),(10501,7743,'25776'),(10502,7743,'25777'),(10503,7743,'25778'),(10504,7743,'25779'),(10505,7744,'25801'),(10506,7744,'25802'),(10507,7745,'25810'),(10508,7746,'25811'),(10509,7747,'25812'),(10510,7748,'25813'),(10511,7749,'25816'),(10512,7750,'25817'),(10513,7751,'25818'),(10514,7752,'25820'),(10515,7753,'25823'),(10516,7754,'25825'),(10517,7755,'25826'),(10518,7756,'25827'),(10519,7757,'25831'),(10520,7758,'25832'),(10521,7759,'25833'),(10522,7760,'25836'),(10523,7761,'25837'),(10524,7762,'25839'),(10525,7763,'25840'),(10526,7764,'25841'),(10527,7765,'25843'),(10528,7766,'25844'),(10529,7767,'25845'),(10530,7768,'25846'),(10531,7769,'25847'),(10532,7770,'25848'),(10533,7771,'25849'),(10534,7772,'25851'),(10535,7773,'25853'),(10536,7774,'25854'),(10537,7775,'25855'),(10538,7776,'25856'),(10539,7777,'25857'),(10540,7778,'25859'),(10541,7779,'25860'),(10542,7780,'25862'),(10543,7781,'25864'),(10544,7782,'25865'),(10545,7783,'25866'),(10546,7784,'25868'),(10547,7785,'25870'),(10548,7786,'25871'),(10549,7787,'25873'),(10550,7788,'25875'),(10551,7789,'25876'),(10552,7790,'25878'),(10553,7791,'25879'),(10554,7792,'25880'),(10555,7793,'25882'),(10556,7794,'25901'),(10557,7795,'25902'),(10558,7796,'25904'),(10559,7797,'25906'),(10560,7798,'25907'),(10561,7799,'25908'),(10562,7800,'25909'),(10563,7801,'25911'),(10564,7802,'25912'),(10565,7803,'25913'),(10566,7804,'25914'),(10567,7805,'25915'),(10568,7806,'25916'),(10569,7807,'25917'),(10570,7808,'25918'),(10571,7809,'25919'),(10572,7810,'25920'),(10573,7811,'25921'),(10574,7812,'25922'),(10575,7813,'25926'),(10576,7814,'25927'),(10577,7815,'25928'),(10578,7816,'25931'),(10579,7817,'25932'),(10580,7818,'25934'),(10581,7819,'25936'),(10582,7820,'25938'),(10583,7821,'25942'),(10584,7822,'25943'),(10585,7823,'25951'),(10586,7824,'25958'),(10587,7825,'25961'),(10588,7826,'25962'),(10589,7827,'25965'),(10590,7828,'25966'),(10591,7829,'25967'),(10592,7830,'25969'),(10593,7831,'25971'),(10594,7832,'25972'),(10595,7833,'25976'),(10596,7834,'25977'),(10597,7835,'25978'),(10598,7836,'25979'),(10599,7837,'25981'),(10600,7838,'25984'),(10601,7839,'25985'),(10602,7840,'25986'),(10603,7841,'25988'),(10604,7842,'25989'),(10605,7843,'26003'),(10606,7844,'26030'),(10607,7845,'26031'),(10608,7846,'26032'),(10609,7847,'26033'),(10610,7848,'26034'),(10611,7849,'26035'),(10612,7850,'26036'),(10613,7851,'26037'),(10614,7852,'26038'),(10615,7853,'26039'),(10616,7854,'26040'),(10617,7855,'26041'),(10618,7856,'26047'),(10619,7857,'26050'),(10620,7858,'26055'),(10621,7859,'26056'),(10622,7860,'26058'),(10623,7861,'26059'),(10624,7862,'26060'),(10625,7863,'26062'),(10626,7864,'26070'),(10627,7865,'26074'),(10628,7866,'26075'),(10629,7867,'26101'),(10630,7867,'26102'),(10631,7867,'26103'),(10632,7867,'26104'),(10633,7867,'26106'),(10634,7868,'26105'),(10635,7869,'26120'),(10636,7869,'26121'),(10637,7869,'26150'),(10638,7870,'26133'),(10639,7871,'26134'),(10640,7872,'26135'),(10641,7873,'26136'),(10642,7874,'26137'),(10643,7875,'26138'),(10644,7876,'26141'),(10645,7877,'26142'),(10646,7878,'26143'),(10647,7879,'26146'),(10648,7880,'26147'),(10649,7881,'26148'),(10650,7882,'26149'),(10651,7883,'26151'),(10652,7884,'26152'),(10653,7885,'26155'),(10654,7886,'26159'),(10655,7887,'26160'),(10656,7888,'26161'),(10657,7889,'26162'),(10658,7890,'26164'),(10659,7891,'26167'),(10660,7892,'26169'),(10661,7893,'26170'),(10662,7894,'26173'),(10663,7895,'26175'),(10664,7896,'26178'),(10665,7897,'26180'),(10666,7898,'26181'),(10667,7899,'26184'),(10668,7900,'26186'),(10669,7901,'26187'),(10670,7902,'26201'),(10671,7903,'26202'),(10672,7904,'26203'),(10673,7905,'26205'),(10674,7906,'26206'),(10675,7907,'26208'),(10676,7908,'26209'),(10677,7909,'26210'),(10678,7910,'26215'),(10679,7911,'26217'),(10680,7912,'26218'),(10681,7913,'26219'),(10682,7914,'26222'),(10683,7915,'26224'),(10684,7916,'26228'),(10685,7917,'26229'),(10686,7918,'26230'),(10687,7919,'26234'),(10688,7920,'26236'),(10689,7921,'26237'),(10690,7922,'26238'),(10691,7923,'26241'),(10692,7924,'26250'),(10693,7925,'26253'),(10694,7926,'26254'),(10695,7927,'26257'),(10696,7928,'26259'),(10697,7929,'26260'),(10698,7930,'26261'),(10699,7931,'26263'),(10700,7932,'26264'),(10701,7933,'26266'),(10702,7934,'26267'),(10703,7935,'26268'),(10704,7936,'26269'),(10705,7937,'26270'),(10706,7938,'26271'),(10707,7939,'26273'),(10708,7940,'26275'),(10709,7941,'26276'),(10710,7942,'26278'),(10711,7943,'26280'),(10712,7944,'26282'),(10713,7945,'26283'),(10714,7946,'26285'),(10715,7947,'26287'),(10716,7948,'26288'),(10717,7949,'26289'),(10718,7950,'26291'),(10719,7951,'26292'),(10720,7952,'26293'),(10721,7953,'26294'),(10722,7954,'26296'),(10723,7955,'26298'),(10724,7956,'26301'),(10725,7956,'26302'),(10726,7956,'26306'),(10727,7957,'26320'),(10728,7958,'26321'),(10729,7959,'26323'),(10730,7960,'26325'),(10731,7961,'26327'),(10732,7962,'26328'),(10733,7963,'26330'),(10734,7964,'26332'),(10735,7965,'26334'),(10736,7966,'26335'),(10737,7967,'26337'),(10738,7968,'26338'),(10739,7969,'26339'),(10740,7970,'26342'),(10741,7971,'26343'),(10742,7972,'26346'),(10743,7973,'26347'),(10744,7974,'26348'),(10745,7975,'26349'),(10746,7976,'26350'),(10747,7977,'26351'),(10748,7978,'26354'),(10749,7979,'26361'),(10750,7980,'26362'),(10751,7981,'26366'),(10752,7982,'26369'),(10753,7983,'26372'),(10754,7984,'26374'),(10755,7985,'26375'),(10756,7986,'26376'),(10757,7987,'26377'),(10758,7988,'26378'),(10759,7989,'26384'),(10760,7990,'26385'),(10761,7991,'26386'),(10762,7992,'26404'),(10763,7993,'26405'),(10764,7994,'26407'),(10765,7995,'26408'),(10766,7996,'26410'),(10767,7997,'26411'),(10768,7998,'26412'),(10769,7999,'26415'),(10770,8000,'26416'),(10771,8001,'26419'),(10772,8002,'26421'),(10773,8003,'26422'),(10774,8004,'26424'),(10775,8005,'26425'),(10776,8006,'26426'),(10777,8007,'26430'),(10778,8008,'26431'),(10779,8009,'26434'),(10780,8010,'26435'),(10781,8011,'26436'),(10782,8012,'26437'),(10783,8013,'26438'),(10784,8014,'26440'),(10785,8015,'26443'),(10786,8016,'26444'),(10787,8017,'26447'),(10788,8018,'26448'),(10789,8019,'26451'),(10790,8020,'26452'),(10791,8021,'26456'),(10792,8022,'26461'),(10793,8023,'26463'),(10794,8024,'26501'),(10795,8024,'26502'),(10796,8024,'26503'),(10797,8024,'26504'),(10798,8024,'26505'),(10799,8024,'26506'),(10800,8024,'26507'),(10801,8024,'26508'),(10802,8025,'26519'),(10803,8026,'26520'),(10804,8027,'26521'),(10805,8028,'26522'),(10806,8029,'26524'),(10807,8030,'26525'),(10808,8031,'26527'),(10809,8032,'26529'),(10810,8033,'26531'),(10811,8034,'26533'),(10812,8035,'26534'),(10813,8036,'26535'),(10814,8037,'26537'),(10815,8038,'26541'),(10816,8039,'26542'),(10817,8040,'26543'),(10818,8041,'26544'),(10819,8042,'26546'),(10820,8043,'26547'),(10821,8044,'26554'),(10822,8044,'26555'),(10823,8045,'26559'),(10824,8046,'26560'),(10825,8047,'26561'),(10826,8048,'26562'),(10827,8049,'26563'),(10828,8050,'26566'),(10829,8051,'26568'),(10830,8052,'26570'),(10831,8053,'26571'),(10832,8054,'26572'),(10833,8055,'26574'),(10834,8056,'26575'),(10835,8057,'26576'),(10836,8058,'26578'),(10837,8059,'26581'),(10838,8060,'26582'),(10839,8061,'26585'),(10840,8062,'26586'),(10841,8063,'26587'),(10842,8064,'26588'),(10843,8065,'26589'),(10844,8066,'26590'),(10845,8067,'26591'),(10846,8068,'26601'),(10847,8069,'26610'),(10848,8070,'26611'),(10849,8071,'26612'),(10850,8072,'26615'),(10851,8073,'26617'),(10852,8074,'26618'),(10853,8075,'26619'),(10854,8076,'26621'),(10855,8077,'26623'),(10856,8078,'26624'),(10857,8079,'26627'),(10858,8080,'26629'),(10859,8081,'26631'),(10860,8082,'26634'),(10861,8083,'26636'),(10862,8084,'26638'),(10863,8085,'26639'),(10864,8086,'26641'),(10865,8087,'26651'),(10866,8088,'26656'),(10867,8089,'26660'),(10868,8090,'26662'),(10869,8091,'26667'),(10870,8092,'26671'),(10871,8093,'26674'),(10872,8094,'26675'),(10873,8095,'26676'),(10874,8096,'26678'),(10875,8097,'26679'),(10876,8098,'26680'),(10877,8099,'26681'),(10878,8100,'26684'),(10879,8101,'26690'),(10880,8102,'26691'),(10881,8103,'26704'),(10882,8104,'26705'),(10883,8105,'26707'),(10884,8106,'26710'),(10885,8107,'26711'),(10886,8108,'26714'),(10887,8109,'26716'),(10888,8110,'26717'),(10889,8111,'26719'),(10890,8112,'26720'),(10891,8113,'26722'),(10892,8114,'26726'),(10893,8115,'26731'),(10894,8116,'26734'),(10895,8117,'26739'),(10896,8118,'26743'),(10897,8119,'26750'),(10898,8120,'26753'),(10899,8121,'26755'),(10900,8122,'26757'),(10901,8123,'26761'),(10902,8124,'26763'),(10903,8125,'26764'),(10904,8126,'26767'),(10905,8127,'26801'),(10906,8128,'26802'),(10907,8129,'26804'),(10908,8130,'26807'),(10909,8131,'26808'),(10910,8132,'26810'),(10911,8133,'26812'),(10912,8134,'26814'),(10913,8135,'26815'),(10914,8136,'26817'),(10915,8137,'26818'),(10916,8138,'26823'),(10917,8139,'26824'),(10918,8140,'26833'),(10919,8141,'26836'),(10920,8142,'26838'),(10921,8143,'26845'),(10922,8144,'26847'),(10923,8145,'26851'),(10924,8146,'26852'),(10925,8147,'26855'),(10926,8148,'26865'),(10927,8149,'26866'),(10928,8150,'26884'),(10929,8151,'26886'),(10930,8152,'27006'),(10931,8153,'27007'),(10932,8154,'27009'),(10933,8155,'27010'),(10934,8156,'27011'),(10935,8157,'27012'),(10936,8158,'27013'),(10937,8159,'27014'),(10938,8160,'27016'),(10939,8161,'27017'),(10940,8162,'27018'),(10941,8163,'27019'),(10942,8164,'27020'),(10943,8165,'27021'),(10944,8166,'27022'),(10945,8167,'27023'),(10946,8168,'27024'),(10947,8169,'27025'),(10948,8170,'27027'),(10949,8171,'27028'),(10950,8172,'27030'),(10951,8173,'27031'),(10952,8174,'27040'),(10953,8175,'27041'),(10954,8176,'27042'),(10955,8177,'27043'),(10956,8178,'27045'),(10957,8178,'27094'),(10958,8178,'27098'),(10959,8178,'27099'),(10960,8179,'27046'),(10961,8180,'27047'),(10962,8181,'27048'),(10963,8182,'27049'),(10964,8183,'27050'),(10965,8184,'27051'),(10966,8185,'27052'),(10967,8186,'27053'),(10968,8187,'27054'),(10969,8188,'27055'),(10970,8189,'27101'),(10971,8189,'27102'),(10972,8189,'27103'),(10973,8189,'27104'),(10974,8189,'27105'),(10975,8189,'27106'),(10976,8189,'27107'),(10977,8189,'27108'),(10978,8189,'27109'),(10979,8189,'27110'),(10980,8189,'27111'),(10981,8189,'27113'),(10982,8189,'27114'),(10983,8189,'27115'),(10984,8189,'27116'),(10985,8189,'27117'),(10986,8189,'27120'),(10987,8189,'27127'),(10988,8189,'27130'),(10989,8189,'27150'),(10990,8189,'27151'),(10991,8189,'27152'),(10992,8189,'27155'),(10993,8189,'27156'),(10994,8189,'27157'),(10995,8189,'27198'),(10996,8189,'27199'),(10997,8190,'27201'),(10998,8191,'27202'),(10999,8192,'27203'),(11000,8192,'27204'),(11001,8193,'27207'),(11002,8194,'27208'),(11003,8195,'27209'),(11004,8196,'27212'),(11005,8197,'27213'),(11006,8198,'27214'),(11007,8199,'27215'),(11008,8199,'27216'),(11009,8199,'27217'),(11010,8199,'27220'),(11011,8200,'27228'),(11012,8201,'27229'),(11013,8202,'27230'),(11014,8203,'27231'),(11015,8204,'27233'),(11016,8205,'27235'),(11017,8206,'27237'),(11018,8207,'27239'),(11019,8208,'27242'),(11020,8209,'27243'),(11021,8210,'27244'),(11022,8211,'27247'),(11023,8212,'27248'),(11024,8213,'27249'),(11025,8214,'27252'),(11026,8215,'27253'),(11027,8216,'27256'),(11028,8217,'27258'),(11029,8218,'27259'),(11030,8219,'27260'),(11031,8219,'27261'),(11032,8219,'27262'),(11033,8219,'27263'),(11034,8219,'27264'),(11035,8219,'27265'),(11036,8220,'27278'),(11037,8221,'27281'),(11038,8222,'27282'),(11039,8223,'27283'),(11040,8224,'27284'),(11041,8224,'27285'),(11042,8225,'27288'),(11043,8225,'27289'),(11044,8226,'27291'),(11045,8227,'27292'),(11046,8227,'27293'),(11047,8227,'27294'),(11048,8227,'27295'),(11049,8228,'27298'),(11050,8229,'27299'),(11051,8230,'27301'),(11052,8231,'27302'),(11053,8232,'27305'),(11054,8233,'27306'),(11055,8234,'27310'),(11056,8235,'27311'),(11057,8236,'27312'),(11058,8237,'27313'),(11059,8238,'27314'),(11060,8239,'27315'),(11061,8240,'27316'),(11062,8241,'27317'),(11063,8242,'27320'),(11064,8242,'27321'),(11065,8242,'27322'),(11066,8242,'27323'),(11067,8243,'27325'),(11068,8244,'27326'),(11069,8245,'27330'),(11070,8245,'27331'),(11071,8246,'27340'),(11072,8247,'27341'),(11073,8248,'27342'),(11074,8249,'27343'),(11075,8250,'27344'),(11076,8251,'27349'),(11077,8252,'27350'),(11078,8253,'27351'),(11079,8254,'27355'),(11080,8255,'27356'),(11081,8256,'27357'),(11082,8257,'27358'),(11083,8258,'27359'),(11084,8259,'27360'),(11085,8259,'27361'),(11086,8260,'27370'),(11087,8261,'27371'),(11088,8262,'27373'),(11089,8263,'27374'),(11090,8264,'27375'),(11091,8265,'27376'),(11092,8266,'27377'),(11093,8267,'27379'),(11094,8268,'27401'),(11095,8268,'27402'),(11096,8268,'27403'),(11097,8268,'27404'),(11098,8268,'27405'),(11099,8268,'27406'),(11100,8268,'27407'),(11101,8268,'27408'),(11102,8268,'27409'),(11103,8268,'27410'),(11104,8268,'27411'),(11105,8268,'27412'),(11106,8268,'27413'),(11107,8268,'27415'),(11108,8268,'27416'),(11109,8268,'27417'),(11110,8268,'27419'),(11111,8268,'27420'),(11112,8268,'27425'),(11113,8268,'27427'),(11114,8268,'27429'),(11115,8268,'27435'),(11116,8268,'27438'),(11117,8268,'27455'),(11118,8268,'27480'),(11119,8268,'27495'),(11120,8268,'27498'),(11121,8268,'27499'),(11122,8269,'27501'),(11123,8270,'27502'),(11124,8271,'27503'),(11125,8272,'27504'),(11126,8273,'27505'),(11127,8274,'27506'),(11128,8275,'27507'),(11129,8276,'27508'),(11130,8277,'27509'),(11131,8278,'27510'),(11132,8279,'27511'),(11133,8279,'27512'),(11134,8279,'27513'),(11135,8279,'27518'),(11136,8279,'27519'),(11137,8280,'27514'),(11138,8280,'27515'),(11139,8280,'27516'),(11140,8280,'27599'),(11141,8281,'27520'),(11142,8282,'27521'),(11143,8283,'27522'),(11144,8283,'27564'),(11145,8284,'27523'),(11146,8285,'27524'),(11147,8286,'27525'),(11148,8287,'27526'),(11149,8288,'27529'),(11150,8289,'27530'),(11151,8289,'27531'),(11152,8289,'27532'),(11153,8289,'27533'),(11154,8289,'27534'),(11155,8290,'27536'),(11156,8291,'27540'),(11157,8292,'27541'),(11158,8293,'27542'),(11159,8294,'27543'),(11160,8295,'27544'),(11161,8296,'27545'),(11162,8297,'27546'),(11163,8298,'27549'),(11164,8299,'27551'),(11165,8300,'27552'),(11166,8301,'27553'),(11167,8302,'27555'),(11168,8303,'27556'),(11169,8304,'27557'),(11170,8305,'27559'),(11171,8306,'27560'),(11172,8307,'27562'),(11173,8308,'27563'),(11174,8309,'27565'),(11175,8310,'27568'),(11176,8311,'27569'),(11177,8312,'27570'),(11178,8313,'27571'),(11179,8314,'27572'),(11180,8315,'27573'),(11181,8316,'27576'),(11182,8317,'27577'),(11183,8318,'27581'),(11184,8319,'27582'),(11185,8320,'27583'),(11186,8321,'27584'),(11187,8322,'27586'),(11188,8323,'27587'),(11189,8323,'27588'),(11190,8324,'27589'),(11191,8325,'27591'),(11192,8326,'27592'),(11193,8327,'27593'),(11194,8328,'27594'),(11195,8329,'27596'),(11196,8330,'27597'),(11197,8331,'27601'),(11198,8331,'27602'),(11199,8331,'27603'),(11200,8331,'27604'),(11201,8331,'27605'),(11202,8331,'27606'),(11203,8331,'27607'),(11204,8331,'27608'),(11205,8331,'27609'),(11206,8331,'27610'),(11207,8331,'27611'),(11208,8331,'27612'),(11209,8331,'27613'),(11210,8331,'27614'),(11211,8331,'27615'),(11212,8331,'27616'),(11213,8331,'27619'),(11214,8331,'27620'),(11215,8331,'27621'),(11216,8331,'27622'),(11217,8331,'27623'),(11218,8331,'27624'),(11219,8331,'27625'),(11220,8331,'27626'),(11221,8331,'27627'),(11222,8331,'27628'),(11223,8331,'27629'),(11224,8331,'27634'),(11225,8331,'27635'),(11226,8331,'27636'),(11227,8331,'27640'),(11228,8331,'27650'),(11229,8331,'27656'),(11230,8331,'27658'),(11231,8331,'27661'),(11232,8331,'27668'),(11233,8331,'27675'),(11234,8331,'27676'),(11235,8331,'27690'),(11236,8331,'27695'),(11237,8331,'27697'),(11238,8331,'27698'),(11239,8331,'27699'),(11240,8332,'27701'),(11241,8332,'27702'),(11242,8332,'27703'),(11243,8332,'27704'),(11244,8332,'27705'),(11245,8332,'27706'),(11246,8332,'27707'),(11247,8332,'27708'),(11248,8332,'27709'),(11249,8332,'27710'),(11250,8332,'27711'),(11251,8332,'27712'),(11252,8332,'27713'),(11253,8332,'27715'),(11254,8332,'27717'),(11255,8332,'27722'),(11256,8333,'27801'),(11257,8333,'27802'),(11258,8333,'27803'),(11259,8333,'27804'),(11260,8334,'27805'),(11261,8335,'27806'),(11262,8336,'27807'),(11263,8337,'27808'),(11264,8338,'27809'),(11265,8339,'27810'),(11266,8340,'27811'),(11267,8341,'27812'),(11268,8342,'27813'),(11269,8343,'27814'),(11270,8344,'27816'),(11271,8345,'27817'),(11272,8346,'27818'),(11273,8347,'27819'),(11274,8348,'27820'),(11275,8349,'27821'),(11276,8350,'27822'),(11277,8351,'27823'),(11278,8352,'27824'),(11279,8353,'27825'),(11280,8354,'27826'),(11281,8355,'27827'),(11282,8356,'27828'),(11283,8357,'27829'),(11284,8358,'27830'),(11285,8359,'27831'),(11286,8360,'27832'),(11287,8361,'27833'),(11288,8361,'27834'),(11289,8361,'27835'),(11290,8361,'27836'),(11291,8361,'27858'),(11292,8362,'27837'),(11293,8363,'27838'),(11294,8364,'27839'),(11295,8365,'27840'),(11296,8366,'27841'),(11297,8367,'27842'),(11298,8368,'27843'),(11299,8369,'27844'),(11300,8370,'27845'),(11301,8371,'27846'),(11302,8372,'27847'),(11303,8373,'27849'),(11304,8374,'27850'),(11305,8375,'27851'),(11306,8376,'27852'),(11307,8377,'27853'),(11308,8378,'27854'),(11309,8379,'27855'),(11310,8380,'27856'),(11311,8381,'27857'),(11312,8382,'27859'),(11313,8383,'27860'),(11314,8384,'27861'),(11315,8385,'27862'),(11316,8386,'27863'),(11317,8387,'27864'),(11318,8388,'27865'),(11319,8389,'27866'),(11320,8390,'27867'),(11321,8391,'27868'),(11322,8392,'27869'),(11323,8393,'27870'),(11324,8394,'27871'),(11325,8395,'27872'),(11326,8396,'27873'),(11327,8397,'27874'),(11328,8398,'27875'),(11329,8399,'27876'),(11330,8400,'27877'),(11331,8401,'27878'),(11332,8402,'27879'),(11333,8403,'27880'),(11334,8404,'27881'),(11335,8405,'27882'),(11336,8406,'27883'),(11337,8407,'27884'),(11338,8408,'27885'),(11339,8409,'27886'),(11340,8410,'27887'),(11341,8411,'27888'),(11342,8412,'27889'),(11343,8413,'27890'),(11344,8414,'27891'),(11345,8415,'27892'),(11346,8416,'27893'),(11347,8416,'27894'),(11348,8416,'27895'),(11349,8416,'27896'),(11350,8417,'27897'),(11351,8418,'27906'),(11352,8418,'27907'),(11353,8418,'27909'),(11354,8419,'27910'),(11355,8420,'27915'),(11356,8421,'27916'),(11357,8422,'27917'),(11358,8423,'27919'),(11359,8424,'27920'),(11360,8425,'27921'),(11361,8426,'27922'),(11362,8427,'27923'),(11363,8428,'27924'),(11364,8429,'27925'),(11365,8430,'27926'),(11366,8431,'27927'),(11367,8432,'27928'),(11368,8433,'27929'),(11369,8434,'27930'),(11370,8435,'27932'),(11371,8436,'27935'),(11372,8437,'27936'),(11373,8438,'27937'),(11374,8439,'27938'),(11375,8440,'27939'),(11376,8441,'27941'),(11377,8442,'27942'),(11378,8443,'27943'),(11379,8444,'27944'),(11380,8445,'27946'),(11381,8446,'27947'),(11382,8447,'27948'),(11383,8448,'27949'),(11384,8449,'27950'),(11385,8450,'27953'),(11386,8451,'27954'),(11387,8452,'27956'),(11388,8453,'27957'),(11389,8454,'27958'),(11390,8455,'27959'),(11391,8456,'27960'),(11392,8457,'27962'),(11393,8458,'27964'),(11394,8459,'27965'),(11395,8460,'27966'),(11396,8461,'27967'),(11397,8462,'27968'),(11398,8463,'27969'),(11399,8464,'27970'),(11400,8465,'27972'),(11401,8466,'27973'),(11402,8467,'27974'),(11403,8468,'27976'),(11404,8469,'27978'),(11405,8470,'27979'),(11406,8471,'27980'),(11407,8472,'27981'),(11408,8473,'27982'),(11409,8474,'27983'),(11410,8475,'27985'),(11411,8476,'27986'),(11412,8477,'28001'),(11413,8477,'28002'),(11414,8478,'28006'),(11415,8479,'28007'),(11416,8480,'28009'),(11417,8481,'28010'),(11418,8482,'28012'),(11419,8483,'28016'),(11420,8484,'28017'),(11421,8485,'28018'),(11422,8486,'28019'),(11423,8487,'28020'),(11424,8488,'28021'),(11425,8489,'28023'),(11426,8490,'28024'),(11427,8491,'28025'),(11428,8491,'28026'),(11429,8491,'28027'),(11430,8492,'28031'),(11431,8493,'28032'),(11432,8494,'28033'),(11433,8495,'28034'),(11434,8496,'28036'),(11435,8497,'28037'),(11436,8498,'28038'),(11437,8499,'28039'),(11438,8500,'28040'),(11439,8501,'28041'),(11440,8502,'28042'),(11441,8503,'28043'),(11442,8504,'28051'),(11443,8504,'28052'),(11444,8504,'28053'),(11445,8504,'28054'),(11446,8504,'28055'),(11447,8504,'28056'),(11448,8505,'28070'),(11449,8505,'28078'),(11450,8506,'28071'),(11451,8507,'28072'),(11452,8508,'28073'),(11453,8509,'28074'),(11454,8510,'28075'),(11455,8511,'28076'),(11456,8512,'28077'),(11457,8513,'28079'),(11458,8514,'28080'),(11459,8515,'28081'),(11460,8515,'28082'),(11461,8515,'28083'),(11462,8516,'28086'),(11463,8517,'28088'),(11464,8518,'28089'),(11465,8519,'28090'),(11466,8520,'28091'),(11467,8521,'28092'),(11468,8521,'28093'),(11469,8522,'28097'),(11470,8523,'28098'),(11471,8524,'28101'),(11472,8525,'28102'),(11473,8526,'28103'),(11474,8527,'28104'),(11475,8527,'28105'),(11476,8527,'28106'),(11477,8528,'28107'),(11478,8529,'28108'),(11479,8530,'28109'),(11480,8531,'28110'),(11481,8531,'28111'),(11482,8531,'28112'),(11483,8532,'28114'),(11484,8533,'28115'),(11485,8533,'28117'),(11486,8534,'28119'),(11487,8535,'28120'),(11488,8536,'28123'),(11489,8537,'28124'),(11490,8538,'28125'),(11491,8539,'28126'),(11492,8540,'28127'),(11493,8541,'28128'),(11494,8542,'28129'),(11495,8543,'28130'),(11496,8544,'28133'),(11497,8545,'28134'),(11498,8546,'28135'),(11499,8547,'28136'),(11500,8548,'28137'),(11501,8549,'28138'),(11502,8550,'28139'),(11503,8551,'28144'),(11504,8551,'28145'),(11505,8551,'28146'),(11506,8551,'28147'),(11507,8552,'28150'),(11508,8552,'28151'),(11509,8552,'28152'),(11510,8553,'28159'),(11511,8554,'28160'),(11512,8555,'28163'),(11513,8556,'28164'),(11514,8557,'28166'),(11515,8558,'28167'),(11516,8559,'28168'),(11517,8560,'28169'),(11518,8561,'28170'),(11519,8562,'28173'),(11520,8563,'28174'),(11521,8564,'28201'),(11522,8564,'28202'),(11523,8564,'28203'),(11524,8564,'28204'),(11525,8564,'28205'),(11526,8564,'28206'),(11527,8564,'28207'),(11528,8564,'28208'),(11529,8564,'28209'),(11530,8564,'28210'),(11531,8564,'28211'),(11532,8564,'28212'),(11533,8564,'28213'),(11534,8564,'28214'),(11535,8564,'28215'),(11536,8564,'28216'),(11537,8564,'28217'),(11538,8564,'28218'),(11539,8564,'28219'),(11540,8564,'28220'),(11541,8564,'28221'),(11542,8564,'28222'),(11543,8564,'28223'),(11544,8564,'28224'),(11545,8564,'28225'),(11546,8564,'28226'),(11547,8564,'28227'),(11548,8564,'28228'),(11549,8564,'28229'),(11550,8564,'28230'),(11551,8564,'28231'),(11552,8564,'28232'),(11553,8564,'28233'),(11554,8564,'28234'),(11555,8564,'28235'),(11556,8564,'28236'),(11557,8564,'28237'),(11558,8564,'28240'),(11559,8564,'28241'),(11560,8564,'28242'),(11561,8564,'28243'),(11562,8564,'28244'),(11563,8564,'28246'),(11564,8564,'28247'),(11565,8564,'28250'),(11566,8564,'28253'),(11567,8564,'28254'),(11568,8564,'28255'),(11569,8564,'28256'),(11570,8564,'28258'),(11571,8564,'28260'),(11572,8564,'28261'),(11573,8564,'28262'),(11574,8564,'28265'),(11575,8564,'28266'),(11576,8564,'28269'),(11577,8564,'28270'),(11578,8564,'28272'),(11579,8564,'28273'),(11580,8564,'28274'),(11581,8564,'28275'),(11582,8564,'28277'),(11583,8564,'28278'),(11584,8564,'28280'),(11585,8564,'28281'),(11586,8564,'28282'),(11587,8564,'28283'),(11588,8564,'28284'),(11589,8564,'28285'),(11590,8564,'28286'),(11591,8564,'28287'),(11592,8564,'28288'),(11593,8564,'28289'),(11594,8564,'28290'),(11595,8564,'28296'),(11596,8564,'28297'),(11597,8564,'28299'),(11598,8565,'28301'),(11599,8565,'28302'),(11600,8565,'28303'),(11601,8565,'28304'),(11602,8565,'28305'),(11603,8565,'28306'),(11604,8565,'28309'),(11605,8565,'28311'),(11606,8565,'28314'),(11607,8566,'28307'),(11608,8566,'28310'),(11609,8567,'28308'),(11610,8568,'28315'),(11611,8569,'28318'),(11612,8570,'28319'),(11613,8571,'28320'),(11614,8572,'28323'),(11615,8573,'28325'),(11616,8574,'28326'),(11617,8575,'28327'),(11618,8576,'28328'),(11619,8576,'28329'),(11620,8577,'28330'),(11621,8578,'28331'),(11622,8579,'28332'),(11623,8580,'28333'),(11624,8581,'28334'),(11625,8581,'28335'),(11626,8582,'28337'),(11627,8583,'28338'),(11628,8584,'28339'),(11629,8585,'28340'),(11630,8586,'28341'),(11631,8587,'28342'),(11632,8588,'28343'),(11633,8589,'28344'),(11634,8590,'28345'),(11635,8591,'28347'),(11636,8592,'28348'),(11637,8593,'28349'),(11638,8594,'28350'),(11639,8595,'28351'),(11640,8596,'28352'),(11641,8596,'28353'),(11642,8597,'28355'),(11643,8598,'28356'),(11644,8599,'28357'),(11645,8600,'28358'),(11646,8600,'28359'),(11647,8600,'28360'),(11648,8601,'28361'),(11649,8602,'28362'),(11650,8603,'28363'),(11651,8604,'28364'),(11652,8605,'28365'),(11653,8606,'28366'),(11654,8607,'28367'),(11655,8608,'28368'),(11656,8609,'28369'),(11657,8610,'28370'),(11658,8610,'28374'),(11659,8611,'28371'),(11660,8612,'28372'),(11661,8613,'28373'),(11662,8614,'28375'),(11663,8615,'28376'),(11664,8616,'28377'),(11665,8617,'28378'),(11666,8618,'28379'),(11667,8618,'28380'),(11668,8619,'28382'),(11669,8620,'28383'),(11670,8621,'28384'),(11671,8622,'28385'),(11672,8623,'28386'),(11673,8624,'28387'),(11674,8624,'28388'),(11675,8625,'28390'),(11676,8626,'28391'),(11677,8627,'28392'),(11678,8628,'28393'),(11679,8629,'28394'),(11680,8630,'28395'),(11681,8631,'28396'),(11682,8632,'28398'),(11683,8633,'28399'),(11684,8634,'28401'),(11685,8634,'28402'),(11686,8634,'28403'),(11687,8634,'28404'),(11688,8634,'28405'),(11689,8634,'28406'),(11690,8634,'28407'),(11691,8634,'28408'),(11692,8634,'28409'),(11693,8634,'28410'),(11694,8634,'28411'),(11695,8634,'28412'),(11696,8635,'28420'),(11697,8636,'28421'),(11698,8637,'28422'),(11699,8638,'28423'),(11700,8639,'28424'),(11701,8640,'28425'),(11702,8641,'28428'),(11703,8642,'28429'),(11704,8643,'28430'),(11705,8644,'28431'),(11706,8645,'28432'),(11707,8646,'28433'),(11708,8647,'28434'),(11709,8648,'28435'),(11710,8649,'28436'),(11711,8650,'28438'),(11712,8651,'28439'),(11713,8652,'28441'),(11714,8653,'28442'),(11715,8654,'28443'),(11716,8655,'28444'),(11717,8656,'28445'),(11718,8657,'28446'),(11719,8658,'28447'),(11720,8659,'28448'),(11721,8660,'28449'),(11722,8661,'28450'),(11723,8662,'28451'),(11724,8663,'28452'),(11725,8664,'28453'),(11726,8665,'28454'),(11727,8666,'28455'),(11728,8667,'28456'),(11729,8668,'28457'),(11730,8669,'28458'),(11731,8670,'28459'),(11732,8671,'28460'),(11733,8672,'28461'),(11734,8673,'28462'),(11735,8674,'28463'),(11736,8675,'28464'),(11737,8676,'28465'),(11738,8677,'28466'),(11739,8678,'28467'),(11740,8679,'28468'),(11741,8680,'28469'),(11742,8681,'28470'),(11743,8682,'28471'),(11744,8683,'28472'),(11745,8684,'28478'),(11746,8685,'28479'),(11747,8686,'28480'),(11748,8687,'28501'),(11749,8687,'28502'),(11750,8687,'28503'),(11751,8687,'28504'),(11752,8688,'28508'),(11753,8689,'28509'),(11754,8690,'28510'),(11755,8691,'28511'),(11756,8692,'28512'),(11757,8693,'28513'),(11758,8694,'28515'),(11759,8695,'28516'),(11760,8696,'28518'),(11761,8697,'28519'),(11762,8698,'28520'),(11763,8699,'28521'),(11764,8700,'28522'),(11765,8701,'28523'),(11766,8702,'28524'),(11767,8703,'28525'),(11768,8704,'28526'),(11769,8705,'28527'),(11770,8706,'28528'),(11771,8707,'28529'),(11772,8708,'28530'),(11773,8709,'28531'),(11774,8710,'28532'),(11775,8711,'28533'),(11776,8712,'28537'),(11777,8713,'28538'),(11778,8714,'28539'),(11779,8715,'28540'),(11780,8715,'28541'),(11781,8715,'28546'),(11782,8716,'28542'),(11783,8716,'28547'),(11784,8717,'28543'),(11785,8718,'28544'),(11786,8719,'28545'),(11787,8720,'28551'),(11788,8721,'28552'),(11789,8722,'28553'),(11790,8723,'28554'),(11791,8724,'28555'),(11792,8725,'28556'),(11793,8726,'28557'),(11794,8727,'28560'),(11795,8727,'28561'),(11796,8727,'28562'),(11797,8727,'28563'),(11798,8727,'28564'),(11799,8728,'28570'),(11800,8729,'28571'),(11801,8730,'28572'),(11802,8731,'28573'),(11803,8732,'28574'),(11804,8733,'28575'),(11805,8734,'28577'),(11806,8735,'28578'),(11807,8736,'28579'),(11808,8737,'28580'),(11809,8738,'28581'),(11810,8739,'28582'),(11811,8740,'28583'),(11812,8741,'28584'),(11813,8742,'28585'),(11814,8743,'28586'),(11815,8744,'28587'),(11816,8745,'28589'),(11817,8746,'28590'),(11818,8747,'28594'),(11819,8748,'28601'),(11820,8748,'28602'),(11821,8748,'28603'),(11822,8749,'28604'),(11823,8750,'28605'),(11824,8751,'28606'),(11825,8752,'28607'),(11826,8752,'28608'),(11827,8753,'28609'),(11828,8754,'28610'),(11829,8755,'28611'),(11830,8756,'28612'),(11831,8757,'28613'),(11832,8758,'28615'),(11833,8759,'28616'),(11834,8760,'28617'),(11835,8761,'28618'),(11836,8762,'28619'),(11837,8763,'28621'),(11838,8764,'28622'),(11839,8765,'28623'),(11840,8766,'28624'),(11841,8767,'28625'),(11842,8767,'28677'),(11843,8767,'28687'),(11844,8768,'28626'),(11845,8769,'28627'),(11846,8770,'28628'),(11847,8771,'28629'),(11848,8772,'28630'),(11849,8773,'28631'),(11850,8774,'28633'),(11851,8774,'28645'),(11852,8775,'28634'),(11853,8776,'28635'),(11854,8777,'28636'),(11855,8778,'28637'),(11856,8779,'28638'),(11857,8780,'28640'),(11858,8781,'28641'),(11859,8782,'28642'),(11860,8783,'28643'),(11861,8784,'28644'),(11862,8785,'28646'),(11863,8786,'28647'),(11864,8787,'28649'),(11865,8788,'28650'),(11866,8789,'28651'),(11867,8790,'28652'),(11868,8791,'28653'),(11869,8792,'28654'),(11870,8793,'28655'),(11871,8793,'28680'),(11872,8794,'28656'),(11873,8794,'28659'),(11874,8794,'28674'),(11875,8795,'28657'),(11876,8796,'28658'),(11877,8797,'28660'),(11878,8798,'28661'),(11879,8799,'28662'),(11880,8800,'28663'),(11881,8801,'28664'),(11882,8802,'28665'),(11883,8803,'28666'),(11884,8804,'28667'),(11885,8805,'28668'),(11886,8806,'28669'),(11887,8807,'28670'),(11888,8808,'28671'),(11889,8809,'28672'),(11890,8810,'28673'),(11891,8811,'28675'),(11892,8812,'28676'),(11893,8813,'28678'),(11894,8814,'28679'),(11895,8815,'28681'),(11896,8816,'28682'),(11897,8817,'28683'),(11898,8818,'28684'),(11899,8819,'28685'),(11900,8820,'28688'),(11901,8821,'28689'),(11902,8822,'28690'),(11903,8823,'28691'),(11904,8824,'28692'),(11905,8825,'28693'),(11906,8826,'28694'),(11907,8827,'28697'),(11908,8828,'28698'),(11909,8829,'28699'),(11910,8830,'28701'),(11911,8831,'28702'),(11912,8832,'28704'),(11913,8833,'28705'),(11914,8834,'28707'),(11915,8835,'28708'),(11916,8836,'28709'),(11917,8837,'28710'),(11918,8838,'28711'),(11919,8839,'28712'),(11920,8840,'28713'),(11921,8841,'28714'),(11922,8842,'28715'),(11923,8843,'28716'),(11924,8844,'28717'),(11925,8845,'28718'),(11926,8846,'28719'),(11927,8847,'28720'),(11928,8848,'28721'),(11929,8849,'28722'),(11930,8850,'28723'),(11931,8851,'28724'),(11932,8852,'28725'),(11933,8853,'28726'),(11934,8854,'28727'),(11935,8855,'28728'),(11936,8856,'28729'),(11937,8857,'28730'),(11938,8858,'28731'),(11939,8859,'28732'),(11940,8860,'28733'),(11941,8861,'28734'),(11942,8861,'28744'),(11943,8862,'28735'),(11944,8863,'28736'),(11945,8864,'28737'),(11946,8865,'28738'),(11947,8866,'28739'),(11948,8866,'28791'),(11949,8866,'28792'),(11950,8866,'28793'),(11951,8867,'28740'),(11952,8868,'28741'),(11953,8869,'28742'),(11954,8870,'28743'),(11955,8871,'28745'),(11956,8872,'28746'),(11957,8873,'28747'),(11958,8874,'28748'),(11959,8875,'28749'),(11960,8876,'28750'),(11961,8877,'28751'),(11962,8878,'28752'),(11963,8879,'28753'),(11964,8880,'28754'),(11965,8881,'28755'),(11966,8882,'28756'),(11967,8883,'28757'),(11968,8884,'28758'),(11969,8885,'28760'),(11970,8886,'28761'),(11971,8887,'28762'),(11972,8888,'28763'),(11973,8889,'28765'),(11974,8890,'28766'),(11975,8891,'28768'),(11976,8892,'28770'),(11977,8893,'28771'),(11978,8894,'28772'),(11979,8895,'28773'),(11980,8896,'28774'),(11981,8897,'28775'),(11982,8898,'28776'),(11983,8899,'28777'),(11984,8900,'28778'),(11985,8901,'28779'),(11986,8902,'28781'),(11987,8903,'28782'),(11988,8904,'28783'),(11989,8905,'28784'),(11990,8906,'28786'),(11991,8907,'28787'),(11992,8908,'28788'),(11993,8909,'28789'),(11994,8910,'28790'),(11995,8911,'28801'),(11996,8911,'28802'),(11997,8911,'28803'),(11998,8911,'28804'),(11999,8911,'28805'),(12000,8911,'28806'),(12001,8911,'28810'),(12002,8911,'28813'),(12003,8911,'28814'),(12004,8911,'28815'),(12005,8911,'28816'),(12006,8912,'28901'),(12007,8913,'28902'),(12008,8914,'28903'),(12009,8915,'28904'),(12010,8916,'28905'),(12011,8917,'28906'),(12012,8918,'28909'),(12013,8919,'29001'),(12014,8920,'29002'),(12015,8921,'29003'),(12016,8922,'29006'),(12017,8923,'29009'),(12018,8924,'29010'),(12019,8925,'29014'),(12020,8926,'29015'),(12021,8927,'29016'),(12022,8928,'29018'),(12023,8929,'29020'),(12024,8930,'29030'),(12025,8931,'29031'),(12026,8932,'29032'),(12027,8933,'29033'),(12028,8934,'29036'),(12029,8935,'29037'),(12030,8936,'29038'),(12031,8937,'29039'),(12032,8938,'29040'),(12033,8939,'29041'),(12034,8940,'29042'),(12035,8941,'29044'),(12036,8942,'29045'),(12037,8943,'29046'),(12038,8944,'29047'),(12039,8945,'29048'),(12040,8946,'29051'),(12041,8947,'29052'),(12042,8948,'29053'),(12043,8949,'29054'),(12044,8950,'29055'),(12045,8951,'29056'),(12046,8952,'29058'),(12047,8953,'29059'),(12048,8954,'29061'),(12049,8955,'29062'),(12050,8956,'29063'),(12051,8957,'29065'),(12052,8958,'29067'),(12053,8959,'29069'),(12054,8960,'29070'),(12055,8961,'29071'),(12056,8961,'29072'),(12057,8961,'29073'),(12058,8962,'29074'),(12059,8963,'29075'),(12060,8964,'29078'),(12061,8965,'29079'),(12062,8966,'29080'),(12063,8967,'29081'),(12064,8968,'29082'),(12065,8969,'29101'),(12066,8970,'29102'),(12067,8971,'29104'),(12068,8972,'29105'),(12069,8973,'29106'),(12070,8974,'29107'),(12071,8975,'29108'),(12072,8976,'29111'),(12073,8977,'29112'),(12074,8978,'29113'),(12075,8979,'29114'),(12076,8980,'29115'),(12077,8980,'29116'),(12078,8980,'29117'),(12079,8980,'29118'),(12080,8981,'29122'),(12081,8982,'29123'),(12082,8983,'29124'),(12083,8984,'29125'),(12084,8985,'29126'),(12085,8986,'29127'),(12086,8987,'29128'),(12087,8988,'29129'),(12088,8989,'29130'),(12089,8990,'29132'),(12090,8991,'29133'),(12091,8992,'29135'),(12092,8993,'29137'),(12093,8994,'29138'),(12094,8995,'29142'),(12095,8996,'29143'),(12096,8997,'29145'),(12097,8998,'29146'),(12098,8999,'29147'),(12099,9000,'29148'),(12100,9001,'29150'),(12101,9001,'29151'),(12102,9001,'29153'),(12103,9001,'29154'),(12104,9002,'29152'),(12105,9003,'29160'),(12106,9004,'29161'),(12107,9005,'29162'),(12108,9006,'29163'),(12109,9007,'29164'),(12110,9008,'29166'),(12111,9009,'29168'),(12112,9010,'29169'),(12113,9010,'29170'),(12114,9010,'29171'),(12115,9010,'29172'),(12116,9011,'29175'),(12117,9012,'29176'),(12118,9013,'29177'),(12119,9014,'29178'),(12120,9015,'29180'),(12121,9016,'29201'),(12122,9016,'29202'),(12123,9016,'29203'),(12124,9016,'29204'),(12125,9016,'29205'),(12126,9016,'29206'),(12127,9016,'29207'),(12128,9016,'29208'),(12129,9016,'29209'),(12130,9016,'29210'),(12131,9016,'29211'),(12132,9016,'29212'),(12133,9016,'29214'),(12134,9016,'29215'),(12135,9016,'29216'),(12136,9016,'29217'),(12137,9016,'29218'),(12138,9016,'29219'),(12139,9016,'29220'),(12140,9016,'29221'),(12141,9016,'29222'),(12142,9016,'29223'),(12143,9016,'29224'),(12144,9016,'29225'),(12145,9016,'29226'),(12146,9016,'29227'),(12147,9016,'29228'),(12148,9016,'29229'),(12149,9016,'29230'),(12150,9016,'29240'),(12151,9016,'29250'),(12152,9016,'29260'),(12153,9016,'29290'),(12154,9016,'29292'),(12155,9017,'29301'),(12156,9017,'29302'),(12157,9017,'29303'),(12158,9017,'29304'),(12159,9017,'29305'),(12160,9017,'29306'),(12161,9017,'29307'),(12162,9017,'29316'),(12163,9017,'29318'),(12164,9017,'29319'),(12165,9018,'29320'),(12166,9019,'29321'),(12167,9020,'29322'),(12168,9021,'29323'),(12169,9022,'29324'),(12170,9023,'29325'),(12171,9024,'29329'),(12172,9025,'29330'),(12173,9026,'29331'),(12174,9027,'29332'),(12175,9028,'29333'),(12176,9029,'29334'),(12177,9029,'29390'),(12178,9029,'29391'),(12179,9030,'29335'),(12180,9031,'29336'),(12181,9032,'29338'),(12182,9033,'29340'),(12183,9033,'29341'),(12184,9033,'29342'),(12185,9034,'29346'),(12186,9035,'29348'),(12187,9036,'29349'),(12188,9037,'29351'),(12189,9038,'29353'),(12190,9039,'29355'),(12191,9040,'29356'),(12192,9041,'29360'),(12193,9042,'29364'),(12194,9043,'29365'),(12195,9044,'29368'),(12196,9045,'29369'),(12197,9046,'29370'),(12198,9047,'29372'),(12199,9048,'29373'),(12200,9049,'29374'),(12201,9050,'29375'),(12202,9051,'29376'),(12203,9052,'29377'),(12204,9053,'29378'),(12205,9054,'29379'),(12206,9055,'29384'),(12207,9056,'29385'),(12208,9057,'29386'),(12209,9058,'29388'),(12210,9059,'29401'),(12211,9059,'29402'),(12212,9059,'29403'),(12213,9059,'29406'),(12214,9059,'29407'),(12215,9059,'29409'),(12216,9059,'29410'),(12217,9059,'29412'),(12218,9059,'29413'),(12219,9059,'29414'),(12220,9059,'29415'),(12221,9059,'29416'),(12222,9059,'29417'),(12223,9059,'29419'),(12224,9059,'29422'),(12225,9059,'29423'),(12226,9059,'29424'),(12227,9059,'29425'),(12228,9059,'29492'),(12229,9060,'29404'),(12230,9061,'29405'),(12231,9061,'29418'),(12232,9061,'29420'),(12233,9062,'29426'),(12234,9063,'29429'),(12235,9064,'29430'),(12236,9065,'29431'),(12237,9066,'29432'),(12238,9067,'29433'),(12239,9068,'29434'),(12240,9069,'29435'),(12241,9070,'29436'),(12242,9071,'29437'),(12243,9072,'29438'),(12244,9073,'29439'),(12245,9074,'29440'),(12246,9074,'29442'),(12247,9075,'29445'),(12248,9076,'29446'),(12249,9077,'29447'),(12250,9078,'29448'),(12251,9079,'29449'),(12252,9080,'29450'),(12253,9081,'29451'),(12254,9082,'29452'),(12255,9083,'29453'),(12256,9084,'29455'),(12257,9084,'29457'),(12258,9085,'29456'),(12259,9086,'29458'),(12260,9087,'29461'),(12261,9088,'29464'),(12262,9088,'29465'),(12263,9088,'29466'),(12264,9089,'29468'),(12265,9090,'29469'),(12266,9091,'29470'),(12267,9092,'29471'),(12268,9093,'29472'),(12269,9094,'29474'),(12270,9095,'29475'),(12271,9096,'29476'),(12272,9097,'29477'),(12273,9098,'29479'),(12274,9099,'29481'),(12275,9100,'29482'),(12276,9101,'29483'),(12277,9101,'29484'),(12278,9101,'29485'),(12279,9102,'29487'),(12280,9103,'29488'),(12281,9104,'29493'),(12282,9105,'29501'),(12283,9105,'29502'),(12284,9105,'29503'),(12285,9105,'29504'),(12286,9105,'29505'),(12287,9105,'29506'),(12288,9106,'29510'),(12289,9107,'29511'),(12290,9108,'29512'),(12291,9109,'29516'),(12292,9110,'29518'),(12293,9111,'29519'),(12294,9112,'29520'),(12295,9113,'29525'),(12296,9114,'29526'),(12297,9114,'29527'),(12298,9114,'29528'),(12299,9115,'29530'),(12300,9116,'29532'),(12301,9116,'29540'),(12302,9117,'29536'),(12303,9118,'29541'),(12304,9119,'29542'),(12305,9120,'29543'),(12306,9121,'29544'),(12307,9122,'29545'),(12308,9123,'29546'),(12309,9124,'29547'),(12310,9125,'29550'),(12311,9125,'29551'),(12312,9126,'29554'),(12313,9127,'29555'),(12314,9128,'29556'),(12315,9129,'29560'),(12316,9130,'29563'),(12317,9131,'29564'),(12318,9132,'29565'),(12319,9133,'29566'),(12320,9134,'29567'),(12321,9135,'29568'),(12322,9136,'29569'),(12323,9137,'29570'),(12324,9138,'29571'),(12325,9139,'29572'),(12326,9139,'29575'),(12327,9139,'29577'),(12328,9139,'29578'),(12329,9139,'29579'),(12330,9139,'29587'),(12331,9140,'29573'),(12332,9141,'29574'),(12333,9142,'29576'),(12334,9143,'29580'),(12335,9144,'29581'),(12336,9145,'29582'),(12337,9145,'29597'),(12338,9145,'29598'),(12339,9146,'29583'),(12340,9147,'29584'),(12341,9148,'29585'),(12342,9149,'29589'),(12343,9150,'29590'),(12344,9151,'29591'),(12345,9152,'29592'),(12346,9153,'29593'),(12347,9154,'29594'),(12348,9155,'29596'),(12349,9156,'29601'),(12350,9156,'29602'),(12351,9156,'29603'),(12352,9156,'29604'),(12353,9156,'29605'),(12354,9156,'29606'),(12355,9156,'29607'),(12356,9156,'29608'),(12357,9156,'29609'),(12358,9156,'29610'),(12359,9156,'29611'),(12360,9156,'29612'),(12361,9156,'29613'),(12362,9156,'29614'),(12363,9156,'29615'),(12364,9156,'29616'),(12365,9156,'29617'),(12366,9156,'29698'),(12367,9157,'29620'),(12368,9158,'29621'),(12369,9158,'29622'),(12370,9158,'29623'),(12371,9158,'29624'),(12372,9158,'29625'),(12373,9158,'29626'),(12374,9159,'29627'),(12375,9160,'29628'),(12376,9161,'29630'),(12377,9162,'29631'),(12378,9162,'29632'),(12379,9162,'29633'),(12380,9162,'29634'),(12381,9163,'29635'),(12382,9164,'29636'),(12383,9165,'29638'),(12384,9166,'29639'),(12385,9167,'29640'),(12386,9167,'29641'),(12387,9167,'29642'),(12388,9168,'29643'),(12389,9169,'29644'),(12390,9170,'29645'),(12391,9171,'29646'),(12392,9171,'29647'),(12393,9171,'29648'),(12394,9171,'29649'),(12395,9172,'29650'),(12396,9172,'29651'),(12397,9172,'29652'),(12398,9173,'29653'),(12399,9173,'29695'),(12400,9174,'29654'),(12401,9175,'29655'),(12402,9176,'29656'),(12403,9177,'29657'),(12404,9178,'29658'),(12405,9179,'29659'),(12406,9180,'29661'),(12407,9181,'29662'),(12408,9182,'29664'),(12409,9183,'29665'),(12410,9184,'29666'),(12411,9185,'29667'),(12412,9186,'29669'),(12413,9187,'29670'),(12414,9188,'29671'),(12415,9189,'29672'),(12416,9189,'29678'),(12417,9189,'29679'),(12418,9190,'29673'),(12419,9191,'29675'),(12420,9192,'29676'),(12421,9193,'29677'),(12422,9194,'29680'),(12423,9194,'29681'),(12424,9195,'29682'),(12425,9196,'29683'),(12426,9197,'29684'),(12427,9198,'29685'),(12428,9199,'29686'),(12429,9200,'29687'),(12430,9201,'29688'),(12431,9202,'29689'),(12432,9203,'29690'),(12433,9204,'29691'),(12434,9205,'29692'),(12435,9206,'29693'),(12436,9207,'29696'),(12437,9208,'29697'),(12438,9209,'29702'),(12439,9210,'29703'),(12440,9211,'29704'),(12441,9212,'29706'),(12442,9213,'29708'),(12443,9213,'29715'),(12444,9213,'29716'),(12445,9214,'29709'),(12446,9215,'29710'),(12447,9216,'29712'),(12448,9217,'29714'),(12449,9218,'29717'),(12450,9219,'29718'),(12451,9220,'29720'),(12452,9220,'29721'),(12453,9220,'29722'),(12454,9221,'29724'),(12455,9222,'29726'),(12456,9223,'29727'),(12457,9224,'29728'),(12458,9225,'29729'),(12459,9226,'29730'),(12460,9226,'29731'),(12461,9226,'29732'),(12462,9226,'29733'),(12463,9226,'29734'),(12464,9227,'29741'),(12465,9228,'29742'),(12466,9229,'29743'),(12467,9230,'29744'),(12468,9231,'29745'),(12469,9232,'29801'),(12470,9232,'29802'),(12471,9232,'29803'),(12472,9232,'29804'),(12473,9232,'29805'),(12474,9232,'29808'),(12475,9233,'29809'),(12476,9234,'29810'),(12477,9235,'29812'),(12478,9236,'29813'),(12479,9237,'29816'),(12480,9238,'29817'),(12481,9239,'29819'),(12482,9240,'29821'),(12483,9241,'29822'),(12484,9242,'29824'),(12485,9243,'29826'),(12486,9244,'29827'),(12487,9245,'29828'),(12488,9246,'29829'),(12489,9247,'29831'),(12490,9248,'29832'),(12491,9249,'29834'),(12492,9250,'29835'),(12493,9250,'29899'),(12494,9251,'29836'),(12495,9252,'29838'),(12496,9253,'29839'),(12497,9254,'29840'),(12498,9255,'29841'),(12499,9255,'29860'),(12500,9255,'29861'),(12501,9256,'29842'),(12502,9257,'29843'),(12503,9258,'29844'),(12504,9259,'29845'),(12505,9260,'29846'),(12506,9261,'29847'),(12507,9262,'29848'),(12508,9263,'29849'),(12509,9264,'29850'),(12510,9265,'29851'),(12511,9266,'29853'),(12512,9267,'29856'),(12513,9268,'29901'),(12514,9268,'29902'),(12515,9268,'29903'),(12516,9268,'29904'),(12517,9268,'29905'),(12518,9268,'29906'),(12519,9269,'29910'),(12520,9270,'29911'),(12521,9271,'29912'),(12522,9272,'29913'),(12523,9273,'29914'),(12524,9274,'29915'),(12525,9275,'29916'),(12526,9276,'29918'),(12527,9277,'29920'),(12528,9278,'29921'),(12529,9279,'29922'),(12530,9280,'29923'),(12531,9281,'29924'),(12532,9282,'29925'),(12533,9282,'29926'),(12534,9282,'29928'),(12535,9282,'29938'),(12536,9283,'29927'),(12537,9284,'29929'),(12538,9285,'29931'),(12539,9286,'29932'),(12540,9287,'29933'),(12541,9288,'29934'),(12542,9289,'29935'),(12543,9290,'29936'),(12544,9291,'29939'),(12545,9292,'29940'),(12546,9293,'29941'),(12547,9294,'29943'),(12548,9295,'29944'),(12549,9296,'29945'),(12550,9297,'30002'),(12551,9298,'30003'),(12552,9298,'30010'),(12553,9298,'30071'),(12554,9298,'30091'),(12555,9298,'30092'),(12556,9298,'30093'),(12557,9299,'30004'),(12558,9299,'30005'),(12559,9299,'30009'),(12560,9299,'30022'),(12561,9299,'30023'),(12562,9300,'30006'),(12563,9300,'30007'),(12564,9300,'30008'),(12565,9300,'30060'),(12566,9300,'30061'),(12567,9300,'30062'),(12568,9300,'30063'),(12569,9300,'30064'),(12570,9300,'30065'),(12571,9300,'30066'),(12572,9300,'30067'),(12573,9300,'30068'),(12574,9300,'30069'),(12575,9300,'30090'),(12576,9301,'30011'),(12577,9302,'30012'),(12578,9302,'30013'),(12579,9302,'30094'),(12580,9303,'30014'),(12581,9303,'30015'),(12582,9303,'30016'),(12583,9304,'30017'),(12584,9305,'30018'),(12585,9306,'30019'),(12586,9307,'30021'),(12587,9308,'30024'),(12588,9309,'30025'),(12589,9310,'30026'),(12590,9310,'30029'),(12591,9310,'30095'),(12592,9310,'30096'),(12593,9310,'30097'),(12594,9310,'30098'),(12595,9310,'30099'),(12596,9311,'30028'),(12597,9311,'30040'),(12598,9311,'30041'),(12599,9312,'30030'),(12600,9312,'30031'),(12601,9312,'30032'),(12602,9312,'30033'),(12603,9312,'30034'),(12604,9312,'30035'),(12605,9312,'30036'),(12606,9312,'30037'),(12607,9313,'30038'),(12608,9313,'30058'),(12609,9314,'30039'),(12610,9314,'30078'),(12611,9315,'30042'),(12612,9315,'30043'),(12613,9315,'30044'),(12614,9315,'30045'),(12615,9315,'30046'),(12616,9316,'30047'),(12617,9316,'30048'),(12618,9317,'30052'),(12619,9318,'30054'),(12620,9319,'30055'),(12621,9320,'30056'),(12622,9321,'30070'),(12623,9322,'30072'),(12624,9323,'30074'),(12625,9324,'30075'),(12626,9324,'30076'),(12627,9324,'30077'),(12628,9325,'30079'),(12629,9326,'30080'),(12630,9326,'30081'),(12631,9326,'30082'),(12632,9327,'30083'),(12633,9327,'30086'),(12634,9327,'30087'),(12635,9327,'30088'),(12636,9328,'30084'),(12637,9328,'30085'),(12638,9329,'30101'),(12639,9329,'30102'),(12640,9330,'30103'),(12641,9331,'30104'),(12642,9332,'30105'),(12643,9333,'30106'),(12644,9333,'30168'),(12645,9334,'30107'),(12646,9335,'30108'),(12647,9336,'30109'),(12648,9337,'30110'),(12649,9338,'30111'),(12650,9339,'30113'),(12651,9340,'30114'),(12652,9340,'30115'),(12653,9341,'30116'),(12654,9341,'30117'),(12655,9341,'30118'),(12656,9341,'30119'),(12657,9342,'30120'),(12658,9342,'30121'),(12659,9343,'30122'),(12660,9344,'30123'),(12661,9345,'30124'),(12662,9346,'30125'),(12663,9347,'30126'),(12664,9348,'30127'),(12665,9349,'30129'),(12666,9350,'30132'),(12667,9350,'30157'),(12668,9351,'30133'),(12669,9351,'30134'),(12670,9351,'30135'),(12671,9351,'30154'),(12672,9352,'30137'),(12673,9353,'30138'),(12674,9354,'30139'),(12675,9355,'30140'),(12676,9356,'30141'),(12677,9357,'30142'),(12678,9358,'30143'),(12679,9359,'30144'),(12680,9359,'30152'),(12681,9360,'30145'),(12682,9361,'30146'),(12683,9362,'30147'),(12684,9363,'30148'),(12685,9364,'30149'),(12686,9365,'30150'),(12687,9366,'30151'),(12688,9367,'30153'),(12689,9368,'30161'),(12690,9368,'30162'),(12691,9368,'30163'),(12692,9368,'30164'),(12693,9368,'30165'),(12694,9369,'30170'),(12695,9370,'30171'),(12696,9371,'30172'),(12697,9372,'30173'),(12698,9373,'30175'),(12699,9374,'30176'),(12700,9375,'30177'),(12701,9376,'30178'),(12702,9377,'30179'),(12703,9378,'30180'),(12704,9379,'30182'),(12705,9380,'30183'),(12706,9381,'30184'),(12707,9382,'30185'),(12708,9383,'30187'),(12709,9384,'30188'),(12710,9384,'30189'),(12711,9385,'30204'),(12712,9386,'30205'),(12713,9387,'30206'),(12714,9388,'30212'),(12715,9389,'30213'),(12716,9390,'30214'),(12717,9390,'30215'),(12718,9391,'30216'),(12719,9392,'30217'),(12720,9393,'30218'),(12721,9394,'30219'),(12722,9395,'30220'),(12723,9396,'30222'),(12724,9397,'30223'),(12725,9397,'30224'),(12726,9398,'30228'),(12727,9399,'30229'),(12728,9400,'30230'),(12729,9401,'30232'),(12730,9402,'30233'),(12731,9403,'30234'),(12732,9404,'30236'),(12733,9404,'30237'),(12734,9404,'30238'),(12735,9405,'30240'),(12736,9405,'30241'),(12737,9405,'30261'),(12738,9406,'30248'),(12739,9407,'30250'),(12740,9408,'30251'),(12741,9409,'30252'),(12742,9409,'30253'),(12743,9410,'30256'),(12744,9411,'30257'),(12745,9412,'30258'),(12746,9413,'30259'),(12747,9414,'30260'),(12748,9414,'30287'),(12749,9415,'30263'),(12750,9415,'30264'),(12751,9415,'30265'),(12752,9415,'30271'),(12753,9416,'30266'),(12754,9417,'30268'),(12755,9418,'30269'),(12756,9419,'30272'),(12757,9420,'30273'),(12758,9421,'30274'),(12759,9421,'30296'),(12760,9422,'30275'),(12761,9423,'30276'),(12762,9424,'30277'),(12763,9425,'30281'),(12764,9426,'30284'),(12765,9427,'30285'),(12766,9428,'30286'),(12767,9429,'30288'),(12768,9430,'30289'),(12769,9431,'30290'),(12770,9432,'30291'),(12771,9433,'30292'),(12772,9434,'30293'),(12773,9435,'30294'),(12774,9436,'30295'),(12775,9437,'30297'),(12776,9437,'30298'),(12777,9438,'30301'),(12778,9438,'30302'),(12779,9438,'30303'),(12780,9438,'30304'),(12781,9438,'30305'),(12782,9438,'30306'),(12783,9438,'30307'),(12784,9438,'30308'),(12785,9438,'30309'),(12786,9438,'30310'),(12787,9438,'30311'),(12788,9438,'30312'),(12789,9438,'30313'),(12790,9438,'30314'),(12791,9438,'30315'),(12792,9438,'30316'),(12793,9438,'30317'),(12794,9438,'30318'),(12795,9438,'30319'),(12796,9438,'30320'),(12797,9438,'30321'),(12798,9438,'30322'),(12799,9438,'30323'),(12800,9438,'30324'),(12801,9438,'30325'),(12802,9438,'30326'),(12803,9438,'30327'),(12804,9438,'30328'),(12805,9438,'30329'),(12806,9438,'30330'),(12807,9438,'30331'),(12808,9438,'30332'),(12809,9438,'30333'),(12810,9438,'30334'),(12811,9438,'30335'),(12812,9438,'30336'),(12813,9438,'30337'),(12814,9438,'30338'),(12815,9438,'30339'),(12816,9438,'30340'),(12817,9438,'30341'),(12818,9438,'30342'),(12819,9438,'30343'),(12820,9438,'30344'),(12821,9438,'30345'),(12822,9438,'30346'),(12823,9438,'30347'),(12824,9438,'30348'),(12825,9438,'30349'),(12826,9438,'30350'),(12827,9438,'30351'),(12828,9438,'30353'),(12829,9438,'30354'),(12830,9438,'30355'),(12831,9438,'30356'),(12832,9438,'30357'),(12833,9438,'30358'),(12834,9438,'30359'),(12835,9438,'30360'),(12836,9438,'30361'),(12837,9438,'30362'),(12838,9438,'30363'),(12839,9438,'30364'),(12840,9438,'30365'),(12841,9438,'30366'),(12842,9438,'30367'),(12843,9438,'30368'),(12844,9438,'30369'),(12845,9438,'30370'),(12846,9438,'30371'),(12847,9438,'30374'),(12848,9438,'30375'),(12849,9438,'30376'),(12850,9438,'30377'),(12851,9438,'30378'),(12852,9438,'30379'),(12853,9438,'30380'),(12854,9438,'30381'),(12855,9438,'30384'),(12856,9438,'30385'),(12857,9438,'30386'),(12858,9438,'30387'),(12859,9438,'30388'),(12860,9438,'30389'),(12861,9438,'30390'),(12862,9438,'30392'),(12863,9438,'30394'),(12864,9438,'30396'),(12865,9438,'30398'),(12866,9438,'30399'),(12867,9438,'31106'),(12868,9438,'31107'),(12869,9438,'31119'),(12870,9438,'31126'),(12871,9438,'31131'),(12872,9438,'31139'),(12873,9438,'31141'),(12874,9438,'31145'),(12875,9438,'31146'),(12876,9438,'31150'),(12877,9438,'31156'),(12878,9438,'31191'),(12879,9438,'31192'),(12880,9438,'31193'),(12881,9438,'31195'),(12882,9438,'31196'),(12883,9438,'31197'),(12884,9438,'31198'),(12885,9438,'31199'),(12886,9438,'39901'),(12887,9439,'30401'),(12888,9440,'30410'),(12889,9441,'30411'),(12890,9442,'30412'),(12891,9443,'30413'),(12892,9444,'30414'),(12893,9445,'30415'),(12894,9446,'30417'),(12895,9447,'30420'),(12896,9448,'30421'),(12897,9449,'30423'),(12898,9450,'30424'),(12899,9451,'30425'),(12900,9452,'30426'),(12901,9453,'30427'),(12902,9454,'30428'),(12903,9455,'30429'),(12904,9456,'30434'),(12905,9457,'30436'),(12906,9458,'30438'),(12907,9459,'30439'),(12908,9460,'30441'),(12909,9461,'30442'),(12910,9462,'30445'),(12911,9463,'30446'),(12912,9464,'30447'),(12913,9465,'30448'),(12914,9466,'30449'),(12915,9467,'30450'),(12916,9468,'30451'),(12917,9469,'30452'),(12918,9470,'30453'),(12919,9470,'30499'),(12920,9471,'30454'),(12921,9472,'30455'),(12922,9473,'30456'),(12923,9474,'30457'),(12924,9475,'30458'),(12925,9475,'30459'),(12926,9475,'30460'),(12927,9475,'30461'),(12928,9476,'30464'),(12929,9477,'30466'),(12930,9478,'30467'),(12931,9479,'30470'),(12932,9480,'30471'),(12933,9481,'30473'),(12934,9482,'30474'),(12935,9482,'30475'),(12936,9483,'30477'),(12937,9484,'30501'),(12938,9484,'30503'),(12939,9484,'30504'),(12940,9484,'30505'),(12941,9484,'30506'),(12942,9484,'30507'),(12943,9485,'30502'),(12944,9486,'30510'),(12945,9486,'30596'),(12946,9487,'30511'),(12947,9488,'30512'),(12948,9488,'30514'),(12949,9489,'30513'),(12950,9490,'30515'),(12951,9490,'30518'),(12952,9490,'30519'),(12953,9491,'30516'),(12954,9492,'30517'),(12955,9493,'30520'),(12956,9494,'30521'),(12957,9495,'30522'),(12958,9496,'30523'),(12959,9497,'30525'),(12960,9498,'30527'),(12961,9499,'30528'),(12962,9500,'30529'),(12963,9500,'30530'),(12964,9500,'30599'),(12965,9501,'30531'),(12966,9502,'30533'),(12967,9502,'30597'),(12968,9503,'30534'),(12969,9504,'30535'),(12970,9504,'30544'),(12971,9505,'30537'),(12972,9506,'30538'),(12973,9507,'30539'),(12974,9508,'30540'),(12975,9509,'30541'),(12976,9510,'30542'),(12977,9511,'30543'),(12978,9512,'30545'),(12979,9513,'30546'),(12980,9514,'30547'),(12981,9515,'30548'),(12982,9516,'30549'),(12983,9517,'30552'),(12984,9518,'30553'),(12985,9519,'30554'),(12986,9520,'30555'),(12987,9521,'30557'),(12988,9522,'30558'),(12989,9523,'30559'),(12990,9524,'30560'),(12991,9525,'30562'),(12992,9526,'30563'),(12993,9527,'30564'),(12994,9528,'30565'),(12995,9529,'30566'),(12996,9530,'30567'),(12997,9531,'30568'),(12998,9532,'30571'),(12999,9533,'30572'),(13000,9534,'30573'),(13001,9535,'30575'),(13002,9536,'30576'),(13003,9537,'30577'),(13004,9537,'30598'),(13005,9538,'30580'),(13006,9539,'30581'),(13007,9540,'30582'),(13008,9541,'30601'),(13009,9541,'30602'),(13010,9541,'30603'),(13011,9541,'30604'),(13012,9541,'30605'),(13013,9541,'30606'),(13014,9541,'30607'),(13015,9541,'30608'),(13016,9541,'30609'),(13017,9541,'30610'),(13018,9541,'30612'),(13019,9541,'30613'),(13020,9542,'30619'),(13021,9543,'30620'),(13022,9544,'30621'),(13023,9545,'30622'),(13024,9546,'30623'),(13025,9547,'30624'),(13026,9548,'30625'),(13027,9549,'30627'),(13028,9550,'30628'),(13029,9551,'30629'),(13030,9552,'30630'),(13031,9553,'30631'),(13032,9554,'30633'),(13033,9555,'30634'),(13034,9556,'30635'),(13035,9557,'30638'),(13036,9558,'30639'),(13037,9559,'30641'),(13038,9560,'30642'),(13039,9561,'30643'),(13040,9562,'30645'),(13041,9563,'30646'),(13042,9564,'30647'),(13043,9565,'30648'),(13044,9566,'30650'),(13045,9567,'30655'),(13046,9567,'30656'),(13047,9568,'30660'),(13048,9569,'30662'),(13049,9570,'30663'),(13050,9571,'30664'),(13051,9572,'30665'),(13052,9573,'30666'),(13053,9574,'30667'),(13054,9575,'30668'),(13055,9576,'30669'),(13056,9577,'30671'),(13057,9578,'30673'),(13058,9579,'30677'),(13059,9580,'30678'),(13060,9581,'30680'),(13061,9582,'30683'),(13062,9583,'30701'),(13063,9583,'30703'),(13064,9584,'30705'),(13065,9585,'30707'),(13066,9586,'30708'),(13067,9587,'30710'),(13068,9588,'30711'),(13069,9589,'30719'),(13070,9589,'30720'),(13071,9589,'30721'),(13072,9589,'30722'),(13073,9590,'30724'),(13074,9591,'30725'),(13075,9592,'30726'),(13076,9593,'30728'),(13077,9594,'30730'),(13078,9595,'30731'),(13079,9596,'30732'),(13080,9597,'30733'),(13081,9598,'30734'),(13082,9599,'30735'),(13083,9600,'30736'),(13084,9601,'30738'),(13085,9602,'30739'),(13086,9603,'30740'),(13087,9604,'30741'),(13088,9605,'30742'),(13089,9606,'30746'),(13090,9607,'30747'),(13091,9608,'30750'),(13092,9609,'30751'),(13093,9610,'30752'),(13094,9611,'30753'),(13095,9612,'30755'),(13096,9613,'30756'),(13097,9614,'30757'),(13098,9615,'30802'),(13099,9616,'30803'),(13100,9617,'30805'),(13101,9618,'30806'),(13102,9619,'30807'),(13103,9620,'30808'),(13104,9621,'30809'),(13105,9622,'30810'),(13106,9623,'30811'),(13107,9624,'30812'),(13108,9625,'30813'),(13109,9626,'30814'),(13110,9627,'30815'),(13111,9628,'30816'),(13112,9629,'30817'),(13113,9630,'30818'),(13114,9631,'30819'),(13115,9632,'30820'),(13116,9633,'30821'),(13117,9634,'30822'),(13118,9635,'30823'),(13119,9636,'30824'),(13120,9637,'30828'),(13121,9638,'30830'),(13122,9639,'30833'),(13123,9640,'30901'),(13124,9640,'30903'),(13125,9640,'30904'),(13126,9640,'30905'),(13127,9640,'30906'),(13128,9640,'30907'),(13129,9640,'30909'),(13130,9640,'30910'),(13131,9640,'30911'),(13132,9640,'30912'),(13133,9640,'30913'),(13134,9640,'30914'),(13135,9640,'30916'),(13136,9640,'30917'),(13137,9640,'30919'),(13138,9640,'30999'),(13139,9641,'31001'),(13140,9642,'31002'),(13141,9643,'31003'),(13142,9644,'31004'),(13143,9645,'31005'),(13144,9646,'31006'),(13145,9647,'31007'),(13146,9648,'31008'),(13147,9649,'31009'),(13148,9650,'31010'),(13149,9650,'31015'),(13150,9651,'31011'),(13151,9652,'31012'),(13152,9653,'31013'),(13153,9654,'31014'),(13154,9655,'31016'),(13155,9656,'31017'),(13156,9657,'31018'),(13157,9658,'31019'),(13158,9659,'31020'),(13159,9660,'31021'),(13160,9660,'31027'),(13161,9660,'31040'),(13162,9661,'31022'),(13163,9662,'31023'),(13164,9663,'31024'),(13165,9664,'31025'),(13166,9665,'31028'),(13167,9666,'31029'),(13168,9667,'31030'),(13169,9668,'31031'),(13170,9669,'31032'),(13171,9670,'31033'),(13172,9671,'31034'),(13173,9672,'31035'),(13174,9673,'31036'),(13175,9674,'31037'),(13176,9675,'31038'),(13177,9676,'31039'),(13178,9677,'31041'),(13179,9678,'31042'),(13180,9679,'31044'),(13181,9680,'31045'),(13182,9681,'31046'),(13183,9682,'31047'),(13184,9683,'31049'),(13185,9684,'31050'),(13186,9685,'31051'),(13187,9686,'31052'),(13188,9687,'31054'),(13189,9688,'31055'),(13190,9689,'31057'),(13191,9690,'31058'),(13192,9691,'31060'),(13193,9692,'31061'),(13194,9692,'31062'),(13195,9693,'31063'),(13196,9694,'31064'),(13197,9695,'31065'),(13198,9696,'31066'),(13199,9697,'31067'),(13200,9698,'31068'),(13201,9699,'31069'),(13202,9700,'31070'),(13203,9701,'31071'),(13204,9702,'31072'),(13205,9703,'31073'),(13206,9704,'31075'),(13207,9705,'31076'),(13208,9706,'31077'),(13209,9707,'31078'),(13210,9708,'31079'),(13211,9709,'31081'),(13212,9710,'31082'),(13213,9711,'31083'),(13214,9712,'31084'),(13215,9713,'31085'),(13216,9714,'31086'),(13217,9715,'31087'),(13218,9716,'31088'),(13219,9716,'31093'),(13220,9716,'31095'),(13221,9716,'31098'),(13222,9716,'31099'),(13223,9717,'31089'),(13224,9718,'31090'),(13225,9719,'31091'),(13226,9720,'31092'),(13227,9721,'31094'),(13228,9722,'31096'),(13229,9723,'31097'),(13230,9724,'31201'),(13231,9724,'31202'),(13232,9724,'31203'),(13233,9724,'31204'),(13234,9724,'31205'),(13235,9724,'31206'),(13236,9724,'31207'),(13237,9724,'31208'),(13238,9724,'31209'),(13239,9724,'31210'),(13240,9724,'31211'),(13241,9724,'31212'),(13242,9724,'31213'),(13243,9724,'31216'),(13244,9724,'31217'),(13245,9724,'31220'),(13246,9724,'31221'),(13247,9724,'31294'),(13248,9724,'31295'),(13249,9724,'31296'),(13250,9724,'31297'),(13251,9724,'31298'),(13252,9724,'31299'),(13253,9725,'31301'),(13254,9726,'31302'),(13255,9727,'31303'),(13256,9728,'31304'),(13257,9729,'31305'),(13258,9730,'31307'),(13259,9731,'31308'),(13260,9732,'31309'),(13261,9733,'31310'),(13262,9733,'31313'),(13263,9734,'31312'),(13264,9735,'31314'),(13265,9735,'31315'),(13266,9736,'31316'),(13267,9737,'31318'),(13268,9738,'31319'),(13269,9739,'31320'),(13270,9740,'31321'),(13271,9741,'31322'),(13272,9742,'31323'),(13273,9743,'31324'),(13274,9744,'31326'),(13275,9745,'31327'),(13276,9746,'31328'),(13277,9747,'31329'),(13278,9748,'31331'),(13279,9749,'31332'),(13280,9750,'31333'),(13281,9751,'31401'),(13282,9751,'31402'),(13283,9751,'31403'),(13284,9751,'31404'),(13285,9751,'31405'),(13286,9751,'31406'),(13287,9751,'31407'),(13288,9751,'31408'),(13289,9751,'31409'),(13290,9751,'31410'),(13291,9751,'31411'),(13292,9751,'31412'),(13293,9751,'31414'),(13294,9751,'31415'),(13295,9751,'31416'),(13296,9751,'31418'),(13297,9751,'31419'),(13298,9751,'31420'),(13299,9751,'31421'),(13300,9751,'31422'),(13301,9751,'31498'),(13302,9751,'31499'),(13303,9752,'31501'),(13304,9752,'31502'),(13305,9752,'31503'),(13306,9753,'31510'),(13307,9754,'31512'),(13308,9755,'31513'),(13309,9755,'31515'),(13310,9756,'31516'),(13311,9757,'31518'),(13312,9758,'31519'),(13313,9759,'31520'),(13314,9759,'31521'),(13315,9759,'31523'),(13316,9759,'31524'),(13317,9759,'31525'),(13318,9760,'31522'),(13319,9761,'31527'),(13320,9762,'31532'),(13321,9763,'31533'),(13322,9763,'31534'),(13323,9763,'31535'),(13324,9764,'31537'),(13325,9765,'31539'),(13326,9766,'31542'),(13327,9767,'31543'),(13328,9768,'31544'),(13329,9769,'31545'),(13330,9769,'31546'),(13331,9769,'31598'),(13332,9769,'31599'),(13333,9770,'31547'),(13334,9771,'31548'),(13335,9772,'31549'),(13336,9773,'31550'),(13337,9774,'31551'),(13338,9775,'31552'),(13339,9776,'31553'),(13340,9777,'31554'),(13341,9778,'31555'),(13342,9779,'31556'),(13343,9780,'31557'),(13344,9781,'31558'),(13345,9782,'31560'),(13346,9783,'31561'),(13347,9784,'31563'),(13348,9785,'31564'),(13349,9786,'31565'),(13350,9787,'31566'),(13351,9788,'31567'),(13352,9789,'31568'),(13353,9790,'31569'),(13354,9791,'31601'),(13355,9791,'31602'),(13356,9791,'31603'),(13357,9791,'31604'),(13358,9791,'31605'),(13359,9791,'31606'),(13360,9791,'31698'),(13361,9791,'31699'),(13362,9792,'31620'),(13363,9793,'31622'),(13364,9794,'31623'),(13365,9795,'31624'),(13366,9796,'31625'),(13367,9797,'31626'),(13368,9798,'31627'),(13369,9799,'31629'),(13370,9800,'31630'),(13371,9801,'31631'),(13372,9802,'31632'),(13373,9803,'31634'),(13374,9804,'31635'),(13375,9805,'31636'),(13376,9806,'31637'),(13377,9807,'31638'),(13378,9808,'31639'),(13379,9809,'31641'),(13380,9810,'31642'),(13381,9811,'31643'),(13382,9812,'31645'),(13383,9813,'31646'),(13384,9814,'31647'),(13385,9815,'31648'),(13386,9816,'31649'),(13387,9817,'31650'),(13388,9818,'31701'),(13389,9818,'31702'),(13390,9818,'31703'),(13391,9818,'31704'),(13392,9818,'31705'),(13393,9818,'31706'),(13394,9818,'31707'),(13395,9818,'31708'),(13396,9819,'31709'),(13397,9819,'31710'),(13398,9820,'31711'),(13399,9821,'31712'),(13400,9822,'31713'),(13401,9823,'31714'),(13402,9824,'31715'),(13403,9825,'31716'),(13404,9826,'31717'),(13405,9826,'31718'),(13406,9827,'31720'),(13407,9828,'31722'),(13408,9829,'31723'),(13409,9830,'31724'),(13410,9831,'31725'),(13411,9832,'31726'),(13412,9833,'31727'),(13413,9834,'31728'),(13414,9835,'31729'),(13415,9836,'31730'),(13416,9837,'31732'),(13417,9838,'31733'),(13418,9839,'31734'),(13419,9840,'31735'),(13420,9841,'31736'),(13421,9842,'31737'),(13422,9843,'31738'),(13423,9844,'31739'),(13424,9845,'31740'),(13425,9846,'31741'),(13426,9847,'31742'),(13427,9848,'31743'),(13428,9849,'31744'),(13429,9850,'31745'),(13430,9851,'31746'),(13431,9852,'31747'),(13432,9853,'31749'),(13433,9854,'31750'),(13434,9855,'31751'),(13435,9856,'31752'),(13436,9857,'31753'),(13437,9858,'31754'),(13438,9859,'31756'),(13439,9860,'31757'),(13440,9860,'31758'),(13441,9860,'31792'),(13442,9860,'31799'),(13443,9861,'31759'),(13444,9862,'31760'),(13445,9863,'31761'),(13446,9864,'31762'),(13447,9865,'31763'),(13448,9866,'31764'),(13449,9867,'31765'),(13450,9868,'31766'),(13451,9869,'31767'),(13452,9870,'31768'),(13453,9870,'31776'),(13454,9871,'31769'),(13455,9872,'31770'),(13456,9873,'31771'),(13457,9874,'31772'),(13458,9875,'31773'),(13459,9876,'31774'),(13460,9877,'31775'),(13461,9878,'31777'),(13462,9879,'31778'),(13463,9880,'31779'),(13464,9881,'31780'),(13465,9882,'31781'),(13466,9883,'31782'),(13467,9884,'31783'),(13468,9885,'31784'),(13469,9886,'31785'),(13470,9887,'31786'),(13471,9888,'31787'),(13472,9889,'31789'),(13473,9890,'31790'),(13474,9891,'31791'),(13475,9892,'31793'),(13476,9892,'31794'),(13477,9893,'31795'),(13478,9894,'31796'),(13479,9895,'31797'),(13480,9896,'31798'),(13481,9897,'31801'),(13482,9898,'31803'),(13483,9899,'31804'),(13484,9900,'31805'),(13485,9901,'31806'),(13486,9902,'31807'),(13487,9903,'31808'),(13488,9904,'31810'),(13489,9905,'31811'),(13490,9906,'31812'),(13491,9907,'31814'),(13492,9908,'31815'),(13493,9909,'31816'),(13494,9910,'31820'),(13495,9911,'31821'),(13496,9912,'31822'),(13497,9913,'31823'),(13498,9914,'31824'),(13499,9915,'31825'),(13500,9916,'31826'),(13501,9917,'31827'),(13502,9918,'31829'),(13503,9919,'31830'),(13504,9920,'31831'),(13505,9921,'31832'),(13506,9922,'31833'),(13507,9923,'31836'),(13508,9924,'31901'),(13509,9924,'31902'),(13510,9924,'31903'),(13511,9924,'31904'),(13512,9924,'31906'),(13513,9924,'31907'),(13514,9924,'31908'),(13515,9924,'31909'),(13516,9924,'31914'),(13517,9924,'31917'),(13518,9924,'31993'),(13519,9924,'31994'),(13520,9924,'31997'),(13521,9924,'31998'),(13522,9924,'31999'),(13523,9925,'31905'),(13524,9925,'31995'),(13525,9926,'32004'),(13526,9926,'32082'),(13527,9927,'32007'),(13528,9928,'32008'),(13529,9929,'32009'),(13530,9930,'32011'),(13531,9931,'32013'),(13532,9932,'32024'),(13533,9932,'32025'),(13534,9932,'32055'),(13535,9932,'32056'),(13536,9933,'32030'),(13537,9934,'32033'),(13538,9935,'32034'),(13539,9935,'32035'),(13540,9936,'32038'),(13541,9937,'32040'),(13542,9938,'32041'),(13543,9938,'32097'),(13544,9939,'32042'),(13545,9940,'32043'),(13546,9941,'32044'),(13547,9942,'32046'),(13548,9943,'32050'),(13549,9943,'32068'),(13550,9944,'32052'),(13551,9945,'32053'),(13552,9946,'32054'),(13553,9947,'32058'),(13554,9948,'32059'),(13555,9949,'32060'),(13556,9949,'32064'),(13557,9950,'32061'),(13558,9951,'32062'),(13559,9952,'32063'),(13560,9953,'32065'),(13561,9953,'32067'),(13562,9953,'32073'),(13563,9954,'32066'),(13564,9955,'32071'),(13565,9956,'32072'),(13566,9957,'32079'),(13567,9958,'32083'),(13568,9959,'32084'),(13569,9959,'32085'),(13570,9959,'32086'),(13571,9959,'32092'),(13572,9959,'32095'),(13573,9960,'32087'),(13574,9961,'32091'),(13575,9962,'32094'),(13576,9963,'32096'),(13577,9964,'32099'),(13578,9964,'32201'),(13579,9964,'32202'),(13580,9964,'32203'),(13581,9964,'32204'),(13582,9964,'32205'),(13583,9964,'32206'),(13584,9964,'32207'),(13585,9964,'32208'),(13586,9964,'32209'),(13587,9964,'32210'),(13588,9964,'32211'),(13589,9964,'32212'),(13590,9964,'32214'),(13591,9964,'32215'),(13592,9964,'32216'),(13593,9964,'32217'),(13594,9964,'32218'),(13595,9964,'32219'),(13596,9964,'32220'),(13597,9964,'32221'),(13598,9964,'32222'),(13599,9964,'32223'),(13600,9964,'32224'),(13601,9964,'32225'),(13602,9964,'32226'),(13603,9964,'32227'),(13604,9964,'32228'),(13605,9964,'32229'),(13606,9964,'32230'),(13607,9964,'32231'),(13608,9964,'32232'),(13609,9964,'32234'),(13610,9964,'32235'),(13611,9964,'32236'),(13612,9964,'32237'),(13613,9964,'32238'),(13614,9964,'32239'),(13615,9964,'32241'),(13616,9964,'32244'),(13617,9964,'32245'),(13618,9964,'32246'),(13619,9964,'32247'),(13620,9964,'32254'),(13621,9964,'32255'),(13622,9964,'32256'),(13623,9964,'32257'),(13624,9964,'32258'),(13625,9964,'32259'),(13626,9964,'32260'),(13627,9964,'32267'),(13628,9964,'32276'),(13629,9964,'32277'),(13630,9965,'32102'),(13631,9966,'32105'),(13632,9967,'32110'),(13633,9968,'32111'),(13634,9969,'32112'),(13635,9970,'32113'),(13636,9971,'32114'),(13637,9971,'32115'),(13638,9971,'32116'),(13639,9971,'32117'),(13640,9971,'32118'),(13641,9971,'32119'),(13642,9971,'32120'),(13643,9971,'32121'),(13644,9971,'32122'),(13645,9971,'32123'),(13646,9971,'32124'),(13647,9971,'32125'),(13648,9971,'32126'),(13649,9971,'32127'),(13650,9971,'32198'),(13651,9972,'32129'),(13652,9973,'32130'),(13653,9974,'32131'),(13654,9975,'32132'),(13655,9975,'32141'),(13656,9976,'32133'),(13657,9977,'32134'),(13658,9978,'32135'),(13659,9978,'32137'),(13660,9978,'32142'),(13661,9978,'32164'),(13662,9979,'32136'),(13663,9979,'32151'),(13664,9980,'32138'),(13665,9981,'32139'),(13666,9982,'32140'),(13667,9983,'32145'),(13668,9984,'32147'),(13669,9985,'32148'),(13670,9985,'32149'),(13671,9986,'32157'),(13672,9987,'32158'),(13673,9987,'32159'),(13674,9988,'32160'),(13675,9989,'32168'),(13676,9989,'32169'),(13677,9989,'32170'),(13678,9990,'32173'),(13679,9990,'32174'),(13680,9990,'32175'),(13681,9990,'32176'),(13682,9991,'32177'),(13683,9991,'32178'),(13684,9992,'32179'),(13685,9992,'32183'),(13686,9993,'32180'),(13687,9994,'32181'),(13688,9995,'32182'),(13689,9996,'32185'),(13690,9997,'32187'),(13691,9998,'32189'),(13692,9999,'32190'),(13693,10000,'32192'),(13694,10001,'32193'),(13695,10002,'32195'),(13696,10003,'32233'),(13697,10004,'32240'),(13698,10004,'32250'),(13699,10005,'32266'),(13700,10006,'32301'),(13701,10006,'32302'),(13702,10006,'32303'),(13703,10006,'32304'),(13704,10006,'32306'),(13705,10006,'32307'),(13706,10006,'32308'),(13707,10006,'32310'),(13708,10006,'32311'),(13709,10006,'32312'),(13710,10006,'32313'),(13711,10006,'32314'),(13712,10006,'32315'),(13713,10006,'32316'),(13714,10006,'32317'),(13715,10006,'32395'),(13716,10006,'32399'),(13717,10007,'32305'),(13718,10008,'32309'),(13719,10009,'32320'),(13720,10009,'32329'),(13721,10010,'32321'),(13722,10011,'32322'),(13723,10012,'32323'),(13724,10013,'32324'),(13725,10014,'32326'),(13726,10014,'32327'),(13727,10015,'32328'),(13728,10016,'32330'),(13729,10017,'32331'),(13730,10018,'32332'),(13731,10019,'32333'),(13732,10020,'32334'),(13733,10021,'32335'),(13734,10022,'32336'),(13735,10023,'32337'),(13736,10024,'32340'),(13737,10024,'32341'),(13738,10025,'32343'),(13739,10026,'32344'),(13740,10026,'32345'),(13741,10027,'32346'),(13742,10028,'32347'),(13743,10028,'32348'),(13744,10029,'32350'),(13745,10030,'32351'),(13746,10030,'32353'),(13747,10031,'32352'),(13748,10032,'32355'),(13749,10033,'32356'),(13750,10034,'32357'),(13751,10035,'32358'),(13752,10036,'32359'),(13753,10037,'32360'),(13754,10038,'32361'),(13755,10039,'32362'),(13756,10040,'32401'),(13757,10040,'32402'),(13758,10040,'32403'),(13759,10040,'32404'),(13760,10040,'32405'),(13761,10040,'32406'),(13762,10040,'32408'),(13763,10040,'32409'),(13764,10040,'32411'),(13765,10040,'32412'),(13766,10040,'32417'),(13767,10041,'32407'),(13768,10041,'32413'),(13769,10042,'32410'),(13770,10043,'32420'),(13771,10044,'32421'),(13772,10045,'32422'),(13773,10046,'32423'),(13774,10047,'32424'),(13775,10048,'32425'),(13776,10049,'32426'),(13777,10050,'32427'),(13778,10051,'32428'),(13779,10052,'32430'),(13780,10053,'32431'),(13781,10054,'32432'),(13782,10055,'32433'),(13783,10055,'32435'),(13784,10056,'32434'),(13785,10057,'32437'),(13786,10058,'32438'),(13787,10059,'32439'),(13788,10060,'32440'),(13789,10061,'32442'),(13790,10062,'32443'),(13791,10063,'32444'),(13792,10064,'32445'),(13793,10065,'32446'),(13794,10065,'32447'),(13795,10065,'32448'),(13796,10066,'32449'),(13797,10067,'32452'),(13798,10068,'32454'),(13799,10069,'32455'),(13800,10070,'32456'),(13801,10070,'32457'),(13802,10071,'32459'),(13803,10072,'32460'),(13804,10073,'32461'),(13805,10074,'32462'),(13806,10075,'32463'),(13807,10076,'32464'),(13808,10077,'32465'),(13809,10078,'32466'),(13810,10079,'32501'),(13811,10079,'32502'),(13812,10079,'32503'),(13813,10079,'32504'),(13814,10079,'32505'),(13815,10079,'32506'),(13816,10079,'32507'),(13817,10079,'32508'),(13818,10079,'32509'),(13819,10079,'32511'),(13820,10079,'32512'),(13821,10079,'32513'),(13822,10079,'32514'),(13823,10079,'32516'),(13824,10079,'32520'),(13825,10079,'32521'),(13826,10079,'32522'),(13827,10079,'32523'),(13828,10079,'32524'),(13829,10079,'32526'),(13830,10079,'32534'),(13831,10079,'32559'),(13832,10079,'32573'),(13833,10079,'32574'),(13834,10079,'32575'),(13835,10079,'32576'),(13836,10079,'32581'),(13837,10079,'32582'),(13838,10079,'32589'),(13839,10079,'32590'),(13840,10079,'32591'),(13841,10079,'32592'),(13842,10079,'32593'),(13843,10079,'32594'),(13844,10079,'32595'),(13845,10079,'32596'),(13846,10079,'32597'),(13847,10079,'32598'),(13848,10080,'32530'),(13849,10081,'32531'),(13850,10082,'32533'),(13851,10083,'32535'),(13852,10084,'32536'),(13853,10084,'32539'),(13854,10085,'32537'),(13855,10086,'32538'),(13856,10087,'32540'),(13857,10087,'32541'),(13858,10088,'32542'),(13859,10089,'32544'),(13860,10090,'32547'),(13861,10090,'32548'),(13862,10090,'32549'),(13863,10091,'32560'),(13864,10092,'32561'),(13865,10092,'32562'),(13866,10092,'32566'),(13867,10093,'32563'),(13868,10094,'32564'),(13869,10095,'32565'),(13870,10096,'32567'),(13871,10097,'32568'),(13872,10098,'32569'),(13873,10099,'32570'),(13874,10099,'32571'),(13875,10099,'32572'),(13876,10099,'32583'),(13877,10100,'32577'),(13878,10101,'32578'),(13879,10101,'32588'),(13880,10102,'32579'),(13881,10103,'32580'),(13882,10104,'32601'),(13883,10104,'32602'),(13884,10104,'32603'),(13885,10104,'32604'),(13886,10104,'32605'),(13887,10104,'32606'),(13888,10104,'32607'),(13889,10104,'32608'),(13890,10104,'32609'),(13891,10104,'32610'),(13892,10104,'32611'),(13893,10104,'32612'),(13894,10104,'32613'),(13895,10104,'32614'),(13896,10104,'32627'),(13897,10104,'32635'),(13898,10104,'32641'),(13899,10104,'32653'),(13900,10105,'32615'),(13901,10105,'32616'),(13902,10106,'32617'),(13903,10107,'32618'),(13904,10108,'32619'),(13905,10109,'32621'),(13906,10110,'32622'),(13907,10111,'32625'),(13908,10112,'32626'),(13909,10112,'32644'),(13910,10113,'32628'),(13911,10114,'32631'),(13912,10115,'32633'),(13913,10116,'32634'),(13914,10117,'32639'),(13915,10118,'32640'),(13916,10119,'32643'),(13917,10119,'32655'),(13918,10120,'32648'),(13919,10121,'32654'),(13920,10122,'32656'),(13921,10123,'32658'),(13922,10124,'32662'),(13923,10125,'32663'),(13924,10126,'32664'),(13925,10127,'32666'),(13926,10128,'32667'),(13927,10129,'32668'),(13928,10130,'32669'),(13929,10131,'32680'),(13930,10132,'32681'),(13931,10133,'32683'),(13932,10134,'32686'),(13933,10135,'32692'),(13934,10136,'32693'),(13935,10137,'32694'),(13936,10138,'32696'),(13937,10139,'32697'),(13938,10140,'32701'),(13939,10140,'32714'),(13940,10140,'32715'),(13941,10140,'32716'),(13942,10141,'32702'),(13943,10142,'32703'),(13944,10142,'32704'),(13945,10142,'32712'),(13946,10143,'32706'),(13947,10144,'32707'),(13948,10144,'32718'),(13949,10144,'32730'),(13950,10145,'32708'),(13951,10145,'32719'),(13952,10146,'32709'),(13953,10147,'32710'),(13954,10148,'32713'),(13955,10149,'32720'),(13956,10149,'32721'),(13957,10149,'32724'),(13958,10150,'32722'),(13959,10151,'32725'),(13960,10151,'32728'),(13961,10151,'32738'),(13962,10151,'32739'),(13963,10152,'32726'),(13964,10152,'32727'),(13965,10152,'32736'),(13966,10153,'32732'),(13967,10154,'32733'),(13968,10155,'32735'),(13969,10156,'32744'),(13970,10157,'32746'),(13971,10157,'32795'),(13972,10158,'32747'),(13973,10159,'32750'),(13974,10159,'32752'),(13975,10159,'32779'),(13976,10159,'32791'),(13977,10160,'32751'),(13978,10160,'32794'),(13979,10161,'32754'),(13980,10162,'32756'),(13981,10162,'32757'),(13982,10163,'32759'),(13983,10164,'32762'),(13984,10164,'32765'),(13985,10164,'32766'),(13986,10165,'32763'),(13987,10165,'32774'),(13988,10166,'32764'),(13989,10167,'32767'),(13990,10168,'32768'),(13991,10169,'32771'),(13992,10169,'32772'),(13993,10169,'32773'),(13994,10170,'32775'),(13995,10171,'32776'),(13996,10172,'32777'),(13997,10173,'32778'),(13998,10174,'32780'),(13999,10174,'32781'),(14000,10174,'32782'),(14001,10174,'32783'),(14002,10174,'32796'),(14003,10175,'32784'),(14004,10176,'32789'),(14005,10176,'32790'),(14006,10176,'32792'),(14007,10176,'32793'),(14008,10177,'32798'),(14009,10178,'32799'),(14010,10179,'32801'),(14011,10179,'32802'),(14012,10179,'32803'),(14013,10179,'32804'),(14014,10179,'32805'),(14015,10179,'32806'),(14016,10179,'32807'),(14017,10179,'32808'),(14018,10179,'32809'),(14019,10179,'32810'),(14020,10179,'32811'),(14021,10179,'32812'),(14022,10179,'32813'),(14023,10179,'32814'),(14024,10179,'32815'),(14025,10179,'32816'),(14026,10179,'32817'),(14027,10179,'32818'),(14028,10179,'32819'),(14029,10179,'32820'),(14030,10179,'32821'),(14031,10179,'32822'),(14032,10179,'32824'),(14033,10179,'32825'),(14034,10179,'32826'),(14035,10179,'32827'),(14036,10179,'32828'),(14037,10179,'32829'),(14038,10179,'32830'),(14039,10179,'32831'),(14040,10179,'32832'),(14041,10179,'32833'),(14042,10179,'32834'),(14043,10179,'32835'),(14044,10179,'32836'),(14045,10179,'32837'),(14046,10179,'32839'),(14047,10179,'32853'),(14048,10179,'32854'),(14049,10179,'32855'),(14050,10179,'32856'),(14051,10179,'32857'),(14052,10179,'32858'),(14053,10179,'32859'),(14054,10179,'32860'),(14055,10179,'32861'),(14056,10179,'32862'),(14057,10179,'32867'),(14058,10179,'32868'),(14059,10179,'32869'),(14060,10179,'32872'),(14061,10179,'32877'),(14062,10179,'32878'),(14063,10179,'32886'),(14064,10179,'32887'),(14065,10179,'32889'),(14066,10179,'32890'),(14067,10179,'32891'),(14068,10179,'32893'),(14069,10179,'32897'),(14070,10179,'32898'),(14071,10179,'32899'),(14072,10180,'32901'),(14073,10180,'32902'),(14074,10180,'32904'),(14075,10180,'32912'),(14076,10180,'32919'),(14077,10180,'32934'),(14078,10180,'32935'),(14079,10180,'32936'),(14080,10180,'32940'),(14081,10180,'32941'),(14082,10181,'32903'),(14083,10182,'32905'),(14084,10182,'32906'),(14085,10182,'32907'),(14086,10182,'32908'),(14087,10182,'32909'),(14088,10182,'32910'),(14089,10182,'32911'),(14090,10183,'32920'),(14091,10184,'32922'),(14092,10184,'32923'),(14093,10184,'32924'),(14094,10184,'32926'),(14095,10184,'32927'),(14096,10185,'32925'),(14097,10186,'32931'),(14098,10186,'32932'),(14099,10187,'32937'),(14100,10188,'32948'),(14101,10189,'32949'),(14102,10190,'32950'),(14103,10191,'32951'),(14104,10192,'32952'),(14105,10192,'32953'),(14106,10192,'32954'),(14107,10193,'32955'),(14108,10193,'32956'),(14109,10194,'32957'),(14110,10195,'32958'),(14111,10195,'32976'),(14112,10195,'32978'),(14113,10196,'32959'),(14114,10197,'32960'),(14115,10197,'32961'),(14116,10197,'32962'),(14117,10197,'32963'),(14118,10197,'32964'),(14119,10197,'32965'),(14120,10197,'32966'),(14121,10197,'32967'),(14122,10197,'32968'),(14123,10197,'32969'),(14124,10198,'32970'),(14125,10199,'32971'),(14126,10200,'33001'),(14127,10201,'33002'),(14128,10201,'33010'),(14129,10201,'33011'),(14130,10201,'33012'),(14131,10201,'33013'),(14132,10201,'33014'),(14133,10201,'33015'),(14134,10201,'33016'),(14135,10201,'33017'),(14136,10201,'33018'),(14137,10202,'33004'),(14138,10203,'33008'),(14139,10203,'33009'),(14140,10204,'33019'),(14141,10204,'33020'),(14142,10204,'33021'),(14143,10204,'33022'),(14144,10204,'33023'),(14145,10204,'33024'),(14146,10204,'33025'),(14147,10204,'33026'),(14148,10204,'33027'),(14149,10204,'33029'),(14150,10204,'33081'),(14151,10204,'33083'),(14152,10205,'33028'),(14153,10205,'33082'),(14154,10205,'33084'),(14155,10206,'33030'),(14156,10206,'33031'),(14157,10206,'33032'),(14158,10206,'33033'),(14159,10206,'33034'),(14160,10206,'33035'),(14161,10206,'33039'),(14162,10206,'33090'),(14163,10206,'33092'),(14164,10207,'33036'),(14165,10208,'33037'),(14166,10209,'33040'),(14167,10209,'33041'),(14168,10209,'33045'),(14169,10210,'33042'),(14170,10211,'33043'),(14171,10212,'33044'),(14172,10213,'33050'),(14173,10214,'33051'),(14174,10215,'33052'),(14175,10216,'33054'),(14176,10216,'33055'),(14177,10216,'33056'),(14178,10217,'33060'),(14179,10217,'33061'),(14180,10217,'33062'),(14181,10217,'33063'),(14182,10217,'33064'),(14183,10217,'33065'),(14184,10217,'33066'),(14185,10217,'33067'),(14186,10217,'33068'),(14187,10217,'33069'),(14188,10217,'33071'),(14189,10217,'33072'),(14190,10217,'33073'),(14191,10217,'33074'),(14192,10217,'33075'),(14193,10217,'33076'),(14194,10217,'33077'),(14195,10217,'33093'),(14196,10217,'33097'),(14197,10218,'33070'),(14198,10219,'33101'),(14199,10219,'33102'),(14200,10219,'33107'),(14201,10219,'33110'),(14202,10219,'33111'),(14203,10219,'33114'),(14204,10219,'33116'),(14205,10219,'33121'),(14206,10219,'33122'),(14207,10219,'33124'),(14208,10219,'33125'),(14209,10219,'33126'),(14210,10219,'33127'),(14211,10219,'33128'),(14212,10219,'33129'),(14213,10219,'33130'),(14214,10219,'33131'),(14215,10219,'33132'),(14216,10219,'33133'),(14217,10219,'33134'),(14218,10219,'33135'),(14219,10219,'33136'),(14220,10219,'33137'),(14221,10219,'33138'),(14222,10219,'33142'),(14223,10219,'33143'),(14224,10219,'33144'),(14225,10219,'33145'),(14226,10219,'33146'),(14227,10219,'33147'),(14228,10219,'33148'),(14229,10219,'33150'),(14230,10219,'33151'),(14231,10219,'33152'),(14232,10219,'33153'),(14233,10219,'33154'),(14234,10219,'33155'),(14235,10219,'33156'),(14236,10219,'33157'),(14237,10219,'33158'),(14238,10219,'33159'),(14239,10219,'33161'),(14240,10219,'33162'),(14241,10219,'33163'),(14242,10219,'33164'),(14243,10219,'33165'),(14244,10219,'33166'),(14245,10219,'33167'),(14246,10219,'33168'),(14247,10219,'33169'),(14248,10219,'33170'),(14249,10219,'33172'),(14250,10219,'33173'),(14251,10219,'33174'),(14252,10219,'33175'),(14253,10219,'33176'),(14254,10219,'33177'),(14255,10219,'33178'),(14256,10219,'33179'),(14257,10219,'33180'),(14258,10219,'33181'),(14259,10219,'33182'),(14260,10219,'33183'),(14261,10219,'33184'),(14262,10219,'33185'),(14263,10219,'33186'),(14264,10219,'33187'),(14265,10219,'33188'),(14266,10219,'33189'),(14267,10219,'33190'),(14268,10219,'33192'),(14269,10219,'33193'),(14270,10219,'33194'),(14271,10219,'33195'),(14272,10219,'33196'),(14273,10219,'33197'),(14274,10219,'33199'),(14275,10219,'33231'),(14276,10219,'33233'),(14277,10219,'33234'),(14278,10219,'33238'),(14279,10219,'33242'),(14280,10219,'33243'),(14281,10219,'33245'),(14282,10219,'33247'),(14283,10219,'33255'),(14284,10219,'33256'),(14285,10219,'33257'),(14286,10219,'33261'),(14287,10219,'33265'),(14288,10219,'33266'),(14289,10219,'33269'),(14290,10219,'33280'),(14291,10219,'33283'),(14292,10219,'33296'),(14293,10219,'33299'),(14294,10220,'33109'),(14295,10220,'33119'),(14296,10220,'33139'),(14297,10220,'33140'),(14298,10220,'33141'),(14299,10220,'33239'),(14300,10221,'33149'),(14301,10222,'33160'),(14302,10223,'33301'),(14303,10223,'33302'),(14304,10223,'33303'),(14305,10223,'33304'),(14306,10223,'33305'),(14307,10223,'33306'),(14308,10223,'33307'),(14309,10223,'33308'),(14310,10223,'33309'),(14311,10223,'33310'),(14312,10223,'33311'),(14313,10223,'33312'),(14314,10223,'33313'),(14315,10223,'33314'),(14316,10223,'33315'),(14317,10223,'33316'),(14318,10223,'33317'),(14319,10223,'33318'),(14320,10223,'33319'),(14321,10223,'33320'),(14322,10223,'33321'),(14323,10223,'33322'),(14324,10223,'33323'),(14325,10223,'33324'),(14326,10223,'33325'),(14327,10223,'33328'),(14328,10223,'33329'),(14329,10223,'33330'),(14330,10223,'33331'),(14331,10223,'33332'),(14332,10223,'33334'),(14333,10223,'33335'),(14334,10223,'33337'),(14335,10223,'33338'),(14336,10223,'33339'),(14337,10223,'33340'),(14338,10223,'33345'),(14339,10223,'33346'),(14340,10223,'33348'),(14341,10223,'33349'),(14342,10223,'33351'),(14343,10223,'33355'),(14344,10223,'33359'),(14345,10223,'33388'),(14346,10223,'33394'),(14347,10224,'33326'),(14348,10224,'33327'),(14349,10225,'33401'),(14350,10225,'33402'),(14351,10225,'33403'),(14352,10225,'33404'),(14353,10225,'33405'),(14354,10225,'33406'),(14355,10225,'33407'),(14356,10225,'33409'),(14357,10225,'33410'),(14358,10225,'33411'),(14359,10225,'33412'),(14360,10225,'33413'),(14361,10225,'33414'),(14362,10225,'33415'),(14363,10225,'33416'),(14364,10225,'33417'),(14365,10225,'33418'),(14366,10225,'33419'),(14367,10225,'33420'),(14368,10225,'33421'),(14369,10225,'33422'),(14370,10226,'33408'),(14371,10227,'33424'),(14372,10227,'33425'),(14373,10227,'33426'),(14374,10227,'33435'),(14375,10227,'33436'),(14376,10227,'33437'),(14377,10227,'33474'),(14378,10228,'33427'),(14379,10228,'33428'),(14380,10228,'33429'),(14381,10228,'33431'),(14382,10228,'33432'),(14383,10228,'33433'),(14384,10228,'33434'),(14385,10228,'33481'),(14386,10228,'33486'),(14387,10228,'33487'),(14388,10228,'33488'),(14389,10228,'33496'),(14390,10228,'33497'),(14391,10228,'33498'),(14392,10228,'33499'),(14393,10229,'33430'),(14394,10230,'33438'),(14395,10231,'33439'),(14396,10232,'33440'),(14397,10233,'33441'),(14398,10233,'33442'),(14399,10233,'33443'),(14400,10234,'33444'),(14401,10234,'33445'),(14402,10234,'33446'),(14403,10234,'33447'),(14404,10234,'33448'),(14405,10234,'33482'),(14406,10234,'33483'),(14407,10234,'33484'),(14408,10235,'33454'),(14409,10235,'33460'),(14410,10235,'33461'),(14411,10235,'33462'),(14412,10235,'33463'),(14413,10235,'33464'),(14414,10235,'33465'),(14415,10235,'33466'),(14416,10235,'33467'),(14417,10236,'33455'),(14418,10236,'33475'),(14419,10237,'33458'),(14420,10237,'33468'),(14421,10237,'33469'),(14422,10237,'33477'),(14423,10237,'33478'),(14424,10238,'33459'),(14425,10239,'33470'),(14426,10240,'33471'),(14427,10241,'33476'),(14428,10242,'33480'),(14429,10243,'33493'),(14430,10244,'33503'),(14431,10245,'33509'),(14432,10245,'33510'),(14433,10245,'33511'),(14434,10246,'33513'),(14435,10247,'33514'),(14436,10248,'33521'),(14437,10249,'33523'),(14438,10249,'33525'),(14439,10249,'33526'),(14440,10250,'33524'),(14441,10251,'33527'),(14442,10252,'33530'),(14443,10253,'33534'),(14444,10254,'33537'),(14445,10255,'33538'),(14446,10256,'33539'),(14447,10256,'33540'),(14448,10256,'33541'),(14449,10256,'33543'),(14450,10256,'33544'),(14451,10257,'33547'),(14452,10258,'33548'),(14453,10258,'33549'),(14454,10259,'33550'),(14455,10260,'33556'),(14456,10261,'33564'),(14457,10261,'33565'),(14458,10261,'33566'),(14459,10261,'33567'),(14460,10262,'33568'),(14461,10262,'33569'),(14462,10263,'33570'),(14463,10264,'33571'),(14464,10264,'33573'),(14465,10265,'33572'),(14466,10266,'33574'),(14467,10267,'33576'),(14468,10268,'33583'),(14469,10268,'33584'),(14470,10269,'33585'),(14471,10270,'33586'),(14472,10271,'33587'),(14473,10272,'33592'),(14474,10273,'33593'),(14475,10274,'33594'),(14476,10274,'33595'),(14477,10275,'33597'),(14478,10276,'33598'),(14479,10277,'33601'),(14480,10277,'33602'),(14481,10277,'33603'),(14482,10277,'33604'),(14483,10277,'33605'),(14484,10277,'33606'),(14485,10277,'33607'),(14486,10277,'33608'),(14487,10277,'33609'),(14488,10277,'33610'),(14489,10277,'33611'),(14490,10277,'33612'),(14491,10277,'33613'),(14492,10277,'33614'),(14493,10277,'33615'),(14494,10277,'33616'),(14495,10277,'33617'),(14496,10277,'33618'),(14497,10277,'33619'),(14498,10277,'33620'),(14499,10277,'33621'),(14500,10277,'33622'),(14501,10277,'33623'),(14502,10277,'33624'),(14503,10277,'33625'),(14504,10277,'33626'),(14505,10277,'33629'),(14506,10277,'33630'),(14507,10277,'33631'),(14508,10277,'33633'),(14509,10277,'33634'),(14510,10277,'33635'),(14511,10277,'33637'),(14512,10277,'33647'),(14513,10277,'33650'),(14514,10277,'33651'),(14515,10277,'33655'),(14516,10277,'33660'),(14517,10277,'33661'),(14518,10277,'33662'),(14519,10277,'33663'),(14520,10277,'33664'),(14521,10277,'33672'),(14522,10277,'33673'),(14523,10277,'33674'),(14524,10277,'33675'),(14525,10277,'33677'),(14526,10277,'33679'),(14527,10277,'33680'),(14528,10277,'33681'),(14529,10277,'33682'),(14530,10277,'33684'),(14531,10277,'33685'),(14532,10277,'33686'),(14533,10277,'33687'),(14534,10277,'33688'),(14535,10277,'33689'),(14536,10277,'33690'),(14537,10277,'33694'),(14538,10277,'33697'),(14539,10278,'33701'),(14540,10278,'33702'),(14541,10278,'33703'),(14542,10278,'33704'),(14543,10278,'33705'),(14544,10278,'33706'),(14545,10278,'33707'),(14546,10278,'33708'),(14547,10278,'33709'),(14548,10278,'33710'),(14549,10278,'33711'),(14550,10278,'33712'),(14551,10278,'33713'),(14552,10278,'33714'),(14553,10278,'33715'),(14554,10278,'33716'),(14555,10278,'33728'),(14556,10278,'33729'),(14557,10278,'33730'),(14558,10278,'33731'),(14559,10278,'33732'),(14560,10278,'33733'),(14561,10278,'33734'),(14562,10278,'33736'),(14563,10278,'33737'),(14564,10278,'33738'),(14565,10278,'33740'),(14566,10278,'33741'),(14567,10278,'33742'),(14568,10278,'33743'),(14569,10278,'33747'),(14570,10278,'33784'),(14571,10279,'33744'),(14572,10280,'33755'),(14573,10280,'33756'),(14574,10280,'33757'),(14575,10280,'33758'),(14576,10280,'33759'),(14577,10280,'33760'),(14578,10280,'33761'),(14579,10280,'33762'),(14580,10280,'33763'),(14581,10280,'33764'),(14582,10280,'33765'),(14583,10280,'33766'),(14584,10280,'33769'),(14585,10281,'33767'),(14586,10282,'33770'),(14587,10282,'33771'),(14588,10282,'33773'),(14589,10282,'33774'),(14590,10282,'33777'),(14591,10282,'33778'),(14592,10282,'33779'),(14593,10283,'33772'),(14594,10283,'33775'),(14595,10283,'33776'),(14596,10284,'33780'),(14597,10284,'33781'),(14598,10284,'33782'),(14599,10285,'33785'),(14600,10286,'33786'),(14601,10287,'33801'),(14602,10287,'33802'),(14603,10287,'33803'),(14604,10287,'33804'),(14605,10287,'33805'),(14606,10287,'33806'),(14607,10287,'33807'),(14608,10287,'33809'),(14609,10287,'33810'),(14610,10287,'33811'),(14611,10287,'33813'),(14612,10287,'33815'),(14613,10288,'33820'),(14614,10289,'33823'),(14615,10290,'33825'),(14616,10290,'33826'),(14617,10291,'33827'),(14618,10292,'33830'),(14619,10292,'33831'),(14620,10293,'33834'),(14621,10294,'33835'),(14622,10295,'33836'),(14623,10295,'33837'),(14624,10296,'33838'),(14625,10297,'33839'),(14626,10298,'33840'),(14627,10299,'33841'),(14628,10300,'33843'),(14629,10301,'33844'),(14630,10301,'33845'),(14631,10302,'33846'),(14632,10303,'33847'),(14633,10304,'33848'),(14634,10305,'33849'),(14635,10306,'33850'),(14636,10307,'33851'),(14637,10308,'33852'),(14638,10308,'33862'),(14639,10309,'33853'),(14640,10309,'33859'),(14641,10310,'33854'),(14642,10311,'33855'),(14643,10312,'33856'),(14644,10313,'33857'),(14645,10314,'33858'),(14646,10315,'33860'),(14647,10316,'33863'),(14648,10317,'33865'),(14649,10318,'33867'),(14650,10319,'33868'),(14651,10320,'33870'),(14652,10320,'33871'),(14653,10320,'33872'),(14654,10321,'33873'),(14655,10322,'33877'),(14656,10323,'33880'),(14657,10323,'33881'),(14658,10323,'33882'),(14659,10323,'33883'),(14660,10323,'33884'),(14661,10323,'33885'),(14662,10323,'33888'),(14663,10324,'33890'),(14664,10325,'33901'),(14665,10325,'33902'),(14666,10325,'33905'),(14667,10325,'33906'),(14668,10325,'33907'),(14669,10325,'33908'),(14670,10325,'33911'),(14671,10325,'33912'),(14672,10325,'33913'),(14673,10325,'33916'),(14674,10325,'33919'),(14675,10325,'33965'),(14676,10325,'33994'),(14677,10326,'33903'),(14678,10326,'33917'),(14679,10326,'33918'),(14680,10327,'33904'),(14681,10327,'33909'),(14682,10327,'33910'),(14683,10327,'33914'),(14684,10327,'33915'),(14685,10327,'33990'),(14686,10327,'33991'),(14687,10327,'33993'),(14688,10328,'33920'),(14689,10329,'33921'),(14690,10330,'33922'),(14691,10331,'33924'),(14692,10332,'33927'),(14693,10332,'33950'),(14694,10332,'33951'),(14695,10332,'33955'),(14696,10332,'33982'),(14697,10332,'33983'),(14698,10333,'33928'),(14699,10334,'33930'),(14700,10335,'33931'),(14701,10335,'33932'),(14702,10336,'33935'),(14703,10336,'33975'),(14704,10337,'33936'),(14705,10337,'33970'),(14706,10337,'33971'),(14707,10337,'33972'),(14708,10338,'33938'),(14709,10339,'33944'),(14710,10340,'33945'),(14711,10341,'33946'),(14712,10342,'33947'),(14713,10343,'33948'),(14714,10343,'33949'),(14715,10343,'33952'),(14716,10343,'33953'),(14717,10343,'33954'),(14718,10343,'33980'),(14719,10343,'33981'),(14720,10344,'33956'),(14721,10345,'33957'),(14722,10346,'33960'),(14723,10347,'34101'),(14724,10347,'34102'),(14725,10347,'34103'),(14726,10347,'34104'),(14727,10347,'34105'),(14728,10347,'34106'),(14729,10347,'34108'),(14730,10347,'34109'),(14731,10347,'34110'),(14732,10347,'34112'),(14733,10347,'34113'),(14734,10347,'34114'),(14735,10347,'34116'),(14736,10347,'34117'),(14737,10347,'34119'),(14738,10347,'34120'),(14739,10348,'34107'),(14740,10349,'34133'),(14741,10349,'34134'),(14742,10349,'34135'),(14743,10349,'34136'),(14744,10350,'34137'),(14745,10351,'34138'),(14746,10352,'34139'),(14747,10353,'34140'),(14748,10354,'34141'),(14749,10355,'34142'),(14750,10355,'34143'),(14751,10356,'34145'),(14752,10356,'34146'),(14753,10357,'34201'),(14754,10357,'34202'),(14755,10357,'34203'),(14756,10357,'34204'),(14757,10357,'34205'),(14758,10357,'34206'),(14759,10357,'34207'),(14760,10357,'34208'),(14761,10357,'34209'),(14762,10357,'34210'),(14763,10357,'34280'),(14764,10357,'34281'),(14765,10357,'34282'),(14766,10358,'34215'),(14767,10359,'34216'),(14768,10360,'34217'),(14769,10361,'34218'),(14770,10362,'34219'),(14771,10363,'34220'),(14772,10363,'34221'),(14773,10364,'34222'),(14774,10365,'34223'),(14775,10365,'34224'),(14776,10365,'34295'),(14777,10366,'34228'),(14778,10367,'34229'),(14779,10368,'34230'),(14780,10368,'34231'),(14781,10368,'34232'),(14782,10368,'34233'),(14783,10368,'34234'),(14784,10368,'34235'),(14785,10368,'34236'),(14786,10368,'34237'),(14787,10368,'34238'),(14788,10368,'34239'),(14789,10368,'34240'),(14790,10368,'34241'),(14791,10368,'34242'),(14792,10368,'34243'),(14793,10368,'34276'),(14794,10368,'34277'),(14795,10368,'34278'),(14796,10369,'34250'),(14797,10370,'34251'),(14798,10371,'34260'),(14799,10372,'34264'),(14800,10373,'34265'),(14801,10373,'34266'),(14802,10374,'34267'),(14803,10375,'34268'),(14804,10376,'34270'),(14805,10377,'34272'),(14806,10378,'34274'),(14807,10378,'34275'),(14808,10379,'34284'),(14809,10379,'34285'),(14810,10379,'34292'),(14811,10379,'34293'),(14812,10380,'34286'),(14813,10380,'34287'),(14814,10381,'34420'),(14815,10381,'34421'),(14816,10382,'34423'),(14817,10382,'34428'),(14818,10382,'34429'),(14819,10383,'34430'),(14820,10383,'34431'),(14821,10383,'34432'),(14822,10383,'34433'),(14823,10383,'34434'),(14824,10384,'34436'),(14825,10385,'34442'),(14826,10386,'34445'),(14827,10387,'34446'),(14828,10387,'34448'),(14829,10387,'34487'),(14830,10388,'34447'),(14831,10389,'34449'),(14832,10390,'34450'),(14833,10390,'34451'),(14834,10390,'34452'),(14835,10390,'34453'),(14836,10391,'34460'),(14837,10391,'34461'),(14838,10392,'34464'),(14839,10392,'34465'),(14840,10393,'34470'),(14841,10393,'34471'),(14842,10393,'34472'),(14843,10393,'34473'),(14844,10393,'34474'),(14845,10393,'34475'),(14846,10393,'34476'),(14847,10393,'34477'),(14848,10393,'34478'),(14849,10393,'34479'),(14850,10393,'34480'),(14851,10393,'34481'),(14852,10393,'34482'),(14853,10393,'34483'),(14854,10394,'34484'),(14855,10395,'34488'),(14856,10395,'34489'),(14857,10396,'34491'),(14858,10396,'34492'),(14859,10397,'34498'),(14860,10398,'34601'),(14861,10398,'34602'),(14862,10398,'34603'),(14863,10398,'34605'),(14864,10398,'34609'),(14865,10398,'34610'),(14866,10398,'34613'),(14867,10398,'34614'),(14868,10399,'34606'),(14869,10399,'34607'),(14870,10399,'34608'),(14871,10399,'34611'),(14872,10400,'34636'),(14873,10401,'34639'),(14874,10402,'34652'),(14875,10402,'34653'),(14876,10402,'34654'),(14877,10402,'34655'),(14878,10402,'34656'),(14879,10403,'34660'),(14880,10404,'34661'),(14881,10405,'34667'),(14882,10405,'34669'),(14883,10405,'34674'),(14884,10406,'34668'),(14885,10406,'34673'),(14886,10407,'34677'),(14887,10408,'34679'),(14888,10409,'34680'),(14889,10410,'34681'),(14890,10411,'34682'),(14891,10411,'34683'),(14892,10411,'34684'),(14893,10411,'34685'),(14894,10412,'34688'),(14895,10412,'34689'),(14896,10413,'34690'),(14897,10413,'34691'),(14898,10414,'34695'),(14899,10415,'34697'),(14900,10415,'34698'),(14901,10416,'34705'),(14902,10417,'34711'),(14903,10417,'34712'),(14904,10417,'34713'),(14905,10418,'34729'),(14906,10419,'34731'),(14907,10420,'34734'),(14908,10421,'34736'),(14909,10422,'34737'),(14910,10423,'34739'),(14911,10424,'34740'),(14912,10425,'34741'),(14913,10425,'34742'),(14914,10425,'34743'),(14915,10425,'34744'),(14916,10425,'34745'),(14917,10425,'34746'),(14918,10425,'34747'),(14919,10425,'34758'),(14920,10425,'34759'),(14921,10426,'34748'),(14922,10426,'34749'),(14923,10426,'34788'),(14924,10426,'34789'),(14925,10427,'34753'),(14926,10428,'34755'),(14927,10429,'34756'),(14928,10430,'34760'),(14929,10431,'34761'),(14930,10432,'34762'),(14931,10433,'34769'),(14932,10433,'34770'),(14933,10433,'34771'),(14934,10433,'34772'),(14935,10433,'34773'),(14936,10434,'34777'),(14937,10434,'34778'),(14938,10434,'34787'),(14939,10435,'34785'),(14940,10436,'34786'),(14941,10437,'34797'),(14942,10438,'34945'),(14943,10438,'34946'),(14944,10438,'34947'),(14945,10438,'34948'),(14946,10438,'34949'),(14947,10438,'34950'),(14948,10438,'34951'),(14949,10438,'34954'),(14950,10438,'34979'),(14951,10438,'34981'),(14952,10438,'34982'),(14953,10439,'34952'),(14954,10439,'34953'),(14955,10439,'34983'),(14956,10439,'34984'),(14957,10439,'34985'),(14958,10439,'34986'),(14959,10439,'34987'),(14960,10439,'34988'),(14961,10440,'34956'),(14962,10441,'34957'),(14963,10441,'34958'),(14964,10442,'34972'),(14965,10442,'34973'),(14966,10442,'34974'),(14967,10443,'34990'),(14968,10443,'34991'),(14969,10444,'34992'),(14970,10445,'34994'),(14971,10445,'34995'),(14972,10445,'34996'),(14973,10445,'34997'),(14974,10446,'35004'),(14975,10447,'35005'),(14976,10448,'35006'),(14977,10449,'35007'),(14978,10450,'35010'),(14979,10450,'35011'),(14980,10451,'35013'),(14981,10452,'35014'),(14982,10453,'35015'),(14983,10454,'35016'),(14984,10455,'35019'),(14985,10456,'35020'),(14986,10456,'35021'),(14987,10456,'35022'),(14988,10456,'35023'),(14989,10457,'35031'),(14990,10458,'35032'),(14991,10459,'35033'),(14992,10460,'35034'),(14993,10461,'35035'),(14994,10462,'35036'),(14995,10463,'35038'),(14996,10464,'35040'),(14997,10465,'35041'),(14998,10466,'35042'),(14999,10467,'35043'),(15000,10468,'35044'),(15001,10469,'35045'),(15002,10469,'35046'),(15003,10470,'35048'),(15004,10471,'35049'),(15005,10472,'35051'),(15006,10473,'35052'),(15007,10474,'35053'),(15008,10475,'35054'),(15009,10476,'35055'),(15010,10476,'35056'),(15011,10476,'35057'),(15012,10476,'35058'),(15013,10477,'35060'),(15014,10478,'35061'),(15015,10479,'35062'),(15016,10480,'35063'),(15017,10481,'35064'),(15018,10482,'35068'),(15019,10483,'35070'),(15020,10484,'35071'),(15021,10485,'35072'),(15022,10486,'35073'),(15023,10487,'35074'),(15024,10488,'35077'),(15025,10489,'35078'),(15026,10490,'35079'),(15027,10491,'35080'),(15028,10492,'35082'),(15029,10493,'35083'),(15030,10494,'35085'),(15031,10495,'35087'),(15032,10496,'35089'),(15033,10497,'35091'),(15034,10498,'35094'),(15035,10499,'35096'),(15036,10500,'35097'),(15037,10501,'35098'),(15038,10502,'35111'),(15039,10503,'35112'),(15040,10504,'35114'),(15041,10505,'35115'),(15042,10506,'35116'),(15043,10507,'35117'),(15044,10508,'35118'),(15045,10509,'35119'),(15046,10510,'35120'),(15047,10511,'35121'),(15048,10512,'35123'),(15049,10513,'35124'),(15050,10514,'35125'),(15051,10514,'35128'),(15052,10515,'35126'),(15053,10516,'35127'),(15054,10517,'35130'),(15055,10518,'35131'),(15056,10519,'35133'),(15057,10520,'35135'),(15058,10521,'35136'),(15059,10522,'35137'),(15060,10523,'35139'),(15061,10524,'35142'),(15062,10525,'35143'),(15063,10526,'35144'),(15064,10527,'35146'),(15065,10528,'35147'),(15066,10529,'35148'),(15067,10530,'35149'),(15068,10531,'35150'),(15069,10531,'35151'),(15070,10532,'35160'),(15071,10532,'35161'),(15072,10533,'35171'),(15073,10534,'35172'),(15074,10535,'35173'),(15075,10536,'35175'),(15076,10537,'35176'),(15077,10538,'35178'),(15078,10539,'35179'),(15079,10540,'35180'),(15080,10541,'35181'),(15081,10542,'35182'),(15082,10543,'35183'),(15083,10544,'35184'),(15084,10545,'35185'),(15085,10546,'35186'),(15086,10547,'35187'),(15087,10548,'35188'),(15088,10549,'35201'),(15089,10549,'35202'),(15090,10549,'35203'),(15091,10549,'35204'),(15092,10549,'35205'),(15093,10549,'35206'),(15094,10549,'35207'),(15095,10549,'35208'),(15096,10549,'35209'),(15097,10549,'35210'),(15098,10549,'35211'),(15099,10549,'35212'),(15100,10549,'35213'),(15101,10549,'35214'),(15102,10549,'35215'),(15103,10549,'35216'),(15104,10549,'35217'),(15105,10549,'35218'),(15106,10549,'35219'),(15107,10549,'35220'),(15108,10549,'35221'),(15109,10549,'35222'),(15110,10549,'35223'),(15111,10549,'35224'),(15112,10549,'35225'),(15113,10549,'35226'),(15114,10549,'35228'),(15115,10549,'35229'),(15116,10549,'35230'),(15117,10549,'35231'),(15118,10549,'35232'),(15119,10549,'35233'),(15120,10549,'35234'),(15121,10549,'35235'),(15122,10549,'35236'),(15123,10549,'35237'),(15124,10549,'35238'),(15125,10549,'35240'),(15126,10549,'35242'),(15127,10549,'35243'),(15128,10549,'35244'),(15129,10549,'35245'),(15130,10549,'35246'),(15131,10549,'35249'),(15132,10549,'35253'),(15133,10549,'35254'),(15134,10549,'35255'),(15135,10549,'35259'),(15136,10549,'35260'),(15137,10549,'35261'),(15138,10549,'35263'),(15139,10549,'35266'),(15140,10549,'35277'),(15141,10549,'35278'),(15142,10549,'35279'),(15143,10549,'35280'),(15144,10549,'35281'),(15145,10549,'35282'),(15146,10549,'35283'),(15147,10549,'35285'),(15148,10549,'35286'),(15149,10549,'35287'),(15150,10549,'35288'),(15151,10549,'35289'),(15152,10549,'35290'),(15153,10549,'35291'),(15154,10549,'35292'),(15155,10549,'35293'),(15156,10549,'35294'),(15157,10549,'35295'),(15158,10549,'35296'),(15159,10549,'35297'),(15160,10549,'35298'),(15161,10549,'35299'),(15162,10550,'35401'),(15163,10550,'35402'),(15164,10550,'35403'),(15165,10550,'35404'),(15166,10550,'35405'),(15167,10550,'35406'),(15168,10550,'35407'),(15169,10550,'35485'),(15170,10550,'35486'),(15171,10550,'35487'),(15172,10551,'35440'),(15173,10552,'35441'),(15174,10553,'35442'),(15175,10554,'35443'),(15176,10555,'35444'),(15177,10556,'35446'),(15178,10557,'35447'),(15179,10558,'35448'),(15180,10559,'35449'),(15181,10560,'35452'),(15182,10561,'35453'),(15183,10562,'35456'),(15184,10563,'35457'),(15185,10564,'35458'),(15186,10565,'35459'),(15187,10566,'35460'),(15188,10567,'35461'),(15189,10568,'35462'),(15190,10569,'35463'),(15191,10570,'35464'),(15192,10571,'35466'),(15193,10572,'35468'),(15194,10573,'35469'),(15195,10574,'35470'),(15196,10575,'35471'),(15197,10576,'35473'),(15198,10576,'35475'),(15199,10576,'35476'),(15200,10577,'35474'),(15201,10578,'35477'),(15202,10579,'35478'),(15203,10580,'35480'),(15204,10581,'35481'),(15205,10582,'35482'),(15206,10583,'35490'),(15207,10584,'35491'),(15208,10585,'35501'),(15209,10585,'35502'),(15210,10585,'35503'),(15211,10585,'35504'),(15212,10586,'35540'),(15213,10587,'35541'),(15214,10588,'35542'),(15215,10589,'35543'),(15216,10590,'35544'),(15217,10591,'35545'),(15218,10592,'35546'),(15219,10593,'35548'),(15220,10594,'35549'),(15221,10595,'35550'),(15222,10596,'35551'),(15223,10597,'35552'),(15224,10598,'35553'),(15225,10599,'35554'),(15226,10600,'35555'),(15227,10601,'35559'),(15228,10602,'35560'),(15229,10603,'35563'),(15230,10604,'35564'),(15231,10605,'35565'),(15232,10606,'35570'),(15233,10607,'35571'),(15234,10608,'35572'),(15235,10609,'35573'),(15236,10610,'35574'),(15237,10611,'35575'),(15238,10612,'35576'),(15239,10613,'35577'),(15240,10614,'35578'),(15241,10615,'35579'),(15242,10616,'35580'),(15243,10617,'35581'),(15244,10618,'35582'),(15245,10619,'35584'),(15246,10620,'35585'),(15247,10621,'35586'),(15248,10622,'35587'),(15249,10623,'35592'),(15250,10624,'35593'),(15251,10625,'35594'),(15252,10626,'35601'),(15253,10626,'35602'),(15254,10626,'35603'),(15255,10626,'35609'),(15256,10626,'35699'),(15257,10627,'35610'),(15258,10628,'35611'),(15259,10628,'35612'),(15260,10628,'35613'),(15261,10628,'35614'),(15262,10629,'35615'),(15263,10630,'35616'),(15264,10631,'35617'),(15265,10632,'35618'),(15266,10633,'35619'),(15267,10634,'35620'),(15268,10635,'35621'),(15269,10636,'35622'),(15270,10637,'35630'),(15271,10637,'35631'),(15272,10637,'35632'),(15273,10637,'35633'),(15274,10637,'35634'),(15275,10638,'35640'),(15276,10639,'35643'),(15277,10640,'35645'),(15278,10641,'35646'),(15279,10642,'35647'),(15280,10643,'35648'),(15281,10644,'35649'),(15282,10645,'35650'),(15283,10646,'35651'),(15284,10647,'35652'),(15285,10648,'35653'),(15286,10648,'35654'),(15287,10649,'35660'),(15288,10650,'35661'),(15289,10650,'35662'),(15290,10651,'35670'),(15291,10652,'35671'),(15292,10653,'35672'),(15293,10654,'35673'),(15294,10655,'35674'),(15295,10656,'35677'),(15296,10657,'35739'),(15297,10658,'35740'),(15298,10659,'35741'),(15299,10660,'35742'),(15300,10661,'35744'),(15301,10662,'35745'),(15302,10663,'35746'),(15303,10664,'35747'),(15304,10665,'35748'),(15305,10666,'35749'),(15306,10667,'35750'),(15307,10668,'35751'),(15308,10669,'35752'),(15309,10670,'35754'),(15310,10671,'35755'),(15311,10672,'35756'),(15312,10672,'35757'),(15313,10672,'35758'),(15314,10673,'35759'),(15315,10674,'35760'),(15316,10675,'35761'),(15317,10676,'35762'),(15318,10677,'35763'),(15319,10678,'35764'),(15320,10679,'35765'),(15321,10680,'35766'),(15322,10681,'35767'),(15323,10682,'35768'),(15324,10682,'35769'),(15325,10683,'35771'),(15326,10684,'35772'),(15327,10685,'35773'),(15328,10686,'35774'),(15329,10687,'35775'),(15330,10688,'35776'),(15331,10689,'35801'),(15332,10689,'35802'),(15333,10689,'35803'),(15334,10689,'35804'),(15335,10689,'35805'),(15336,10689,'35806'),(15337,10689,'35807'),(15338,10689,'35808'),(15339,10689,'35809'),(15340,10689,'35810'),(15341,10689,'35811'),(15342,10689,'35812'),(15343,10689,'35813'),(15344,10689,'35814'),(15345,10689,'35815'),(15346,10689,'35816'),(15347,10689,'35824'),(15348,10689,'35893'),(15349,10689,'35894'),(15350,10689,'35895'),(15351,10689,'35896'),(15352,10689,'35897'),(15353,10689,'35898'),(15354,10689,'35899'),(15355,10690,'35901'),(15356,10690,'35902'),(15357,10690,'35903'),(15358,10690,'35904'),(15359,10690,'35905'),(15360,10690,'35907'),(15361,10691,'35906'),(15362,10692,'35950'),(15363,10692,'35951'),(15364,10693,'35952'),(15365,10694,'35953'),(15366,10695,'35954'),(15367,10696,'35956'),(15368,10696,'35957'),(15369,10697,'35958'),(15370,10698,'35959'),(15371,10699,'35960'),(15372,10700,'35961'),(15373,10701,'35962'),(15374,10702,'35963'),(15375,10703,'35964'),(15376,10704,'35966'),(15377,10705,'35967'),(15378,10705,'35968'),(15379,10706,'35971'),(15380,10707,'35972'),(15381,10708,'35973'),(15382,10709,'35974'),(15383,10710,'35975'),(15384,10711,'35976'),(15385,10712,'35978'),(15386,10713,'35979'),(15387,10714,'35980'),(15388,10715,'35981'),(15389,10716,'35983'),(15390,10717,'35984'),(15391,10718,'35986'),(15392,10719,'35987'),(15393,10720,'35988'),(15394,10721,'35989'),(15395,10722,'35990'),(15396,10723,'36003'),(15397,10724,'36005'),(15398,10725,'36006'),(15399,10726,'36008'),(15400,10727,'36009'),(15401,10728,'36010'),(15402,10729,'36013'),(15403,10730,'36015'),(15404,10731,'36016'),(15405,10732,'36017'),(15406,10733,'36020'),(15407,10734,'36022'),(15408,10735,'36023'),(15409,10736,'36024'),(15410,10737,'36025'),(15411,10738,'36026'),(15412,10739,'36027'),(15413,10739,'36072'),(15414,10740,'36028'),(15415,10741,'36029'),(15416,10742,'36030'),(15417,10743,'36031'),(15418,10744,'36032'),(15419,10745,'36033'),(15420,10746,'36034'),(15421,10747,'36035'),(15422,10748,'36036'),(15423,10749,'36037'),(15424,10750,'36038'),(15425,10751,'36039'),(15426,10752,'36040'),(15427,10753,'36041'),(15428,10754,'36042'),(15429,10755,'36043'),(15430,10756,'36045'),(15431,10757,'36046'),(15432,10758,'36047'),(15433,10759,'36048'),(15434,10760,'36049'),(15435,10761,'36051'),(15436,10762,'36052'),(15437,10763,'36053'),(15438,10764,'36054'),(15439,10765,'36057'),(15440,10766,'36061'),(15441,10767,'36062'),(15442,10768,'36064'),(15443,10769,'36065'),(15444,10770,'36066'),(15445,10770,'36067'),(15446,10770,'36068'),(15447,10771,'36069'),(15448,10772,'36071'),(15449,10773,'36075'),(15450,10774,'36078'),(15451,10775,'36079'),(15452,10775,'36081'),(15453,10775,'36082'),(15454,10776,'36080'),(15455,10777,'36083'),(15456,10778,'36087'),(15457,10778,'36088'),(15458,10779,'36089'),(15459,10780,'36091'),(15460,10781,'36092'),(15461,10781,'36093'),(15462,10782,'36101'),(15463,10782,'36102'),(15464,10782,'36103'),(15465,10782,'36104'),(15466,10782,'36105'),(15467,10782,'36106'),(15468,10782,'36107'),(15469,10782,'36108'),(15470,10782,'36109'),(15471,10782,'36110'),(15472,10782,'36111'),(15473,10782,'36112'),(15474,10782,'36113'),(15475,10782,'36114'),(15476,10782,'36115'),(15477,10782,'36116'),(15478,10782,'36117'),(15479,10782,'36118'),(15480,10782,'36119'),(15481,10782,'36120'),(15482,10782,'36121'),(15483,10782,'36123'),(15484,10782,'36124'),(15485,10782,'36125'),(15486,10782,'36130'),(15487,10782,'36131'),(15488,10782,'36132'),(15489,10782,'36133'),(15490,10782,'36134'),(15491,10782,'36135'),(15492,10782,'36140'),(15493,10782,'36141'),(15494,10782,'36142'),(15495,10782,'36177'),(15496,10782,'36191'),(15497,10783,'36201'),(15498,10783,'36202'),(15499,10783,'36203'),(15500,10783,'36204'),(15501,10783,'36205'),(15502,10783,'36206'),(15503,10783,'36207'),(15504,10784,'36250'),(15505,10785,'36251'),(15506,10786,'36253'),(15507,10787,'36254'),(15508,10788,'36255'),(15509,10789,'36256'),(15510,10790,'36257'),(15511,10791,'36258'),(15512,10792,'36260'),(15513,10793,'36261'),(15514,10794,'36262'),(15515,10795,'36263'),(15516,10796,'36264'),(15517,10797,'36265'),(15518,10798,'36266'),(15519,10799,'36267'),(15520,10800,'36268'),(15521,10801,'36269'),(15522,10802,'36270'),(15523,10803,'36271'),(15524,10804,'36272'),(15525,10805,'36273'),(15526,10806,'36274'),(15527,10807,'36275'),(15528,10808,'36276'),(15529,10809,'36277'),(15530,10810,'36278'),(15531,10811,'36279'),(15532,10812,'36280'),(15533,10813,'36301'),(15534,10813,'36302'),(15535,10813,'36303'),(15536,10813,'36304'),(15537,10813,'36305'),(15538,10814,'36310'),(15539,10815,'36311'),(15540,10816,'36312'),(15541,10817,'36313'),(15542,10818,'36314'),(15543,10819,'36316'),(15544,10820,'36317'),(15545,10821,'36318'),(15546,10822,'36319'),(15547,10823,'36320'),(15548,10824,'36321'),(15549,10825,'36322'),(15550,10826,'36323'),(15551,10827,'36330'),(15552,10827,'36331'),(15553,10828,'36340'),(15554,10829,'36343'),(15555,10830,'36344'),(15556,10831,'36345'),(15557,10832,'36346'),(15558,10833,'36349'),(15559,10834,'36350'),(15560,10835,'36351'),(15561,10836,'36352'),(15562,10837,'36353'),(15563,10838,'36360'),(15564,10838,'36361'),(15565,10839,'36362'),(15566,10840,'36370'),(15567,10841,'36371'),(15568,10842,'36373'),(15569,10843,'36374'),(15570,10844,'36375'),(15571,10845,'36376'),(15572,10846,'36401'),(15573,10847,'36420'),(15574,10848,'36425'),(15575,10849,'36426'),(15576,10849,'36427'),(15577,10850,'36429'),(15578,10851,'36431'),(15579,10852,'36432'),(15580,10853,'36435'),(15581,10854,'36436'),(15582,10855,'36439'),(15583,10856,'36441'),(15584,10857,'36442'),(15585,10858,'36444'),(15586,10859,'36445'),(15587,10860,'36446'),(15588,10861,'36449'),(15589,10862,'36451'),(15590,10863,'36453'),(15591,10864,'36454'),(15592,10865,'36455'),(15593,10866,'36456'),(15594,10867,'36457'),(15595,10868,'36458'),(15596,10869,'36460'),(15597,10869,'36461'),(15598,10869,'36462'),(15599,10870,'36467'),(15600,10871,'36470'),(15601,10872,'36471'),(15602,10873,'36473'),(15603,10874,'36474'),(15604,10875,'36475'),(15605,10876,'36476'),(15606,10877,'36477'),(15607,10878,'36480'),(15608,10879,'36481'),(15609,10880,'36482'),(15610,10881,'36483'),(15611,10882,'36501'),(15612,10883,'36502'),(15613,10883,'36503'),(15614,10883,'36504'),(15615,10884,'36505'),(15616,10885,'36507'),(15617,10886,'36509'),(15618,10887,'36511'),(15619,10888,'36512'),(15620,10889,'36513'),(15621,10890,'36515'),(15622,10891,'36518'),(15623,10892,'36521'),(15624,10893,'36522'),(15625,10894,'36523'),(15626,10895,'36524'),(15627,10896,'36525'),(15628,10897,'36526'),(15629,10898,'36527'),(15630,10898,'36577'),(15631,10899,'36528'),(15632,10900,'36529'),(15633,10901,'36530'),(15634,10902,'36532'),(15635,10902,'36533'),(15636,10903,'36535'),(15637,10903,'36536'),(15638,10904,'36538'),(15639,10905,'36539'),(15640,10906,'36540'),(15641,10907,'36541'),(15642,10908,'36542'),(15643,10908,'36547'),(15644,10909,'36543'),(15645,10910,'36544'),(15646,10911,'36545'),(15647,10912,'36548'),(15648,10913,'36549'),(15649,10914,'36550'),(15650,10915,'36551'),(15651,10916,'36553'),(15652,10917,'36555'),(15653,10918,'36556'),(15654,10919,'36558'),(15655,10920,'36559'),(15656,10921,'36560'),(15657,10922,'36561'),(15658,10923,'36562'),(15659,10924,'36564'),(15660,10925,'36567'),(15661,10926,'36568'),(15662,10927,'36569'),(15663,10928,'36570'),(15664,10929,'36571'),(15665,10930,'36572'),(15666,10931,'36574'),(15667,10932,'36575'),(15668,10933,'36576'),(15669,10934,'36578'),(15670,10935,'36579'),(15671,10936,'36580'),(15672,10937,'36581'),(15673,10938,'36582'),(15674,10938,'36590'),(15675,10939,'36583'),(15676,10940,'36584'),(15677,10941,'36585'),(15678,10942,'36586'),(15679,10943,'36587'),(15680,10944,'36601'),(15681,10944,'36602'),(15682,10944,'36603'),(15683,10944,'36604'),(15684,10944,'36605'),(15685,10944,'36606'),(15686,10944,'36607'),(15687,10944,'36608'),(15688,10944,'36609'),(15689,10944,'36610'),(15690,10944,'36611'),(15691,10944,'36612'),(15692,10944,'36614'),(15693,10944,'36615'),(15694,10944,'36616'),(15695,10944,'36617'),(15696,10944,'36618'),(15697,10944,'36619'),(15698,10944,'36621'),(15699,10944,'36622'),(15700,10944,'36623'),(15701,10944,'36625'),(15702,10944,'36626'),(15703,10944,'36628'),(15704,10944,'36630'),(15705,10944,'36631'),(15706,10944,'36633'),(15707,10944,'36640'),(15708,10944,'36641'),(15709,10944,'36644'),(15710,10944,'36652'),(15711,10944,'36660'),(15712,10944,'36663'),(15713,10944,'36670'),(15714,10944,'36671'),(15715,10944,'36675'),(15716,10944,'36685'),(15717,10944,'36688'),(15718,10944,'36689'),(15719,10944,'36690'),(15720,10944,'36691'),(15721,10944,'36693'),(15722,10944,'36695'),(15723,10945,'36613'),(15724,10946,'36701'),(15725,10946,'36702'),(15726,10946,'36703'),(15727,10947,'36720'),(15728,10948,'36721'),(15729,10949,'36722'),(15730,10950,'36723'),(15731,10951,'36726'),(15732,10952,'36727'),(15733,10953,'36728'),(15734,10954,'36732'),(15735,10955,'36736'),(15736,10956,'36738'),(15737,10957,'36740'),(15738,10958,'36741'),(15739,10959,'36742'),(15740,10960,'36744'),(15741,10961,'36745'),(15742,10962,'36748'),(15743,10963,'36749'),(15744,10964,'36750'),(15745,10965,'36751'),(15746,10966,'36752'),(15747,10967,'36753'),(15748,10968,'36754'),(15749,10969,'36756'),(15750,10970,'36758'),(15751,10971,'36759'),(15752,10972,'36761'),(15753,10973,'36762'),(15754,10974,'36763'),(15755,10975,'36764'),(15756,10976,'36765'),(15757,10977,'36766'),(15758,10978,'36767'),(15759,10979,'36768'),(15760,10980,'36769'),(15761,10981,'36773'),(15762,10982,'36775'),(15763,10983,'36776'),(15764,10984,'36778'),(15765,10985,'36779'),(15766,10986,'36782'),(15767,10987,'36783'),(15768,10988,'36784'),(15769,10989,'36785'),(15770,10990,'36786'),(15771,10991,'36790'),(15772,10992,'36792'),(15773,10993,'36793'),(15774,10994,'36801'),(15775,10994,'36802'),(15776,10994,'36803'),(15777,10994,'36804'),(15778,10995,'36830'),(15779,10995,'36831'),(15780,10995,'36832'),(15781,10996,'36849'),(15782,10997,'36850'),(15783,10998,'36851'),(15784,10999,'36852'),(15785,11000,'36853'),(15786,11001,'36854'),(15787,11001,'36872'),(15788,11002,'36855'),(15789,11003,'36856'),(15790,11004,'36858'),(15791,11005,'36859'),(15792,11006,'36860'),(15793,11007,'36861'),(15794,11008,'36862'),(15795,11009,'36863'),(15796,11010,'36865'),(15797,11011,'36866'),(15798,11012,'36867'),(15799,11012,'36868'),(15800,11012,'36869'),(15801,11012,'36870'),(15802,11013,'36871'),(15803,11014,'36874'),(15804,11015,'36875'),(15805,11016,'36877'),(15806,11017,'36879'),(15807,11018,'36901'),(15808,11019,'36904'),(15809,11020,'36906'),(15810,11021,'36907'),(15811,11022,'36908'),(15812,11023,'36910'),(15813,11024,'36912'),(15814,11025,'36913'),(15815,11026,'36915'),(15816,11027,'36916'),(15817,11028,'36919'),(15818,11029,'36921'),(15819,11030,'36922'),(15820,11031,'36925'),(15821,11032,'37010'),(15822,11033,'37011'),(15823,11033,'37013'),(15824,11034,'37012'),(15825,11035,'37014'),(15826,11036,'37015'),(15827,11037,'37016'),(15828,11038,'37018'),(15829,11039,'37019'),(15830,11040,'37020'),(15831,11041,'37022'),(15832,11042,'37023'),(15833,11043,'37024'),(15834,11043,'37027'),(15835,11044,'37025'),(15836,11045,'37026'),(15837,11046,'37028'),(15838,11047,'37029'),(15839,11048,'37030'),(15840,11049,'37031'),(15841,11050,'37032'),(15842,11051,'37033'),(15843,11052,'37034'),(15844,11053,'37035'),(15845,11054,'37036'),(15846,11055,'37037'),(15847,11056,'37040'),(15848,11056,'37041'),(15849,11056,'37042'),(15850,11056,'37043'),(15851,11056,'37044'),(15852,11057,'37046'),(15853,11058,'37047'),(15854,11059,'37048'),(15855,11060,'37049'),(15856,11061,'37050'),(15857,11062,'37051'),(15858,11063,'37052'),(15859,11064,'37055'),(15860,11064,'37056'),(15861,11065,'37057'),(15862,11066,'37058'),(15863,11067,'37059'),(15864,11068,'37060'),(15865,11069,'37061'),(15866,11070,'37062'),(15867,11071,'37063'),(15868,11072,'37064'),(15869,11072,'37065'),(15870,11072,'37067'),(15871,11072,'37068'),(15872,11072,'37069'),(15873,11073,'37066'),(15874,11074,'37070'),(15875,11074,'37072'),(15876,11075,'37071'),(15877,11076,'37073'),(15878,11077,'37074'),(15879,11078,'37075'),(15880,11078,'37077'),(15881,11079,'37076'),(15882,11080,'37078'),(15883,11081,'37079'),(15884,11082,'37080'),(15885,11083,'37082'),(15886,11084,'37083'),(15887,11085,'37085'),(15888,11086,'37086'),(15889,11086,'37089'),(15890,11087,'37087'),(15891,11087,'37088'),(15892,11087,'37090'),(15893,11088,'37091'),(15894,11089,'37095'),(15895,11090,'37096'),(15896,11091,'37097'),(15897,11092,'37098'),(15898,11093,'37101'),(15899,11094,'37110'),(15900,11094,'37111'),(15901,11095,'37115'),(15902,11095,'37116'),(15903,11096,'37118'),(15904,11097,'37119'),(15905,11098,'37121'),(15906,11098,'37122'),(15907,11099,'37127'),(15908,11099,'37128'),(15909,11099,'37129'),(15910,11099,'37130'),(15911,11099,'37131'),(15912,11099,'37132'),(15913,11099,'37133'),(15914,11100,'37134'),(15915,11101,'37135'),(15916,11102,'37136'),(15917,11103,'37137'),(15918,11104,'37138'),(15919,11105,'37140'),(15920,11106,'37141'),(15921,11107,'37142'),(15922,11108,'37143'),(15923,11109,'37144'),(15924,11110,'37145'),(15925,11111,'37146'),(15926,11112,'37147'),(15927,11113,'37148'),(15928,11114,'37149'),(15929,11115,'37150'),(15930,11116,'37151'),(15931,11117,'37152'),(15932,11118,'37153'),(15933,11119,'37155'),(15934,11120,'37160'),(15935,11120,'37161'),(15936,11120,'37162'),(15937,11121,'37165'),(15938,11122,'37166'),(15939,11123,'37167'),(15940,11124,'37171'),(15941,11125,'37172'),(15942,11126,'37174'),(15943,11127,'37175'),(15944,11128,'37178'),(15945,11129,'37179'),(15946,11130,'37180'),(15947,11131,'37181'),(15948,11132,'37183'),(15949,11133,'37184'),(15950,11134,'37185'),(15951,11135,'37186'),(15952,11136,'37187'),(15953,11137,'37188'),(15954,11138,'37189'),(15955,11139,'37190'),(15956,11140,'37191'),(15957,11141,'37201'),(15958,11141,'37202'),(15959,11141,'37203'),(15960,11141,'37204'),(15961,11141,'37205'),(15962,11141,'37206'),(15963,11141,'37207'),(15964,11141,'37208'),(15965,11141,'37209'),(15966,11141,'37210'),(15967,11141,'37211'),(15968,11141,'37212'),(15969,11141,'37213'),(15970,11141,'37214'),(15971,11141,'37215'),(15972,11141,'37216'),(15973,11141,'37217'),(15974,11141,'37218'),(15975,11141,'37219'),(15976,11141,'37220'),(15977,11141,'37221'),(15978,11141,'37222'),(15979,11141,'37224'),(15980,11141,'37227'),(15981,11141,'37228'),(15982,11141,'37229'),(15983,11141,'37230'),(15984,11141,'37232'),(15985,11141,'37234'),(15986,11141,'37235'),(15987,11141,'37236'),(15988,11141,'37237'),(15989,11141,'37238'),(15990,11141,'37239'),(15991,11141,'37240'),(15992,11141,'37241'),(15993,11141,'37242'),(15994,11141,'37243'),(15995,11141,'37244'),(15996,11141,'37245'),(15997,11141,'37246'),(15998,11141,'37247'),(15999,11141,'37248'),(16000,11141,'37249'),(16001,11141,'37250'),(16002,11142,'37301'),(16003,11143,'37302'),(16004,11144,'37303'),(16005,11144,'37371'),(16006,11145,'37304'),(16007,11146,'37305'),(16008,11147,'37306'),(16009,11148,'37307'),(16010,11149,'37308'),(16011,11150,'37309'),(16012,11151,'37310'),(16013,11152,'37311'),(16014,11152,'37312'),(16015,11152,'37320'),(16016,11152,'37323'),(16017,11152,'37364'),(16018,11153,'37313'),(16019,11154,'37314'),(16020,11155,'37315'),(16021,11156,'37316'),(16022,11157,'37317'),(16023,11158,'37318'),(16024,11159,'37321'),(16025,11160,'37322'),(16026,11161,'37324'),(16027,11162,'37325'),(16028,11163,'37326'),(16029,11164,'37327'),(16030,11165,'37328'),(16031,11166,'37329'),(16032,11167,'37330'),(16033,11168,'37331'),(16034,11169,'37332'),(16035,11170,'37333'),(16036,11171,'37334'),(16037,11172,'37335'),(16038,11173,'37336'),(16039,11174,'37337'),(16040,11175,'37338'),(16041,11176,'37339'),(16042,11177,'37340'),(16043,11178,'37341'),(16044,11179,'37342'),(16045,11180,'37343'),(16046,11181,'37345'),(16047,11182,'37347'),(16048,11183,'37348'),(16049,11184,'37349'),(16050,11184,'37355'),(16051,11185,'37350'),(16052,11186,'37351'),(16053,11187,'37352'),(16054,11188,'37353'),(16055,11189,'37354'),(16056,11190,'37356'),(16057,11191,'37357'),(16058,11192,'37359'),(16059,11193,'37360'),(16060,11194,'37361'),(16061,11195,'37362'),(16062,11196,'37363'),(16063,11197,'37365'),(16064,11198,'37366'),(16065,11199,'37367'),(16066,11200,'37369'),(16067,11201,'37370'),(16068,11202,'37372'),(16069,11203,'37373'),(16070,11204,'37374'),(16071,11205,'37375'),(16072,11205,'37383'),(16073,11206,'37376'),(16074,11207,'37377'),(16075,11208,'37378'),(16076,11209,'37379'),(16077,11209,'37384'),(16078,11210,'37380'),(16079,11211,'37381'),(16080,11212,'37382'),(16081,11213,'37385'),(16082,11214,'37387'),(16083,11215,'37388'),(16084,11216,'37389'),(16085,11217,'37391'),(16086,11218,'37394'),(16087,11219,'37395'),(16088,11220,'37396'),(16089,11221,'37397'),(16090,11222,'37398'),(16091,11223,'37401'),(16092,11223,'37402'),(16093,11223,'37403'),(16094,11223,'37404'),(16095,11223,'37405'),(16096,11223,'37406'),(16097,11223,'37407'),(16098,11223,'37408'),(16099,11223,'37409'),(16100,11223,'37410'),(16101,11223,'37411'),(16102,11223,'37412'),(16103,11223,'37414'),(16104,11223,'37415'),(16105,11223,'37416'),(16106,11223,'37419'),(16107,11223,'37421'),(16108,11223,'37422'),(16109,11223,'37424'),(16110,11223,'37450'),(16111,11223,'37499'),(16112,11224,'37501'),(16113,11224,'38101'),(16114,11224,'38103'),(16115,11224,'38104'),(16116,11224,'38105'),(16117,11224,'38106'),(16118,11224,'38107'),(16119,11224,'38108'),(16120,11224,'38109'),(16121,11224,'38110'),(16122,11224,'38111'),(16123,11224,'38112'),(16124,11224,'38113'),(16125,11224,'38114'),(16126,11224,'38115'),(16127,11224,'38116'),(16128,11224,'38117'),(16129,11224,'38118'),(16130,11224,'38119'),(16131,11224,'38120'),(16132,11224,'38122'),(16133,11224,'38124'),(16134,11224,'38125'),(16135,11224,'38126'),(16136,11224,'38127'),(16137,11224,'38128'),(16138,11224,'38130'),(16139,11224,'38131'),(16140,11224,'38132'),(16141,11224,'38133'),(16142,11224,'38134'),(16143,11224,'38135'),(16144,11224,'38136'),(16145,11224,'38137'),(16146,11224,'38140'),(16147,11224,'38141'),(16148,11224,'38142'),(16149,11224,'38143'),(16150,11224,'38145'),(16151,11224,'38146'),(16152,11224,'38147'),(16153,11224,'38148'),(16154,11224,'38150'),(16155,11224,'38151'),(16156,11224,'38152'),(16157,11224,'38157'),(16158,11224,'38159'),(16159,11224,'38161'),(16160,11224,'38163'),(16161,11224,'38165'),(16162,11224,'38166'),(16163,11224,'38167'),(16164,11224,'38168'),(16165,11224,'38173'),(16166,11224,'38174'),(16167,11224,'38175'),(16168,11224,'38177'),(16169,11224,'38181'),(16170,11224,'38182'),(16171,11224,'38184'),(16172,11224,'38186'),(16173,11224,'38187'),(16174,11224,'38188'),(16175,11224,'38190'),(16176,11224,'38193'),(16177,11224,'38194'),(16178,11224,'38195'),(16179,11224,'38197'),(16180,11225,'37601'),(16181,11225,'37602'),(16182,11225,'37604'),(16183,11225,'37605'),(16184,11225,'37614'),(16185,11225,'37615'),(16186,11226,'37616'),(16187,11227,'37617'),(16188,11228,'37618'),(16189,11229,'37620'),(16190,11229,'37621'),(16191,11229,'37625'),(16192,11230,'37640'),(16193,11231,'37641'),(16194,11232,'37642'),(16195,11233,'37643'),(16196,11233,'37644'),(16197,11234,'37645'),(16198,11235,'37650'),(16199,11236,'37656'),(16200,11237,'37657'),(16201,11238,'37658'),(16202,11239,'37659'),(16203,11240,'37660'),(16204,11240,'37662'),(16205,11240,'37663'),(16206,11240,'37664'),(16207,11240,'37665'),(16208,11240,'37669'),(16209,11241,'37680'),(16210,11242,'37681'),(16211,11243,'37682'),(16212,11244,'37683'),(16213,11245,'37684'),(16214,11246,'37686'),(16215,11246,'37699'),(16216,11247,'37687'),(16217,11248,'37688'),(16218,11249,'37690'),(16219,11250,'37691'),(16220,11251,'37692'),(16221,11252,'37694'),(16222,11253,'37701'),(16223,11254,'37705'),(16224,11255,'37707'),(16225,11256,'37708'),(16226,11257,'37709'),(16227,11258,'37710'),(16228,11259,'37711'),(16229,11260,'37713'),(16230,11261,'37714'),(16231,11262,'37715'),(16232,11263,'37716'),(16233,11263,'37717'),(16234,11264,'37719'),(16235,11265,'37721'),(16236,11266,'37722'),(16237,11267,'37723'),(16238,11268,'37724'),(16239,11269,'37725'),(16240,11270,'37726'),(16241,11271,'37727'),(16242,11272,'37729'),(16243,11273,'37730'),(16244,11274,'37731'),(16245,11275,'37732'),(16246,11276,'37733'),(16247,11277,'37737'),(16248,11278,'37738'),(16249,11279,'37742'),(16250,11280,'37743'),(16251,11280,'37744'),(16252,11280,'37745'),(16253,11281,'37748'),(16254,11282,'37752'),(16255,11283,'37753'),(16256,11284,'37754'),(16257,11285,'37755'),(16258,11286,'37756'),(16259,11287,'37757'),(16260,11288,'37760'),(16261,11289,'37762'),(16262,11290,'37763'),(16263,11291,'37764'),(16264,11292,'37765'),(16265,11293,'37766'),(16266,11294,'37769'),(16267,11295,'37770'),(16268,11296,'37771'),(16269,11296,'37772'),(16270,11297,'37773'),(16271,11298,'37774'),(16272,11299,'37777'),(16273,11300,'37778'),(16274,11301,'37779'),(16275,11302,'37801'),(16276,11302,'37802'),(16277,11302,'37803'),(16278,11302,'37804'),(16279,11303,'37806'),(16280,11304,'37807'),(16281,11305,'37809'),(16282,11306,'37810'),(16283,11307,'37811'),(16284,11308,'37813'),(16285,11308,'37814'),(16286,11308,'37815'),(16287,11308,'37816'),(16288,11309,'37818'),(16289,11310,'37819'),(16290,11311,'37820'),(16291,11312,'37821'),(16292,11312,'37822'),(16293,11313,'37824'),(16294,11313,'37825'),(16295,11314,'37826'),(16296,11315,'37828'),(16297,11316,'37829'),(16298,11317,'37830'),(16299,11317,'37831'),(16300,11318,'37840'),(16301,11319,'37841'),(16302,11320,'37842'),(16303,11321,'37843'),(16304,11322,'37845'),(16305,11323,'37846'),(16306,11324,'37847'),(16307,11325,'37848'),(16308,11326,'37849'),(16309,11327,'37851'),(16310,11328,'37852'),(16311,11329,'37853'),(16312,11330,'37854'),(16313,11331,'37857'),(16314,11332,'37860'),(16315,11333,'37861'),(16316,11334,'37862'),(16317,11334,'37864'),(16318,11334,'37876'),(16319,11335,'37863'),(16320,11335,'37868'),(16321,11336,'37865'),(16322,11337,'37866'),(16323,11338,'37867'),(16324,11339,'37869'),(16325,11340,'37870'),(16326,11341,'37871'),(16327,11342,'37872'),(16328,11343,'37873'),(16329,11344,'37874'),(16330,11345,'37877'),(16331,11346,'37878'),(16332,11347,'37879'),(16333,11348,'37880'),(16334,11349,'37881'),(16335,11350,'37882'),(16336,11351,'37885'),(16337,11352,'37886'),(16338,11353,'37887'),(16339,11354,'37888'),(16340,11355,'37890'),(16341,11356,'37891'),(16342,11357,'37892'),(16343,11358,'37893'),(16344,11359,'37901'),(16345,11359,'37902'),(16346,11359,'37909'),(16347,11359,'37912'),(16348,11359,'37914'),(16349,11359,'37915'),(16350,11359,'37916'),(16351,11359,'37917'),(16352,11359,'37918'),(16353,11359,'37919'),(16354,11359,'37920'),(16355,11359,'37921'),(16356,11359,'37922'),(16357,11359,'37923'),(16358,11359,'37924'),(16359,11359,'37927'),(16360,11359,'37928'),(16361,11359,'37929'),(16362,11359,'37930'),(16363,11359,'37931'),(16364,11359,'37932'),(16365,11359,'37933'),(16366,11359,'37938'),(16367,11359,'37939'),(16368,11359,'37940'),(16369,11359,'37950'),(16370,11359,'37990'),(16371,11359,'37995'),(16372,11359,'37996'),(16373,11359,'37997'),(16374,11359,'37998'),(16375,11359,'37999'),(16376,11360,'38001'),(16377,11361,'38002'),(16378,11362,'38004'),(16379,11363,'38006'),(16380,11364,'38007'),(16381,11365,'38008'),(16382,11365,'38074'),(16383,11366,'38010'),(16384,11367,'38011'),(16385,11368,'38012'),(16386,11369,'38014'),(16387,11370,'38015'),(16388,11371,'38017'),(16389,11371,'38027'),(16390,11372,'38018'),(16391,11372,'38088'),(16392,11373,'38019'),(16393,11374,'38021'),(16394,11375,'38023'),(16395,11376,'38024'),(16396,11376,'38025'),(16397,11377,'38028'),(16398,11378,'38029'),(16399,11379,'38030'),(16400,11380,'38034'),(16401,11381,'38036'),(16402,11382,'38037'),(16403,11383,'38039'),(16404,11384,'38040'),(16405,11385,'38041'),(16406,11386,'38042'),(16407,11387,'38043'),(16408,11388,'38044'),(16409,11389,'38045'),(16410,11390,'38046'),(16411,11391,'38047'),(16412,11392,'38048'),(16413,11393,'38049'),(16414,11394,'38050'),(16415,11395,'38052'),(16416,11396,'38053'),(16417,11396,'38054'),(16418,11396,'38055'),(16419,11396,'38083'),(16420,11397,'38056'),(16421,11398,'38057'),(16422,11399,'38058'),(16423,11400,'38059'),(16424,11401,'38060'),(16425,11402,'38061'),(16426,11403,'38063'),(16427,11404,'38066'),(16428,11405,'38067'),(16429,11406,'38068'),(16430,11407,'38069'),(16431,11408,'38070'),(16432,11409,'38071'),(16433,11410,'38075'),(16434,11411,'38076'),(16435,11412,'38077'),(16436,11413,'38079'),(16437,11414,'38080'),(16438,11415,'38138'),(16439,11415,'38139'),(16440,11415,'38183'),(16441,11416,'38201'),(16442,11417,'38220'),(16443,11418,'38221'),(16444,11419,'38222'),(16445,11420,'38223'),(16446,11421,'38224'),(16447,11422,'38225'),(16448,11423,'38226'),(16449,11424,'38229'),(16450,11425,'38230'),(16451,11426,'38231'),(16452,11427,'38232'),(16453,11428,'38233'),(16454,11429,'38235'),(16455,11430,'38236'),(16456,11431,'38237'),(16457,11431,'38238'),(16458,11432,'38240'),(16459,11433,'38241'),(16460,11434,'38242'),(16461,11435,'38251'),(16462,11436,'38253'),(16463,11437,'38254'),(16464,11438,'38255'),(16465,11439,'38256'),(16466,11440,'38257'),(16467,11441,'38258'),(16468,11442,'38259'),(16469,11443,'38260'),(16470,11444,'38261'),(16471,11444,'38281'),(16472,11445,'38271'),(16473,11446,'38301'),(16474,11446,'38302'),(16475,11446,'38303'),(16476,11446,'38305'),(16477,11446,'38308'),(16478,11446,'38314'),(16479,11447,'38310'),(16480,11448,'38311'),(16481,11449,'38313'),(16482,11450,'38315'),(16483,11451,'38316'),(16484,11452,'38317'),(16485,11453,'38318'),(16486,11454,'38320'),(16487,11455,'38321'),(16488,11456,'38324'),(16489,11457,'38326'),(16490,11458,'38327'),(16491,11459,'38328'),(16492,11460,'38329'),(16493,11461,'38330'),(16494,11462,'38331'),(16495,11463,'38332'),(16496,11464,'38333'),(16497,11465,'38334'),(16498,11466,'38336'),(16499,11467,'38337'),(16500,11468,'38338'),(16501,11469,'38339'),(16502,11470,'38340'),(16503,11471,'38341'),(16504,11472,'38342'),(16505,11473,'38343'),(16506,11474,'38344'),(16507,11475,'38345'),(16508,11476,'38346'),(16509,11477,'38347'),(16510,11478,'38348'),(16511,11479,'38351'),(16512,11480,'38352'),(16513,11481,'38355'),(16514,11482,'38356'),(16515,11483,'38357'),(16516,11484,'38358'),(16517,11485,'38359'),(16518,11486,'38361'),(16519,11487,'38362'),(16520,11488,'38363'),(16521,11489,'38365'),(16522,11490,'38366'),(16523,11491,'38367'),(16524,11492,'38368'),(16525,11493,'38369'),(16526,11494,'38370'),(16527,11495,'38371'),(16528,11496,'38372'),(16529,11497,'38374'),(16530,11498,'38375'),(16531,11499,'38376'),(16532,11500,'38377'),(16533,11501,'38378'),(16534,11502,'38379'),(16535,11503,'38380'),(16536,11504,'38381'),(16537,11505,'38382'),(16538,11506,'38387'),(16539,11507,'38388'),(16540,11508,'38389'),(16541,11509,'38390'),(16542,11510,'38391'),(16543,11511,'38392'),(16544,11512,'38393'),(16545,11513,'38401'),(16546,11513,'38402'),(16547,11514,'38425'),(16548,11515,'38449'),(16549,11516,'38450'),(16550,11517,'38451'),(16551,11518,'38452'),(16552,11519,'38453'),(16553,11520,'38454'),(16554,11521,'38455'),(16555,11522,'38456'),(16556,11523,'38457'),(16557,11524,'38459'),(16558,11525,'38460'),(16559,11526,'38461'),(16560,11527,'38462'),(16561,11528,'38463'),(16562,11529,'38464'),(16563,11530,'38468'),(16564,11531,'38469'),(16565,11532,'38471'),(16566,11533,'38472'),(16567,11534,'38473'),(16568,11535,'38474'),(16569,11536,'38475'),(16570,11537,'38476'),(16571,11538,'38477'),(16572,11539,'38478'),(16573,11540,'38481'),(16574,11541,'38482'),(16575,11542,'38483'),(16576,11543,'38485'),(16577,11544,'38486'),(16578,11545,'38487'),(16579,11546,'38488'),(16580,11547,'38501'),(16581,11547,'38502'),(16582,11547,'38503'),(16583,11547,'38505'),(16584,11547,'38506'),(16585,11548,'38504'),(16586,11549,'38541'),(16587,11550,'38542'),(16588,11551,'38543'),(16589,11552,'38544'),(16590,11553,'38545'),(16591,11554,'38547'),(16592,11555,'38548'),(16593,11556,'38549'),(16594,11557,'38550'),(16595,11558,'38551'),(16596,11559,'38552'),(16597,11560,'38553'),(16598,11561,'38554'),(16599,11562,'38555'),(16600,11562,'38557'),(16601,11562,'38558'),(16602,11563,'38556'),(16603,11564,'38559'),(16604,11565,'38560'),(16605,11566,'38562'),(16606,11567,'38563'),(16607,11568,'38564'),(16608,11569,'38565'),(16609,11570,'38567'),(16610,11571,'38568'),(16611,11572,'38569'),(16612,11573,'38570'),(16613,11574,'38573'),(16614,11575,'38574'),(16615,11576,'38575'),(16616,11577,'38577'),(16617,11578,'38578'),(16618,11579,'38579'),(16619,11580,'38580'),(16620,11581,'38581'),(16621,11582,'38582'),(16622,11583,'38583'),(16623,11584,'38585'),(16624,11585,'38587'),(16625,11586,'38588'),(16626,11587,'38589'),(16627,11588,'38601'),(16628,11589,'38602'),(16629,11590,'38603'),(16630,11591,'38606'),(16631,11592,'38609'),(16632,11593,'38610'),(16633,11594,'38611'),(16634,11595,'38614'),(16635,11596,'38617'),(16636,11597,'38618'),(16637,11598,'38619'),(16638,11599,'38620'),(16639,11600,'38621'),(16640,11601,'38622'),(16641,11602,'38623'),(16642,11603,'38625'),(16643,11604,'38626'),(16644,11605,'38627'),(16645,11606,'38628'),(16646,11607,'38629'),(16647,11608,'38630'),(16648,11609,'38631'),(16649,11610,'38632'),(16650,11611,'38633'),(16651,11612,'38634'),(16652,11612,'38635'),(16653,11613,'38637'),(16654,11614,'38638'),(16655,11615,'38639'),(16656,11616,'38641'),(16657,11617,'38642'),(16658,11618,'38643'),(16659,11619,'38644'),(16660,11620,'38645'),(16661,11621,'38646'),(16662,11622,'38647'),(16663,11623,'38649'),(16664,11624,'38650'),(16665,11625,'38651'),(16666,11626,'38652'),(16667,11627,'38654'),(16668,11628,'38655'),(16669,11629,'38658'),(16670,11630,'38659'),(16671,11631,'38661'),(16672,11632,'38663'),(16673,11633,'38664'),(16674,11634,'38665'),(16675,11635,'38666'),(16676,11636,'38668'),(16677,11637,'38669'),(16678,11638,'38670'),(16679,11639,'38671'),(16680,11639,'38672'),(16681,11640,'38673'),(16682,11641,'38674'),(16683,11642,'38675'),(16684,11643,'38676'),(16685,11644,'38677'),(16686,11645,'38679'),(16687,11646,'38680'),(16688,11646,'38686'),(16689,11647,'38683'),(16690,11648,'38685'),(16691,11649,'38701'),(16692,11649,'38702'),(16693,11649,'38703'),(16694,11649,'38704'),(16695,11650,'38720'),(16696,11651,'38721'),(16697,11652,'38722'),(16698,11653,'38723'),(16699,11654,'38725'),(16700,11655,'38726'),(16701,11656,'38730'),(16702,11657,'38731'),(16703,11658,'38732'),(16704,11658,'38733'),(16705,11659,'38736'),(16706,11660,'38737'),(16707,11661,'38738'),(16708,11662,'38739'),(16709,11663,'38740'),(16710,11664,'38744'),(16711,11665,'38745'),(16712,11666,'38746'),(16713,11667,'38748'),(16714,11668,'38749'),(16715,11669,'38751'),(16716,11670,'38753'),(16717,11671,'38754'),(16718,11672,'38756'),(16719,11673,'38758'),(16720,11674,'38759'),(16721,11675,'38760'),(16722,11676,'38761'),(16723,11677,'38762'),(16724,11678,'38763'),(16725,11679,'38764'),(16726,11680,'38765'),(16727,11681,'38767'),(16728,11682,'38768'),(16729,11683,'38769'),(16730,11684,'38771'),(16731,11685,'38772'),(16732,11686,'38773'),(16733,11687,'38774'),(16734,11688,'38776'),(16735,11689,'38778'),(16736,11690,'38780'),(16737,11691,'38781'),(16738,11692,'38782'),(16739,11693,'38801'),(16740,11693,'38802'),(16741,11693,'38803'),(16742,11693,'38804'),(16743,11694,'38820'),(16744,11695,'38821'),(16745,11696,'38824'),(16746,11697,'38825'),(16747,11698,'38826'),(16748,11699,'38827'),(16749,11700,'38828'),(16750,11701,'38829'),(16751,11702,'38833'),(16752,11703,'38834'),(16753,11703,'38835'),(16754,11704,'38838'),(16755,11705,'38839'),(16756,11706,'38841'),(16757,11707,'38843'),(16758,11708,'38844'),(16759,11709,'38846'),(16760,11710,'38847'),(16761,11711,'38848'),(16762,11712,'38849'),(16763,11713,'38850'),(16764,11714,'38851'),(16765,11715,'38852'),(16766,11716,'38854'),(16767,11717,'38855'),(16768,11718,'38856'),(16769,11719,'38857'),(16770,11720,'38858'),(16771,11721,'38859'),(16772,11722,'38860'),(16773,11723,'38862'),(16774,11724,'38863'),(16775,11725,'38864'),(16776,11726,'38865'),(16777,11727,'38866'),(16778,11728,'38868'),(16779,11729,'38869'),(16780,11730,'38870'),(16781,11731,'38871'),(16782,11732,'38873'),(16783,11733,'38874'),(16784,11734,'38875'),(16785,11735,'38876'),(16786,11736,'38877'),(16787,11737,'38878'),(16788,11738,'38879'),(16789,11739,'38880'),(16790,11740,'38901'),(16791,11740,'38902'),(16792,11741,'38912'),(16793,11742,'38913'),(16794,11743,'38914'),(16795,11744,'38915'),(16796,11745,'38916'),(16797,11746,'38917'),(16798,11747,'38920'),(16799,11748,'38921'),(16800,11749,'38922'),(16801,11750,'38923'),(16802,11751,'38924'),(16803,11752,'38925'),(16804,11753,'38926'),(16805,11754,'38927'),(16806,11755,'38928'),(16807,11756,'38929'),(16808,11757,'38930'),(16809,11757,'38935'),(16810,11758,'38940'),(16811,11759,'38941'),(16812,11760,'38943'),(16813,11761,'38944'),(16814,11762,'38945'),(16815,11763,'38946'),(16816,11764,'38947'),(16817,11765,'38948'),(16818,11766,'38949'),(16819,11767,'38950'),(16820,11768,'38951'),(16821,11769,'38952'),(16822,11770,'38953'),(16823,11771,'38954'),(16824,11772,'38955'),(16825,11773,'38957'),(16826,11774,'38958'),(16827,11775,'38959'),(16828,11776,'38960'),(16829,11777,'38961'),(16830,11778,'38962'),(16831,11779,'38963'),(16832,11780,'38964'),(16833,11781,'38965'),(16834,11782,'38966'),(16835,11783,'38967'),(16836,11784,'39038'),(16837,11785,'39039'),(16838,11786,'39040'),(16839,11787,'39041'),(16840,11788,'39042'),(16841,11788,'39043'),(16842,11788,'39047'),(16843,11789,'39044'),(16844,11790,'39045'),(16845,11791,'39046'),(16846,11792,'39051'),(16847,11793,'39054'),(16848,11794,'39056'),(16849,11794,'39058'),(16850,11794,'39060'),(16851,11795,'39057'),(16852,11796,'39059'),(16853,11797,'39061'),(16854,11798,'39062'),(16855,11799,'39063'),(16856,11800,'39066'),(16857,11801,'39067'),(16858,11802,'39069'),(16859,11803,'39071'),(16860,11804,'39072'),(16861,11805,'39073'),(16862,11806,'39074'),(16863,11807,'39077'),(16864,11808,'39078'),(16865,11809,'39079'),(16866,11810,'39080'),(16867,11811,'39081'),(16868,11812,'39082'),(16869,11813,'39083'),(16870,11814,'39086'),(16871,11815,'39087'),(16872,11816,'39088'),(16873,11817,'39090'),(16874,11818,'39092'),(16875,11819,'39094'),(16876,11820,'39095'),(16877,11821,'39096'),(16878,11822,'39097'),(16879,11823,'39098'),(16880,11824,'39107'),(16881,11825,'39108'),(16882,11826,'39109'),(16883,11827,'39110'),(16884,11827,'39130'),(16885,11828,'39111'),(16886,11829,'39112'),(16887,11830,'39113'),(16888,11831,'39114'),(16889,11832,'39115'),(16890,11833,'39116'),(16891,11834,'39117'),(16892,11835,'39119'),(16893,11836,'39120'),(16894,11836,'39121'),(16895,11836,'39122'),(16896,11837,'39140'),(16897,11838,'39144'),(16898,11839,'39145'),(16899,11840,'39146'),(16900,11841,'39148'),(16901,11842,'39149'),(16902,11843,'39150'),(16903,11844,'39151'),(16904,11845,'39152'),(16905,11846,'39153'),(16906,11847,'39154'),(16907,11848,'39156'),(16908,11849,'39157'),(16909,11849,'39158'),(16910,11850,'39159'),(16911,11851,'39160'),(16912,11852,'39161'),(16913,11853,'39162'),(16914,11854,'39163'),(16915,11855,'39165'),(16916,11856,'39166'),(16917,11857,'39167'),(16918,11858,'39168'),(16919,11859,'39169'),(16920,11860,'39170'),(16921,11861,'39171'),(16922,11862,'39173'),(16923,11863,'39174'),(16924,11864,'39175'),(16925,11865,'39176'),(16926,11866,'39177'),(16927,11867,'39179'),(16928,11868,'39180'),(16929,11868,'39181'),(16930,11868,'39182'),(16931,11868,'39183'),(16932,11869,'39189'),(16933,11870,'39190'),(16934,11871,'39191'),(16935,11872,'39192'),(16936,11873,'39193'),(16937,11874,'39194'),(16938,11875,'39201'),(16939,11875,'39202'),(16940,11875,'39203'),(16941,11875,'39204'),(16942,11875,'39205'),(16943,11875,'39206'),(16944,11875,'39207'),(16945,11875,'39208'),(16946,11875,'39209'),(16947,11875,'39210'),(16948,11875,'39211'),(16949,11875,'39212'),(16950,11875,'39213'),(16951,11875,'39215'),(16952,11875,'39216'),(16953,11875,'39217'),(16954,11875,'39218'),(16955,11875,'39225'),(16956,11875,'39232'),(16957,11875,'39235'),(16958,11875,'39236'),(16959,11875,'39250'),(16960,11875,'39269'),(16961,11875,'39271'),(16962,11875,'39272'),(16963,11875,'39282'),(16964,11875,'39283'),(16965,11875,'39284'),(16966,11875,'39286'),(16967,11875,'39288'),(16968,11875,'39289'),(16969,11875,'39296'),(16970,11875,'39298'),(16971,11876,'39301'),(16972,11876,'39302'),(16973,11876,'39303'),(16974,11876,'39304'),(16975,11876,'39305'),(16976,11876,'39307'),(16977,11876,'39309'),(16978,11877,'39320'),(16979,11878,'39322'),(16980,11879,'39323'),(16981,11880,'39324'),(16982,11881,'39325'),(16983,11882,'39326'),(16984,11883,'39327'),(16985,11884,'39328'),(16986,11885,'39330'),(16987,11886,'39332'),(16988,11887,'39335'),(16989,11888,'39336'),(16990,11889,'39337'),(16991,11890,'39338'),(16992,11891,'39339'),(16993,11892,'39341'),(16994,11893,'39342'),(16995,11894,'39345'),(16996,11895,'39346'),(16997,11896,'39347'),(16998,11897,'39348'),(16999,11898,'39350'),(17000,11899,'39352'),(17001,11900,'39354'),(17002,11901,'39355'),(17003,11902,'39356'),(17004,11903,'39358'),(17005,11904,'39359'),(17006,11905,'39360'),(17007,11906,'39361'),(17008,11907,'39362'),(17009,11908,'39363'),(17010,11909,'39364'),(17011,11910,'39365'),(17012,11911,'39366'),(17013,11912,'39367'),(17014,11913,'39401'),(17015,11913,'39402'),(17016,11913,'39403'),(17017,11913,'39404'),(17018,11913,'39406'),(17019,11913,'39407'),(17020,11914,'39421'),(17021,11915,'39422'),(17022,11916,'39423'),(17023,11917,'39425'),(17024,11918,'39426'),(17025,11919,'39427'),(17026,11920,'39428'),(17027,11921,'39429'),(17028,11922,'39436'),(17029,11923,'39437'),(17030,11924,'39439'),(17031,11925,'39440'),(17032,11925,'39441'),(17033,11925,'39442'),(17034,11925,'39443'),(17035,11926,'39451'),(17036,11927,'39452'),(17037,11928,'39455'),(17038,11929,'39456'),(17039,11930,'39457'),(17040,11931,'39459'),(17041,11932,'39460'),(17042,11933,'39461'),(17043,11934,'39462'),(17044,11935,'39463'),(17045,11936,'39464'),(17046,11937,'39465'),(17047,11938,'39466'),(17048,11939,'39470'),(17049,11940,'39474'),(17050,11941,'39475'),(17051,11942,'39476'),(17052,11943,'39477'),(17053,11944,'39478'),(17054,11945,'39479'),(17055,11946,'39480'),(17056,11947,'39481'),(17057,11948,'39482'),(17058,11949,'39483'),(17059,11950,'39501'),(17060,11950,'39502'),(17061,11950,'39503'),(17062,11950,'39505'),(17063,11950,'39506'),(17064,11950,'39507'),(17065,11951,'39520'),(17066,11951,'39521'),(17067,11952,'39522'),(17068,11952,'39529'),(17069,11953,'39525'),(17070,11954,'39530'),(17071,11954,'39531'),(17072,11954,'39532'),(17073,11954,'39533'),(17074,11954,'39534'),(17075,11954,'39535'),(17076,11955,'39552'),(17077,11956,'39553'),(17078,11957,'39555'),(17079,11958,'39556'),(17080,11959,'39558'),(17081,11960,'39560'),(17082,11961,'39561'),(17083,11962,'39562'),(17084,11962,'39563'),(17085,11963,'39564'),(17086,11963,'39565'),(17087,11963,'39566'),(17088,11964,'39567'),(17089,11964,'39568'),(17090,11964,'39569'),(17091,11964,'39581'),(17092,11964,'39595'),(17093,11965,'39571'),(17094,11966,'39572'),(17095,11967,'39573'),(17096,11968,'39574'),(17097,11969,'39576'),(17098,11970,'39577'),(17099,11971,'39601'),(17100,11971,'39602'),(17101,11971,'39603'),(17102,11972,'39629'),(17103,11973,'39630'),(17104,11974,'39631'),(17105,11975,'39632'),(17106,11976,'39633'),(17107,11977,'39635'),(17108,11978,'39638'),(17109,11979,'39641'),(17110,11980,'39643'),(17111,11981,'39645'),(17112,11982,'39647'),(17113,11983,'39648'),(17114,11983,'39649'),(17115,11984,'39652'),(17116,11985,'39653'),(17117,11986,'39654'),(17118,11987,'39656'),(17119,11988,'39657'),(17120,11989,'39661'),(17121,11990,'39662'),(17122,11991,'39663'),(17123,11992,'39664'),(17124,11993,'39665'),(17125,11994,'39666'),(17126,11995,'39667'),(17127,11996,'39668'),(17128,11997,'39669'),(17129,11998,'39701'),(17130,11998,'39702'),(17131,11998,'39703'),(17132,11998,'39704'),(17133,11998,'39705'),(17134,11998,'39710'),(17135,11999,'39730'),(17136,12000,'39735'),(17137,12001,'39736'),(17138,12002,'39737'),(17139,12003,'39739'),(17140,12004,'39740'),(17141,12005,'39741'),(17142,12006,'39743'),(17143,12007,'39744'),(17144,12008,'39745'),(17145,12009,'39746'),(17146,12010,'39747'),(17147,12011,'39750'),(17148,12012,'39751'),(17149,12013,'39752'),(17150,12014,'39753'),(17151,12015,'39754'),(17152,12016,'39755'),(17153,12017,'39756'),(17154,12018,'39759'),(17155,12018,'39760'),(17156,12019,'39762'),(17157,12020,'39766'),(17158,12021,'39767'),(17159,12022,'39769'),(17160,12023,'39771'),(17161,12024,'39772'),(17162,12025,'39773'),(17163,12026,'39776'),(17164,12027,'40003'),(17165,12028,'40004'),(17166,12029,'40006'),(17167,12030,'40007'),(17168,12031,'40008'),(17169,12032,'40009'),(17170,12033,'40010'),(17171,12034,'40011'),(17172,12035,'40012'),(17173,12036,'40013'),(17174,12037,'40014'),(17175,12038,'40018'),(17176,12039,'40019'),(17177,12040,'40020'),(17178,12041,'40022'),(17179,12042,'40023'),(17180,12043,'40025'),(17181,12044,'40026'),(17182,12045,'40027'),(17183,12046,'40031'),(17184,12046,'40032'),(17185,12047,'40033'),(17186,12048,'40036'),(17187,12049,'40037'),(17188,12050,'40040'),(17189,12051,'40041'),(17190,12052,'40045'),(17191,12053,'40046'),(17192,12054,'40047'),(17193,12055,'40048'),(17194,12056,'40049'),(17195,12057,'40050'),(17196,12058,'40051'),(17197,12059,'40052'),(17198,12060,'40055'),(17199,12061,'40056'),(17200,12062,'40057'),(17201,12063,'40058'),(17202,12064,'40059'),(17203,12065,'40060'),(17204,12066,'40061'),(17205,12067,'40062'),(17206,12068,'40063'),(17207,12069,'40065'),(17208,12069,'40066'),(17209,12070,'40067'),(17210,12071,'40068'),(17211,12072,'40069'),(17212,12073,'40070'),(17213,12074,'40071'),(17214,12075,'40075'),(17215,12076,'40076'),(17216,12077,'40077'),(17217,12078,'40078'),(17218,12079,'40104'),(17219,12080,'40106'),(17220,12081,'40107'),(17221,12082,'40108'),(17222,12083,'40109'),(17223,12084,'40110'),(17224,12085,'40111'),(17225,12086,'40115'),(17226,12087,'40117'),(17227,12088,'40118'),(17228,12089,'40119'),(17229,12090,'40121'),(17230,12091,'40140'),(17231,12092,'40142'),(17232,12093,'40143'),(17233,12094,'40144'),(17234,12095,'40145'),(17235,12096,'40146'),(17236,12097,'40150'),(17237,12098,'40152'),(17238,12099,'40153'),(17239,12100,'40155'),(17240,12101,'40157'),(17241,12102,'40159'),(17242,12102,'40160'),(17243,12103,'40161'),(17244,12104,'40162'),(17245,12105,'40164'),(17246,12106,'40165'),(17247,12107,'40170'),(17248,12108,'40171'),(17249,12109,'40175'),(17250,12110,'40176'),(17251,12111,'40177'),(17252,12112,'40178'),(17253,12113,'40201'),(17254,12113,'40202'),(17255,12113,'40203'),(17256,12113,'40204'),(17257,12113,'40205'),(17258,12113,'40206'),(17259,12113,'40207'),(17260,12113,'40208'),(17261,12113,'40209'),(17262,12113,'40210'),(17263,12113,'40211'),(17264,12113,'40212'),(17265,12113,'40213'),(17266,12113,'40214'),(17267,12113,'40215'),(17268,12113,'40216'),(17269,12113,'40217'),(17270,12113,'40218'),(17271,12113,'40219'),(17272,12113,'40220'),(17273,12113,'40221'),(17274,12113,'40222'),(17275,12113,'40223'),(17276,12113,'40224'),(17277,12113,'40225'),(17278,12113,'40228'),(17279,12113,'40229'),(17280,12113,'40231'),(17281,12113,'40232'),(17282,12113,'40233'),(17283,12113,'40241'),(17284,12113,'40242'),(17285,12113,'40243'),(17286,12113,'40245'),(17287,12113,'40250'),(17288,12113,'40251'),(17289,12113,'40252'),(17290,12113,'40253'),(17291,12113,'40255'),(17292,12113,'40256'),(17293,12113,'40257'),(17294,12113,'40258'),(17295,12113,'40259'),(17296,12113,'40261'),(17297,12113,'40266'),(17298,12113,'40268'),(17299,12113,'40269'),(17300,12113,'40270'),(17301,12113,'40272'),(17302,12113,'40280'),(17303,12113,'40281'),(17304,12113,'40282'),(17305,12113,'40283'),(17306,12113,'40285'),(17307,12113,'40287'),(17308,12113,'40289'),(17309,12113,'40290'),(17310,12113,'40291'),(17311,12113,'40292'),(17312,12113,'40293'),(17313,12113,'40294'),(17314,12113,'40295'),(17315,12113,'40296'),(17316,12113,'40297'),(17317,12113,'40298'),(17318,12113,'40299'),(17319,12114,'40310'),(17320,12115,'40311'),(17321,12116,'40312'),(17322,12117,'40313'),(17323,12118,'40316'),(17324,12119,'40317'),(17325,12120,'40319'),(17326,12121,'40320'),(17327,12122,'40322'),(17328,12123,'40324'),(17329,12124,'40328'),(17330,12125,'40329'),(17331,12126,'40330'),(17332,12127,'40334'),(17333,12128,'40336'),(17334,12129,'40337'),(17335,12130,'40339'),(17336,12131,'40340'),(17337,12131,'40356'),(17338,12132,'40342'),(17339,12133,'40346'),(17340,12134,'40347'),(17341,12135,'40348'),(17342,12136,'40350'),(17343,12137,'40351'),(17344,12138,'40353'),(17345,12139,'40355'),(17346,12140,'40357'),(17347,12141,'40358'),(17348,12142,'40359'),(17349,12143,'40360'),(17350,12144,'40361'),(17351,12144,'40362'),(17352,12145,'40363'),(17353,12146,'40366'),(17354,12147,'40370'),(17355,12148,'40371'),(17356,12149,'40372'),(17357,12150,'40374'),(17358,12151,'40376'),(17359,12152,'40379'),(17360,12153,'40380'),(17361,12154,'40383'),(17362,12154,'40384'),(17363,12154,'40386'),(17364,12155,'40385'),(17365,12156,'40387'),(17366,12157,'40390'),(17367,12158,'40391'),(17368,12158,'40392'),(17369,12159,'40402'),(17370,12160,'40403'),(17371,12160,'40404'),(17372,12161,'40405'),(17373,12162,'40409'),(17374,12163,'40410'),(17375,12164,'40419'),(17376,12165,'40421'),(17377,12166,'40422'),(17378,12166,'40423'),(17379,12167,'40434'),(17380,12168,'40437'),(17381,12169,'40440'),(17382,12170,'40442'),(17383,12171,'40444'),(17384,12171,'40446'),(17385,12172,'40445'),(17386,12173,'40447'),(17387,12174,'40448'),(17388,12175,'40452'),(17389,12176,'40456'),(17390,12177,'40460'),(17391,12178,'40461'),(17392,12179,'40464'),(17393,12180,'40467'),(17394,12181,'40468'),(17395,12182,'40472'),(17396,12183,'40473'),(17397,12184,'40475'),(17398,12184,'40476'),(17399,12185,'40481'),(17400,12186,'40484'),(17401,12187,'40486'),(17402,12188,'40488'),(17403,12189,'40489'),(17404,12190,'40492'),(17405,12191,'40495'),(17406,12192,'40501'),(17407,12192,'40502'),(17408,12192,'40503'),(17409,12192,'40504'),(17410,12192,'40505'),(17411,12192,'40506'),(17412,12192,'40507'),(17413,12192,'40508'),(17414,12192,'40509'),(17415,12192,'40510'),(17416,12192,'40511'),(17417,12192,'40512'),(17418,12192,'40513'),(17419,12192,'40514'),(17420,12192,'40515'),(17421,12192,'40516'),(17422,12192,'40517'),(17423,12192,'40522'),(17424,12192,'40523'),(17425,12192,'40524'),(17426,12192,'40526'),(17427,12192,'40533'),(17428,12192,'40536'),(17429,12192,'40544'),(17430,12192,'40546'),(17431,12192,'40550'),(17432,12192,'40555'),(17433,12192,'40574'),(17434,12192,'40575'),(17435,12192,'40576'),(17436,12192,'40577'),(17437,12192,'40578'),(17438,12192,'40579'),(17439,12192,'40580'),(17440,12192,'40581'),(17441,12192,'40582'),(17442,12192,'40583'),(17443,12192,'40584'),(17444,12192,'40585'),(17445,12192,'40586'),(17446,12192,'40587'),(17447,12192,'40588'),(17448,12192,'40589'),(17449,12192,'40590'),(17450,12192,'40591'),(17451,12192,'40592'),(17452,12192,'40593'),(17453,12192,'40594'),(17454,12192,'40595'),(17455,12192,'40596'),(17456,12193,'40601'),(17457,12193,'40602'),(17458,12193,'40603'),(17459,12193,'40604'),(17460,12193,'40618'),(17461,12193,'40619'),(17462,12193,'40620'),(17463,12193,'40621'),(17464,12193,'40622'),(17465,12194,'40701'),(17466,12194,'40702'),(17467,12195,'40724'),(17468,12196,'40729'),(17469,12197,'40730'),(17470,12198,'40734'),(17471,12199,'40737'),(17472,12200,'40740'),(17473,12201,'40741'),(17474,12201,'40742'),(17475,12201,'40743'),(17476,12201,'40744'),(17477,12201,'40745'),(17478,12201,'40746'),(17479,12201,'40747'),(17480,12201,'40748'),(17481,12202,'40751'),(17482,12203,'40754'),(17483,12204,'40755'),(17484,12205,'40759'),(17485,12206,'40763'),(17486,12207,'40769'),(17487,12208,'40771'),(17488,12209,'40801'),(17489,12210,'40803'),(17490,12211,'40806'),(17491,12212,'40807'),(17492,12213,'40808'),(17493,12214,'40810'),(17494,12215,'40813'),(17495,12216,'40815'),(17496,12217,'40816'),(17497,12218,'40818'),(17498,12219,'40819'),(17499,12220,'40820'),(17500,12221,'40823'),(17501,12222,'40824'),(17502,12223,'40826'),(17503,12224,'40827'),(17504,12225,'40828'),(17505,12226,'40829'),(17506,12227,'40830'),(17507,12228,'40831'),(17508,12229,'40840'),(17509,12230,'40843'),(17510,12231,'40844'),(17511,12232,'40845'),(17512,12233,'40847'),(17513,12234,'40849'),(17514,12235,'40854'),(17515,12236,'40855'),(17516,12237,'40856'),(17517,12238,'40858'),(17518,12239,'40862'),(17519,12240,'40863'),(17520,12241,'40865'),(17521,12242,'40867'),(17522,12243,'40868'),(17523,12244,'40870'),(17524,12245,'40873'),(17525,12246,'40874'),(17526,12247,'40902'),(17527,12248,'40903'),(17528,12249,'40906'),(17529,12250,'40913'),(17530,12251,'40914'),(17531,12252,'40915'),(17532,12253,'40921'),(17533,12254,'40923'),(17534,12255,'40927'),(17535,12256,'40930'),(17536,12257,'40931'),(17537,12258,'40932'),(17538,12259,'40935'),(17539,12260,'40939'),(17540,12261,'40940'),(17541,12262,'40941'),(17542,12263,'40943'),(17543,12264,'40944'),(17544,12265,'40946'),(17545,12266,'40949'),(17546,12267,'40951'),(17547,12268,'40953'),(17548,12269,'40955'),(17549,12270,'40958'),(17550,12271,'40962'),(17551,12272,'40964'),(17552,12273,'40965'),(17553,12274,'40972'),(17554,12275,'40977'),(17555,12276,'40979'),(17556,12277,'40981'),(17557,12278,'40982'),(17558,12279,'40983'),(17559,12280,'40988'),(17560,12281,'40995'),(17561,12282,'40997'),(17562,12283,'40999'),(17563,12284,'41001'),(17564,12285,'41002'),(17565,12286,'41003'),(17566,12287,'41004'),(17567,12288,'41005'),(17568,12289,'41006'),(17569,12290,'41007'),(17570,12291,'41008'),(17571,12292,'41010'),(17572,12293,'41011'),(17573,12293,'41012'),(17574,12293,'41014'),(17575,12293,'41016'),(17576,12293,'41019'),(17577,12294,'41015'),(17578,12295,'41017'),(17579,12296,'41018'),(17580,12297,'41022'),(17581,12297,'41042'),(17582,12298,'41030'),(17583,12299,'41031'),(17584,12300,'41033'),(17585,12301,'41034'),(17586,12302,'41035'),(17587,12303,'41037'),(17588,12304,'41039'),(17589,12305,'41040'),(17590,12306,'41041'),(17591,12307,'41043'),(17592,12308,'41044'),(17593,12309,'41045'),(17594,12310,'41046'),(17595,12311,'41048'),(17596,12312,'41049'),(17597,12313,'41051'),(17598,12314,'41052'),(17599,12315,'41053'),(17600,12316,'41054'),(17601,12317,'41055'),(17602,12318,'41056'),(17603,12319,'41059'),(17604,12320,'41061'),(17605,12321,'41062'),(17606,12322,'41063'),(17607,12323,'41064'),(17608,12324,'41065'),(17609,12325,'41071'),(17610,12325,'41072'),(17611,12325,'41076'),(17612,12325,'41099'),(17613,12326,'41073'),(17614,12327,'41074'),(17615,12328,'41075'),(17616,12329,'41080'),(17617,12330,'41081'),(17618,12331,'41083'),(17619,12332,'41085'),(17620,12333,'41086'),(17621,12334,'41091'),(17622,12335,'41092'),(17623,12336,'41093'),(17624,12337,'41094'),(17625,12338,'41095'),(17626,12339,'41096'),(17627,12340,'41097'),(17628,12341,'41098'),(17629,12342,'41101'),(17630,12342,'41102'),(17631,12342,'41105'),(17632,12342,'41114'),(17633,12343,'41121'),(17634,12344,'41124'),(17635,12345,'41127'),(17636,12346,'41128'),(17637,12347,'41129'),(17638,12348,'41132'),(17639,12349,'41135'),(17640,12350,'41137'),(17641,12351,'41139'),(17642,12352,'41141'),(17643,12353,'41142'),(17644,12354,'41143'),(17645,12355,'41144'),(17646,12356,'41146'),(17647,12357,'41149'),(17648,12358,'41150'),(17649,12359,'41156'),(17650,12360,'41159'),(17651,12361,'41160'),(17652,12362,'41164'),(17653,12363,'41166'),(17654,12364,'41168'),(17655,12365,'41169'),(17656,12366,'41170'),(17657,12367,'41171'),(17658,12368,'41173'),(17659,12369,'41174'),(17660,12370,'41175'),(17661,12371,'41179'),(17662,12372,'41180'),(17663,12373,'41181'),(17664,12374,'41183'),(17665,12375,'41189'),(17666,12376,'41201'),(17667,12377,'41203'),(17668,12378,'41204'),(17669,12379,'41214'),(17670,12380,'41215'),(17671,12381,'41216'),(17672,12382,'41219'),(17673,12383,'41222'),(17674,12384,'41224'),(17675,12385,'41226'),(17676,12386,'41228'),(17677,12387,'41230'),(17678,12388,'41231'),(17679,12389,'41232'),(17680,12390,'41234'),(17681,12391,'41238'),(17682,12392,'41240'),(17683,12393,'41250'),(17684,12394,'41254'),(17685,12395,'41255'),(17686,12396,'41256'),(17687,12397,'41257'),(17688,12398,'41260'),(17689,12399,'41262'),(17690,12400,'41263'),(17691,12401,'41264'),(17692,12402,'41265'),(17693,12403,'41267'),(17694,12404,'41268'),(17695,12405,'41271'),(17696,12406,'41274'),(17697,12407,'41301'),(17698,12408,'41307'),(17699,12409,'41310'),(17700,12410,'41311'),(17701,12411,'41313'),(17702,12412,'41314'),(17703,12413,'41317'),(17704,12414,'41332'),(17705,12415,'41333'),(17706,12416,'41338'),(17707,12417,'41339'),(17708,12418,'41342'),(17709,12419,'41344'),(17710,12420,'41347'),(17711,12421,'41348'),(17712,12422,'41351'),(17713,12423,'41352'),(17714,12424,'41360'),(17715,12425,'41362'),(17716,12426,'41364'),(17717,12427,'41365'),(17718,12428,'41366'),(17719,12429,'41367'),(17720,12430,'41368'),(17721,12431,'41377'),(17722,12432,'41385'),(17723,12433,'41386'),(17724,12434,'41390'),(17725,12435,'41397'),(17726,12436,'41408'),(17727,12437,'41410'),(17728,12438,'41413'),(17729,12439,'41419'),(17730,12440,'41421'),(17731,12441,'41422'),(17732,12442,'41425'),(17733,12443,'41426'),(17734,12444,'41433'),(17735,12445,'41444'),(17736,12446,'41451'),(17737,12447,'41459'),(17738,12448,'41464'),(17739,12449,'41465'),(17740,12450,'41472'),(17741,12451,'41477'),(17742,12452,'41501'),(17743,12452,'41502'),(17744,12453,'41503'),(17745,12454,'41512'),(17746,12455,'41513'),(17747,12456,'41514'),(17748,12457,'41517'),(17749,12458,'41519'),(17750,12459,'41520'),(17751,12460,'41522'),(17752,12461,'41524'),(17753,12462,'41526'),(17754,12463,'41527'),(17755,12464,'41528'),(17756,12465,'41531'),(17757,12466,'41534'),(17758,12467,'41535'),(17759,12468,'41537'),(17760,12469,'41538'),(17761,12470,'41539'),(17762,12471,'41540'),(17763,12472,'41542'),(17764,12473,'41543'),(17765,12474,'41544'),(17766,12475,'41546'),(17767,12476,'41547'),(17768,12477,'41548'),(17769,12478,'41549'),(17770,12479,'41553'),(17771,12480,'41554'),(17772,12481,'41555'),(17773,12482,'41557'),(17774,12483,'41558'),(17775,12484,'41559'),(17776,12485,'41560'),(17777,12486,'41561'),(17778,12487,'41562'),(17779,12488,'41563'),(17780,12489,'41564'),(17781,12490,'41566'),(17782,12491,'41567'),(17783,12492,'41568'),(17784,12493,'41569'),(17785,12494,'41571'),(17786,12495,'41572'),(17787,12496,'41601'),(17788,12497,'41602'),(17789,12498,'41603'),(17790,12499,'41604'),(17791,12500,'41605'),(17792,12501,'41606'),(17793,12502,'41607'),(17794,12503,'41612'),(17795,12504,'41615'),(17796,12505,'41616'),(17797,12506,'41619'),(17798,12507,'41621'),(17799,12508,'41622'),(17800,12509,'41630'),(17801,12510,'41631'),(17802,12511,'41632'),(17803,12512,'41635'),(17804,12513,'41636'),(17805,12514,'41640'),(17806,12515,'41642'),(17807,12516,'41643'),(17808,12517,'41645'),(17809,12518,'41647'),(17810,12519,'41649'),(17811,12520,'41650'),(17812,12521,'41651'),(17813,12522,'41653'),(17814,12523,'41655'),(17815,12524,'41659'),(17816,12525,'41660'),(17817,12526,'41663'),(17818,12527,'41666'),(17819,12528,'41667'),(17820,12529,'41668'),(17821,12530,'41669'),(17822,12531,'41701'),(17823,12531,'41702'),(17824,12532,'41712'),(17825,12533,'41713'),(17826,12534,'41714'),(17827,12535,'41719'),(17828,12536,'41721'),(17829,12537,'41722'),(17830,12538,'41723'),(17831,12539,'41725'),(17832,12540,'41727'),(17833,12541,'41729'),(17834,12542,'41730'),(17835,12543,'41731'),(17836,12544,'41735'),(17837,12545,'41736'),(17838,12546,'41739'),(17839,12547,'41740'),(17840,12548,'41743'),(17841,12549,'41745'),(17842,12550,'41746'),(17843,12551,'41747'),(17844,12552,'41749'),(17845,12553,'41751'),(17846,12554,'41754'),(17847,12555,'41759'),(17848,12556,'41760'),(17849,12557,'41762'),(17850,12558,'41763'),(17851,12559,'41764'),(17852,12560,'41766'),(17853,12561,'41772'),(17854,12562,'41773'),(17855,12563,'41774'),(17856,12564,'41775'),(17857,12565,'41776'),(17858,12566,'41777'),(17859,12567,'41778'),(17860,12568,'41804'),(17861,12569,'41810'),(17862,12570,'41812'),(17863,12571,'41815'),(17864,12572,'41817'),(17865,12573,'41819'),(17866,12574,'41821'),(17867,12575,'41822'),(17868,12576,'41824'),(17869,12577,'41825'),(17870,12578,'41826'),(17871,12579,'41828'),(17872,12580,'41831'),(17873,12581,'41832'),(17874,12582,'41833'),(17875,12583,'41834'),(17876,12584,'41835'),(17877,12585,'41836'),(17878,12586,'41837'),(17879,12587,'41838'),(17880,12588,'41839'),(17881,12589,'41840'),(17882,12590,'41843'),(17883,12591,'41844'),(17884,12592,'41845'),(17885,12593,'41847'),(17886,12594,'41848'),(17887,12595,'41849'),(17888,12596,'41855'),(17889,12597,'41858'),(17890,12598,'41859'),(17891,12599,'41861'),(17892,12600,'41862'),(17893,12601,'42001'),(17894,12601,'42002'),(17895,12601,'42003'),(17896,12602,'42020'),(17897,12603,'42021'),(17898,12604,'42022'),(17899,12605,'42023'),(17900,12606,'42024'),(17901,12607,'42025'),(17902,12608,'42027'),(17903,12609,'42028'),(17904,12610,'42029'),(17905,12611,'42031'),(17906,12612,'42032'),(17907,12613,'42033'),(17908,12614,'42035'),(17909,12615,'42036'),(17910,12616,'42037'),(17911,12617,'42038'),(17912,12618,'42039'),(17913,12619,'42040'),(17914,12620,'42041'),(17915,12621,'42044'),(17916,12622,'42045'),(17917,12623,'42046'),(17918,12624,'42047'),(17919,12625,'42048'),(17920,12626,'42049'),(17921,12627,'42050'),(17922,12628,'42051'),(17923,12629,'42053'),(17924,12630,'42054'),(17925,12631,'42055'),(17926,12632,'42056'),(17927,12633,'42058'),(17928,12634,'42060'),(17929,12635,'42061'),(17930,12636,'42063'),(17931,12637,'42064'),(17932,12638,'42066'),(17933,12639,'42069'),(17934,12640,'42070'),(17935,12641,'42071'),(17936,12642,'42076'),(17937,12643,'42078'),(17938,12644,'42079'),(17939,12645,'42081'),(17940,12646,'42082'),(17941,12647,'42083'),(17942,12648,'42084'),(17943,12649,'42085'),(17944,12650,'42086'),(17945,12651,'42087'),(17946,12652,'42088'),(17947,12653,'42101'),(17948,12653,'42102'),(17949,12653,'42103'),(17950,12653,'42104'),(17951,12654,'42120'),(17952,12655,'42122'),(17953,12656,'42123'),(17954,12657,'42124'),(17955,12658,'42127'),(17956,12659,'42128'),(17957,12660,'42129'),(17958,12661,'42130'),(17959,12662,'42131'),(17960,12663,'42133'),(17961,12664,'42134'),(17962,12664,'42135'),(17963,12665,'42140'),(17964,12666,'42141'),(17965,12666,'42142'),(17966,12667,'42150'),(17967,12668,'42151'),(17968,12669,'42152'),(17969,12670,'42153'),(17970,12671,'42154'),(17971,12672,'42156'),(17972,12673,'42157'),(17973,12674,'42159'),(17974,12675,'42160'),(17975,12676,'42163'),(17976,12677,'42164'),(17977,12678,'42166'),(17978,12679,'42167'),(17979,12680,'42170'),(17980,12681,'42171'),(17981,12682,'42201'),(17982,12683,'42202'),(17983,12684,'42203'),(17984,12685,'42204'),(17985,12686,'42206'),(17986,12687,'42207'),(17987,12688,'42209'),(17988,12689,'42210'),(17989,12690,'42211'),(17990,12691,'42214'),(17991,12692,'42215'),(17992,12693,'42216'),(17993,12694,'42217'),(17994,12695,'42219'),(17995,12696,'42220'),(17996,12697,'42221'),(17997,12698,'42223'),(17998,12699,'42232'),(17999,12700,'42234'),(18000,12701,'42235'),(18001,12702,'42236'),(18002,12703,'42240'),(18003,12703,'42241'),(18004,12704,'42251'),(18005,12705,'42252'),(18006,12706,'42254'),(18007,12707,'42256'),(18008,12708,'42257'),(18009,12709,'42259'),(18010,12710,'42261'),(18011,12711,'42262'),(18012,12712,'42265'),(18013,12713,'42266'),(18014,12714,'42267'),(18015,12715,'42270'),(18016,12716,'42273'),(18017,12717,'42274'),(18018,12718,'42275'),(18019,12719,'42276'),(18020,12720,'42280'),(18021,12721,'42283'),(18022,12722,'42285'),(18023,12723,'42286'),(18024,12724,'42287'),(18025,12725,'42288'),(18026,12726,'42301'),(18027,12726,'42302'),(18028,12726,'42303'),(18029,12726,'42304'),(18030,12727,'42320'),(18031,12728,'42321'),(18032,12729,'42322'),(18033,12730,'42323'),(18034,12731,'42324'),(18035,12732,'42325'),(18036,12733,'42326'),(18037,12734,'42327'),(18038,12735,'42328'),(18039,12736,'42330'),(18040,12737,'42332'),(18041,12738,'42333'),(18042,12739,'42334'),(18043,12740,'42337'),(18044,12741,'42338'),(18045,12742,'42339'),(18046,12743,'42343'),(18047,12744,'42344'),(18048,12745,'42345'),(18049,12746,'42347'),(18050,12747,'42348'),(18051,12748,'42349'),(18052,12749,'42350'),(18053,12750,'42351'),(18054,12751,'42352'),(18055,12752,'42354'),(18056,12753,'42355'),(18057,12754,'42356'),(18058,12755,'42361'),(18059,12756,'42364'),(18060,12757,'42365'),(18061,12758,'42366'),(18062,12759,'42367'),(18063,12760,'42368'),(18064,12761,'42369'),(18065,12762,'42370'),(18066,12763,'42371'),(18067,12764,'42372'),(18068,12765,'42374'),(18069,12766,'42375'),(18070,12767,'42376'),(18071,12768,'42377'),(18072,12769,'42378'),(18073,12770,'42402'),(18074,12771,'42403'),(18075,12772,'42404'),(18076,12773,'42406'),(18077,12774,'42408'),(18078,12775,'42409'),(18079,12776,'42410'),(18080,12777,'42411'),(18081,12778,'42413'),(18082,12779,'42419'),(18083,12779,'42420'),(18084,12780,'42431'),(18085,12781,'42436'),(18086,12782,'42437'),(18087,12783,'42440'),(18088,12784,'42441'),(18089,12785,'42442'),(18090,12786,'42444'),(18091,12787,'42445'),(18092,12788,'42450'),(18093,12789,'42451'),(18094,12790,'42452'),(18095,12791,'42453'),(18096,12792,'42455'),(18097,12793,'42456'),(18098,12794,'42457'),(18099,12795,'42458'),(18100,12796,'42459'),(18101,12797,'42460'),(18102,12798,'42461'),(18103,12799,'42462'),(18104,12800,'42463'),(18105,12801,'42464'),(18106,12802,'42501'),(18107,12802,'42502'),(18108,12802,'42503'),(18109,12803,'42516'),(18110,12804,'42518'),(18111,12805,'42519'),(18112,12806,'42528'),(18113,12807,'42533'),(18114,12808,'42539'),(18115,12809,'42541'),(18116,12810,'42544'),(18117,12811,'42553'),(18118,12812,'42558'),(18119,12813,'42564'),(18120,12814,'42565'),(18121,12815,'42566'),(18122,12816,'42567'),(18123,12817,'42602'),(18124,12818,'42603'),(18125,12819,'42629'),(18126,12820,'42631'),(18127,12821,'42632'),(18128,12822,'42633'),(18129,12823,'42634'),(18130,12824,'42635'),(18131,12825,'42638'),(18132,12826,'42642'),(18133,12827,'42647'),(18134,12828,'42649'),(18135,12829,'42653'),(18136,12830,'42701'),(18137,12830,'42702'),(18138,12831,'42711'),(18139,12832,'42712'),(18140,12833,'42713'),(18141,12834,'42715'),(18142,12835,'42716'),(18143,12836,'42717'),(18144,12837,'42718'),(18145,12837,'42719'),(18146,12838,'42720'),(18147,12839,'42721'),(18148,12840,'42722'),(18149,12841,'42724'),(18150,12842,'42726'),(18151,12843,'42728'),(18152,12844,'42729'),(18153,12845,'42731'),(18154,12846,'42732'),(18155,12847,'42733'),(18156,12848,'42735'),(18157,12849,'42740'),(18158,12850,'42741'),(18159,12851,'42742'),(18160,12852,'42743'),(18161,12853,'42746'),(18162,12854,'42748'),(18163,12855,'42749'),(18164,12856,'42753'),(18165,12857,'42754'),(18166,12857,'42755'),(18167,12858,'42757'),(18168,12859,'42758'),(18169,12860,'42759'),(18170,12861,'42761'),(18171,12862,'42762'),(18172,12863,'42764'),(18173,12864,'42765'),(18174,12865,'42776'),(18175,12866,'42782'),(18176,12867,'42783'),(18177,12868,'42784'),(18178,12869,'42786'),(18179,12870,'42788'),(18180,12871,'43001'),(18181,12872,'43002'),(18182,12873,'43003'),(18183,12874,'43004'),(18184,12875,'43005'),(18185,12876,'43006'),(18186,12877,'43007'),(18187,12878,'43008'),(18188,12879,'43009'),(18189,12880,'43010'),(18190,12881,'43011'),(18191,12882,'43013'),(18192,12883,'43014'),(18193,12884,'43015'),(18194,12885,'43016'),(18195,12885,'43017'),(18196,12886,'43018'),(18197,12887,'43019'),(18198,12888,'43021'),(18199,12889,'43022'),(18200,12890,'43023'),(18201,12891,'43025'),(18202,12891,'43098'),(18203,12892,'43026'),(18204,12893,'43027'),(18205,12894,'43028'),(18206,12895,'43029'),(18207,12896,'43030'),(18208,12897,'43031'),(18209,12898,'43032'),(18210,12899,'43033'),(18211,12900,'43035'),(18212,12901,'43036'),(18213,12902,'43037'),(18214,12903,'43040'),(18215,12903,'43041'),(18216,12904,'43044'),(18217,12905,'43045'),(18218,12906,'43046'),(18219,12907,'43047'),(18220,12908,'43048'),(18221,12909,'43050'),(18222,12910,'43054'),(18223,12911,'43055'),(18224,12911,'43058'),(18225,12911,'43093'),(18226,12912,'43056'),(18227,12913,'43060'),(18228,12914,'43061'),(18229,12915,'43062'),(18230,12916,'43064'),(18231,12917,'43065'),(18232,12918,'43066'),(18233,12919,'43067'),(18234,12920,'43068'),(18235,12921,'43070'),(18236,12922,'43071'),(18237,12923,'43072'),(18238,12924,'43073'),(18239,12925,'43074'),(18240,12926,'43076'),(18241,12927,'43077'),(18242,12928,'43078'),(18243,12929,'43080'),(18244,12930,'43081'),(18245,12930,'43082'),(18246,12930,'43086'),(18247,12931,'43083'),(18248,12932,'43084'),(18249,12933,'43085'),(18250,12933,'43201'),(18251,12933,'43202'),(18252,12933,'43203'),(18253,12933,'43204'),(18254,12933,'43205'),(18255,12933,'43206'),(18256,12933,'43207'),(18257,12933,'43209'),(18258,12933,'43210'),(18259,12933,'43211'),(18260,12933,'43212'),(18261,12933,'43213'),(18262,12933,'43214'),(18263,12933,'43215'),(18264,12933,'43216'),(18265,12933,'43217'),(18266,12933,'43218'),(18267,12933,'43219'),(18268,12933,'43220'),(18269,12933,'43221'),(18270,12933,'43222'),(18271,12933,'43223'),(18272,12933,'43224'),(18273,12933,'43226'),(18274,12933,'43227'),(18275,12933,'43228'),(18276,12933,'43229'),(18277,12933,'43230'),(18278,12933,'43231'),(18279,12933,'43232'),(18280,12933,'43234'),(18281,12933,'43235'),(18282,12933,'43236'),(18283,12933,'43240'),(18284,12933,'43251'),(18285,12933,'43260'),(18286,12933,'43265'),(18287,12933,'43266'),(18288,12933,'43268'),(18289,12933,'43270'),(18290,12933,'43271'),(18291,12933,'43272'),(18292,12933,'43279'),(18293,12933,'43284'),(18294,12933,'43287'),(18295,12933,'43291'),(18296,12933,'43299'),(18297,12934,'43101'),(18298,12935,'43102'),(18299,12936,'43103'),(18300,12937,'43105'),(18301,12938,'43106'),(18302,12939,'43107'),(18303,12940,'43109'),(18304,12941,'43110'),(18305,12942,'43111'),(18306,12943,'43112'),(18307,12944,'43113'),(18308,12945,'43115'),(18309,12946,'43116'),(18310,12947,'43117'),(18311,12948,'43119'),(18312,12949,'43123'),(18313,12950,'43125'),(18314,12950,'43199'),(18315,12951,'43126'),(18316,12952,'43127'),(18317,12953,'43128'),(18318,12954,'43130'),(18319,12955,'43135'),(18320,12956,'43136'),(18321,12957,'43137'),(18322,12958,'43138'),(18323,12959,'43140'),(18324,12960,'43142'),(18325,12961,'43143'),(18326,12962,'43144'),(18327,12963,'43145'),(18328,12964,'43146'),(18329,12965,'43147'),(18330,12966,'43148'),(18331,12967,'43149'),(18332,12968,'43150'),(18333,12969,'43151'),(18334,12970,'43152'),(18335,12971,'43153'),(18336,12972,'43154'),(18337,12973,'43155'),(18338,12974,'43156'),(18339,12975,'43157'),(18340,12976,'43158'),(18341,12977,'43160'),(18342,12978,'43162'),(18343,12979,'43163'),(18344,12980,'43164'),(18345,12981,'43301'),(18346,12981,'43302'),(18347,12981,'43306'),(18348,12981,'43307'),(18349,12982,'43310'),(18350,12983,'43311'),(18351,12984,'43314'),(18352,12985,'43315'),(18353,12986,'43316'),(18354,12987,'43317'),(18355,12988,'43318'),(18356,12989,'43319'),(18357,12990,'43320'),(18358,12991,'43321'),(18359,12992,'43322'),(18360,12993,'43323'),(18361,12994,'43324'),(18362,12995,'43325'),(18363,12996,'43326'),(18364,12997,'43330'),(18365,12998,'43331'),(18366,12999,'43332'),(18367,13000,'43333'),(18368,13001,'43334'),(18369,13002,'43335'),(18370,13003,'43336'),(18371,13004,'43337'),(18372,13005,'43338'),(18373,13006,'43340'),(18374,13007,'43341'),(18375,13008,'43342'),(18376,13009,'43343'),(18377,13010,'43344'),(18378,13011,'43345'),(18379,13012,'43346'),(18380,13013,'43347'),(18381,13014,'43348'),(18382,13015,'43349'),(18383,13016,'43350'),(18384,13017,'43351'),(18385,13018,'43356'),(18386,13019,'43357'),(18387,13020,'43358'),(18388,13021,'43359'),(18389,13022,'43360'),(18390,13023,'43402'),(18391,13023,'43403'),(18392,13024,'43406'),(18393,13025,'43407'),(18394,13026,'43408'),(18395,13027,'43410'),(18396,13028,'43412'),(18397,13029,'43413'),(18398,13030,'43414'),(18399,13031,'43416'),(18400,13032,'43420'),(18401,13033,'43430'),(18402,13034,'43431'),(18403,13035,'43432'),(18404,13036,'43433'),(18405,13037,'43434'),(18406,13038,'43435'),(18407,13039,'43436'),(18408,13040,'43437'),(18409,13041,'43438'),(18410,13042,'43439'),(18411,13043,'43440'),(18412,13044,'43441'),(18413,13045,'43442'),(18414,13046,'43443'),(18415,13047,'43445'),(18416,13048,'43446'),(18417,13049,'43447'),(18418,13050,'43449'),(18419,13051,'43450'),(18420,13052,'43451'),(18421,13053,'43452'),(18422,13054,'43456'),(18423,13055,'43457'),(18424,13056,'43458'),(18425,13057,'43460'),(18426,13058,'43462'),(18427,13059,'43463'),(18428,13060,'43464'),(18429,13061,'43465'),(18430,13062,'43466'),(18431,13063,'43467'),(18432,13064,'43468'),(18433,13065,'43469'),(18434,13066,'43501'),(18435,13067,'43502'),(18436,13068,'43504'),(18437,13069,'43505'),(18438,13070,'43506'),(18439,13071,'43510'),(18440,13072,'43511'),(18441,13073,'43512'),(18442,13074,'43515'),(18443,13075,'43516'),(18444,13076,'43517'),(18445,13077,'43518'),(18446,13078,'43519'),(18447,13079,'43520'),(18448,13080,'43521'),(18449,13081,'43522'),(18450,13082,'43523'),(18451,13083,'43524'),(18452,13084,'43525'),(18453,13085,'43526'),(18454,13086,'43527'),(18455,13087,'43528'),(18456,13088,'43529'),(18457,13089,'43530'),(18458,13090,'43531'),(18459,13091,'43532'),(18460,13092,'43533'),(18461,13093,'43534'),(18462,13094,'43535'),(18463,13095,'43536'),(18464,13096,'43537'),(18465,13097,'43540'),(18466,13098,'43541'),(18467,13099,'43542'),(18468,13100,'43543'),(18469,13101,'43545'),(18470,13102,'43547'),(18471,13103,'43548'),(18472,13104,'43549'),(18473,13105,'43550'),(18474,13106,'43551'),(18475,13106,'43552'),(18476,13107,'43553'),(18477,13108,'43554'),(18478,13109,'43555'),(18479,13110,'43556'),(18480,13111,'43557'),(18481,13112,'43558'),(18482,13113,'43560'),(18483,13114,'43565'),(18484,13115,'43566'),(18485,13116,'43567'),(18486,13117,'43569'),(18487,13118,'43570'),(18488,13119,'43571'),(18489,13120,'43601'),(18490,13120,'43602'),(18491,13120,'43603'),(18492,13120,'43604'),(18493,13120,'43605'),(18494,13120,'43606'),(18495,13120,'43607'),(18496,13120,'43608'),(18497,13120,'43609'),(18498,13120,'43610'),(18499,13120,'43611'),(18500,13120,'43612'),(18501,13120,'43613'),(18502,13120,'43614'),(18503,13120,'43615'),(18504,13120,'43617'),(18505,13120,'43620'),(18506,13120,'43623'),(18507,13120,'43624'),(18508,13120,'43635'),(18509,13120,'43652'),(18510,13120,'43653'),(18511,13120,'43654'),(18512,13120,'43655'),(18513,13120,'43656'),(18514,13120,'43657'),(18515,13120,'43659'),(18516,13120,'43660'),(18517,13120,'43661'),(18518,13120,'43666'),(18519,13120,'43667'),(18520,13120,'43681'),(18521,13120,'43682'),(18522,13120,'43697'),(18523,13120,'43699'),(18524,13121,'43616'),(18525,13121,'43618'),(18526,13122,'43619'),(18527,13123,'43701'),(18528,13123,'43702'),(18529,13124,'43711'),(18530,13125,'43713'),(18531,13126,'43716'),(18532,13127,'43717'),(18533,13128,'43718'),(18534,13129,'43719'),(18535,13130,'43720'),(18536,13131,'43721'),(18537,13132,'43722'),(18538,13133,'43723'),(18539,13134,'43724'),(18540,13135,'43725'),(18541,13136,'43727'),(18542,13137,'43728'),(18543,13138,'43730'),(18544,13139,'43731'),(18545,13140,'43732'),(18546,13141,'43733'),(18547,13142,'43734'),(18548,13143,'43735'),(18549,13144,'43736'),(18550,13145,'43738'),(18551,13146,'43739'),(18552,13147,'43740'),(18553,13148,'43746'),(18554,13149,'43747'),(18555,13150,'43748'),(18556,13151,'43749'),(18557,13152,'43750'),(18558,13153,'43752'),(18559,13154,'43754'),(18560,13155,'43755'),(18561,13156,'43756'),(18562,13157,'43757'),(18563,13158,'43758'),(18564,13159,'43759'),(18565,13160,'43760'),(18566,13161,'43761'),(18567,13162,'43762'),(18568,13163,'43764'),(18569,13164,'43766'),(18570,13165,'43767'),(18571,13166,'43768'),(18572,13167,'43771'),(18573,13168,'43772'),(18574,13169,'43773'),(18575,13170,'43777'),(18576,13171,'43778'),(18577,13172,'43779'),(18578,13173,'43780'),(18579,13174,'43782'),(18580,13175,'43783'),(18581,13176,'43786'),(18582,13177,'43787'),(18583,13178,'43788'),(18584,13179,'43789'),(18585,13180,'43791'),(18586,13181,'43793'),(18587,13182,'43802'),(18588,13183,'43803'),(18589,13184,'43804'),(18590,13185,'43805'),(18591,13186,'43811'),(18592,13187,'43812'),(18593,13188,'43821'),(18594,13189,'43822'),(18595,13190,'43824'),(18596,13191,'43828'),(18597,13192,'43830'),(18598,13193,'43832'),(18599,13194,'43836'),(18600,13195,'43837'),(18601,13196,'43840'),(18602,13197,'43842'),(18603,13198,'43843'),(18604,13199,'43844'),(18605,13200,'43845'),(18606,13201,'43901'),(18607,13202,'43902'),(18608,13203,'43903'),(18609,13204,'43905'),(18610,13205,'43906'),(18611,13206,'43907'),(18612,13207,'43908'),(18613,13208,'43909'),(18614,13209,'43910'),(18615,13210,'43912'),(18616,13211,'43913'),(18617,13212,'43914'),(18618,13213,'43915'),(18619,13214,'43916'),(18620,13215,'43917'),(18621,13216,'43920'),(18622,13217,'43925'),(18623,13218,'43926'),(18624,13219,'43927'),(18625,13220,'43928'),(18626,13221,'43930'),(18627,13222,'43931'),(18628,13223,'43932'),(18629,13224,'43933'),(18630,13225,'43934'),(18631,13226,'43935'),(18632,13227,'43937'),(18633,13228,'43938'),(18634,13229,'43939'),(18635,13230,'43940'),(18636,13231,'43941'),(18637,13232,'43942'),(18638,13233,'43943'),(18639,13234,'43944'),(18640,13235,'43945'),(18641,13236,'43946'),(18642,13237,'43947'),(18643,13238,'43948'),(18644,13239,'43950'),(18645,13240,'43951'),(18646,13241,'43952'),(18647,13241,'43953'),(18648,13242,'43961'),(18649,13243,'43962'),(18650,13244,'43963'),(18651,13245,'43964'),(18652,13246,'43966'),(18653,13247,'43967'),(18654,13248,'43968'),(18655,13249,'43970'),(18656,13250,'43971'),(18657,13251,'43972'),(18658,13252,'43973'),(18659,13253,'43974'),(18660,13254,'43976'),(18661,13255,'43977'),(18662,13256,'43981'),(18663,13257,'43983'),(18664,13258,'43984'),(18665,13259,'43985'),(18666,13260,'43986'),(18667,13261,'43988'),(18668,13262,'43989'),(18669,13263,'44001'),(18670,13264,'44003'),(18671,13265,'44004'),(18672,13265,'44005'),(18673,13266,'44010'),(18674,13267,'44011'),(18675,13268,'44012'),(18676,13269,'44017'),(18677,13270,'44021'),(18678,13271,'44022'),(18679,13271,'44023'),(18680,13272,'44024'),(18681,13273,'44026'),(18682,13274,'44028'),(18683,13275,'44030'),(18684,13276,'44032'),(18685,13277,'44033'),(18686,13278,'44035'),(18687,13278,'44036'),(18688,13279,'44039'),(18689,13280,'44040'),(18690,13281,'44041'),(18691,13282,'44044'),(18692,13283,'44045'),(18693,13284,'44046'),(18694,13285,'44047'),(18695,13286,'44048'),(18696,13287,'44049'),(18697,13288,'44050'),(18698,13289,'44052'),(18699,13289,'44053'),(18700,13289,'44055'),(18701,13290,'44054'),(18702,13291,'44056'),(18703,13292,'44057'),(18704,13293,'44060'),(18705,13293,'44061'),(18706,13294,'44062'),(18707,13295,'44064'),(18708,13296,'44065'),(18709,13297,'44067'),(18710,13298,'44068'),(18711,13299,'44070'),(18712,13300,'44072'),(18713,13300,'44073'),(18714,13301,'44074'),(18715,13302,'44076'),(18716,13303,'44077'),(18717,13304,'44080'),(18718,13305,'44081'),(18719,13306,'44082'),(18720,13307,'44084'),(18721,13308,'44085'),(18722,13309,'44086'),(18723,13310,'44087'),(18724,13311,'44088'),(18725,13312,'44089'),(18726,13313,'44090'),(18727,13314,'44092'),(18728,13315,'44093'),(18729,13316,'44094'),(18730,13316,'44096'),(18731,13317,'44095'),(18732,13317,'44097'),(18733,13318,'44099'),(18734,13319,'44101'),(18735,13319,'44102'),(18736,13319,'44103'),(18737,13319,'44104'),(18738,13319,'44105'),(18739,13319,'44106'),(18740,13319,'44108'),(18741,13319,'44109'),(18742,13319,'44110'),(18743,13319,'44111'),(18744,13319,'44112'),(18745,13319,'44113'),(18746,13319,'44114'),(18747,13319,'44115'),(18748,13319,'44118'),(18749,13319,'44119'),(18750,13319,'44120'),(18751,13319,'44121'),(18752,13319,'44124'),(18753,13319,'44125'),(18754,13319,'44126'),(18755,13319,'44127'),(18756,13319,'44128'),(18757,13319,'44129'),(18758,13319,'44130'),(18759,13319,'44134'),(18760,13319,'44135'),(18761,13319,'44143'),(18762,13319,'44144'),(18763,13319,'44177'),(18764,13319,'44178'),(18765,13319,'44179'),(18766,13319,'44181'),(18767,13319,'44184'),(18768,13319,'44185'),(18769,13319,'44186'),(18770,13319,'44188'),(18771,13319,'44189'),(18772,13319,'44190'),(18773,13319,'44191'),(18774,13319,'44192'),(18775,13319,'44193'),(18776,13319,'44194'),(18777,13319,'44195'),(18778,13319,'44197'),(18779,13319,'44198'),(18780,13319,'44199'),(18781,13320,'44107'),(18782,13321,'44116'),(18783,13322,'44117'),(18784,13322,'44123'),(18785,13322,'44132'),(18786,13323,'44122'),(18787,13324,'44131'),(18788,13325,'44133'),(18789,13326,'44136'),(18790,13327,'44137'),(18791,13328,'44138'),(18792,13329,'44139'),(18793,13330,'44140'),(18794,13331,'44141'),(18795,13332,'44142'),(18796,13333,'44145'),(18797,13334,'44146'),(18798,13335,'44147'),(18799,13336,'44201'),(18800,13337,'44202'),(18801,13338,'44203'),(18802,13339,'44210'),(18803,13340,'44211'),(18804,13341,'44212'),(18805,13342,'44214'),(18806,13343,'44215'),(18807,13344,'44216'),(18808,13345,'44217'),(18809,13346,'44221'),(18810,13346,'44222'),(18811,13346,'44223'),(18812,13347,'44224'),(18813,13348,'44230'),(18814,13349,'44231'),(18815,13350,'44232'),(18816,13351,'44233'),(18817,13352,'44234'),(18818,13353,'44235'),(18819,13354,'44236'),(18820,13354,'44237'),(18821,13354,'44238'),(18822,13355,'44240'),(18823,13355,'44242'),(18824,13355,'44243'),(18825,13356,'44241'),(18826,13357,'44250'),(18827,13358,'44251'),(18828,13359,'44253'),(18829,13360,'44254'),(18830,13361,'44255'),(18831,13362,'44256'),(18832,13362,'44258'),(18833,13363,'44260'),(18834,13364,'44262'),(18835,13365,'44264'),(18836,13366,'44265'),(18837,13367,'44266'),(18838,13368,'44270'),(18839,13369,'44272'),(18840,13370,'44273'),(18841,13371,'44274'),(18842,13372,'44275'),(18843,13373,'44276'),(18844,13374,'44278'),(18845,13375,'44280'),(18846,13376,'44281'),(18847,13376,'44282'),(18848,13377,'44285'),(18849,13378,'44286'),(18850,13379,'44287'),(18851,13380,'44288'),(18852,13381,'44301'),(18853,13381,'44302'),(18854,13381,'44303'),(18855,13381,'44304'),(18856,13381,'44305'),(18857,13381,'44306'),(18858,13381,'44307'),(18859,13381,'44308'),(18860,13381,'44309'),(18861,13381,'44310'),(18862,13381,'44311'),(18863,13381,'44312'),(18864,13381,'44313'),(18865,13381,'44314'),(18866,13381,'44315'),(18867,13381,'44316'),(18868,13381,'44317'),(18869,13381,'44319'),(18870,13381,'44320'),(18871,13381,'44321A'),(18872,13381,'44322'),(18873,13381,'44325'),(18874,13381,'44326'),(18875,13381,'44328'),(18876,13381,'44333'),(18877,13381,'44334'),(18878,13381,'44372'),(18879,13381,'44393'),(18880,13381,'44396'),(18881,13381,'44397'),(18882,13381,'44398'),(18883,13381,'44399'),(18884,13382,'44401'),(18885,13383,'44402'),(18886,13384,'44403'),(18887,13385,'44404'),(18888,13386,'44405'),(18889,13387,'44406'),(18890,13388,'44408'),(18891,13389,'44410'),(18892,13390,'44411'),(18893,13391,'44412'),(18894,13392,'44413'),(18895,13393,'44415'),(18896,13394,'44416'),(18897,13395,'44417'),(18898,13396,'44418'),(18899,13397,'44420'),(18900,13398,'44422'),(18901,13399,'44423'),(18902,13400,'44424'),(18903,13401,'44425'),(18904,13402,'44427'),(18905,13403,'44428'),(18906,13404,'44429'),(18907,13405,'44430'),(18908,13406,'44431'),(18909,13407,'44432'),(18910,13408,'44436'),(18911,13409,'44437'),(18912,13410,'44438'),(18913,13411,'44439'),(18914,13412,'44440'),(18915,13413,'44441'),(18916,13414,'44442'),(18917,13415,'44443'),(18918,13416,'44444'),(18919,13417,'44445'),(18920,13418,'44446'),(18921,13419,'44449'),(18922,13420,'44450'),(18923,13421,'44451'),(18924,13422,'44452'),(18925,13423,'44453'),(18926,13424,'44454'),(18927,13425,'44455'),(18928,13426,'44460'),(18929,13427,'44470'),(18930,13428,'44471'),(18931,13429,'44473'),(18932,13430,'44481'),(18933,13430,'44482'),(18934,13430,'44483'),(18935,13430,'44484'),(18936,13430,'44485'),(18937,13430,'44486'),(18938,13430,'44487'),(18939,13430,'44488'),(18940,13431,'44490'),(18941,13432,'44491'),(18942,13433,'44492'),(18943,13434,'44493'),(18944,13435,'44501'),(18945,13435,'44502'),(18946,13435,'44503'),(18947,13435,'44504'),(18948,13435,'44505'),(18949,13435,'44506'),(18950,13435,'44507'),(18951,13435,'44509'),(18952,13435,'44510'),(18953,13435,'44511'),(18954,13435,'44512'),(18955,13435,'44513'),(18956,13435,'44514'),(18957,13435,'44515'),(18958,13435,'44555'),(18959,13435,'44598'),(18960,13435,'44599'),(18961,13436,'44601'),(18962,13437,'44606'),(18963,13438,'44607'),(18964,13439,'44608'),(18965,13440,'44609'),(18966,13441,'44610'),(18967,13442,'44611'),(18968,13443,'44612'),(18969,13444,'44613'),(18970,13445,'44614'),(18971,13446,'44615'),(18972,13447,'44617'),(18973,13448,'44618'),(18974,13449,'44619'),(18975,13450,'44620'),(18976,13451,'44621'),(18977,13452,'44622'),(18978,13453,'44624'),(18979,13454,'44625'),(18980,13455,'44626'),(18981,13456,'44627'),(18982,13457,'44628'),(18983,13458,'44629'),(18984,13459,'44630'),(18985,13460,'44631'),(18986,13461,'44632'),(18987,13462,'44633'),(18988,13463,'44634'),(18989,13464,'44636'),(18990,13465,'44637'),(18991,13466,'44638'),(18992,13467,'44639'),(18993,13468,'44640'),(18994,13469,'44641'),(18995,13470,'44643'),(18996,13471,'44644'),(18997,13472,'44645'),(18998,13473,'44646'),(18999,13473,'44647'),(19000,13473,'44648'),(19001,13474,'44650'),(19002,13475,'44651'),(19003,13476,'44652'),(19004,13477,'44653'),(19005,13478,'44654'),(19006,13479,'44656'),(19007,13480,'44657'),(19008,13481,'44659'),(19009,13482,'44660'),(19010,13483,'44661'),(19011,13484,'44662'),(19012,13485,'44663'),(19013,13486,'44665'),(19014,13487,'44666'),(19015,13488,'44667'),(19016,13489,'44669'),(19017,13490,'44670'),(19018,13491,'44671'),(19019,13492,'44672'),(19020,13493,'44675'),(19021,13494,'44676'),(19022,13495,'44677'),(19023,13496,'44678'),(19024,13497,'44679'),(19025,13498,'44680'),(19026,13499,'44681'),(19027,13500,'44682'),(19028,13501,'44683'),(19029,13502,'44685'),(19030,13503,'44687'),(19031,13504,'44688'),(19032,13505,'44689'),(19033,13506,'44690'),(19034,13507,'44691'),(19035,13508,'44693'),(19036,13509,'44695'),(19037,13510,'44697'),(19038,13511,'44699'),(19039,13512,'44701'),(19040,13512,'44702'),(19041,13512,'44703'),(19042,13512,'44704'),(19043,13512,'44705'),(19044,13512,'44706'),(19045,13512,'44707'),(19046,13512,'44708'),(19047,13512,'44709'),(19048,13512,'44710'),(19049,13512,'44711'),(19050,13512,'44712'),(19051,13512,'44714'),(19052,13512,'44718'),(19053,13512,'44720'),(19054,13512,'44721'),(19055,13512,'44730'),(19056,13512,'44735'),(19057,13512,'44750'),(19058,13512,'44760'),(19059,13512,'44767'),(19060,13512,'44798'),(19061,13512,'44799'),(19062,13513,'44801'),(19063,13514,'44802'),(19064,13515,'44803'),(19065,13516,'44804'),(19066,13517,'44805'),(19067,13518,'44807'),(19068,13519,'44809'),(19069,13520,'44811'),(19070,13521,'44813'),(19071,13522,'44814'),(19072,13523,'44815'),(19073,13524,'44816'),(19074,13525,'44817'),(19075,13526,'44818'),(19076,13527,'44820'),(19077,13528,'44822'),(19078,13529,'44824'),(19079,13530,'44825'),(19080,13531,'44826'),(19081,13532,'44827'),(19082,13533,'44828'),(19083,13534,'44830'),(19084,13535,'44833'),(19085,13536,'44836'),(19086,13537,'44837'),(19087,13538,'44838'),(19088,13539,'44839'),(19089,13540,'44840'),(19090,13541,'44841'),(19091,13542,'44842'),(19092,13543,'44843'),(19093,13544,'44844'),(19094,13545,'44845'),(19095,13546,'44846'),(19096,13547,'44847'),(19097,13548,'44848'),(19098,13549,'44849'),(19099,13550,'44850'),(19100,13551,'44851'),(19101,13552,'44853'),(19102,13553,'44854'),(19103,13554,'44855'),(19104,13555,'44856'),(19105,13556,'44857'),(19106,13557,'44859'),(19107,13558,'44860'),(19108,13559,'44861'),(19109,13560,'44862'),(19110,13561,'44864'),(19111,13562,'44865'),(19112,13563,'44866'),(19113,13564,'44867'),(19114,13565,'44870'),(19115,13565,'44871'),(19116,13566,'44874'),(19117,13567,'44875'),(19118,13568,'44878'),(19119,13569,'44880'),(19120,13570,'44881'),(19121,13571,'44882'),(19122,13572,'44883'),(19123,13573,'44887'),(19124,13574,'44888'),(19125,13574,'44890'),(19126,13575,'44889'),(19127,13576,'44901'),(19128,13576,'44902'),(19129,13576,'44903'),(19130,13576,'44904'),(19131,13576,'44905'),(19132,13576,'44906'),(19133,13576,'44907'),(19134,13576,'44999'),(19135,13577,'45001'),(19136,13578,'45002'),(19137,13579,'45003'),(19138,13580,'45004'),(19139,13581,'45005'),(19140,13582,'45011'),(19141,13582,'45012'),(19142,13582,'45013'),(19143,13582,'45015'),(19144,13582,'45020'),(19145,13582,'45023'),(19146,13582,'45025'),(19147,13582,'45026'),(19148,13583,'45014'),(19149,13583,'45018'),(19150,13584,'45030'),(19151,13585,'45032'),(19152,13586,'45033'),(19153,13587,'45034'),(19154,13588,'45036'),(19155,13589,'45039'),(19156,13590,'45040'),(19157,13591,'45041'),(19158,13592,'45042'),(19159,13592,'45043'),(19160,13592,'45044'),(19161,13593,'45050'),(19162,13593,'45073'),(19163,13593,'45099'),(19164,13594,'45051'),(19165,13595,'45052'),(19166,13596,'45053'),(19167,13597,'45054'),(19168,13598,'45055'),(19169,13599,'45056'),(19170,13600,'45061'),(19171,13601,'45062'),(19172,13602,'45063'),(19173,13603,'45064'),(19174,13604,'45065'),(19175,13605,'45066'),(19176,13606,'45067'),(19177,13607,'45068'),(19178,13608,'45069'),(19179,13608,'45071'),(19180,13609,'45070'),(19181,13610,'45101'),(19182,13611,'45102'),(19183,13612,'45103'),(19184,13613,'45105'),(19185,13614,'45106'),(19186,13615,'45107'),(19187,13616,'45110'),(19188,13617,'45111'),(19189,13618,'45112'),(19190,13619,'45113'),(19191,13620,'45114'),(19192,13621,'45115'),(19193,13622,'45118'),(19194,13623,'45119'),(19195,13624,'45120'),(19196,13625,'45121'),(19197,13626,'45122'),(19198,13627,'45123'),(19199,13627,'45165'),(19200,13628,'45130'),(19201,13629,'45131'),(19202,13630,'45132'),(19203,13631,'45133'),(19204,13632,'45135'),(19205,13633,'45138'),(19206,13634,'45140'),(19207,13635,'45142'),(19208,13636,'45144'),(19209,13637,'45145'),(19210,13638,'45146'),(19211,13639,'45147'),(19212,13640,'45148'),(19213,13641,'45150'),(19214,13642,'45152'),(19215,13643,'45153'),(19216,13644,'45154'),(19217,13645,'45155'),(19218,13646,'45156'),(19219,13647,'45157'),(19220,13648,'45158'),(19221,13649,'45159'),(19222,13650,'45160'),(19223,13651,'45162'),(19224,13652,'45164'),(19225,13653,'45166'),(19226,13654,'45167'),(19227,13655,'45168'),(19228,13656,'45169'),(19229,13657,'45171'),(19230,13658,'45172'),(19231,13659,'45174'),(19232,13660,'45176'),(19233,13661,'45177'),(19234,13662,'45201'),(19235,13662,'45202'),(19236,13662,'45203'),(19237,13662,'45204'),(19238,13662,'45205'),(19239,13662,'45206'),(19240,13662,'45207'),(19241,13662,'45208'),(19242,13662,'45209'),(19243,13662,'45210'),(19244,13662,'45211'),(19245,13662,'45212'),(19246,13662,'45213'),(19247,13662,'45214'),(19248,13662,'45215'),(19249,13662,'45216'),(19250,13662,'45217'),(19251,13662,'45218'),(19252,13662,'45219'),(19253,13662,'45220'),(19254,13662,'45221'),(19255,13662,'45222'),(19256,13662,'45223'),(19257,13662,'45224'),(19258,13662,'45225'),(19259,13662,'45226'),(19260,13662,'45227'),(19261,13662,'45228'),(19262,13662,'45229'),(19263,13662,'45230'),(19264,13662,'45231'),(19265,13662,'45232'),(19266,13662,'45233'),(19267,13662,'45234'),(19268,13662,'45235'),(19269,13662,'45236'),(19270,13662,'45237'),(19271,13662,'45238'),(19272,13662,'45239'),(19273,13662,'45240'),(19274,13662,'45241'),(19275,13662,'45242'),(19276,13662,'45243'),(19277,13662,'45244'),(19278,13662,'45245'),(19279,13662,'45246'),(19280,13662,'45247'),(19281,13662,'45248'),(19282,13662,'45249'),(19283,13662,'45250'),(19284,13662,'45251'),(19285,13662,'45252'),(19286,13662,'45253'),(19287,13662,'45254'),(19288,13662,'45255'),(19289,13662,'45258'),(19290,13662,'45262'),(19291,13662,'45263'),(19292,13662,'45264'),(19293,13662,'45267'),(19294,13662,'45268'),(19295,13662,'45269'),(19296,13662,'45270'),(19297,13662,'45271'),(19298,13662,'45273'),(19299,13662,'45274'),(19300,13662,'45275'),(19301,13662,'45277'),(19302,13662,'45296'),(19303,13662,'45298'),(19304,13662,'45299'),(19305,13662,'45944'),(19306,13662,'45999'),(19307,13663,'45301'),(19308,13664,'45302'),(19309,13665,'45303'),(19310,13666,'45304'),(19311,13667,'45305'),(19312,13668,'45306'),(19313,13669,'45307'),(19314,13670,'45308'),(19315,13671,'45309'),(19316,13672,'45310'),(19317,13673,'45311'),(19318,13674,'45312'),(19319,13675,'45314'),(19320,13676,'45315'),(19321,13677,'45316'),(19322,13678,'45317'),(19323,13679,'45318'),(19324,13680,'45319'),(19325,13681,'45320'),(19326,13682,'45321'),(19327,13683,'45322'),(19328,13684,'45323'),(19329,13685,'45324'),(19330,13686,'45325'),(19331,13687,'45326'),(19332,13688,'45327'),(19333,13689,'45328'),(19334,13690,'45329'),(19335,13691,'45330'),(19336,13692,'45331'),(19337,13693,'45332'),(19338,13694,'45333'),(19339,13695,'45334'),(19340,13696,'45335'),(19341,13697,'45336'),(19342,13698,'45337'),(19343,13699,'45338'),(19344,13700,'45339'),(19345,13701,'45340'),(19346,13702,'45341'),(19347,13703,'45342'),(19348,13703,'45343'),(19349,13704,'45344'),(19350,13705,'45345'),(19351,13706,'45346'),(19352,13707,'45347'),(19353,13708,'45348'),(19354,13709,'45349'),(19355,13710,'45350'),(19356,13711,'45351'),(19357,13712,'45352'),(19358,13713,'45353'),(19359,13714,'45354'),(19360,13715,'45356'),(19361,13716,'45358'),(19362,13717,'45359'),(19363,13718,'45360'),(19364,13719,'45361'),(19365,13720,'45362'),(19366,13721,'45363'),(19367,13722,'45365'),(19368,13722,'45367'),(19369,13723,'45368'),(19370,13724,'45369'),(19371,13725,'45370'),(19372,13726,'45371'),(19373,13727,'45372'),(19374,13728,'45373'),(19375,13728,'45374'),(19376,13729,'45377'),(19377,13730,'45378'),(19378,13731,'45380'),(19379,13732,'45381'),(19380,13733,'45382'),(19381,13734,'45383'),(19382,13735,'45384'),(19383,13736,'45385'),(19384,13737,'45387'),(19385,13738,'45388'),(19386,13739,'45389'),(19387,13740,'45390'),(19388,13741,'45401'),(19389,13741,'45402'),(19390,13741,'45403'),(19391,13741,'45404'),(19392,13741,'45405'),(19393,13741,'45406'),(19394,13741,'45407'),(19395,13741,'45408'),(19396,13741,'45409'),(19397,13741,'45410'),(19398,13741,'45412'),(19399,13741,'45413'),(19400,13741,'45414'),(19401,13741,'45415'),(19402,13741,'45416'),(19403,13741,'45417'),(19404,13741,'45418'),(19405,13741,'45419'),(19406,13741,'45420'),(19407,13741,'45422'),(19408,13741,'45423'),(19409,13741,'45424'),(19410,13741,'45426'),(19411,13741,'45427'),(19412,13741,'45428'),(19413,13741,'45429'),(19414,13741,'45430'),(19415,13741,'45431'),(19416,13741,'45432'),(19417,13741,'45433'),(19418,13741,'45434'),(19419,13741,'45435'),(19420,13741,'45437'),(19421,13741,'45439'),(19422,13741,'45440'),(19423,13741,'45441'),(19424,13741,'45448'),(19425,13741,'45449'),(19426,13741,'45454'),(19427,13741,'45458'),(19428,13741,'45459'),(19429,13741,'45463'),(19430,13741,'45469'),(19431,13741,'45470'),(19432,13741,'45475'),(19433,13741,'45479'),(19434,13741,'45481'),(19435,13741,'45482'),(19436,13741,'45490'),(19437,13742,'45501'),(19438,13742,'45502'),(19439,13742,'45503'),(19440,13742,'45504'),(19441,13742,'45505'),(19442,13742,'45506'),(19443,13743,'45601'),(19444,13744,'45612'),(19445,13745,'45613'),(19446,13746,'45614'),(19447,13747,'45616'),(19448,13748,'45617'),(19449,13749,'45618'),(19450,13750,'45619'),(19451,13751,'45620'),(19452,13752,'45621'),(19453,13753,'45622'),(19454,13754,'45623'),(19455,13755,'45624'),(19456,13756,'45628'),(19457,13757,'45629'),(19458,13758,'45630'),(19459,13759,'45631'),(19460,13760,'45633'),(19461,13761,'45634'),(19462,13762,'45636'),(19463,13763,'45638'),(19464,13764,'45640'),(19465,13765,'45642'),(19466,13766,'45643'),(19467,13767,'45644'),(19468,13768,'45645'),(19469,13769,'45646'),(19470,13770,'45647'),(19471,13771,'45648'),(19472,13771,'45699'),(19473,13772,'45650'),(19474,13773,'45651'),(19475,13774,'45652'),(19476,13775,'45653'),(19477,13776,'45654'),(19478,13777,'45656'),(19479,13778,'45657'),(19480,13779,'45658'),(19481,13780,'45659'),(19482,13781,'45660'),(19483,13782,'45661'),(19484,13783,'45662'),(19485,13784,'45663'),(19486,13785,'45669'),(19487,13786,'45671'),(19488,13787,'45672'),(19489,13788,'45673'),(19490,13789,'45674'),(19491,13790,'45675'),(19492,13791,'45677'),(19493,13792,'45678'),(19494,13793,'45679'),(19495,13794,'45680'),(19496,13795,'45681'),(19497,13796,'45682'),(19498,13797,'45683'),(19499,13798,'45684'),(19500,13799,'45685'),(19501,13800,'45686'),(19502,13801,'45687'),(19503,13802,'45688'),(19504,13803,'45690'),(19505,13804,'45692'),(19506,13805,'45693'),(19507,13806,'45694'),(19508,13807,'45695'),(19509,13808,'45696'),(19510,13809,'45697'),(19511,13810,'45698'),(19512,13811,'45701'),(19513,13812,'45710'),(19514,13813,'45711'),(19515,13814,'45712'),(19516,13815,'45713'),(19517,13816,'45714'),(19518,13817,'45715'),(19519,13818,'45716'),(19520,13819,'45717'),(19521,13820,'45719'),(19522,13821,'45720'),(19523,13822,'45721'),(19524,13823,'45723'),(19525,13824,'45724'),(19526,13825,'45727'),(19527,13826,'45729'),(19528,13827,'45732'),(19529,13828,'45734'),(19530,13829,'45735'),(19531,13830,'45739'),(19532,13831,'45740'),(19533,13832,'45741'),(19534,13833,'45742'),(19535,13834,'45743'),(19536,13835,'45744'),(19537,13836,'45745'),(19538,13837,'45746'),(19539,13838,'45750'),(19540,13839,'45760'),(19541,13840,'45761'),(19542,13841,'45764'),(19543,13842,'45766'),(19544,13843,'45767'),(19545,13844,'45768'),(19546,13845,'45769'),(19547,13846,'45770'),(19548,13847,'45771'),(19549,13848,'45772'),(19550,13849,'45773'),(19551,13850,'45775'),(19552,13851,'45776'),(19553,13852,'45777'),(19554,13853,'45778'),(19555,13854,'45779'),(19556,13855,'45780'),(19557,13856,'45781'),(19558,13857,'45782'),(19559,13858,'45783'),(19560,13859,'45784'),(19561,13860,'45786'),(19562,13861,'45787'),(19563,13862,'45788'),(19564,13863,'45789'),(19565,13864,'45801'),(19566,13864,'45802'),(19567,13864,'45804'),(19568,13864,'45805'),(19569,13864,'45806'),(19570,13864,'45807'),(19571,13865,'45808'),(19572,13866,'45809'),(19573,13867,'45810'),(19574,13868,'45812'),(19575,13869,'45813'),(19576,13870,'45814'),(19577,13871,'45815'),(19578,13872,'45816'),(19579,13873,'45817'),(19580,13874,'45819'),(19581,13875,'45820'),(19582,13876,'45821'),(19583,13877,'45822'),(19584,13878,'45826'),(19585,13879,'45827'),(19586,13880,'45828'),(19587,13881,'45830'),(19588,13882,'45831'),(19589,13883,'45832'),(19590,13884,'45833'),(19591,13885,'45835'),(19592,13886,'45836'),(19593,13887,'45837'),(19594,13888,'45838'),(19595,13889,'45839'),(19596,13889,'45840'),(19597,13890,'45841'),(19598,13891,'45843'),(19599,13892,'45844'),(19600,13893,'45845'),(19601,13894,'45846'),(19602,13895,'45848'),(19603,13896,'45849'),(19604,13897,'45850'),(19605,13898,'45851'),(19606,13899,'45853'),(19607,13900,'45854'),(19608,13901,'45855'),(19609,13902,'45856'),(19610,13903,'45858'),(19611,13904,'45859'),(19612,13905,'45860'),(19613,13906,'45861'),(19614,13907,'45862'),(19615,13908,'45863'),(19616,13909,'45864'),(19617,13910,'45865'),(19618,13911,'45866'),(19619,13912,'45867'),(19620,13913,'45868'),(19621,13914,'45869'),(19622,13915,'45870'),(19623,13916,'45871'),(19624,13917,'45872'),(19625,13918,'45873'),(19626,13919,'45874'),(19627,13920,'45875'),(19628,13921,'45876'),(19629,13922,'45877'),(19630,13923,'45879'),(19631,13924,'45880'),(19632,13925,'45881'),(19633,13926,'45882'),(19634,13927,'45883'),(19635,13928,'45884'),(19636,13929,'45885'),(19637,13930,'45886'),(19638,13931,'45887'),(19639,13932,'45888'),(19640,13933,'45889'),(19641,13934,'45890'),(19642,13935,'45891'),(19643,13936,'45893'),(19644,13937,'45894'),(19645,13938,'45895'),(19646,13939,'45896'),(19647,13940,'45897'),(19648,13941,'45898'),(19649,13942,'45899'),(19650,13943,'46001'),(19651,13944,'46011'),(19652,13944,'46012'),(19653,13944,'46013'),(19654,13944,'46014'),(19655,13944,'46015'),(19656,13944,'46016'),(19657,13944,'46017'),(19658,13944,'46018'),(19659,13945,'46030'),(19660,13946,'46031'),(19661,13947,'46032'),(19662,13947,'46033'),(19663,13947,'46082'),(19664,13948,'46034'),(19665,13949,'46035'),(19666,13950,'46036'),(19667,13951,'46038'),(19668,13952,'46039'),(19669,13953,'46040'),(19670,13954,'46041'),(19671,13955,'46044'),(19672,13956,'46045'),(19673,13957,'46046'),(19674,13958,'46047'),(19675,13959,'46048'),(19676,13960,'46049'),(19677,13961,'46050'),(19678,13962,'46051'),(19679,13963,'46052'),(19680,13964,'46055'),(19681,13965,'46056'),(19682,13966,'46057'),(19683,13967,'46058'),(19684,13968,'46060'),(19685,13968,'46061'),(19686,13969,'46063'),(19687,13970,'46064'),(19688,13971,'46065'),(19689,13972,'46067'),(19690,13973,'46068'),(19691,13974,'46069'),(19692,13975,'46070'),(19693,13976,'46071'),(19694,13977,'46072'),(19695,13978,'46074'),(19696,13979,'46075'),(19697,13980,'46076'),(19698,13981,'46077'),(19699,13982,'46102'),(19700,13983,'46103'),(19701,13984,'46104'),(19702,13985,'46105'),(19703,13986,'46106'),(19704,13987,'46107'),(19705,13988,'46110'),(19706,13989,'46111'),(19707,13990,'46112'),(19708,13991,'46113'),(19709,13992,'46114'),(19710,13993,'46115'),(19711,13994,'46117'),(19712,13995,'46118'),(19713,13996,'46120'),(19714,13997,'46121'),(19715,13998,'46122'),(19716,13999,'46123'),(19717,14000,'46124'),(19718,14001,'46125'),(19719,14002,'46126'),(19720,14003,'46127'),(19721,14004,'46128'),(19722,14005,'46129'),(19723,14006,'46130'),(19724,14007,'46131'),(19725,14008,'46133'),(19726,14009,'46135'),(19727,14010,'46140'),(19728,14011,'46142'),(19729,14011,'46143'),(19730,14012,'46144'),(19731,14013,'46146'),(19732,14014,'46147'),(19733,14015,'46148'),(19734,14016,'46149'),(19735,14017,'46150'),(19736,14018,'46151'),(19737,14019,'46154'),(19738,14020,'46155'),(19739,14021,'46156'),(19740,14022,'46157'),(19741,14023,'46158'),(19742,14024,'46160'),(19743,14025,'46161'),(19744,14026,'46162'),(19745,14027,'46163'),(19746,14028,'46164'),(19747,14029,'46165'),(19748,14030,'46166'),(19749,14031,'46167'),(19750,14032,'46168'),(19751,14033,'46170'),(19752,14034,'46171'),(19753,14035,'46172'),(19754,14036,'46173'),(19755,14037,'46175'),(19756,14038,'46176'),(19757,14039,'46180'),(19758,14040,'46181'),(19759,14041,'46182'),(19760,14042,'46183'),(19761,14043,'46184'),(19762,14044,'46186'),(19763,14045,'46201'),(19764,14045,'46202'),(19765,14045,'46203'),(19766,14045,'46204'),(19767,14045,'46205'),(19768,14045,'46206'),(19769,14045,'46207'),(19770,14045,'46208'),(19771,14045,'46209'),(19772,14045,'46211'),(19773,14045,'46214'),(19774,14045,'46216'),(19775,14045,'46217'),(19776,14045,'46218'),(19777,14045,'46219'),(19778,14045,'46220'),(19779,14045,'46221'),(19780,14045,'46222'),(19781,14045,'46223'),(19782,14045,'46224'),(19783,14045,'46225'),(19784,14045,'46226'),(19785,14045,'46227'),(19786,14045,'46228'),(19787,14045,'46229'),(19788,14045,'46230'),(19789,14045,'46231'),(19790,14045,'46234'),(19791,14045,'46235'),(19792,14045,'46236'),(19793,14045,'46237'),(19794,14045,'46239'),(19795,14045,'46240'),(19796,14045,'46241'),(19797,14045,'46242'),(19798,14045,'46244'),(19799,14045,'46247'),(19800,14045,'46249'),(19801,14045,'46250'),(19802,14045,'46251'),(19803,14045,'46253'),(19804,14045,'46254'),(19805,14045,'46255'),(19806,14045,'46256'),(19807,14045,'46259'),(19808,14045,'46260'),(19809,14045,'46266'),(19810,14045,'46268'),(19811,14045,'46274'),(19812,14045,'46275'),(19813,14045,'46277'),(19814,14045,'46278'),(19815,14045,'46280'),(19816,14045,'46282'),(19817,14045,'46283'),(19818,14045,'46285'),(19819,14045,'46290'),(19820,14045,'46291'),(19821,14045,'46295'),(19822,14045,'46298'),(19823,14046,'46301'),(19824,14047,'46302'),(19825,14048,'46303'),(19826,14049,'46304'),(19827,14050,'46307'),(19828,14050,'46308'),(19829,14051,'46310'),(19830,14052,'46311'),(19831,14053,'46312'),(19832,14054,'46319'),(19833,14055,'46320'),(19834,14055,'46323'),(19835,14055,'46324'),(19836,14055,'46325'),(19837,14055,'46327'),(19838,14056,'46321'),(19839,14057,'46322'),(19840,14058,'46340'),(19841,14059,'46341'),(19842,14060,'46342'),(19843,14061,'46345'),(19844,14062,'46346'),(19845,14063,'46347'),(19846,14064,'46348'),(19847,14065,'46349'),(19848,14066,'46350'),(19849,14066,'46352'),(19850,14067,'46355'),(19851,14068,'46356'),(19852,14069,'46360'),(19853,14069,'46361'),(19854,14070,'46365'),(19855,14071,'46366'),(19856,14072,'46368'),(19857,14073,'46371'),(19858,14074,'46372'),(19859,14075,'46373'),(19860,14076,'46374'),(19861,14077,'46375'),(19862,14078,'46376'),(19863,14079,'46377'),(19864,14080,'46379'),(19865,14081,'46380'),(19866,14082,'46381'),(19867,14083,'46382'),(19868,14084,'46383'),(19869,14084,'46384'),(19870,14084,'46385'),(19871,14085,'46390'),(19872,14086,'46391'),(19873,14087,'46392'),(19874,14088,'46393'),(19875,14089,'46394'),(19876,14090,'46401'),(19877,14090,'46402'),(19878,14090,'46403'),(19879,14090,'46404'),(19880,14090,'46406'),(19881,14090,'46407'),(19882,14090,'46408'),(19883,14090,'46409'),(19884,14091,'46405'),(19885,14092,'46410'),(19886,14092,'46411'),(19887,14093,'46501'),(19888,14094,'46502'),(19889,14095,'46504'),(19890,14096,'46506'),(19891,14097,'46507'),(19892,14098,'46508'),(19893,14099,'46510'),(19894,14100,'46511'),(19895,14101,'46513'),(19896,14102,'46514'),(19897,14102,'46515'),(19898,14102,'46516'),(19899,14102,'46517'),(19900,14103,'46524'),(19901,14104,'46526'),(19902,14104,'46527'),(19903,14104,'46528'),(19904,14105,'46530'),(19905,14106,'46531'),(19906,14107,'46532'),(19907,14108,'46534'),(19908,14109,'46536'),(19909,14110,'46537'),(19910,14111,'46538'),(19911,14112,'46539'),(19912,14113,'46540'),(19913,14114,'46542'),(19914,14115,'46543'),(19915,14116,'46544'),(19916,14116,'46545'),(19917,14116,'46546'),(19918,14117,'46550'),(19919,14118,'46552'),(19920,14119,'46553'),(19921,14120,'46554'),(19922,14121,'46555'),(19923,14122,'46556'),(19924,14123,'46561'),(19925,14124,'46562'),(19926,14125,'46563'),(19927,14126,'46565'),(19928,14127,'46566'),(19929,14128,'46567'),(19930,14129,'46570'),(19931,14130,'46571'),(19932,14131,'46572'),(19933,14132,'46573'),(19934,14133,'46574'),(19935,14134,'46580'),(19936,14134,'46581'),(19937,14134,'46582'),(19938,14135,'46590'),(19939,14136,'46595'),(19940,14137,'46601'),(19941,14137,'46604'),(19942,14137,'46612'),(19943,14137,'46613'),(19944,14137,'46614'),(19945,14137,'46615'),(19946,14137,'46616'),(19947,14137,'46617'),(19948,14137,'46619'),(19949,14137,'46620'),(19950,14137,'46624'),(19951,14137,'46626'),(19952,14137,'46628'),(19953,14137,'46629'),(19954,14137,'46634'),(19955,14137,'46635'),(19956,14137,'46637'),(19957,14137,'46660'),(19958,14137,'46680'),(19959,14137,'46699'),(19960,14138,'46701'),(19961,14139,'46702'),(19962,14140,'46703'),(19963,14141,'46704'),(19964,14142,'46705'),(19965,14143,'46706'),(19966,14144,'46710'),(19967,14145,'46711'),(19968,14146,'46713'),(19969,14147,'46714'),(19970,14148,'46720'),(19971,14149,'46721'),(19972,14150,'46723'),(19973,14151,'46725'),(19974,14152,'46730'),(19975,14153,'46731'),(19976,14154,'46732'),(19977,14155,'46733'),(19978,14156,'46737'),(19979,14157,'46738'),(19980,14158,'46740'),(19981,14159,'46741'),(19982,14160,'46742'),(19983,14161,'46743'),(19984,14162,'46745'),(19985,14163,'46746'),(19986,14164,'46747'),(19987,14165,'46748'),(19988,14166,'46750'),(19989,14167,'46755'),(19990,14168,'46759'),(19991,14169,'46760'),(19992,14170,'46761'),(19993,14171,'46763'),(19994,14172,'46764'),(19995,14173,'46765'),(19996,14174,'46766'),(19997,14175,'46767'),(19998,14176,'46769'),(19999,14177,'46770'),(20000,14178,'46771'),(20001,14179,'46772'),(20002,14180,'46773'),(20003,14181,'46774'),(20004,14182,'46776'),(20005,14183,'46777'),(20006,14184,'46778'),(20007,14185,'46779'),(20008,14186,'46780'),(20009,14187,'46781'),(20010,14188,'46782'),(20011,14189,'46783'),(20012,14190,'46784'),(20013,14191,'46785'),(20014,14192,'46786'),(20015,14193,'46787'),(20016,14194,'46788'),(20017,14195,'46789'),(20018,14196,'46791'),(20019,14197,'46792'),(20020,14198,'46793'),(20021,14199,'46794'),(20022,14200,'46795'),(20023,14201,'46796'),(20024,14202,'46797'),(20025,14203,'46798'),(20026,14204,'46799'),(20027,14205,'46801'),(20028,14205,'46802'),(20029,14205,'46803'),(20030,14205,'46804'),(20031,14205,'46805'),(20032,14205,'46806'),(20033,14205,'46807'),(20034,14205,'46808'),(20035,14205,'46809'),(20036,14205,'46814'),(20037,14205,'46815'),(20038,14205,'46816'),(20039,14205,'46818'),(20040,14205,'46819'),(20041,14205,'46825'),(20042,14205,'46835'),(20043,14205,'46845'),(20044,14205,'46850'),(20045,14205,'46851'),(20046,14205,'46852'),(20047,14205,'46853'),(20048,14205,'46854'),(20049,14205,'46855'),(20050,14205,'46856'),(20051,14205,'46857'),(20052,14205,'46858'),(20053,14205,'46859'),(20054,14205,'46860'),(20055,14205,'46861'),(20056,14205,'46862'),(20057,14205,'46863'),(20058,14205,'46864'),(20059,14205,'46865'),(20060,14205,'46866'),(20061,14205,'46867'),(20062,14205,'46868'),(20063,14205,'46869'),(20064,14205,'46885'),(20065,14205,'46895'),(20066,14205,'46896'),(20067,14205,'46897'),(20068,14205,'46898'),(20069,14205,'46899'),(20070,14206,'46901'),(20071,14206,'46902'),(20072,14206,'46903'),(20073,14206,'46904'),(20074,14207,'46910'),(20075,14208,'46911'),(20076,14209,'46912'),(20077,14210,'46913'),(20078,14211,'46914'),(20079,14212,'46915'),(20080,14213,'46916'),(20081,14214,'46917'),(20082,14215,'46919'),(20083,14216,'46920'),(20084,14217,'46921'),(20085,14218,'46922'),(20086,14219,'46923'),(20087,14220,'46926'),(20088,14221,'46928'),(20089,14222,'46929'),(20090,14223,'46930'),(20091,14224,'46931'),(20092,14225,'46932'),(20093,14226,'46933'),(20094,14227,'46935'),(20095,14228,'46936'),(20096,14229,'46937'),(20097,14230,'46938'),(20098,14231,'46939'),(20099,14232,'46940'),(20100,14233,'46941'),(20101,14234,'46942'),(20102,14235,'46943'),(20103,14236,'46945'),(20104,14237,'46946'),(20105,14238,'46947'),(20106,14239,'46950'),(20107,14240,'46951'),(20108,14241,'46952'),(20109,14241,'46953'),(20110,14242,'46957'),(20111,14243,'46958'),(20112,14244,'46959'),(20113,14245,'46960'),(20114,14246,'46961'),(20115,14247,'46962'),(20116,14248,'46965'),(20117,14249,'46967'),(20118,14250,'46968'),(20119,14251,'46970'),(20120,14252,'46971'),(20121,14253,'46974'),(20122,14254,'46975'),(20123,14255,'46977'),(20124,14256,'46978'),(20125,14257,'46979'),(20126,14258,'46980'),(20127,14259,'46982'),(20128,14260,'46984'),(20129,14261,'46985'),(20130,14262,'46986'),(20131,14263,'46987'),(20132,14264,'46988'),(20133,14265,'46989'),(20134,14266,'46990'),(20135,14267,'46991'),(20136,14268,'46992'),(20137,14269,'46994'),(20138,14270,'46995'),(20139,14271,'46996'),(20140,14272,'46998'),(20141,14273,'47001'),(20142,14274,'47003'),(20143,14275,'47006'),(20144,14276,'47010'),(20145,14277,'47011'),(20146,14278,'47012'),(20147,14279,'47016'),(20148,14280,'47017'),(20149,14281,'47018'),(20150,14282,'47019'),(20151,14283,'47020'),(20152,14284,'47021'),(20153,14285,'47022'),(20154,14286,'47023'),(20155,14287,'47024'),(20156,14288,'47025'),(20157,14289,'47030'),(20158,14290,'47031'),(20159,14291,'47032'),(20160,14292,'47033'),(20161,14293,'47034'),(20162,14294,'47035'),(20163,14295,'47036'),(20164,14296,'47037'),(20165,14297,'47038'),(20166,14298,'47039'),(20167,14299,'47040'),(20168,14300,'47041'),(20169,14301,'47042'),(20170,14302,'47043'),(20171,14303,'47060'),(20172,14304,'47102'),(20173,14305,'47104'),(20174,14306,'47106'),(20175,14307,'47107'),(20176,14308,'47108'),(20177,14309,'47110'),(20178,14310,'47111'),(20179,14311,'47112'),(20180,14312,'47114'),(20181,14313,'47115'),(20182,14314,'47116'),(20183,14315,'47117'),(20184,14316,'47118'),(20185,14317,'47119'),(20186,14318,'47120'),(20187,14319,'47122'),(20188,14320,'47123'),(20189,14321,'47124'),(20190,14322,'47125'),(20191,14323,'47126'),(20192,14324,'47129'),(20193,14325,'47130'),(20194,14325,'47131'),(20195,14325,'47132'),(20196,14325,'47133'),(20197,14325,'47134'),(20198,14325,'47144'),(20199,14325,'47190'),(20200,14325,'47199'),(20201,14326,'47135'),(20202,14327,'47136'),(20203,14328,'47137'),(20204,14329,'47138'),(20205,14330,'47139'),(20206,14331,'47140'),(20207,14332,'47141'),(20208,14333,'47142'),(20209,14334,'47143'),(20210,14335,'47145'),(20211,14336,'47146'),(20212,14337,'47147'),(20213,14338,'47150'),(20214,14338,'47151'),(20215,14339,'47160'),(20216,14340,'47161'),(20217,14341,'47162'),(20218,14342,'47163'),(20219,14343,'47164'),(20220,14344,'47165'),(20221,14345,'47166'),(20222,14346,'47167'),(20223,14347,'47170'),(20224,14348,'47172'),(20225,14349,'47174'),(20226,14350,'47175'),(20227,14351,'47177'),(20228,14352,'47201'),(20229,14352,'47202'),(20230,14352,'47203'),(20231,14353,'47220'),(20232,14354,'47223'),(20233,14355,'47224'),(20234,14356,'47225'),(20235,14357,'47226'),(20236,14358,'47227'),(20237,14359,'47228'),(20238,14360,'47229'),(20239,14361,'47230'),(20240,14362,'47231'),(20241,14363,'47232'),(20242,14364,'47234'),(20243,14365,'47235'),(20244,14366,'47236'),(20245,14367,'47240'),(20246,14368,'47243'),(20247,14369,'47244'),(20248,14370,'47245'),(20249,14371,'47246'),(20250,14372,'47247'),(20251,14373,'47249'),(20252,14374,'47250'),(20253,14375,'47260'),(20254,14376,'47261'),(20255,14377,'47262'),(20256,14378,'47263'),(20257,14379,'47264'),(20258,14380,'47265'),(20259,14381,'47270'),(20260,14382,'47272'),(20261,14383,'47273'),(20262,14384,'47274'),(20263,14385,'47280'),(20264,14386,'47281'),(20265,14387,'47282'),(20266,14388,'47283'),(20267,14389,'47302'),(20268,14389,'47303'),(20269,14389,'47304'),(20270,14389,'47305'),(20271,14389,'47306'),(20272,14389,'47307'),(20273,14389,'47308'),(20274,14390,'47320'),(20275,14391,'47322'),(20276,14392,'47324'),(20277,14393,'47325'),(20278,14394,'47326'),(20279,14395,'47327'),(20280,14396,'47330'),(20281,14397,'47331'),(20282,14398,'47334'),(20283,14399,'47335'),(20284,14400,'47336'),(20285,14401,'47337'),(20286,14402,'47338'),(20287,14403,'47339'),(20288,14404,'47340'),(20289,14405,'47341'),(20290,14406,'47342'),(20291,14407,'47344'),(20292,14408,'47345'),(20293,14409,'47346'),(20294,14410,'47348'),(20295,14411,'47351'),(20296,14412,'47352'),(20297,14413,'47353'),(20298,14414,'47354'),(20299,14415,'47355'),(20300,14416,'47356'),(20301,14417,'47357'),(20302,14418,'47358'),(20303,14419,'47359'),(20304,14420,'47360'),(20305,14421,'47361'),(20306,14422,'47362'),(20307,14423,'47366'),(20308,14424,'47367'),(20309,14425,'47368'),(20310,14426,'47369'),(20311,14427,'47370'),(20312,14428,'47371'),(20313,14429,'47373'),(20314,14430,'47374'),(20315,14430,'47375'),(20316,14431,'47380'),(20317,14432,'47381'),(20318,14433,'47382'),(20319,14434,'47383'),(20320,14435,'47384'),(20321,14436,'47385'),(20322,14437,'47386'),(20323,14438,'47387'),(20324,14439,'47388'),(20325,14440,'47390'),(20326,14441,'47392'),(20327,14442,'47393'),(20328,14443,'47394'),(20329,14444,'47396'),(20330,14445,'47401'),(20331,14445,'47402'),(20332,14445,'47403'),(20333,14445,'47404'),(20334,14445,'47405'),(20335,14445,'47406'),(20336,14445,'47407'),(20337,14445,'47408'),(20338,14445,'47490'),(20339,14446,'47420'),(20340,14447,'47421'),(20341,14448,'47424'),(20342,14449,'47426'),(20343,14450,'47427'),(20344,14451,'47429'),(20345,14452,'47430'),(20346,14453,'47431'),(20347,14454,'47432'),(20348,14455,'47433'),(20349,14456,'47434'),(20350,14457,'47435'),(20351,14458,'47436'),(20352,14459,'47437'),(20353,14460,'47438'),(20354,14461,'47439'),(20355,14462,'47441'),(20356,14463,'47443'),(20357,14464,'47445'),(20358,14465,'47446'),(20359,14466,'47448'),(20360,14467,'47449'),(20361,14468,'47451'),(20362,14469,'47452'),(20363,14470,'47453'),(20364,14471,'47454'),(20365,14472,'47455'),(20366,14473,'47456'),(20367,14474,'47457'),(20368,14475,'47458'),(20369,14476,'47459'),(20370,14477,'47460'),(20371,14478,'47462'),(20372,14479,'47463'),(20373,14480,'47464'),(20374,14481,'47465'),(20375,14482,'47467'),(20376,14483,'47468'),(20377,14484,'47469'),(20378,14485,'47470'),(20379,14486,'47471'),(20380,14487,'47501'),(20381,14488,'47512'),(20382,14489,'47513'),(20383,14490,'47514'),(20384,14491,'47515'),(20385,14492,'47516'),(20386,14493,'47519'),(20387,14494,'47520'),(20388,14495,'47521'),(20389,14496,'47522'),(20390,14497,'47523'),(20391,14498,'47524'),(20392,14499,'47525'),(20393,14500,'47527'),(20394,14501,'47528'),(20395,14502,'47529'),(20396,14503,'47531'),(20397,14504,'47532'),(20398,14505,'47535'),(20399,14506,'47536'),(20400,14507,'47537'),(20401,14508,'47541'),(20402,14509,'47542'),(20403,14510,'47545'),(20404,14511,'47546'),(20405,14511,'47547'),(20406,14511,'47549'),(20407,14512,'47550'),(20408,14513,'47551'),(20409,14514,'47552'),(20410,14515,'47553'),(20411,14516,'47556'),(20412,14517,'47557'),(20413,14518,'47558'),(20414,14519,'47561'),(20415,14520,'47562'),(20416,14521,'47564'),(20417,14522,'47567'),(20418,14523,'47568'),(20419,14524,'47573'),(20420,14525,'47574'),(20421,14526,'47575'),(20422,14527,'47576'),(20423,14528,'47577'),(20424,14529,'47578'),(20425,14530,'47579'),(20426,14531,'47580'),(20427,14532,'47581'),(20428,14533,'47584'),(20429,14534,'47585'),(20430,14535,'47586'),(20431,14536,'47588'),(20432,14537,'47590'),(20433,14538,'47591'),(20434,14539,'47596'),(20435,14540,'47597'),(20436,14541,'47598'),(20437,14542,'47601'),(20438,14543,'47610'),(20439,14544,'47611'),(20440,14545,'47612'),(20441,14546,'47613'),(20442,14547,'47614'),(20443,14548,'47615'),(20444,14549,'47616'),(20445,14550,'47617'),(20446,14551,'47618'),(20447,14552,'47619'),(20448,14553,'47620'),(20449,14554,'47629'),(20450,14554,'47630'),(20451,14555,'47631'),(20452,14556,'47633'),(20453,14557,'47634'),(20454,14558,'47635'),(20455,14559,'47637'),(20456,14560,'47638'),(20457,14561,'47639'),(20458,14562,'47640'),(20459,14563,'47647'),(20460,14564,'47648'),(20461,14565,'47649'),(20462,14566,'47654'),(20463,14567,'47660'),(20464,14568,'47665'),(20465,14569,'47666'),(20466,14570,'47670'),(20467,14571,'47683'),(20468,14572,'47701'),(20469,14572,'47702'),(20470,14572,'47703'),(20471,14572,'47704'),(20472,14572,'47705'),(20473,14572,'47706'),(20474,14572,'47708'),(20475,14572,'47710'),(20476,14572,'47711'),(20477,14572,'47712'),(20478,14572,'47713'),(20479,14572,'47714'),(20480,14572,'47715'),(20481,14572,'47716'),(20482,14572,'47719'),(20483,14572,'47720'),(20484,14572,'47721'),(20485,14572,'47722'),(20486,14572,'47724'),(20487,14572,'47725'),(20488,14572,'47727'),(20489,14572,'47728'),(20490,14572,'47730'),(20491,14572,'47731'),(20492,14572,'47732'),(20493,14572,'47733'),(20494,14572,'47734'),(20495,14572,'47735'),(20496,14572,'47736'),(20497,14572,'47737'),(20498,14572,'47739'),(20499,14572,'47740'),(20500,14572,'47741'),(20501,14572,'47744'),(20502,14572,'47747'),(20503,14572,'47750'),(20504,14573,'47801'),(20505,14573,'47802'),(20506,14573,'47803'),(20507,14573,'47804'),(20508,14573,'47805'),(20509,14573,'47807'),(20510,14573,'47808'),(20511,14573,'47809'),(20512,14573,'47811'),(20513,14573,'47812'),(20514,14573,'47813'),(20515,14573,'47814'),(20516,14574,'47830'),(20517,14575,'47831'),(20518,14576,'47832'),(20519,14577,'47833'),(20520,14578,'47834'),(20521,14579,'47836'),(20522,14580,'47837'),(20523,14581,'47838'),(20524,14582,'47840'),(20525,14583,'47841'),(20526,14584,'47842'),(20527,14585,'47845'),(20528,14586,'47846'),(20529,14587,'47847'),(20530,14588,'47848'),(20531,14589,'47849'),(20532,14590,'47850'),(20533,14591,'47851'),(20534,14592,'47852'),(20535,14593,'47853'),(20536,14594,'47854'),(20537,14595,'47855'),(20538,14596,'47856'),(20539,14597,'47857'),(20540,14598,'47858'),(20541,14599,'47859'),(20542,14600,'47860'),(20543,14601,'47861'),(20544,14602,'47862'),(20545,14603,'47863'),(20546,14604,'47864'),(20547,14605,'47865'),(20548,14606,'47866'),(20549,14607,'47868'),(20550,14608,'47869'),(20551,14609,'47870'),(20552,14610,'47871'),(20553,14611,'47872'),(20554,14612,'47874'),(20555,14613,'47875'),(20556,14614,'47876'),(20557,14615,'47878'),(20558,14616,'47879'),(20559,14617,'47880'),(20560,14618,'47881'),(20561,14619,'47882'),(20562,14620,'47884'),(20563,14621,'47885'),(20564,14622,'47901'),(20565,14622,'47902'),(20566,14622,'47903'),(20567,14622,'47904'),(20568,14622,'47905'),(20569,14622,'47909'),(20570,14623,'47906'),(20571,14623,'47907'),(20572,14623,'47996'),(20573,14624,'47916'),(20574,14625,'47917'),(20575,14626,'47918'),(20576,14627,'47920'),(20577,14628,'47921'),(20578,14629,'47922'),(20579,14630,'47923'),(20580,14631,'47924'),(20581,14632,'47925'),(20582,14633,'47926'),(20583,14634,'47928'),(20584,14635,'47929'),(20585,14636,'47930'),(20586,14637,'47932'),(20587,14638,'47933'),(20588,14638,'47934'),(20589,14638,'47935'),(20590,14638,'47936'),(20591,14638,'47937'),(20592,14638,'47938'),(20593,14638,'47939'),(20594,14639,'47940'),(20595,14640,'47941'),(20596,14641,'47942'),(20597,14641,'47976'),(20598,14642,'47943'),(20599,14643,'47944'),(20600,14644,'47946'),(20601,14645,'47948'),(20602,14646,'47949'),(20603,14647,'47950'),(20604,14648,'47951'),(20605,14649,'47952'),(20606,14650,'47954'),(20607,14651,'47955'),(20608,14652,'47957'),(20609,14653,'47958'),(20610,14654,'47959'),(20611,14655,'47960'),(20612,14656,'47962'),(20613,14657,'47963'),(20614,14658,'47964'),(20615,14659,'47965'),(20616,14660,'47966'),(20617,14661,'47967'),(20618,14662,'47968'),(20619,14663,'47969'),(20620,14664,'47970'),(20621,14665,'47971'),(20622,14666,'47974'),(20623,14667,'47975'),(20624,14668,'47977'),(20625,14669,'47978'),(20626,14670,'47980'),(20627,14671,'47981'),(20628,14672,'47982'),(20629,14673,'47983'),(20630,14674,'47984'),(20631,14675,'47986'),(20632,14676,'47987'),(20633,14677,'47988'),(20634,14678,'47989'),(20635,14679,'47990'),(20636,14680,'47991'),(20637,14681,'47992'),(20638,14682,'47993'),(20639,14683,'47994'),(20640,14684,'47995'),(20641,14685,'47997'),(20642,14686,'48001'),(20643,14687,'48002'),(20644,14688,'48003'),(20645,14689,'48004'),(20646,14690,'48005'),(20647,14691,'48006'),(20648,14692,'48007'),(20649,14692,'48083'),(20650,14692,'48084'),(20651,14692,'48098'),(20652,14692,'48099'),(20653,14693,'48009'),(20654,14693,'48012'),(20655,14694,'48014'),(20656,14695,'48015'),(20657,14696,'48017'),(20658,14696,'48398'),(20659,14697,'48021'),(20660,14698,'48022'),(20661,14699,'48023'),(20662,14700,'48025'),(20663,14701,'48026'),(20664,14702,'48027'),(20665,14703,'48028'),(20666,14704,'48030'),(20667,14705,'48032'),(20668,14706,'48034'),(20669,14706,'48037'),(20670,14706,'48075'),(20671,14706,'48076'),(20672,14706,'48086'),(20673,14707,'48035'),(20674,14707,'48036'),(20675,14707,'48038'),(20676,14708,'48039'),(20677,14709,'48040'),(20678,14710,'48041'),(20679,14711,'48042'),(20680,14711,'48044'),(20681,14712,'48043'),(20682,14712,'48046'),(20683,14713,'48045'),(20684,14714,'48047'),(20685,14714,'48051'),(20686,14715,'48048'),(20687,14715,'48050'),(20688,14716,'48049'),(20689,14717,'48054'),(20690,14718,'48059'),(20691,14719,'48060'),(20692,14719,'48061'),(20693,14720,'48062'),(20694,14721,'48063'),(20695,14722,'48064'),(20696,14723,'48065'),(20697,14724,'48066'),(20698,14725,'48067'),(20699,14725,'48068'),(20700,14725,'48073'),(20701,14726,'48069'),(20702,14727,'48070'),(20703,14728,'48071'),(20704,14729,'48072'),(20705,14730,'48074'),(20706,14731,'48079'),(20707,14732,'48080'),(20708,14732,'48081'),(20709,14732,'48082'),(20710,14733,'48089'),(20711,14733,'48090'),(20712,14733,'48091'),(20713,14733,'48092'),(20714,14733,'48093'),(20715,14733,'48397'),(20716,14734,'48094'),(20717,14734,'48095'),(20718,14735,'48096'),(20719,14736,'48097'),(20720,14737,'48101'),(20721,14738,'48103'),(20722,14738,'48104'),(20723,14738,'48105'),(20724,14738,'48106'),(20725,14738,'48107'),(20726,14738,'48108'),(20727,14738,'48109'),(20728,14738,'48113'),(20729,14739,'48110'),(20730,14740,'48111'),(20731,14740,'48112'),(20732,14741,'48114'),(20733,14741,'48116'),(20734,14742,'48115'),(20735,14743,'48117'),(20736,14744,'48118'),(20737,14745,'48120'),(20738,14745,'48121'),(20739,14745,'48123'),(20740,14745,'48124'),(20741,14745,'48126'),(20742,14745,'48128'),(20743,14746,'48122'),(20744,14747,'48125'),(20745,14747,'48127'),(20746,14748,'48130'),(20747,14749,'48131'),(20748,14750,'48133'),(20749,14751,'48134'),(20750,14752,'48135'),(20751,14752,'48136'),(20752,14753,'48137'),(20753,14754,'48138'),(20754,14755,'48139'),(20755,14756,'48140'),(20756,14757,'48141'),(20757,14758,'48143'),(20758,14759,'48144'),(20759,14760,'48145'),(20760,14761,'48146'),(20761,14762,'48150'),(20762,14762,'48151'),(20763,14762,'48152'),(20764,14762,'48153'),(20765,14762,'48154'),(20766,14763,'48157'),(20767,14764,'48158'),(20768,14765,'48159'),(20769,14766,'48160'),(20770,14767,'48161'),(20771,14767,'48162'),(20772,14768,'48164'),(20773,14769,'48165'),(20774,14770,'48166'),(20775,14771,'48167'),(20776,14772,'48169'),(20777,14773,'48170'),(20778,14774,'48173'),(20779,14775,'48174'),(20780,14776,'48175'),(20781,14777,'48176'),(20782,14778,'48177'),(20783,14779,'48178'),(20784,14780,'48179'),(20785,14781,'48180'),(20786,14782,'48182'),(20787,14783,'48183'),(20788,14784,'48184'),(20789,14785,'48185'),(20790,14785,'48186'),(20791,14786,'48187'),(20792,14786,'48188'),(20793,14787,'48189'),(20794,14788,'48190'),(20795,14789,'48191'),(20796,14790,'48192'),(20797,14791,'48195'),(20798,14792,'48197'),(20799,14792,'48198'),(20800,14793,'48201'),(20801,14793,'48202'),(20802,14793,'48204'),(20803,14793,'48205'),(20804,14793,'48206'),(20805,14793,'48207'),(20806,14793,'48208'),(20807,14793,'48209'),(20808,14793,'48210'),(20809,14793,'48211'),(20810,14793,'48213'),(20811,14793,'48214'),(20812,14793,'48215'),(20813,14793,'48216'),(20814,14793,'48217'),(20815,14793,'48219'),(20816,14793,'48221'),(20817,14793,'48222'),(20818,14793,'48223'),(20819,14793,'48224'),(20820,14793,'48226'),(20821,14793,'48227'),(20822,14793,'48228'),(20823,14793,'48231'),(20824,14793,'48232'),(20825,14793,'48233'),(20826,14793,'48234'),(20827,14793,'48235'),(20828,14793,'48238'),(20829,14793,'48242'),(20830,14793,'48243'),(20831,14793,'48244'),(20832,14793,'48254'),(20833,14793,'48255'),(20834,14793,'48258'),(20835,14793,'48260'),(20836,14793,'48264'),(20837,14793,'48265'),(20838,14793,'48266'),(20839,14793,'48267'),(20840,14793,'48268'),(20841,14793,'48269'),(20842,14793,'48272'),(20843,14793,'48274'),(20844,14793,'48275'),(20845,14793,'48277'),(20846,14793,'48278'),(20847,14793,'48279'),(20848,14793,'48288'),(20849,14793,'48295'),(20850,14793,'48297'),(20851,14793,'48299'),(20852,14794,'48203'),(20853,14795,'48212'),(20854,14796,'48218'),(20855,14797,'48220'),(20856,14798,'48225'),(20857,14799,'48229'),(20858,14800,'48230'),(20859,14800,'48236'),(20860,14801,'48237'),(20861,14802,'48239'),(20862,14802,'48240'),(20863,14803,'48301'),(20864,14803,'48302'),(20865,14803,'48303'),(20866,14803,'48304'),(20867,14804,'48306'),(20868,14804,'48307'),(20869,14804,'48308'),(20870,14804,'48309'),(20871,14805,'48310'),(20872,14805,'48311'),(20873,14805,'48312'),(20874,14805,'48313'),(20875,14805,'48314'),(20876,14806,'48315'),(20877,14806,'48316'),(20878,14806,'48317'),(20879,14806,'48318'),(20880,14807,'48320'),(20881,14808,'48321'),(20882,14808,'48326'),(20883,14809,'48322'),(20884,14809,'48323'),(20885,14809,'48324'),(20886,14809,'48325'),(20887,14810,'48327'),(20888,14810,'48328'),(20889,14810,'48329'),(20890,14811,'48330'),(20891,14812,'48331'),(20892,14812,'48332'),(20893,14812,'48333'),(20894,14812,'48334'),(20895,14812,'48335'),(20896,14812,'48336'),(20897,14813,'48340'),(20898,14813,'48341'),(20899,14813,'48342'),(20900,14813,'48343'),(20901,14814,'48346'),(20902,14814,'48347'),(20903,14814,'48348'),(20904,14815,'48350'),(20905,14816,'48353'),(20906,14817,'48356'),(20907,14817,'48357'),(20908,14818,'48359'),(20909,14818,'48360'),(20910,14818,'48361'),(20911,14818,'48362'),(20912,14819,'48363'),(20913,14820,'48366'),(20914,14821,'48367'),(20915,14822,'48370'),(20916,14822,'48371'),(20917,14823,'48374'),(20918,14823,'48375'),(20919,14823,'48376'),(20920,14823,'48377'),(20921,14824,'48380'),(20922,14824,'48381'),(20923,14825,'48382'),(20924,14826,'48383'),(20925,14826,'48386'),(20926,14827,'48387'),(20927,14828,'48390'),(20928,14828,'48391'),(20929,14829,'48393'),(20930,14830,'48401'),(20931,14831,'48410'),(20932,14832,'48411'),(20933,14833,'48412'),(20934,14834,'48413'),(20935,14835,'48414'),(20936,14836,'48415'),(20937,14837,'48416'),(20938,14838,'48417'),(20939,14839,'48418'),(20940,14840,'48419'),(20941,14841,'48420'),(20942,14842,'48421'),(20943,14843,'48422'),(20944,14844,'48423'),(20945,14845,'48426'),(20946,14846,'48427'),(20947,14847,'48428'),(20948,14848,'48429'),(20949,14849,'48430'),(20950,14850,'48432'),(20951,14851,'48433'),(20952,14852,'48434'),(20953,14853,'48435'),(20954,14854,'48436'),(20955,14855,'48437'),(20956,14856,'48438'),(20957,14857,'48439'),(20958,14858,'48440'),(20959,14859,'48441'),(20960,14860,'48442'),(20961,14861,'48444'),(20962,14862,'48445'),(20963,14863,'48446'),(20964,14864,'48449'),(20965,14865,'48450'),(20966,14866,'48451'),(20967,14867,'48453'),(20968,14868,'48454'),(20969,14869,'48455'),(20970,14870,'48456'),(20971,14871,'48457'),(20972,14872,'48458'),(20973,14873,'48460'),(20974,14874,'48461'),(20975,14875,'48462'),(20976,14876,'48463'),(20977,14877,'48464'),(20978,14878,'48465'),(20979,14879,'48466'),(20980,14880,'48467'),(20981,14881,'48468'),(20982,14882,'48469'),(20983,14883,'48470'),(20984,14884,'48471'),(20985,14885,'48472'),(20986,14886,'48473'),(20987,14887,'48475'),(20988,14888,'48476'),(20989,14889,'48501'),(20990,14889,'48502'),(20991,14889,'48503'),(20992,14889,'48504'),(20993,14889,'48505'),(20994,14889,'48506'),(20995,14889,'48507'),(20996,14889,'48531'),(20997,14889,'48532'),(20998,14889,'48550'),(20999,14889,'48551'),(21000,14889,'48552'),(21001,14889,'48553'),(21002,14889,'48554'),(21003,14889,'48555'),(21004,14889,'48556'),(21005,14889,'48557'),(21006,14889,'48559'),(21007,14890,'48509'),(21008,14890,'48519'),(21009,14890,'48529'),(21010,14891,'48601'),(21011,14891,'48602'),(21012,14891,'48603'),(21013,14891,'48604'),(21014,14891,'48605'),(21015,14891,'48606'),(21016,14891,'48607'),(21017,14891,'48608'),(21018,14891,'48609'),(21019,14891,'48663'),(21020,14892,'48610'),(21021,14893,'48611'),(21022,14894,'48612'),(21023,14895,'48613'),(21024,14896,'48614'),(21025,14897,'48615'),(21026,14898,'48616'),(21027,14899,'48617'),(21028,14900,'48618'),(21029,14901,'48619'),(21030,14902,'48620'),(21031,14903,'48621'),(21032,14904,'48622'),(21033,14905,'48623'),(21034,14906,'48624'),(21035,14907,'48625'),(21036,14908,'48626'),(21037,14909,'48627'),(21038,14910,'48628'),(21039,14911,'48629'),(21040,14912,'48630'),(21041,14913,'48631'),(21042,14914,'48632'),(21043,14915,'48633'),(21044,14916,'48634'),(21045,14917,'48635'),(21046,14918,'48636'),(21047,14919,'48637'),(21048,14920,'48640'),(21049,14920,'48641'),(21050,14920,'48642'),(21051,14920,'48667'),(21052,14920,'48670'),(21053,14920,'48674'),(21054,14920,'48686'),(21055,14921,'48647'),(21056,14922,'48649'),(21057,14923,'48650'),(21058,14924,'48651'),(21059,14925,'48652'),(21060,14926,'48653'),(21061,14927,'48654'),(21062,14928,'48655'),(21063,14929,'48656'),(21064,14930,'48657'),(21065,14931,'48658'),(21066,14932,'48659'),(21067,14933,'48661'),(21068,14934,'48662'),(21069,14935,'48701'),(21070,14936,'48703'),(21071,14937,'48705'),(21072,14938,'48706'),(21073,14938,'48707'),(21074,14938,'48708'),(21075,14939,'48710'),(21076,14940,'48720'),(21077,14941,'48721'),(21078,14942,'48722'),(21079,14943,'48723'),(21080,14944,'48724'),(21081,14945,'48725'),(21082,14946,'48726'),(21083,14947,'48727'),(21084,14948,'48728'),(21085,14949,'48729'),(21086,14950,'48730'),(21087,14951,'48731'),(21088,14952,'48732'),(21089,14953,'48733'),(21090,14954,'48734'),(21091,14954,'48787'),(21092,14955,'48735'),(21093,14956,'48736'),(21094,14957,'48737'),(21095,14958,'48738'),(21096,14959,'48739'),(21097,14960,'48740'),(21098,14961,'48741'),(21099,14962,'48742'),(21100,14963,'48743'),(21101,14964,'48744'),(21102,14965,'48745'),(21103,14966,'48746'),(21104,14967,'48747'),(21105,14968,'48748'),(21106,14969,'48749'),(21107,14970,'48750'),(21108,14971,'48754'),(21109,14972,'48755'),(21110,14973,'48756'),(21111,14974,'48757'),(21112,14975,'48758'),(21113,14976,'48759'),(21114,14977,'48760'),(21115,14978,'48761'),(21116,14979,'48762'),(21117,14980,'48763'),(21118,14980,'48764'),(21119,14981,'48765'),(21120,14982,'48766'),(21121,14983,'48767'),(21122,14984,'48768'),(21123,14985,'48769'),(21124,14986,'48770'),(21125,14987,'48801'),(21126,14987,'48802'),(21127,14988,'48804'),(21128,14988,'48858'),(21129,14988,'48859'),(21130,14989,'48805'),(21131,14989,'48864'),(21132,14990,'48806'),(21133,14991,'48807'),(21134,14992,'48808'),(21135,14993,'48809'),(21136,14994,'48811'),(21137,14995,'48812'),(21138,14996,'48813'),(21139,14997,'48815'),(21140,14998,'48816'),(21141,14999,'48817'),(21142,15000,'48818'),(21143,15001,'48819'),(21144,15002,'48820'),(21145,15003,'48821'),(21146,15004,'48822'),(21147,15005,'48823'),(21148,15005,'48824'),(21149,15005,'48825'),(21150,15005,'48826'),(21151,15006,'48827'),(21152,15007,'48829'),(21153,15008,'48830'),(21154,15009,'48831'),(21155,15010,'48832'),(21156,15011,'48833'),(21157,15012,'48834'),(21158,15013,'48835'),(21159,15014,'48836'),(21160,15015,'48837'),(21161,15016,'48838'),(21162,15017,'48840'),(21163,15018,'48841'),(21164,15019,'48842'),(21165,15020,'48843'),(21166,15020,'48844'),(21167,15021,'48845'),(21168,15022,'48846'),(21169,15023,'48847'),(21170,15024,'48848'),(21171,15025,'48849'),(21172,15026,'48850'),(21173,15027,'48851'),(21174,15028,'48852'),(21175,15029,'48853'),(21176,15030,'48854'),(21177,15031,'48856'),(21178,15032,'48857'),(21179,15033,'48860'),(21180,15034,'48861'),(21181,15035,'48862'),(21182,15036,'48863'),(21183,15037,'48865'),(21184,15038,'48866'),(21185,15039,'48867'),(21186,15040,'48870'),(21187,15041,'48871'),(21188,15042,'48872'),(21189,15043,'48873'),(21190,15044,'48874'),(21191,15045,'48875'),(21192,15046,'48876'),(21193,15047,'48877'),(21194,15048,'48878'),(21195,15049,'48879'),(21196,15050,'48880'),(21197,15051,'48881'),(21198,15052,'48882'),(21199,15053,'48883'),(21200,15054,'48884'),(21201,15055,'48885'),(21202,15056,'48886'),(21203,15057,'48887'),(21204,15058,'48888'),(21205,15059,'48889'),(21206,15060,'48890'),(21207,15061,'48891'),(21208,15062,'48892'),(21209,15063,'48893'),(21210,15064,'48894'),(21211,15065,'48895'),(21212,15066,'48896'),(21213,15067,'48897'),(21214,15068,'48901'),(21215,15068,'48906'),(21216,15068,'48907'),(21217,15068,'48908'),(21218,15068,'48909'),(21219,15068,'48910'),(21220,15068,'48911'),(21221,15068,'48912'),(21222,15068,'48913'),(21223,15068,'48915'),(21224,15068,'48916'),(21225,15068,'48917'),(21226,15068,'48918'),(21227,15068,'48919'),(21228,15068,'48921'),(21229,15068,'48922'),(21230,15068,'48924'),(21231,15068,'48929'),(21232,15068,'48930'),(21233,15068,'48933'),(21234,15068,'48937'),(21235,15068,'48950'),(21236,15068,'48956'),(21237,15068,'48980'),(21238,15069,'49001'),(21239,15069,'49003'),(21240,15069,'49004'),(21241,15069,'49005'),(21242,15069,'49006'),(21243,15069,'49007'),(21244,15069,'49008'),(21245,15069,'49009'),(21246,15069,'49019'),(21247,15070,'49002'),(21248,15070,'49024'),(21249,15070,'49081'),(21250,15071,'49010'),(21251,15072,'49011'),(21252,15073,'49012'),(21253,15074,'49013'),(21254,15075,'49014'),(21255,15075,'49015'),(21256,15075,'49016'),(21257,15075,'49017'),(21258,15075,'49018'),(21259,15076,'49020'),(21260,15077,'49021'),(21261,15078,'49022'),(21262,15078,'49023'),(21263,15079,'49026'),(21264,15080,'49027'),(21265,15081,'49028'),(21266,15082,'49029'),(21267,15083,'49030'),(21268,15084,'49031'),(21269,15085,'49032'),(21270,15086,'49033'),(21271,15087,'49034'),(21272,15088,'49035'),(21273,15089,'49036'),(21274,15090,'49038'),(21275,15091,'49039'),(21276,15092,'49040'),(21277,15093,'49041'),(21278,15094,'49042'),(21279,15095,'49043'),(21280,15096,'49045'),(21281,15097,'49046'),(21282,15098,'49047'),(21283,15099,'49050'),(21284,15100,'49051'),(21285,15101,'49052'),(21286,15102,'49053'),(21287,15103,'49055'),(21288,15104,'49056'),(21289,15105,'49057'),(21290,15106,'49058'),(21291,15107,'49060'),(21292,15108,'49061'),(21293,15109,'49062'),(21294,15110,'49063'),(21295,15111,'49064'),(21296,15112,'49065'),(21297,15113,'49066'),(21298,15114,'49067'),(21299,15115,'49068'),(21300,15115,'49069'),(21301,15116,'49070'),(21302,15117,'49071'),(21303,15118,'49072'),(21304,15119,'49073'),(21305,15120,'49074'),(21306,15121,'49075'),(21307,15122,'49076'),(21308,15123,'49077'),(21309,15124,'49078'),(21310,15125,'49079'),(21311,15126,'49080'),(21312,15127,'49082'),(21313,15128,'49083'),(21314,15129,'49084'),(21315,15130,'49085'),(21316,15131,'49087'),(21317,15132,'49088'),(21318,15133,'49089'),(21319,15134,'49090'),(21320,15135,'49091'),(21321,15136,'49092'),(21322,15137,'49093'),(21323,15138,'49094'),(21324,15139,'49095'),(21325,15140,'49096'),(21326,15141,'49097'),(21327,15142,'49098'),(21328,15143,'49099'),(21329,15144,'49101'),(21330,15145,'49102'),(21331,15146,'49103'),(21332,15146,'49104'),(21333,15147,'49106'),(21334,15148,'49107'),(21335,15149,'49111'),(21336,15150,'49112'),(21337,15151,'49113'),(21338,15152,'49115'),(21339,15153,'49116'),(21340,15154,'49117'),(21341,15155,'49119'),(21342,15156,'49120'),(21343,15156,'49121'),(21344,15157,'49125'),(21345,15158,'49126'),(21346,15159,'49127'),(21347,15160,'49128'),(21348,15161,'49129'),(21349,15162,'49130'),(21350,15163,'49201'),(21351,15163,'49202'),(21352,15163,'49203'),(21353,15163,'49204'),(21354,15164,'49220'),(21355,15165,'49221'),(21356,15166,'49224'),(21357,15167,'49227'),(21358,15168,'49228'),(21359,15169,'49229'),(21360,15170,'49230'),(21361,15171,'49232'),(21362,15172,'49233'),(21363,15173,'49234'),(21364,15174,'49235'),(21365,15175,'49236'),(21366,15176,'49237'),(21367,15177,'49238'),(21368,15178,'49239'),(21369,15179,'49240'),(21370,15180,'49241'),(21371,15181,'49242'),(21372,15182,'49245'),(21373,15183,'49246'),(21374,15184,'49247'),(21375,15185,'49248'),(21376,15186,'49249'),(21377,15187,'49250'),(21378,15188,'49251'),(21379,15189,'49252'),(21380,15190,'49253'),(21381,15191,'49254'),(21382,15192,'49255'),(21383,15193,'49256'),(21384,15194,'49257'),(21385,15195,'49258'),(21386,15196,'49259'),(21387,15197,'49261'),(21388,15198,'49262'),(21389,15199,'49263'),(21390,15200,'49264'),(21391,15201,'49265'),(21392,15202,'49266'),(21393,15203,'49267'),(21394,15204,'49268'),(21395,15205,'49269'),(21396,15206,'49270'),(21397,15207,'49271'),(21398,15208,'49272'),(21399,15209,'49274'),(21400,15210,'49275'),(21401,15211,'49276'),(21402,15212,'49277'),(21403,15213,'49278'),(21404,15214,'49279'),(21405,15215,'49280'),(21406,15216,'49281'),(21407,15217,'49282'),(21408,15218,'49283'),(21409,15219,'49284'),(21410,15220,'49285'),(21411,15221,'49286'),(21412,15222,'49287'),(21413,15223,'49288'),(21414,15224,'49289'),(21415,15225,'49301'),(21416,15225,'49355'),(21417,15225,'49356'),(21418,15225,'49357'),(21419,15226,'49302'),(21420,15227,'49303'),(21421,15228,'49304'),(21422,15229,'49305'),(21423,15230,'49306'),(21424,15231,'49307'),(21425,15232,'49309'),(21426,15233,'49310'),(21427,15234,'49311'),(21428,15235,'49312'),(21429,15236,'49314'),(21430,15237,'49315'),(21431,15238,'49316'),(21432,15239,'49317'),(21433,15240,'49318'),(21434,15241,'49319'),(21435,15242,'49320'),(21436,15243,'49321'),(21437,15244,'49322'),(21438,15245,'49323'),(21439,15246,'49325'),(21440,15247,'49326'),(21441,15248,'49327'),(21442,15249,'49328'),(21443,15250,'49329'),(21444,15251,'49330'),(21445,15252,'49331'),(21446,15253,'49332'),(21447,15254,'49333'),(21448,15255,'49335'),(21449,15256,'49336'),(21450,15257,'49337'),(21451,15258,'49338'),(21452,15259,'49339'),(21453,15260,'49340'),(21454,15261,'49341'),(21455,15261,'49351'),(21456,15262,'49342'),(21457,15263,'49343'),(21458,15264,'49344'),(21459,15265,'49345'),(21460,15266,'49346'),(21461,15267,'49347'),(21462,15268,'49348'),(21463,15269,'49349'),(21464,15270,'49401'),(21465,15271,'49402'),(21466,15272,'49403'),(21467,15273,'49404'),(21468,15274,'49405'),(21469,15275,'49406'),(21470,15276,'49408'),(21471,15277,'49409'),(21472,15278,'49410'),(21473,15279,'49411'),(21474,15280,'49412'),(21475,15280,'49413'),(21476,15281,'49415'),(21477,15282,'49416'),(21478,15283,'49417'),(21479,15284,'49418'),(21480,15284,'49468'),(21481,15285,'49419'),(21482,15286,'49420'),(21483,15287,'49421'),(21484,15288,'49422'),(21485,15288,'49423'),(21486,15288,'49424'),(21487,15289,'49425'),(21488,15290,'49426'),(21489,15291,'49427'),(21490,15292,'49428'),(21491,15292,'49429'),(21492,15293,'49430'),(21493,15294,'49431'),(21494,15295,'49434'),(21495,15296,'49435'),(21496,15297,'49436'),(21497,15298,'49437'),(21498,15299,'49440'),(21499,15299,'49441'),(21500,15299,'49442'),(21501,15299,'49443'),(21502,15299,'49444'),(21503,15299,'49445'),(21504,15300,'49446'),(21505,15301,'49448'),(21506,15302,'49449'),(21507,15303,'49450'),(21508,15304,'49451'),(21509,15305,'49452'),(21510,15306,'49453'),(21511,15307,'49454'),(21512,15308,'49455'),(21513,15309,'49456'),(21514,15310,'49457'),(21515,15311,'49458'),(21516,15312,'49459'),(21517,15313,'49460'),(21518,15314,'49461'),(21519,15315,'49463'),(21520,15316,'49464'),(21521,15317,'49501'),(21522,15317,'49502'),(21523,15317,'49503'),(21524,15317,'49504'),(21525,15317,'49505'),(21526,15317,'49506'),(21527,15317,'49507'),(21528,15317,'49508'),(21529,15317,'49509'),(21530,15317,'49510'),(21531,15317,'49512'),(21532,15317,'49514'),(21533,15317,'49515'),(21534,15317,'49516'),(21535,15317,'49518'),(21536,15317,'49523'),(21537,15317,'49525'),(21538,15317,'49530'),(21539,15317,'49544'),(21540,15317,'49546'),(21541,15317,'49548'),(21542,15317,'49550'),(21543,15317,'49555'),(21544,15317,'49560'),(21545,15317,'49588'),(21546,15317,'49599'),(21547,15318,'49601'),(21548,15319,'49610'),(21549,15320,'49611'),(21550,15321,'49612'),(21551,15322,'49613'),(21552,15323,'49614'),(21553,15324,'49615'),(21554,15325,'49616'),(21555,15326,'49617'),(21556,15327,'49618'),(21557,15328,'49619'),(21558,15329,'49620'),(21559,15330,'49621'),(21560,15331,'49622'),(21561,15332,'49623'),(21562,15333,'49625'),(21563,15334,'49626'),(21564,15335,'49627'),(21565,15336,'49628'),(21566,15337,'49629'),(21567,15338,'49630'),(21568,15339,'49631'),(21569,15340,'49632'),(21570,15341,'49633'),(21571,15342,'49634'),(21572,15343,'49635'),(21573,15344,'49636'),(21574,15345,'49637'),(21575,15346,'49638'),(21576,15347,'49639'),(21577,15348,'49640'),(21578,15349,'49642'),(21579,15350,'49643'),(21580,15351,'49644'),(21581,15352,'49645'),(21582,15353,'49646'),(21583,15354,'49648'),(21584,15355,'49649'),(21585,15356,'49650'),(21586,15357,'49651'),(21587,15358,'49653'),(21588,15359,'49654'),(21589,15360,'49655'),(21590,15361,'49656'),(21591,15362,'49657'),(21592,15363,'49659'),(21593,15364,'49660'),(21594,15365,'49663'),(21595,15366,'49664'),(21596,15367,'49665'),(21597,15368,'49666'),(21598,15369,'49667'),(21599,15370,'49668'),(21600,15371,'49670'),(21601,15372,'49673'),(21602,15373,'49674'),(21603,15374,'49675'),(21604,15375,'49676'),(21605,15376,'49677'),(21606,15377,'49679'),(21607,15378,'49680'),(21608,15379,'49682'),(21609,15380,'49683'),(21610,15381,'49684'),(21611,15381,'49685'),(21612,15381,'49686'),(21613,15381,'49696'),(21614,15382,'49688'),(21615,15383,'49689'),(21616,15384,'49690'),(21617,15385,'49701'),(21618,15386,'49705'),(21619,15387,'49706'),(21620,15388,'49707'),(21621,15389,'49709'),(21622,15390,'49710'),(21623,15391,'49711'),(21624,15392,'49712'),(21625,15393,'49713'),(21626,15394,'49715'),(21627,15394,'49778'),(21628,15395,'49716'),(21629,15396,'49717'),(21630,15397,'49718'),(21631,15398,'49719'),(21632,15399,'49720'),(21633,15400,'49721'),(21634,15401,'49722'),(21635,15402,'49723'),(21636,15403,'49724'),(21637,15404,'49725'),(21638,15405,'49726'),(21639,15406,'49727'),(21640,15407,'49728'),(21641,15408,'49729'),(21642,15409,'49730'),(21643,15410,'49733'),(21644,15411,'49734'),(21645,15411,'49735'),(21646,15412,'49736'),(21647,15413,'49737'),(21648,15414,'49738'),(21649,15414,'49739'),(21650,15415,'49740'),(21651,15416,'49743'),(21652,15417,'49744'),(21653,15418,'49745'),(21654,15419,'49746'),(21655,15420,'49747'),(21656,15421,'49748'),(21657,15422,'49749'),(21658,15423,'49751'),(21659,15424,'49752'),(21660,15425,'49753'),(21661,15426,'49755'),(21662,15427,'49756'),(21663,15428,'49757'),(21664,15429,'49759'),(21665,15430,'49760'),(21666,15431,'49761'),(21667,15432,'49762'),(21668,15433,'49764'),(21669,15434,'49765'),(21670,15435,'49766'),(21671,15436,'49768'),(21672,15437,'49769'),(21673,15438,'49770'),(21674,15439,'49774'),(21675,15440,'49775'),(21676,15441,'49776'),(21677,15442,'49777'),(21678,15443,'49779'),(21679,15444,'49780'),(21680,15445,'49781'),(21681,15446,'49782'),(21682,15447,'49783'),(21683,15448,'49784'),(21684,15448,'49785'),(21685,15448,'49786'),(21686,15448,'49788'),(21687,15449,'49790'),(21688,15450,'49791'),(21689,15451,'49792'),(21690,15452,'49793'),(21691,15453,'49795'),(21692,15454,'49796'),(21693,15455,'49797'),(21694,15456,'49799'),(21695,15457,'49801'),(21696,15458,'49802'),(21697,15459,'49805'),(21698,15460,'49806'),(21699,15461,'49807'),(21700,15462,'49808'),(21701,15463,'49812'),(21702,15464,'49813'),(21703,15465,'49814'),(21704,15466,'49815'),(21705,15467,'49816'),(21706,15468,'49817'),(21707,15469,'49818'),(21708,15470,'49819'),(21709,15471,'49820'),(21710,15472,'49821'),(21711,15473,'49822'),(21712,15474,'49825'),(21713,15475,'49826'),(21714,15476,'49827'),(21715,15477,'49829'),(21716,15478,'49831'),(21717,15479,'49833'),(21718,15480,'49834'),(21719,15481,'49835'),(21720,15482,'49836'),(21721,15483,'49837'),(21722,15484,'49838'),(21723,15485,'49839'),(21724,15486,'49840'),(21725,15487,'49841'),(21726,15488,'49845'),(21727,15489,'49847'),(21728,15490,'49848'),(21729,15491,'49849'),(21730,15492,'49852'),(21731,15493,'49853'),(21732,15494,'49854'),(21733,15495,'49855'),(21734,15496,'49858'),(21735,15497,'49861'),(21736,15498,'49862'),(21737,15499,'49863'),(21738,15500,'49864'),(21739,15501,'49865'),(21740,15502,'49866'),(21741,15503,'49868'),(21742,15504,'49870'),(21743,15505,'49871'),(21744,15506,'49872'),(21745,15507,'49873'),(21746,15508,'49874'),(21747,15509,'49876'),(21748,15510,'49877'),(21749,15511,'49878'),(21750,15512,'49879'),(21751,15513,'49880'),(21752,15514,'49881'),(21753,15515,'49883'),(21754,15516,'49884'),(21755,15517,'49885'),(21756,15518,'49886'),(21757,15519,'49887'),(21758,15520,'49891'),(21759,15521,'49892'),(21760,15522,'49893'),(21761,15523,'49894'),(21762,15524,'49895'),(21763,15525,'49896'),(21764,15526,'49901'),(21765,15527,'49902'),(21766,15528,'49903'),(21767,15529,'49905'),(21768,15530,'49908'),(21769,15531,'49910'),(21770,15532,'49911'),(21771,15533,'49912'),(21772,15534,'49913'),(21773,15535,'49915'),(21774,15536,'49916'),(21775,15537,'49917'),(21776,15538,'49918'),(21777,15539,'49919'),(21778,15540,'49920'),(21779,15541,'49921'),(21780,15542,'49922'),(21781,15543,'49925'),(21782,15544,'49927'),(21783,15545,'49929'),(21784,15546,'49930'),(21785,15547,'49931'),(21786,15548,'49934'),(21787,15549,'49935'),(21788,15550,'49938'),(21789,15551,'49942'),(21790,15552,'49945'),(21791,15553,'49946'),(21792,15554,'49947'),(21793,15555,'49948'),(21794,15556,'49950'),(21795,15557,'49952'),(21796,15558,'49953'),(21797,15559,'49955'),(21798,15560,'49958'),(21799,15561,'49959'),(21800,15562,'49960'),(21801,15563,'49961'),(21802,15564,'49962'),(21803,15565,'49963'),(21804,15566,'49964'),(21805,15567,'49965'),(21806,15568,'49967'),(21807,15569,'49968'),(21808,15570,'49969'),(21809,15571,'49970'),(21810,15572,'49971'),(21811,15573,'50001'),(21812,15574,'50002'),(21813,15575,'50003'),(21814,15576,'50005'),(21815,15577,'50006'),(21816,15578,'50007'),(21817,15579,'50008'),(21818,15580,'50009'),(21819,15581,'50010'),(21820,15581,'50011'),(21821,15581,'50012'),(21822,15581,'50013'),(21823,15581,'50014'),(21824,15582,'50015'),(21825,15582,'50021'),(21826,15583,'50020'),(21827,15584,'50022'),(21828,15585,'50025'),(21829,15586,'50026'),(21830,15587,'50027'),(21831,15588,'50028'),(21832,15589,'50029'),(21833,15590,'50031'),(21834,15591,'50032'),(21835,15592,'50033'),(21836,15593,'50034'),(21837,15594,'50035'),(21838,15595,'50036'),(21839,15595,'50037'),(21840,15596,'50038'),(21841,15597,'50039'),(21842,15598,'50040'),(21843,15599,'50041'),(21844,15600,'50042'),(21845,15601,'50043'),(21846,15602,'50044'),(21847,15603,'50046'),(21848,15604,'50047'),(21849,15605,'50048'),(21850,15606,'50049'),(21851,15607,'50050'),(21852,15608,'50051'),(21853,15609,'50052'),(21854,15610,'50054'),(21855,15611,'50055'),(21856,15612,'50056'),(21857,15613,'50057'),(21858,15614,'50058'),(21859,15615,'50059'),(21860,15616,'50060'),(21861,15617,'50061'),(21862,15618,'50062'),(21863,15619,'50063'),(21864,15620,'50064'),(21865,15621,'50065'),(21866,15622,'50066'),(21867,15623,'50067'),(21868,15624,'50068'),(21869,15625,'50069'),(21870,15626,'50070'),(21871,15627,'50071'),(21872,15628,'50072'),(21873,15629,'50073'),(21874,15630,'50074'),(21875,15631,'50075'),(21876,15632,'50076'),(21877,15633,'50078'),(21878,15634,'50101'),(21879,15635,'50102'),(21880,15636,'50103'),(21881,15637,'50104'),(21882,15638,'50105'),(21883,15639,'50106'),(21884,15640,'50107'),(21885,15641,'50108'),(21886,15642,'50109'),(21887,15643,'50110'),(21888,15644,'50111'),(21889,15645,'50112'),(21890,15645,'50177'),(21891,15646,'50115'),(21892,15647,'50116'),(21893,15648,'50117'),(21894,15649,'50118'),(21895,15650,'50119'),(21896,15651,'50120'),(21897,15652,'50122'),(21898,15653,'50123'),(21899,15654,'50124'),(21900,15655,'50125'),(21901,15656,'50126'),(21902,15657,'50127'),(21903,15658,'50128'),(21904,15659,'50129'),(21905,15660,'50130'),(21906,15661,'50131'),(21907,15662,'50132'),(21908,15663,'50133'),(21909,15664,'50134'),(21910,15665,'50135'),(21911,15666,'50136'),(21912,15667,'50137'),(21913,15668,'50138'),(21914,15668,'50197'),(21915,15668,'50198'),(21916,15669,'50139'),(21917,15670,'50140'),(21918,15671,'50141'),(21919,15672,'50142'),(21920,15673,'50143'),(21921,15674,'50144'),(21922,15675,'50145'),(21923,15676,'50146'),(21924,15677,'50147'),(21925,15678,'50148'),(21926,15679,'50149'),(21927,15680,'50150'),(21928,15681,'50151'),(21929,15682,'50152'),(21930,15683,'50153'),(21931,15684,'50154'),(21932,15685,'50155'),(21933,15686,'50156'),(21934,15687,'50157'),(21935,15688,'50158'),(21936,15689,'50160'),(21937,15690,'50161'),(21938,15691,'50162'),(21939,15692,'50163'),(21940,15693,'50164'),(21941,15694,'50165'),(21942,15695,'50166'),(21943,15696,'50167'),(21944,15697,'50168'),(21945,15698,'50169'),(21946,15699,'50170'),(21947,15700,'50171'),(21948,15701,'50173'),(21949,15702,'50174'),(21950,15703,'50201'),(21951,15704,'50206'),(21952,15705,'50207'),(21953,15706,'50208'),(21954,15707,'50210'),(21955,15708,'50211'),(21956,15709,'50212'),(21957,15710,'50213'),(21958,15711,'50214'),(21959,15712,'50216'),(21960,15713,'50217'),(21961,15714,'50218'),(21962,15715,'50219'),(21963,15716,'50220'),(21964,15717,'50222'),(21965,15718,'50223'),(21966,15719,'50225'),(21967,15720,'50226'),(21968,15721,'50227'),(21969,15722,'50228'),(21970,15723,'50229'),(21971,15724,'50230'),(21972,15725,'50231'),(21973,15726,'50232'),(21974,15727,'50233'),(21975,15728,'50234'),(21976,15729,'50235'),(21977,15730,'50236'),(21978,15731,'50237'),(21979,15732,'50238'),(21980,15733,'50239'),(21981,15734,'50240'),(21982,15735,'50241'),(21983,15736,'50242'),(21984,15737,'50243'),(21985,15738,'50244'),(21986,15739,'50246'),(21987,15740,'50247'),(21988,15741,'50248'),(21989,15742,'50249'),(21990,15743,'50250'),(21991,15744,'50251'),(21992,15745,'50252'),(21993,15746,'50254'),(21994,15747,'50255'),(21995,15748,'50256'),(21996,15749,'50257'),(21997,15750,'50258'),(21998,15751,'50259'),(21999,15752,'50261'),(22000,15753,'50262'),(22001,15754,'50263'),(22002,15755,'50264'),(22003,15756,'50265'),(22004,15756,'50266'),(22005,15756,'50398'),(22006,15757,'50268'),(22007,15758,'50269'),(22008,15759,'50271'),(22009,15760,'50272'),(22010,15761,'50273'),(22011,15762,'50274'),(22012,15763,'50275'),(22013,15764,'50276'),(22014,15765,'50277'),(22015,15766,'50278'),(22016,15767,'50301'),(22017,15767,'50302'),(22018,15767,'50303'),(22019,15767,'50304'),(22020,15767,'50305'),(22021,15767,'50306'),(22022,15767,'50307'),(22023,15767,'50308'),(22024,15767,'50309'),(22025,15767,'50310'),(22026,15767,'50311'),(22027,15767,'50312'),(22028,15767,'50313'),(22029,15767,'50314'),(22030,15767,'50315'),(22031,15767,'50316'),(22032,15767,'50317'),(22033,15767,'50318'),(22034,15767,'50319'),(22035,15767,'50320'),(22036,15767,'50321'),(22037,15767,'50328'),(22038,15767,'50329'),(22039,15767,'50330'),(22040,15767,'50331'),(22041,15767,'50332'),(22042,15767,'50333'),(22043,15767,'50334'),(22044,15767,'50335'),(22045,15767,'50336'),(22046,15767,'50338'),(22047,15767,'50339'),(22048,15767,'50340'),(22049,15767,'50347'),(22050,15767,'50350'),(22051,15767,'50359'),(22052,15767,'50360'),(22053,15767,'50361'),(22054,15767,'50362'),(22055,15767,'50363'),(22056,15767,'50364'),(22057,15767,'50367'),(22058,15767,'50368'),(22059,15767,'50369'),(22060,15767,'50380'),(22061,15767,'50381'),(22062,15767,'50391'),(22063,15767,'50392'),(22064,15767,'50393'),(22065,15767,'50394'),(22066,15767,'50395'),(22067,15767,'50396'),(22068,15767,'50397'),(22069,15767,'50936'),(22070,15767,'50940'),(22071,15767,'50947'),(22072,15767,'50950'),(22073,15767,'50980'),(22074,15767,'50981'),(22075,15768,'50322'),(22076,15768,'50323'),(22077,15769,'50325'),(22078,15770,'50401'),(22079,15770,'50402'),(22080,15771,'50420'),(22081,15772,'50421'),(22082,15773,'50423'),(22083,15774,'50424'),(22084,15775,'50426'),(22085,15776,'50427'),(22086,15777,'50428'),(22087,15778,'50430'),(22088,15779,'50431'),(22089,15780,'50432'),(22090,15781,'50433'),(22091,15782,'50434'),(22092,15783,'50435'),(22093,15784,'50436'),(22094,15785,'50438'),(22095,15786,'50439'),(22096,15787,'50440'),(22097,15788,'50441'),(22098,15789,'50444'),(22099,15790,'50446'),(22100,15791,'50447'),(22101,15792,'50448'),(22102,15793,'50449'),(22103,15794,'50450'),(22104,15795,'50451'),(22105,15796,'50452'),(22106,15797,'50453'),(22107,15798,'50454'),(22108,15799,'50455'),(22109,15800,'50456'),(22110,15801,'50457'),(22111,15802,'50458'),(22112,15803,'50459'),(22113,15804,'50460'),(22114,15805,'50461'),(22115,15806,'50464'),(22116,15807,'50465'),(22117,15808,'50466'),(22118,15809,'50467'),(22119,15810,'50468'),(22120,15811,'50469'),(22121,15812,'50470'),(22122,15813,'50471'),(22123,15814,'50472'),(22124,15815,'50473'),(22125,15816,'50475'),(22126,15817,'50476'),(22127,15818,'50477'),(22128,15819,'50478'),(22129,15820,'50479'),(22130,15821,'50480'),(22131,15822,'50481'),(22132,15823,'50482'),(22133,15824,'50483'),(22134,15825,'50484'),(22135,15826,'50501'),(22136,15827,'50510'),(22137,15828,'50511'),(22138,15829,'50514'),(22139,15830,'50515'),(22140,15831,'50516'),(22141,15832,'50517'),(22142,15833,'50518'),(22143,15834,'50519'),(22144,15835,'50520'),(22145,15836,'50521'),(22146,15837,'50522'),(22147,15838,'50523'),(22148,15839,'50524'),(22149,15840,'50525'),(22150,15840,'50526'),(22151,15841,'50527'),(22152,15842,'50528'),(22153,15843,'50529'),(22154,15844,'50530'),(22155,15845,'50531'),(22156,15846,'50532'),(22157,15847,'50533'),(22158,15848,'50535'),(22159,15849,'50536'),(22160,15850,'50538'),(22161,15851,'50539'),(22162,15852,'50540'),(22163,15853,'50541'),(22164,15854,'50542'),(22165,15855,'50543'),(22166,15856,'50544'),(22167,15857,'50545'),(22168,15858,'50546'),(22169,15859,'50548'),(22170,15860,'50551'),(22171,15861,'50552'),(22172,15862,'50554'),(22173,15863,'50556'),(22174,15864,'50557'),(22175,15865,'50558'),(22176,15866,'50559'),(22177,15867,'50560'),(22178,15868,'50561'),(22179,15869,'50562'),(22180,15870,'50563'),(22181,15871,'50565'),(22182,15872,'50566'),(22183,15873,'50567'),(22184,15874,'50568'),(22185,15875,'50569'),(22186,15876,'50570'),(22187,15877,'50571'),(22188,15878,'50573'),(22189,15879,'50574'),(22190,15880,'50575'),(22191,15881,'50576'),(22192,15882,'50577'),(22193,15883,'50578'),(22194,15884,'50579'),(22195,15885,'50581'),(22196,15886,'50582'),(22197,15887,'50583'),(22198,15888,'50585'),(22199,15889,'50586'),(22200,15890,'50587'),(22201,15891,'50588'),(22202,15892,'50590'),(22203,15893,'50591'),(22204,15894,'50592'),(22205,15895,'50593'),(22206,15896,'50594'),(22207,15897,'50595'),(22208,15898,'50597'),(22209,15899,'50598'),(22210,15900,'50599'),(22211,15901,'50601'),(22212,15902,'50602'),(22213,15903,'50603'),(22214,15904,'50604'),(22215,15905,'50605'),(22216,15906,'50606'),(22217,15907,'50607'),(22218,15908,'50608'),(22219,15909,'50609'),(22220,15910,'50611'),(22221,15911,'50612'),(22222,15912,'50613'),(22223,15912,'50614'),(22224,15913,'50616'),(22225,15914,'50619'),(22226,15915,'50620'),(22227,15916,'50621'),(22228,15917,'50622'),(22229,15918,'50623'),(22230,15919,'50624'),(22231,15920,'50625'),(22232,15921,'50626'),(22233,15922,'50627'),(22234,15923,'50628'),(22235,15924,'50629'),(22236,15925,'50630'),(22237,15926,'50631'),(22238,15927,'50632'),(22239,15928,'50633'),(22240,15929,'50634'),(22241,15930,'50635'),(22242,15931,'50636'),(22243,15932,'50638'),(22244,15933,'50641'),(22245,15934,'50642'),(22246,15935,'50643'),(22247,15936,'50644'),(22248,15937,'50645'),(22249,15938,'50647'),(22250,15939,'50648'),(22251,15940,'50649'),(22252,15941,'50650'),(22253,15942,'50651'),(22254,15943,'50652'),(22255,15944,'50653'),(22256,15945,'50654'),(22257,15946,'50655'),(22258,15947,'50657'),(22259,15948,'50658'),(22260,15949,'50659'),(22261,15950,'50660'),(22262,15951,'50661'),(22263,15952,'50662'),(22264,15953,'50664'),(22265,15954,'50665'),(22266,15955,'50666'),(22267,15956,'50667'),(22268,15957,'50668'),(22269,15958,'50669'),(22270,15959,'50670'),(22271,15960,'50671'),(22272,15961,'50672'),(22273,15962,'50673'),(22274,15963,'50674'),(22275,15964,'50675'),(22276,15965,'50676'),(22277,15966,'50677'),(22278,15967,'50680'),(22279,15968,'50681'),(22280,15969,'50682'),(22281,15970,'50701'),(22282,15970,'50702'),(22283,15970,'50703'),(22284,15970,'50704'),(22285,15970,'50706'),(22286,15970,'50799'),(22287,15971,'50707'),(22288,15972,'50801'),(22289,15973,'50830'),(22290,15974,'50831'),(22291,15975,'50833'),(22292,15976,'50835'),(22293,15977,'50836'),(22294,15978,'50837'),(22295,15979,'50839'),(22296,15980,'50840'),(22297,15981,'50841'),(22298,15982,'50842'),(22299,15983,'50843'),(22300,15984,'50845'),(22301,15985,'50846'),(22302,15986,'50847'),(22303,15987,'50848'),(22304,15988,'50849'),(22305,15989,'50851'),(22306,15990,'50853'),(22307,15991,'50854'),(22308,15992,'50857'),(22309,15993,'50858'),(22310,15994,'50859'),(22311,15995,'50860'),(22312,15996,'50861'),(22313,15997,'50862'),(22314,15998,'50863'),(22315,15999,'50864'),(22316,16000,'51001'),(22317,16001,'51002'),(22318,16002,'51003'),(22319,16003,'51004'),(22320,16004,'51005'),(22321,16005,'51006'),(22322,16006,'51007'),(22323,16007,'51008'),(22324,16008,'51009'),(22325,16009,'51010'),(22326,16010,'51011'),(22327,16011,'51012'),(22328,16012,'51014'),(22329,16013,'51015'),(22330,16014,'51016'),(22331,16015,'51017'),(22332,16016,'51018'),(22333,16017,'51019'),(22334,16018,'51020'),(22335,16019,'51022'),(22336,16020,'51023'),(22337,16021,'51024'),(22338,16022,'51025'),(22339,16023,'51026'),(22340,16024,'51027'),(22341,16025,'51028'),(22342,16026,'51029'),(22343,16027,'51030'),(22344,16028,'51031'),(22345,16029,'51033'),(22346,16030,'51034'),(22347,16031,'51035'),(22348,16032,'51036'),(22349,16033,'51037'),(22350,16034,'51038'),(22351,16035,'51039'),(22352,16036,'51040'),(22353,16037,'51041'),(22354,16038,'51044'),(22355,16039,'51045'),(22356,16040,'51046'),(22357,16041,'51047'),(22358,16042,'51048'),(22359,16043,'51049'),(22360,16044,'51050'),(22361,16045,'51051'),(22362,16046,'51052'),(22363,16047,'51053'),(22364,16048,'51054'),(22365,16049,'51055'),(22366,16050,'51056'),(22367,16051,'51057'),(22368,16052,'51058'),(22369,16053,'51059'),(22370,16054,'51060'),(22371,16055,'51061'),(22372,16056,'51062'),(22373,16057,'51063'),(22374,16058,'51101'),(22375,16058,'51102'),(22376,16058,'51103'),(22377,16058,'51104'),(22378,16058,'51105'),(22379,16058,'51106'),(22380,16058,'51108'),(22381,16058,'51109'),(22382,16058,'51111'),(22383,16059,'51201'),(22384,16060,'51230'),(22385,16061,'51231'),(22386,16062,'51232'),(22387,16063,'51234'),(22388,16064,'51235'),(22389,16065,'51237'),(22390,16066,'51238'),(22391,16067,'51239'),(22392,16068,'51240'),(22393,16069,'51241'),(22394,16070,'51242'),(22395,16071,'51243'),(22396,16072,'51244'),(22397,16073,'51245'),(22398,16074,'51246'),(22399,16075,'51247'),(22400,16076,'51248'),(22401,16077,'51249'),(22402,16078,'51250'),(22403,16079,'51301'),(22404,16080,'51330'),(22405,16081,'51331'),(22406,16082,'51333'),(22407,16083,'51334'),(22408,16084,'51338'),(22409,16085,'51340'),(22410,16086,'51341'),(22411,16087,'51342'),(22412,16088,'51343'),(22413,16089,'51344'),(22414,16090,'51345'),(22415,16091,'51346'),(22416,16092,'51347'),(22417,16093,'51349'),(22418,16094,'51350'),(22419,16095,'51351'),(22420,16096,'51354'),(22421,16097,'51355'),(22422,16098,'51357'),(22423,16099,'51358'),(22424,16100,'51360'),(22425,16101,'51363'),(22426,16102,'51364'),(22427,16103,'51365'),(22428,16104,'51366'),(22429,16105,'51401'),(22430,16106,'51430'),(22431,16107,'51431'),(22432,16108,'51432'),(22433,16109,'51433'),(22434,16110,'51436'),(22435,16111,'51439'),(22436,16112,'51440'),(22437,16113,'51441'),(22438,16114,'51442'),(22439,16115,'51443'),(22440,16116,'51444'),(22441,16117,'51445'),(22442,16118,'51446'),(22443,16119,'51447'),(22444,16120,'51448'),(22445,16121,'51449'),(22446,16122,'51450'),(22447,16123,'51451'),(22448,16124,'51452'),(22449,16125,'51453'),(22450,16126,'51454'),(22451,16127,'51455'),(22452,16128,'51458'),(22453,16129,'51459'),(22454,16130,'51460'),(22455,16131,'51461'),(22456,16132,'51462'),(22457,16133,'51463'),(22458,16134,'51465'),(22459,16135,'51466'),(22460,16136,'51467'),(22461,16137,'51501'),(22462,16137,'51502'),(22463,16137,'51503'),(22464,16138,'51510'),(22465,16139,'51520'),(22466,16140,'51521'),(22467,16141,'51523'),(22468,16142,'51525'),(22469,16143,'51526'),(22470,16144,'51527'),(22471,16145,'51528'),(22472,16146,'51529'),(22473,16147,'51530'),(22474,16148,'51531'),(22475,16149,'51532'),(22476,16150,'51533'),(22477,16151,'51534'),(22478,16152,'51535'),(22479,16153,'51536'),(22480,16154,'51537'),(22481,16154,'51593'),(22482,16155,'51540'),(22483,16156,'51541'),(22484,16157,'51542'),(22485,16158,'51543'),(22486,16159,'51544'),(22487,16160,'51545'),(22488,16161,'51546'),(22489,16162,'51548'),(22490,16163,'51549'),(22491,16164,'51550'),(22492,16165,'51551'),(22493,16166,'51552'),(22494,16167,'51553'),(22495,16168,'51554'),(22496,16169,'51555'),(22497,16170,'51556'),(22498,16171,'51557'),(22499,16172,'51558'),(22500,16173,'51559'),(22501,16174,'51560'),(22502,16175,'51561'),(22503,16176,'51562'),(22504,16177,'51563'),(22505,16178,'51564'),(22506,16179,'51565'),(22507,16180,'51566'),(22508,16180,'51591'),(22509,16181,'51570'),(22510,16182,'51571'),(22511,16183,'51572'),(22512,16184,'51573'),(22513,16185,'51574'),(22514,16186,'51575'),(22515,16187,'51576'),(22516,16188,'51577'),(22517,16189,'51578'),(22518,16190,'51579'),(22519,16191,'51601'),(22520,16191,'51602'),(22521,16191,'51603'),(22522,16192,'51630'),(22523,16193,'51631'),(22524,16194,'51632'),(22525,16195,'51636'),(22526,16196,'51637'),(22527,16197,'51638'),(22528,16198,'51639'),(22529,16199,'51640'),(22530,16200,'51645'),(22531,16201,'51646'),(22532,16202,'51647'),(22533,16203,'51648'),(22534,16204,'51649'),(22535,16205,'51650'),(22536,16206,'51651'),(22537,16207,'51652'),(22538,16208,'51653'),(22539,16209,'51654'),(22540,16210,'51656'),(22541,16211,'52001'),(22542,16211,'52002'),(22543,16211,'52003'),(22544,16211,'52004'),(22545,16211,'52099'),(22546,16212,'52030'),(22547,16213,'52031'),(22548,16214,'52032'),(22549,16215,'52033'),(22550,16216,'52035'),(22551,16217,'52036'),(22552,16218,'52037'),(22553,16219,'52038'),(22554,16220,'52039'),(22555,16221,'52040'),(22556,16222,'52041'),(22557,16223,'52042'),(22558,16224,'52043'),(22559,16225,'52044'),(22560,16226,'52045'),(22561,16227,'52046'),(22562,16228,'52047'),(22563,16229,'52048'),(22564,16230,'52049'),(22565,16231,'52050'),(22566,16232,'52052'),(22567,16233,'52053'),(22568,16234,'52054'),(22569,16235,'52055'),(22570,16236,'52056'),(22571,16237,'52057'),(22572,16238,'52060'),(22573,16239,'52064'),(22574,16240,'52065'),(22575,16241,'52066'),(22576,16242,'52068'),(22577,16243,'52069'),(22578,16244,'52070'),(22579,16245,'52071'),(22580,16246,'52072'),(22581,16247,'52073'),(22582,16248,'52074'),(22583,16249,'52075'),(22584,16250,'52076'),(22585,16251,'52077'),(22586,16252,'52078'),(22587,16253,'52079'),(22588,16254,'52101'),(22589,16255,'52131'),(22590,16256,'52132'),(22591,16257,'52133'),(22592,16258,'52134'),(22593,16259,'52135'),(22594,16260,'52136'),(22595,16261,'52140'),(22596,16262,'52141'),(22597,16263,'52142'),(22598,16264,'52144'),(22599,16265,'52146'),(22600,16266,'52147'),(22601,16267,'52149'),(22602,16268,'52151'),(22603,16269,'52154'),(22604,16270,'52155'),(22605,16271,'52156'),(22606,16272,'52157'),(22607,16273,'52158'),(22608,16274,'52159'),(22609,16275,'52160'),(22610,16276,'52161'),(22611,16277,'52162'),(22612,16278,'52163'),(22613,16279,'52164'),(22614,16280,'52165'),(22615,16281,'52166'),(22616,16282,'52168'),(22617,16283,'52169'),(22618,16284,'52170'),(22619,16285,'52171'),(22620,16286,'52172'),(22621,16287,'52175'),(22622,16288,'52201'),(22623,16289,'52202'),(22624,16290,'52203'),(22625,16290,'52204'),(22626,16291,'52205'),(22627,16292,'52206'),(22628,16293,'52207'),(22629,16294,'52208'),(22630,16295,'52209'),(22631,16296,'52210'),(22632,16297,'52211'),(22633,16298,'52212'),(22634,16299,'52213'),(22635,16300,'52214'),(22636,16301,'52215'),(22637,16302,'52216'),(22638,16303,'52217'),(22639,16304,'52218'),(22640,16305,'52219'),(22641,16306,'52220'),(22642,16307,'52221'),(22643,16308,'52222'),(22644,16309,'52223'),(22645,16310,'52224'),(22646,16311,'52225'),(22647,16312,'52226'),(22648,16313,'52227'),(22649,16314,'52228'),(22650,16315,'52229'),(22651,16316,'52231'),(22652,16317,'52232'),(22653,16318,'52233'),(22654,16319,'52235'),(22655,16320,'52236'),(22656,16321,'52237'),(22657,16322,'52240'),(22658,16322,'52242'),(22659,16322,'52243'),(22660,16322,'52244'),(22661,16322,'52245'),(22662,16322,'52246'),(22663,16323,'52241'),(22664,16324,'52247'),(22665,16325,'52248'),(22666,16326,'52249'),(22667,16327,'52251'),(22668,16328,'52252'),(22669,16329,'52253'),(22670,16330,'52254'),(22671,16331,'52255'),(22672,16332,'52257'),(22673,16333,'52301'),(22674,16334,'52302'),(22675,16335,'52305'),(22676,16336,'52306'),(22677,16337,'52307'),(22678,16338,'52308'),(22679,16339,'52309'),(22680,16340,'52310'),(22681,16341,'52312'),(22682,16342,'52313'),(22683,16343,'52314'),(22684,16344,'52315'),(22685,16345,'52316'),(22686,16346,'52317'),(22687,16347,'52318'),(22688,16348,'52319'),(22689,16349,'52320'),(22690,16350,'52321'),(22691,16351,'52322'),(22692,16352,'52323'),(22693,16353,'52324'),(22694,16354,'52325'),(22695,16355,'52326'),(22696,16356,'52327'),(22697,16357,'52328'),(22698,16358,'52329'),(22699,16359,'52330'),(22700,16360,'52332'),(22701,16361,'52333'),(22702,16362,'52334'),(22703,16363,'52335'),(22704,16364,'52336'),(22705,16365,'52337'),(22706,16366,'52338'),(22707,16367,'52339'),(22708,16368,'52340'),(22709,16369,'52341'),(22710,16370,'52342'),(22711,16371,'52344'),(22712,16372,'52345'),(22713,16373,'52346'),(22714,16374,'52347'),(22715,16375,'52348'),(22716,16376,'52349'),(22717,16377,'52350'),(22718,16378,'52351'),(22719,16379,'52352'),(22720,16380,'52353'),(22721,16381,'52354'),(22722,16382,'52355'),(22723,16383,'52356'),(22724,16384,'52358'),(22725,16385,'52359'),(22726,16386,'52361'),(22727,16387,'52362'),(22728,16388,'52401'),(22729,16388,'52402'),(22730,16388,'52403'),(22731,16388,'52404'),(22732,16388,'52405'),(22733,16388,'52406'),(22734,16388,'52407'),(22735,16388,'52408'),(22736,16388,'52409'),(22737,16388,'52410'),(22738,16388,'52411'),(22739,16388,'52497'),(22740,16388,'52498'),(22741,16388,'52499'),(22742,16389,'52501'),(22743,16390,'52530'),(22744,16391,'52531'),(22745,16392,'52533'),(22746,16393,'52534'),(22747,16394,'52535'),(22748,16395,'52536'),(22749,16396,'52537'),(22750,16397,'52538'),(22751,16398,'52540'),(22752,16399,'52542'),(22753,16400,'52543'),(22754,16401,'52544'),(22755,16402,'52548'),(22756,16403,'52549'),(22757,16404,'52550'),(22758,16405,'52551'),(22759,16406,'52552'),(22760,16407,'52553'),(22761,16408,'52554'),(22762,16409,'52555'),(22763,16410,'52556'),(22764,16410,'52557'),(22765,16411,'52560'),(22766,16412,'52561'),(22767,16413,'52562'),(22768,16414,'52563'),(22769,16415,'52565'),(22770,16416,'52566'),(22771,16417,'52567'),(22772,16418,'52568'),(22773,16419,'52569'),(22774,16420,'52570'),(22775,16421,'52571'),(22776,16422,'52572'),(22777,16423,'52573'),(22778,16424,'52574'),(22779,16425,'52576'),(22780,16426,'52577'),(22781,16427,'52580'),(22782,16428,'52581'),(22783,16429,'52583'),(22784,16430,'52584'),(22785,16431,'52585'),(22786,16432,'52586'),(22787,16433,'52588'),(22788,16434,'52590'),(22789,16435,'52591'),(22790,16436,'52593'),(22791,16437,'52594'),(22792,16438,'52595'),(22793,16439,'52601'),(22794,16440,'52619'),(22795,16441,'52620'),(22796,16442,'52621'),(22797,16443,'52623'),(22798,16444,'52624'),(22799,16445,'52625'),(22800,16446,'52626'),(22801,16447,'52627'),(22802,16448,'52630'),(22803,16449,'52631'),(22804,16450,'52632'),(22805,16451,'52635'),(22806,16452,'52637'),(22807,16453,'52638'),(22808,16454,'52639'),(22809,16455,'52640'),(22810,16456,'52641'),(22811,16457,'52642'),(22812,16458,'52644'),(22813,16459,'52645'),(22814,16460,'52646'),(22815,16461,'52647'),(22816,16462,'52648'),(22817,16463,'52649'),(22818,16464,'52650'),(22819,16465,'52651'),(22820,16466,'52652'),(22821,16467,'52653'),(22822,16468,'52654'),(22823,16469,'52655'),(22824,16470,'52656'),(22825,16471,'52657'),(22826,16472,'52658'),(22827,16473,'52659'),(22828,16474,'52660'),(22829,16475,'52701'),(22830,16476,'52720'),(22831,16477,'52721'),(22832,16478,'52722'),(22833,16479,'52726'),(22834,16480,'52727'),(22835,16481,'52728'),(22836,16482,'52729'),(22837,16483,'52730'),(22838,16484,'52731'),(22839,16485,'52732'),(22840,16485,'52733'),(22841,16485,'52736'),(22842,16486,'52737'),(22843,16487,'52738'),(22844,16488,'52739'),(22845,16489,'52742'),(22846,16490,'52745'),(22847,16491,'52746'),(22848,16492,'52747'),(22849,16493,'52748'),(22850,16494,'52749'),(22851,16495,'52750'),(22852,16496,'52751'),(22853,16497,'52752'),(22854,16498,'52753'),(22855,16499,'52754'),(22856,16500,'52755'),(22857,16501,'52756'),(22858,16502,'52757'),(22859,16503,'52758'),(22860,16504,'52759'),(22861,16505,'52760'),(22862,16506,'52761'),(22863,16507,'52765'),(22864,16508,'52766'),(22865,16509,'52767'),(22866,16510,'52768'),(22867,16511,'52769'),(22868,16512,'52771'),(22869,16513,'52772'),(22870,16514,'52773'),(22871,16515,'52774'),(22872,16516,'52776'),(22873,16517,'52777'),(22874,16518,'52778'),(22875,16519,'52801'),(22876,16519,'52802'),(22877,16519,'52803'),(22878,16519,'52804'),(22879,16519,'52805'),(22880,16519,'52806'),(22881,16519,'52807'),(22882,16519,'52808'),(22883,16519,'52809'),(22884,16520,'53001'),(22885,16521,'53002'),(22886,16522,'53003'),(22887,16523,'53004'),(22888,16524,'53005'),(22889,16524,'53008'),(22890,16524,'53045'),(22891,16525,'53006'),(22892,16526,'53007'),(22893,16527,'53009'),(22894,16528,'53010'),(22895,16529,'53011'),(22896,16530,'53012'),(22897,16531,'53013'),(22898,16532,'53014'),(22899,16533,'53015'),(22900,16534,'53016'),(22901,16535,'53017'),(22902,16536,'53018'),(22903,16537,'53019'),(22904,16538,'53020'),(22905,16539,'53021'),(22906,16540,'53022'),(22907,16541,'53023'),(22908,16542,'53024'),(22909,16543,'53026'),(22910,16544,'53027'),(22911,16545,'53029'),(22912,16546,'53031'),(22913,16547,'53032'),(22914,16548,'53033'),(22915,16549,'53034'),(22916,16550,'53035'),(22917,16551,'53036'),(22918,16552,'53037'),(22919,16553,'53038'),(22920,16554,'53039'),(22921,16555,'53040'),(22922,16556,'53042'),(22923,16557,'53044'),(22924,16558,'53046'),(22925,16559,'53047'),(22926,16560,'53048'),(22927,16561,'53049'),(22928,16562,'53050'),(22929,16563,'53051'),(22930,16563,'53052'),(22931,16564,'53056'),(22932,16565,'53057'),(22933,16566,'53058'),(22934,16567,'53059'),(22935,16568,'53060'),(22936,16569,'53061'),(22937,16569,'53062'),(22938,16570,'53063'),(22939,16571,'53064'),(22940,16572,'53065'),(22941,16573,'53066'),(22942,16574,'53069'),(22943,16575,'53070'),(22944,16576,'53072'),(22945,16577,'53073'),(22946,16578,'53074'),(22947,16579,'53075'),(22948,16580,'53076'),(22949,16581,'53078'),(22950,16582,'53079'),(22951,16583,'53080'),(22952,16584,'53081'),(22953,16584,'53082'),(22954,16584,'53083'),(22955,16585,'53085'),(22956,16586,'53086'),(22957,16587,'53088'),(22958,16588,'53089'),(22959,16589,'53090'),(22960,16589,'53095'),(22961,16590,'53091'),(22962,16591,'53092'),(22963,16592,'53093'),(22964,16593,'53094'),(22965,16593,'53098'),(22966,16594,'53097'),(22967,16595,'53099'),(22968,16596,'53101'),(22969,16597,'53102'),(22970,16598,'53103'),(22971,16599,'53104'),(22972,16600,'53105'),(22973,16601,'53108'),(22974,16602,'53109'),(22975,16603,'53110'),(22976,16604,'53114'),(22977,16605,'53115'),(22978,16606,'53118'),(22979,16607,'53119'),(22980,16608,'53120'),(22981,16609,'53121'),(22982,16610,'53122'),(22983,16611,'53125'),(22984,16612,'53126'),(22985,16613,'53127'),(22986,16614,'53128'),(22987,16615,'53129'),(22988,16616,'53130'),(22989,16617,'53132'),(22990,16618,'53137'),(22991,16619,'53138'),(22992,16620,'53139'),(22993,16621,'53140'),(22994,16621,'53141'),(22995,16621,'53142'),(22996,16621,'53143'),(22997,16621,'53144'),(22998,16622,'53146'),(22999,16622,'53151'),(23000,16623,'53147'),(23001,16624,'53148'),(23002,16625,'53149'),(23003,16626,'53150'),(23004,16627,'53152'),(23005,16628,'53153'),(23006,16629,'53154'),(23007,16630,'53156'),(23008,16631,'53157'),(23009,16632,'53158'),(23010,16633,'53159'),(23011,16634,'53167'),(23012,16635,'53168'),(23013,16636,'53170'),(23014,16637,'53171'),(23015,16638,'53172'),(23016,16639,'53176'),(23017,16640,'53177'),(23018,16641,'53178'),(23019,16642,'53179'),(23020,16643,'53181'),(23021,16644,'53182'),(23022,16645,'53183'),(23023,16646,'53184'),(23024,16647,'53185'),(23025,16648,'53186'),(23026,16648,'53187'),(23027,16648,'53188'),(23028,16648,'53189'),(23029,16649,'53190'),(23030,16650,'53191'),(23031,16651,'53192'),(23032,16652,'53194'),(23033,16653,'53195'),(23034,16654,'53201'),(23035,16654,'53202'),(23036,16654,'53203'),(23037,16654,'53204'),(23038,16654,'53205'),(23039,16654,'53206'),(23040,16654,'53207'),(23041,16654,'53208'),(23042,16654,'53209'),(23043,16654,'53210'),(23044,16654,'53211'),(23045,16654,'53212'),(23046,16654,'53213'),(23047,16654,'53214'),(23048,16654,'53215'),(23049,16654,'53216'),(23050,16654,'53217'),(23051,16654,'53218'),(23052,16654,'53219'),(23053,16654,'53220'),(23054,16654,'53221'),(23055,16654,'53222'),(23056,16654,'53223'),(23057,16654,'53224'),(23058,16654,'53225'),(23059,16654,'53226'),(23060,16654,'53227'),(23061,16654,'53228'),(23062,16654,'53233'),(23063,16654,'53234'),(23064,16654,'53237'),(23065,16654,'53259'),(23066,16654,'53263'),(23067,16654,'53267'),(23068,16654,'53268'),(23069,16654,'53270'),(23070,16654,'53274'),(23071,16654,'53277'),(23072,16654,'53278'),(23073,16654,'53280'),(23074,16654,'53281'),(23075,16654,'53284'),(23076,16654,'53285'),(23077,16654,'53288'),(23078,16654,'53290'),(23079,16654,'53293'),(23080,16654,'53295'),(23081,16655,'53235'),(23082,16656,'53401'),(23083,16656,'53402'),(23084,16656,'53403'),(23085,16656,'53404'),(23086,16656,'53405'),(23087,16656,'53406'),(23088,16656,'53407'),(23089,16656,'53408'),(23090,16656,'53490'),(23091,16657,'53501'),(23092,16658,'53502'),(23093,16659,'53503'),(23094,16660,'53504'),(23095,16661,'53505'),(23096,16662,'53506'),(23097,16663,'53507'),(23098,16664,'53508'),(23099,16665,'53510'),(23100,16666,'53511'),(23101,16666,'53512'),(23102,16667,'53515'),(23103,16668,'53516'),(23104,16669,'53517'),(23105,16670,'53518'),(23106,16671,'53520'),(23107,16672,'53521'),(23108,16673,'53522'),(23109,16674,'53523'),(23110,16675,'53525'),(23111,16676,'53526'),(23112,16677,'53527'),(23113,16678,'53528'),(23114,16679,'53529'),(23115,16680,'53530'),(23116,16681,'53531'),(23117,16682,'53532'),(23118,16683,'53533'),(23119,16683,'53595'),(23120,16684,'53534'),(23121,16685,'53535'),(23122,16686,'53536'),(23123,16687,'53537'),(23124,16688,'53538'),(23125,16689,'53540'),(23126,16690,'53541'),(23127,16691,'53542'),(23128,16692,'53543'),(23129,16693,'53544'),(23130,16694,'53545'),(23131,16694,'53546'),(23132,16694,'53547'),(23133,16695,'53549'),(23134,16696,'53550'),(23135,16697,'53551'),(23136,16698,'53553'),(23137,16699,'53554'),(23138,16700,'53555'),(23139,16701,'53556'),(23140,16702,'53557'),(23141,16703,'53558'),(23142,16704,'53559'),(23143,16705,'53560'),(23144,16706,'53561'),(23145,16707,'53562'),(23146,16708,'53563'),(23147,16709,'53565'),(23148,16710,'53566'),(23149,16711,'53569'),(23150,16712,'53570'),(23151,16713,'53571'),(23152,16714,'53572'),(23153,16715,'53573'),(23154,16716,'53574'),(23155,16717,'53575'),(23156,16718,'53576'),(23157,16719,'53577'),(23158,16720,'53578'),(23159,16721,'53579'),(23160,16722,'53580'),(23161,16723,'53581'),(23162,16724,'53582'),(23163,16725,'53583'),(23164,16726,'53584'),(23165,16727,'53585'),(23166,16728,'53586'),(23167,16729,'53587'),(23168,16730,'53588'),(23169,16731,'53589'),(23170,16732,'53590'),(23171,16732,'53591'),(23172,16732,'53596'),(23173,16733,'53593'),(23174,16734,'53594'),(23175,16735,'53597'),(23176,16736,'53598'),(23177,16737,'53599'),(23178,16738,'53701'),(23179,16738,'53702'),(23180,16738,'53703'),(23181,16738,'53704'),(23182,16738,'53705'),(23183,16738,'53706'),(23184,16738,'53707'),(23185,16738,'53708'),(23186,16738,'53709'),(23187,16738,'53710'),(23188,16738,'53711'),(23189,16738,'53713'),(23190,16738,'53714'),(23191,16738,'53715'),(23192,16738,'53716'),(23193,16738,'53717'),(23194,16738,'53718'),(23195,16738,'53719'),(23196,16738,'53725'),(23197,16738,'53726'),(23198,16738,'53744'),(23199,16738,'53777'),(23200,16738,'53778'),(23201,16738,'53779'),(23202,16738,'53780'),(23203,16738,'53782'),(23204,16738,'53783'),(23205,16738,'53784'),(23206,16738,'53785'),(23207,16738,'53786'),(23208,16738,'53787'),(23209,16738,'53788'),(23210,16738,'53789'),(23211,16738,'53790'),(23212,16738,'53791'),(23213,16738,'53792'),(23214,16738,'53793'),(23215,16738,'53794'),(23216,16739,'53801'),(23217,16740,'53802'),(23218,16741,'53803'),(23219,16742,'53804'),(23220,16743,'53805'),(23221,16744,'53806'),(23222,16745,'53807'),(23223,16746,'53808'),(23224,16747,'53809'),(23225,16748,'53810'),(23226,16749,'53811'),(23227,16750,'53812'),(23228,16751,'53813'),(23229,16752,'53816'),(23230,16753,'53817'),(23231,16754,'53818'),(23232,16755,'53820'),(23233,16756,'53821'),(23234,16757,'53824'),(23235,16758,'53825'),(23236,16759,'53826'),(23237,16760,'53827'),(23238,16761,'53901'),(23239,16762,'53910'),(23240,16763,'53911'),(23241,16764,'53913'),(23242,16765,'53916'),(23243,16765,'53917'),(23244,16766,'53919'),(23245,16767,'53920'),(23246,16768,'53922'),(23247,16769,'53923'),(23248,16770,'53924'),(23249,16771,'53925'),(23250,16772,'53926'),(23251,16773,'53927'),(23252,16774,'53928'),(23253,16775,'53929'),(23254,16776,'53930'),(23255,16777,'53931'),(23256,16778,'53932'),(23257,16779,'53933'),(23258,16780,'53934'),(23259,16781,'53935'),(23260,16782,'53936'),(23261,16783,'53937'),(23262,16784,'53939'),(23263,16785,'53940'),(23264,16786,'53941'),(23265,16787,'53942'),(23266,16788,'53943'),(23267,16789,'53944'),(23268,16790,'53946'),(23269,16791,'53947'),(23270,16792,'53948'),(23271,16793,'53949'),(23272,16794,'53950'),(23273,16795,'53951'),(23274,16796,'53952'),(23275,16797,'53953'),(23276,16798,'53954'),(23277,16799,'53955'),(23278,16800,'53956'),(23279,16800,'53957'),(23280,16801,'53958'),(23281,16801,'53959'),(23282,16802,'53960'),(23283,16803,'53961'),(23284,16804,'53962'),(23285,16805,'53963'),(23286,16806,'53964'),(23287,16807,'53965'),(23288,16808,'53968'),(23289,16809,'53969'),(23290,16810,'54001'),(23291,16811,'54002'),(23292,16812,'54003'),(23293,16813,'54004'),(23294,16814,'54005'),(23295,16815,'54006'),(23296,16816,'54007'),(23297,16817,'54009'),(23298,16818,'54010'),(23299,16819,'54011'),(23300,16820,'54012'),(23301,16821,'54013'),(23302,16822,'54014'),(23303,16823,'54015'),(23304,16824,'54016'),(23305,16825,'54017'),(23306,16826,'54020'),(23307,16827,'54021'),(23308,16828,'54022'),(23309,16829,'54023'),(23310,16830,'54024'),(23311,16831,'54025'),(23312,16832,'54026'),(23313,16833,'54027'),(23314,16834,'54028'),(23315,16835,'54082'),(23316,16836,'54101'),(23317,16837,'54102'),(23318,16838,'54103'),(23319,16839,'54104'),(23320,16840,'54106'),(23321,16841,'54107'),(23322,16842,'54110'),(23323,16843,'54111'),(23324,16844,'54112'),(23325,16845,'54113'),(23326,16846,'54114'),(23327,16847,'54115'),(23328,16848,'54119'),(23329,16849,'54120'),(23330,16850,'54121'),(23331,16851,'54123'),(23332,16852,'54124'),(23333,16853,'54125'),(23334,16854,'54126'),(23335,16855,'54127'),(23336,16856,'54128'),(23337,16857,'54129'),(23338,16858,'54130'),(23339,16859,'54131'),(23340,16860,'54135'),(23341,16861,'54136'),(23342,16862,'54137'),(23343,16863,'54138'),(23344,16864,'54139'),(23345,16865,'54140'),(23346,16866,'54141'),(23347,16867,'54143'),(23348,16868,'54149'),(23349,16869,'54150'),(23350,16870,'54151'),(23351,16871,'54152'),(23352,16872,'54153'),(23353,16873,'54154'),(23354,16874,'54155'),(23355,16875,'54156'),(23356,16876,'54157'),(23357,16877,'54159'),(23358,16878,'54160'),(23359,16879,'54161'),(23360,16880,'54162'),(23361,16881,'54165'),(23362,16882,'54166'),(23363,16883,'54169'),(23364,16884,'54170'),(23365,16885,'54171'),(23366,16886,'54173'),(23367,16887,'54174'),(23368,16888,'54175'),(23369,16889,'54177'),(23370,16890,'54180'),(23371,16891,'54182'),(23372,16892,'54201'),(23373,16893,'54202'),(23374,16894,'54203'),(23375,16895,'54204'),(23376,16896,'54205'),(23377,16897,'54207'),(23378,16898,'54208'),(23379,16899,'54209'),(23380,16900,'54210'),(23381,16901,'54211'),(23382,16902,'54212'),(23383,16903,'54213'),(23384,16904,'54214'),(23385,16905,'54215'),(23386,16906,'54216'),(23387,16907,'54217'),(23388,16908,'54220'),(23389,16908,'54221'),(23390,16909,'54226'),(23391,16910,'54227'),(23392,16911,'54228'),(23393,16912,'54229'),(23394,16913,'54230'),(23395,16914,'54232'),(23396,16915,'54234'),(23397,16916,'54235'),(23398,16917,'54240'),(23399,16918,'54241'),(23400,16919,'54245'),(23401,16920,'54246'),(23402,16921,'54247'),(23403,16922,'54301'),(23404,16922,'54302'),(23405,16922,'54303'),(23406,16922,'54304'),(23407,16922,'54305'),(23408,16922,'54306'),(23409,16922,'54307'),(23410,16922,'54308'),(23411,16922,'54311'),(23412,16922,'54313'),(23413,16922,'54324'),(23414,16922,'54344'),(23415,16923,'54401'),(23416,16923,'54402'),(23417,16923,'54403'),(23418,16924,'54404'),(23419,16924,'54449'),(23420,16924,'54472'),(23421,16925,'54405'),(23422,16926,'54406'),(23423,16927,'54407'),(23424,16928,'54408'),(23425,16929,'54409'),(23426,16930,'54410'),(23427,16931,'54411'),(23428,16932,'54412'),(23429,16933,'54413'),(23430,16934,'54414'),(23431,16935,'54415'),(23432,16936,'54416'),(23433,16937,'54417'),(23434,16938,'54418'),(23435,16939,'54420'),(23436,16940,'54421'),(23437,16941,'54422'),(23438,16942,'54423'),(23439,16943,'54424'),(23440,16944,'54425'),(23441,16945,'54426'),(23442,16946,'54427'),(23443,16947,'54428'),(23444,16948,'54429'),(23445,16949,'54430'),(23446,16950,'54432'),(23447,16951,'54433'),(23448,16952,'54434'),(23449,16953,'54435'),(23450,16954,'54436'),(23451,16955,'54437'),(23452,16956,'54439'),(23453,16957,'54440'),(23454,16958,'54441'),(23455,16959,'54442'),(23456,16960,'54443'),(23457,16961,'54444'),(23458,16962,'54446'),(23459,16963,'54447'),(23460,16964,'54448'),(23461,16965,'54450'),(23462,16966,'54451'),(23463,16967,'54452'),(23464,16968,'54454'),(23465,16969,'54455'),(23466,16970,'54456'),(23467,16971,'54457'),(23468,16972,'54458'),(23469,16973,'54459'),(23470,16974,'54460'),(23471,16975,'54462'),(23472,16976,'54463'),(23473,16977,'54464'),(23474,16978,'54465'),(23475,16979,'54466'),(23476,16980,'54467'),(23477,16981,'54469'),(23478,16982,'54470'),(23479,16983,'54471'),(23480,16984,'54473'),(23481,16985,'54474'),(23482,16986,'54475'),(23483,16987,'54476'),(23484,16988,'54479'),(23485,16989,'54480'),(23486,16990,'54481'),(23487,16990,'54492'),(23488,16991,'54484'),(23489,16992,'54485'),(23490,16993,'54486'),(23491,16994,'54487'),(23492,16995,'54488'),(23493,16996,'54489'),(23494,16997,'54490'),(23495,16998,'54491'),(23496,16999,'54493'),(23497,17000,'54494'),(23498,17000,'54495'),(23499,17001,'54498'),(23500,17002,'54499'),(23501,17003,'54501'),(23502,17004,'54511'),(23503,17005,'54512'),(23504,17006,'54513'),(23505,17007,'54514'),(23506,17008,'54515'),(23507,17009,'54517'),(23508,17010,'54519'),(23509,17011,'54520'),(23510,17012,'54521'),(23511,17013,'54524'),(23512,17014,'54525'),(23513,17015,'54526'),(23514,17016,'54527'),(23515,17017,'54529'),(23516,17018,'54530'),(23517,17019,'54531'),(23518,17020,'54532'),(23519,17021,'54534'),(23520,17022,'54536'),(23521,17023,'54537'),(23522,17024,'54538'),(23523,17025,'54539'),(23524,17026,'54540'),(23525,17027,'54541'),(23526,17028,'54542'),(23527,17029,'54543'),(23528,17030,'54545'),(23529,17031,'54546'),(23530,17032,'54547'),(23531,17033,'54548'),(23532,17034,'54550'),(23533,17035,'54552'),(23534,17036,'54554'),(23535,17037,'54555'),(23536,17038,'54556'),(23537,17039,'54557'),(23538,17040,'54558'),(23539,17041,'54559'),(23540,17042,'54560'),(23541,17043,'54561'),(23542,17044,'54562'),(23543,17045,'54563'),(23544,17046,'54564'),(23545,17047,'54565'),(23546,17048,'54566'),(23547,17049,'54568'),(23548,17050,'54601'),(23549,17050,'54602'),(23550,17050,'54603'),(23551,17051,'54610'),(23552,17052,'54611'),(23553,17053,'54612'),(23554,17054,'54613'),(23555,17055,'54614'),(23556,17056,'54615'),(23557,17057,'54616'),(23558,17058,'54618'),(23559,17059,'54619'),(23560,17060,'54620'),(23561,17061,'54621'),(23562,17062,'54622'),(23563,17063,'54623'),(23564,17064,'54624'),(23565,17065,'54625'),(23566,17066,'54626'),(23567,17067,'54627'),(23568,17068,'54628'),(23569,17069,'54629'),(23570,17070,'54630'),(23571,17071,'54631'),(23572,17072,'54632'),(23573,17073,'54634'),(23574,17074,'54635'),(23575,17075,'54636'),(23576,17076,'54637'),(23577,17077,'54638'),(23578,17078,'54639'),(23579,17079,'54640'),(23580,17080,'54641'),(23581,17081,'54642'),(23582,17082,'54643'),(23583,17083,'54644'),(23584,17084,'54645'),(23585,17085,'54646'),(23586,17086,'54648'),(23587,17087,'54649'),(23588,17088,'54650'),(23589,17089,'54651'),(23590,17090,'54652'),(23591,17091,'54653'),(23592,17092,'54654'),(23593,17093,'54655'),(23594,17094,'54656'),(23595,17095,'54657'),(23596,17096,'54658'),(23597,17097,'54659'),(23598,17098,'54660'),(23599,17099,'54661'),(23600,17100,'54662'),(23601,17101,'54664'),(23602,17102,'54665'),(23603,17103,'54666'),(23604,17104,'54667'),(23605,17105,'54669'),(23606,17106,'54670'),(23607,17107,'54701'),(23608,17107,'54702'),(23609,17107,'54703'),(23610,17108,'54720'),(23611,17109,'54721'),(23612,17110,'54722'),(23613,17111,'54723'),(23614,17112,'54724'),(23615,17113,'54725'),(23616,17114,'54726'),(23617,17115,'54727'),(23618,17116,'54728'),(23619,17117,'54729'),(23620,17117,'54774'),(23621,17118,'54730'),(23622,17119,'54731'),(23623,17120,'54732'),(23624,17121,'54733'),(23625,17122,'54734'),(23626,17123,'54735'),(23627,17124,'54736'),(23628,17125,'54737'),(23629,17126,'54738'),(23630,17127,'54739'),(23631,17128,'54740'),(23632,17129,'54741'),(23633,17130,'54742'),(23634,17131,'54743'),(23635,17132,'54744'),(23636,17133,'54745'),(23637,17134,'54746'),(23638,17135,'54747'),(23639,17136,'54748'),(23640,17137,'54749'),(23641,17138,'54750'),(23642,17139,'54751'),(23643,17140,'54754'),(23644,17141,'54755'),(23645,17142,'54756'),(23646,17143,'54757'),(23647,17144,'54758'),(23648,17145,'54759'),(23649,17146,'54760'),(23650,17147,'54761'),(23651,17148,'54762'),(23652,17149,'54763'),(23653,17150,'54764'),(23654,17151,'54765'),(23655,17152,'54766'),(23656,17153,'54767'),(23657,17154,'54768'),(23658,17155,'54769'),(23659,17156,'54770'),(23660,17157,'54771'),(23661,17158,'54772'),(23662,17159,'54773'),(23663,17160,'54801'),(23664,17161,'54805'),(23665,17162,'54806'),(23666,17163,'54810'),(23667,17164,'54812'),(23668,17165,'54813'),(23669,17166,'54814'),(23670,17167,'54816'),(23671,17168,'54817'),(23672,17169,'54818'),(23673,17170,'54819'),(23674,17171,'54820'),(23675,17172,'54821'),(23676,17173,'54822'),(23677,17174,'54824'),(23678,17175,'54826'),(23679,17176,'54827'),(23680,17177,'54828'),(23681,17178,'54829'),(23682,17179,'54830'),(23683,17180,'54832'),(23684,17181,'54834'),(23685,17182,'54835'),(23686,17183,'54836'),(23687,17184,'54837'),(23688,17185,'54838'),(23689,17186,'54839'),(23690,17187,'54840'),(23691,17188,'54841'),(23692,17189,'54842'),(23693,17190,'54843'),(23694,17191,'54844'),(23695,17192,'54845'),(23696,17193,'54846'),(23697,17194,'54847'),(23698,17195,'54848'),(23699,17196,'54849'),(23700,17197,'54850'),(23701,17198,'54851'),(23702,17199,'54853'),(23703,17200,'54854'),(23704,17201,'54855'),(23705,17202,'54856'),(23706,17203,'54857'),(23707,17204,'54858'),(23708,17205,'54859'),(23709,17206,'54861'),(23710,17207,'54862'),(23711,17208,'54864'),(23712,17209,'54865'),(23713,17210,'54867'),(23714,17211,'54868'),(23715,17212,'54870'),(23716,17213,'54871'),(23717,17214,'54872'),(23718,17215,'54873'),(23719,17216,'54874'),(23720,17217,'54875'),(23721,17218,'54876'),(23722,17219,'54880'),(23723,17220,'54888'),(23724,17221,'54889'),(23725,17222,'54890'),(23726,17223,'54891'),(23727,17224,'54893'),(23728,17225,'54895'),(23729,17226,'54896'),(23730,17227,'54901'),(23731,17227,'54902'),(23732,17227,'54903'),(23733,17227,'54904'),(23734,17227,'54906'),(23735,17228,'54909'),(23736,17229,'54911'),(23737,17229,'54912'),(23738,17229,'54913'),(23739,17229,'54914'),(23740,17229,'54915'),(23741,17229,'54919'),(23742,17230,'54921'),(23743,17231,'54922'),(23744,17232,'54923'),(23745,17233,'54926'),(23746,17234,'54927'),(23747,17235,'54928'),(23748,17236,'54929'),(23749,17237,'54930'),(23750,17238,'54931'),(23751,17239,'54932'),(23752,17240,'54933'),(23753,17241,'54934'),(23754,17242,'54935'),(23755,17242,'54936'),(23756,17242,'54937'),(23757,17243,'54940'),(23758,17244,'54941'),(23759,17245,'54942'),(23760,17246,'54943'),(23761,17247,'54944'),(23762,17248,'54945'),(23763,17248,'54990'),(23764,17249,'54946'),(23765,17250,'54947'),(23766,17251,'54948'),(23767,17252,'54949'),(23768,17253,'54950'),(23769,17254,'54951'),(23770,17255,'54952'),(23771,17256,'54956'),(23772,17256,'54957'),(23773,17257,'54960'),(23774,17258,'54961'),(23775,17259,'54962'),(23776,17260,'54963'),(23777,17261,'54964'),(23778,17262,'54965'),(23779,17263,'54966'),(23780,17264,'54967'),(23781,17265,'54968'),(23782,17266,'54969'),(23783,17267,'54970'),(23784,17268,'54971'),(23785,17269,'54974'),(23786,17270,'54975'),(23787,17271,'54976'),(23788,17272,'54977'),(23789,17273,'54978'),(23790,17274,'54979'),(23791,17275,'54980'),(23792,17276,'54981'),(23793,17277,'54982'),(23794,17278,'54983'),(23795,17279,'54984'),(23796,17280,'54985'),(23797,17281,'54986'),(23798,17282,'55001'),(23799,17283,'55002'),(23800,17284,'55003'),(23801,17285,'55005'),(23802,17286,'55006'),(23803,17287,'55007'),(23804,17288,'55008'),(23805,17289,'55009'),(23806,17290,'55010'),(23807,17291,'55011'),(23808,17292,'55012'),(23809,17293,'55013'),(23810,17294,'55014'),(23811,17295,'55016'),(23812,17296,'55017'),(23813,17297,'55018'),(23814,17298,'55019'),(23815,17299,'55020'),(23816,17300,'55021'),(23817,17301,'55024'),(23818,17302,'55025'),(23819,17303,'55026'),(23820,17304,'55027'),(23821,17305,'55029'),(23822,17306,'55030'),(23823,17307,'55031'),(23824,17308,'55032'),(23825,17309,'55033'),(23826,17310,'55036'),(23827,17311,'55037'),(23828,17312,'55038'),(23829,17313,'55040'),(23830,17314,'55041'),(23831,17315,'55042'),(23832,17316,'55043'),(23833,17317,'55044'),(23834,17318,'55045'),(23835,17319,'55046'),(23836,17320,'55047'),(23837,17321,'55049'),(23838,17322,'55051'),(23839,17323,'55052'),(23840,17324,'55053'),(23841,17325,'55054'),(23842,17326,'55055'),(23843,17327,'55056'),(23844,17328,'55057'),(23845,17329,'55060'),(23846,17330,'55063'),(23847,17331,'55065'),(23848,17332,'55066'),(23849,17333,'55067'),(23850,17334,'55068'),(23851,17335,'55069'),(23852,17336,'55070'),(23853,17337,'55071'),(23854,17338,'55072'),(23855,17339,'55073'),(23856,17340,'55074'),(23857,17341,'55075'),(23858,17342,'55076'),(23859,17342,'55077'),(23860,17343,'55078'),(23861,17343,'55079'),(23862,17344,'55080'),(23863,17345,'55082'),(23864,17345,'55083'),(23865,17346,'55084'),(23866,17347,'55085'),(23867,17348,'55087'),(23868,17349,'55088'),(23869,17350,'55089'),(23870,17351,'55090'),(23871,17352,'55092'),(23872,17353,'55101'),(23873,17353,'55102'),(23874,17353,'55103'),(23875,17353,'55104'),(23876,17353,'55105'),(23877,17353,'55106'),(23878,17353,'55107'),(23879,17353,'55108'),(23880,17353,'55109'),(23881,17353,'55110'),(23882,17353,'55111'),(23883,17353,'55112'),(23884,17353,'55113'),(23885,17353,'55114'),(23886,17353,'55115'),(23887,17353,'55116'),(23888,17353,'55117'),(23889,17353,'55118'),(23890,17353,'55119'),(23891,17353,'55120'),(23892,17353,'55121'),(23893,17353,'55122'),(23894,17353,'55123'),(23895,17353,'55124'),(23896,17353,'55125'),(23897,17353,'55126'),(23898,17353,'55127'),(23899,17353,'55128'),(23900,17353,'55129'),(23901,17353,'55133'),(23902,17353,'55144'),(23903,17353,'55145'),(23904,17353,'55146'),(23905,17353,'55155'),(23906,17353,'55161'),(23907,17353,'55164'),(23908,17353,'55165'),(23909,17353,'55166'),(23910,17353,'55168'),(23911,17353,'55169'),(23912,17353,'55170'),(23913,17353,'55171'),(23914,17353,'55172'),(23915,17353,'55175'),(23916,17353,'55177'),(23917,17353,'55182'),(23918,17353,'55187'),(23919,17353,'55188'),(23920,17353,'55189'),(23921,17353,'55190'),(23922,17353,'55191'),(23923,17354,'55150'),(23924,17355,'55301'),(23925,17356,'55302'),(23926,17357,'55303'),(23927,17358,'55304'),(23928,17359,'55305'),(23929,17359,'55343'),(23930,17360,'55306'),(23931,17360,'55337'),(23932,17361,'55307'),(23933,17362,'55308'),(23934,17363,'55309'),(23935,17364,'55310'),(23936,17365,'55311'),(23937,17365,'55369'),(23938,17365,'55569'),(23939,17366,'55312'),(23940,17367,'55313'),(23941,17368,'55314'),(23942,17369,'55315'),(23943,17370,'55316'),(23944,17371,'55317'),(23945,17372,'55318'),(23946,17373,'55319'),(23947,17374,'55320'),(23948,17375,'55321'),(23949,17376,'55322'),(23950,17377,'55323'),(23951,17378,'55324'),(23952,17379,'55325'),(23953,17380,'55327'),(23954,17381,'55328'),(23955,17382,'55329'),(23956,17383,'55330'),(23957,17384,'55331'),(23958,17385,'55332'),(23959,17386,'55333'),(23960,17387,'55334'),(23961,17388,'55335'),(23962,17389,'55336'),(23963,17390,'55338'),(23964,17391,'55339'),(23965,17392,'55340'),(23966,17393,'55341'),(23967,17394,'55342'),(23968,17395,'55344'),(23969,17395,'55346'),(23970,17395,'55347'),(23971,17396,'55345'),(23972,17397,'55348'),(23973,17397,'55359'),(23974,17397,'55393'),(23975,17397,'55570'),(23976,17397,'55571'),(23977,17397,'55572'),(23978,17397,'55574'),(23979,17397,'55576'),(23980,17397,'55577'),(23981,17397,'55578'),(23982,17397,'55579'),(23983,17397,'55592'),(23984,17397,'55593'),(23985,17398,'55349'),(23986,17398,'55575'),(23987,17399,'55350'),(23988,17400,'55352'),(23989,17401,'55353'),(23990,17402,'55354'),(23991,17403,'55355'),(23992,17404,'55356'),(23993,17405,'55357'),(23994,17405,'55595'),(23995,17405,'55596'),(23996,17405,'55597'),(23997,17405,'55598'),(23998,17405,'55599'),(23999,17406,'55358'),(24000,17407,'55360'),(24001,17408,'55361'),(24002,17409,'55362'),(24003,17409,'55365'),(24004,17409,'55561'),(24005,17409,'55563'),(24006,17409,'55565'),(24007,17409,'55580'),(24008,17409,'55581'),(24009,17409,'55582'),(24010,17409,'55584'),(24011,17409,'55585'),(24012,17409,'55586'),(24013,17409,'55587'),(24014,17409,'55588'),(24015,17409,'55589'),(24016,17409,'55590'),(24017,17409,'55591'),(24018,17410,'55363'),(24019,17411,'55364'),(24020,17412,'55366'),(24021,17413,'55367'),(24022,17414,'55368'),(24023,17414,'55383'),(24024,17414,'55554'),(24025,17414,'55583'),(24026,17415,'55370'),(24027,17416,'55371'),(24028,17417,'55372'),(24029,17418,'55373'),(24030,17419,'55374'),(24031,17420,'55375'),(24032,17421,'55376'),(24033,17422,'55377'),(24034,17423,'55378'),(24035,17424,'55379'),(24036,17425,'55380'),(24037,17426,'55381'),(24038,17427,'55382'),(24039,17428,'55384'),(24040,17429,'55385'),(24041,17430,'55386'),(24042,17431,'55387'),(24043,17432,'55388'),(24044,17433,'55389'),(24045,17434,'55390'),(24046,17435,'55391'),(24047,17436,'55392'),(24048,17437,'55394'),(24049,17437,'55397'),(24050,17437,'55399'),(24051,17437,'55550'),(24052,17437,'55551'),(24053,17437,'55552'),(24054,17437,'55553'),(24055,17437,'55555'),(24056,17437,'55556'),(24057,17437,'55557'),(24058,17437,'55558'),(24059,17437,'55559'),(24060,17437,'55560'),(24061,17437,'55562'),(24062,17437,'55564'),(24063,17437,'55566'),(24064,17437,'55567'),(24065,17437,'55568'),(24066,17437,'55573'),(24067,17437,'55594'),(24068,17438,'55395'),(24069,17439,'55396'),(24070,17440,'55398'),(24071,17441,'55401'),(24072,17441,'55402'),(24073,17441,'55403'),(24074,17441,'55404'),(24075,17441,'55405'),(24076,17441,'55406'),(24077,17441,'55407'),(24078,17441,'55408'),(24079,17441,'55409'),(24080,17441,'55410'),(24081,17441,'55411'),(24082,17441,'55412'),(24083,17441,'55413'),(24084,17441,'55414'),(24085,17441,'55415'),(24086,17441,'55416'),(24087,17441,'55417'),(24088,17441,'55418'),(24089,17441,'55419'),(24090,17441,'55420'),(24091,17441,'55421'),(24092,17441,'55422'),(24093,17441,'55423'),(24094,17441,'55424'),(24095,17441,'55425'),(24096,17441,'55426'),(24097,17441,'55427'),(24098,17441,'55428'),(24099,17441,'55429'),(24100,17441,'55430'),(24101,17441,'55431'),(24102,17441,'55432'),(24103,17441,'55433'),(24104,17441,'55434'),(24105,17441,'55435'),(24106,17441,'55436'),(24107,17441,'55437'),(24108,17441,'55438'),(24109,17441,'55439'),(24110,17441,'55440'),(24111,17441,'55441'),(24112,17441,'55442'),(24113,17441,'55443'),(24114,17441,'55444'),(24115,17441,'55445'),(24116,17441,'55446'),(24117,17441,'55447'),(24118,17441,'55448'),(24119,17441,'55449'),(24120,17441,'55450'),(24121,17441,'55454'),(24122,17441,'55455'),(24123,17441,'55458'),(24124,17441,'55459'),(24125,17441,'55460'),(24126,17441,'55468'),(24127,17441,'55470'),(24128,17441,'55472'),(24129,17441,'55473'),(24130,17441,'55474'),(24131,17441,'55478'),(24132,17441,'55479'),(24133,17441,'55480'),(24134,17441,'55483'),(24135,17441,'55484'),(24136,17441,'55485'),(24137,17441,'55486'),(24138,17441,'55487'),(24139,17441,'55488'),(24140,17442,'55601'),(24141,17443,'55602'),(24142,17444,'55603'),(24143,17445,'55604'),(24144,17446,'55605'),(24145,17447,'55606'),(24146,17448,'55607'),(24147,17449,'55609'),(24148,17450,'55612'),(24149,17451,'55613'),(24150,17452,'55614'),(24151,17453,'55615'),(24152,17454,'55616'),(24153,17455,'55701'),(24154,17456,'55702'),(24155,17457,'55703'),(24156,17458,'55704'),(24157,17459,'55705'),(24158,17460,'55706'),(24159,17461,'55707'),(24160,17462,'55708'),(24161,17463,'55709'),(24162,17464,'55710'),(24163,17465,'55711'),(24164,17466,'55712'),(24165,17467,'55713'),(24166,17468,'55716'),(24167,17469,'55717'),(24168,17470,'55718'),(24169,17471,'55719'),(24170,17472,'55720'),(24171,17473,'55721'),(24172,17474,'55722'),(24173,17475,'55723'),(24174,17476,'55724'),(24175,17477,'55725'),(24176,17478,'55726'),(24177,17479,'55730'),(24178,17479,'55744'),(24179,17479,'55745'),(24180,17480,'55731'),(24181,17481,'55732'),(24182,17482,'55733'),(24183,17483,'55734'),(24184,17484,'55735'),(24185,17485,'55736'),(24186,17486,'55738'),(24187,17487,'55741'),(24188,17488,'55742'),(24189,17489,'55746'),(24190,17489,'55747'),(24191,17490,'55748'),(24192,17491,'55749'),(24193,17492,'55750'),(24194,17493,'55751'),(24195,17494,'55752'),(24196,17495,'55753'),(24197,17496,'55756'),(24198,17497,'55757'),(24199,17498,'55758'),(24200,17499,'55760'),(24201,17500,'55763'),(24202,17501,'55764'),(24203,17502,'55765'),(24204,17503,'55766'),(24205,17504,'55767'),(24206,17505,'55768'),(24207,17506,'55769'),(24208,17507,'55771'),(24209,17508,'55772'),(24210,17509,'55775'),(24211,17510,'55777'),(24212,17510,'55792'),(24213,17511,'55779'),(24214,17512,'55780'),(24215,17513,'55781'),(24216,17514,'55782'),(24217,17515,'55783'),(24218,17516,'55784'),(24219,17517,'55785'),(24220,17518,'55786'),(24221,17519,'55787'),(24222,17520,'55790'),(24223,17521,'55791'),(24224,17522,'55793'),(24225,17523,'55795'),(24226,17524,'55796'),(24227,17525,'55797'),(24228,17526,'55798'),(24229,17527,'55801'),(24230,17527,'55802'),(24231,17527,'55803'),(24232,17527,'55804'),(24233,17527,'55805'),(24234,17527,'55806'),(24235,17527,'55807'),(24236,17527,'55808'),(24237,17527,'55810'),(24238,17527,'55811'),(24239,17527,'55812'),(24240,17527,'55814'),(24241,17527,'55815'),(24242,17527,'55816'),(24243,17528,'55901'),(24244,17528,'55902'),(24245,17528,'55903'),(24246,17528,'55904'),(24247,17528,'55905'),(24248,17528,'55906'),(24249,17529,'55909'),(24250,17530,'55910'),(24251,17531,'55912'),(24252,17532,'55917'),(24253,17533,'55918'),(24254,17534,'55919'),(24255,17535,'55920'),(24256,17536,'55921'),(24257,17537,'55922'),(24258,17538,'55923'),(24259,17539,'55924'),(24260,17540,'55925'),(24261,17541,'55926'),(24262,17542,'55927'),(24263,17543,'55929'),(24264,17544,'55931'),(24265,17545,'55932'),(24266,17546,'55933'),(24267,17547,'55934'),(24268,17548,'55935'),(24269,17549,'55936'),(24270,17550,'55939'),(24271,17551,'55940'),(24272,17552,'55941'),(24273,17553,'55942'),(24274,17554,'55943'),(24275,17555,'55944'),(24276,17556,'55945'),(24277,17557,'55946'),(24278,17558,'55947'),(24279,17559,'55949'),(24280,17560,'55950'),(24281,17561,'55951'),(24282,17562,'55952'),(24283,17563,'55953'),(24284,17564,'55954'),(24285,17565,'55955'),(24286,17566,'55956'),(24287,17567,'55957'),(24288,17568,'55959'),(24289,17569,'55960'),(24290,17570,'55961'),(24291,17571,'55962'),(24292,17572,'55963'),(24293,17573,'55964'),(24294,17574,'55965'),(24295,17575,'55967'),(24296,17576,'55968'),(24297,17577,'55969'),(24298,17578,'55970'),(24299,17579,'55971'),(24300,17580,'55972'),(24301,17581,'55973'),(24302,17582,'55974'),(24303,17583,'55975'),(24304,17584,'55976'),(24305,17585,'55977'),(24306,17586,'55979'),(24307,17587,'55981'),(24308,17588,'55982'),(24309,17589,'55983'),(24310,17590,'55985'),(24311,17591,'55987'),(24312,17592,'55988'),(24313,17593,'55990'),(24314,17594,'55991'),(24315,17595,'55992'),(24316,17596,'56001'),(24317,17596,'56002'),(24318,17596,'56003'),(24319,17596,'56006'),(24320,17597,'56007'),(24321,17598,'56009'),(24322,17599,'56010'),(24323,17600,'56011'),(24324,17601,'56013'),(24325,17602,'56014'),(24326,17603,'56016'),(24327,17604,'56017'),(24328,17605,'56019'),(24329,17606,'56020'),(24330,17607,'56021'),(24331,17608,'56022'),(24332,17609,'56023'),(24333,17610,'56024'),(24334,17611,'56025'),(24335,17612,'56026'),(24336,17613,'56027'),(24337,17614,'56028'),(24338,17615,'56029'),(24339,17616,'56030'),(24340,17617,'56031'),(24341,17618,'56032'),(24342,17619,'56033'),(24343,17620,'56034'),(24344,17621,'56035'),(24345,17622,'56036'),(24346,17623,'56037'),(24347,17624,'56039'),(24348,17625,'56041'),(24349,17626,'56042'),(24350,17627,'56043'),(24351,17628,'56044'),(24352,17629,'56045'),(24353,17630,'56046'),(24354,17631,'56047'),(24355,17632,'56048'),(24356,17633,'56050'),(24357,17634,'56051'),(24358,17635,'56052'),(24359,17636,'56054'),(24360,17637,'56055'),(24361,17638,'56056'),(24362,17639,'56057'),(24363,17640,'56058'),(24364,17641,'56060'),(24365,17642,'56062'),(24366,17643,'56063'),(24367,17644,'56064'),(24368,17645,'56065'),(24369,17646,'56068'),(24370,17647,'56069'),(24371,17648,'56071'),(24372,17649,'56072'),(24373,17650,'56073'),(24374,17651,'56074'),(24375,17652,'56075'),(24376,17653,'56076'),(24377,17654,'56078'),(24378,17655,'56080'),(24379,17656,'56081'),(24380,17657,'56082'),(24381,17658,'56083'),(24382,17659,'56084'),(24383,17660,'56085'),(24384,17661,'56087'),(24385,17662,'56088'),(24386,17663,'56089'),(24387,17664,'56090'),(24388,17665,'56091'),(24389,17666,'56093'),(24390,17667,'56096'),(24391,17668,'56097'),(24392,17669,'56098'),(24393,17670,'56101'),(24394,17671,'56110'),(24395,17672,'56111'),(24396,17673,'56113'),(24397,17674,'56114'),(24398,17675,'56115'),(24399,17676,'56116'),(24400,17677,'56117'),(24401,17678,'56118'),(24402,17679,'56119'),(24403,17680,'56120'),(24404,17681,'56121'),(24405,17682,'56122'),(24406,17683,'56123'),(24407,17684,'56125'),(24408,17685,'56127'),(24409,17686,'56128'),(24410,17687,'56129'),(24411,17688,'56131'),(24412,17689,'56132'),(24413,17690,'56134'),(24414,17691,'56136'),(24415,17692,'56137'),(24416,17693,'56138'),(24417,17694,'56139'),(24418,17695,'56140'),(24419,17696,'56141'),(24420,17697,'56142'),(24421,17698,'56143'),(24422,17699,'56144'),(24423,17700,'56145'),(24424,17701,'56146'),(24425,17702,'56147'),(24426,17703,'56149'),(24427,17704,'56150'),(24428,17705,'56151'),(24429,17706,'56152'),(24430,17707,'56153'),(24431,17708,'56155'),(24432,17709,'56156'),(24433,17710,'56157'),(24434,17711,'56158'),(24435,17712,'56159'),(24436,17713,'56160'),(24437,17714,'56161'),(24438,17715,'56162'),(24439,17716,'56164'),(24440,17717,'56165'),(24441,17718,'56166'),(24442,17719,'56167'),(24443,17720,'56168'),(24444,17721,'56169'),(24445,17722,'56170'),(24446,17723,'56171'),(24447,17724,'56172'),(24448,17725,'56173'),(24449,17726,'56174'),(24450,17727,'56175'),(24451,17728,'56176'),(24452,17729,'56177'),(24453,17730,'56178'),(24454,17731,'56180'),(24455,17732,'56181'),(24456,17733,'56183'),(24457,17734,'56185'),(24458,17735,'56186'),(24459,17736,'56187'),(24460,17737,'56201'),(24461,17738,'56207'),(24462,17739,'56208'),(24463,17740,'56209'),(24464,17741,'56210'),(24465,17742,'56211'),(24466,17743,'56212'),(24467,17744,'56214'),(24468,17745,'56215'),(24469,17746,'56216'),(24470,17747,'56218'),(24471,17748,'56219'),(24472,17749,'56220'),(24473,17750,'56221'),(24474,17751,'56222'),(24475,17752,'56223'),(24476,17753,'56224'),(24477,17754,'56225'),(24478,17755,'56226'),(24479,17756,'56227'),(24480,17757,'56228'),(24481,17758,'56229'),(24482,17759,'56230'),(24483,17760,'56231'),(24484,17761,'56232'),(24485,17762,'56235'),(24486,17763,'56236'),(24487,17764,'56237'),(24488,17765,'56239'),(24489,17766,'56240'),(24490,17767,'56241'),(24491,17768,'56243'),(24492,17769,'56244'),(24493,17770,'56245'),(24494,17771,'56246'),(24495,17772,'56248'),(24496,17773,'56249'),(24497,17774,'56251'),(24498,17775,'56252'),(24499,17776,'56253'),(24500,17777,'56255'),(24501,17778,'56256'),(24502,17779,'56257'),(24503,17780,'56258'),(24504,17781,'56260'),(24505,17782,'56262'),(24506,17783,'56263'),(24507,17784,'56264'),(24508,17785,'56265'),(24509,17786,'56266'),(24510,17787,'56267'),(24511,17788,'56270'),(24512,17789,'56271'),(24513,17790,'56273'),(24514,17791,'56274'),(24515,17792,'56276'),(24516,17793,'56277'),(24517,17794,'56278'),(24518,17795,'56279'),(24519,17796,'56280'),(24520,17797,'56281'),(24521,17798,'56282'),(24522,17799,'56283'),(24523,17800,'56284'),(24524,17801,'56285'),(24525,17802,'56287'),(24526,17803,'56288'),(24527,17804,'56289'),(24528,17805,'56291'),(24529,17806,'56292'),(24530,17807,'56293'),(24531,17808,'56294'),(24532,17809,'56295'),(24533,17810,'56296'),(24534,17811,'56297'),(24535,17812,'56301'),(24536,17812,'56302'),(24537,17812,'56303'),(24538,17812,'56304'),(24539,17812,'56372'),(24540,17812,'56393'),(24541,17812,'56395'),(24542,17812,'56396'),(24543,17812,'56397'),(24544,17812,'56398'),(24545,17812,'56399'),(24546,17813,'56307'),(24547,17814,'56308'),(24548,17815,'56309'),(24549,17816,'56310'),(24550,17817,'56311'),(24551,17818,'56312'),(24552,17819,'56313'),(24553,17820,'56314'),(24554,17821,'56315'),(24555,17822,'56316'),(24556,17823,'56317'),(24557,17824,'56318'),(24558,17825,'56319'),(24559,17826,'56320'),(24560,17827,'56321'),(24561,17828,'56323'),(24562,17829,'56324'),(24563,17830,'56325'),(24564,17831,'56326'),(24565,17832,'56327'),(24566,17833,'56328'),(24567,17834,'56329'),(24568,17835,'56330'),(24569,17836,'56331'),(24570,17837,'56332'),(24571,17838,'56333'),(24572,17839,'56334'),(24573,17840,'56335'),(24574,17841,'56336'),(24575,17842,'56338'),(24576,17843,'56339'),(24577,17844,'56340'),(24578,17845,'56341'),(24579,17846,'56342'),(24580,17847,'56343'),(24581,17848,'56344'),(24582,17849,'56345'),(24583,17850,'56347'),(24584,17851,'56349'),(24585,17852,'56350'),(24586,17853,'56352'),(24587,17854,'56353'),(24588,17855,'56354'),(24589,17856,'56355'),(24590,17857,'56356'),(24591,17858,'56357'),(24592,17859,'56358'),(24593,17860,'56359'),(24594,17861,'56360'),(24595,17862,'56361'),(24596,17863,'56362'),(24597,17864,'56363'),(24598,17865,'56364'),(24599,17866,'56367'),(24600,17867,'56368'),(24601,17868,'56369'),(24602,17869,'56371'),(24603,17870,'56373'),(24604,17871,'56374'),(24605,17872,'56375'),(24606,17873,'56376'),(24607,17874,'56377'),(24608,17875,'56378'),(24609,17876,'56379'),(24610,17877,'56381'),(24611,17878,'56382'),(24612,17879,'56384'),(24613,17880,'56385'),(24614,17881,'56386'),(24615,17882,'56387'),(24616,17883,'56389'),(24617,17884,'56401'),(24618,17885,'56425'),(24619,17886,'56430'),(24620,17887,'56431'),(24621,17888,'56433'),(24622,17889,'56434'),(24623,17890,'56435'),(24624,17891,'56436'),(24625,17892,'56437'),(24626,17893,'56438'),(24627,17894,'56440'),(24628,17895,'56441'),(24629,17896,'56442'),(24630,17897,'56443'),(24631,17898,'56444'),(24632,17899,'56446'),(24633,17900,'56447'),(24634,17901,'56448'),(24635,17902,'56449'),(24636,17903,'56450'),(24637,17904,'56452'),(24638,17905,'56453'),(24639,17906,'56455'),(24640,17907,'56456'),(24641,17908,'56458'),(24642,17909,'56459'),(24643,17910,'56461'),(24644,17911,'56464'),(24645,17912,'56465'),(24646,17913,'56466'),(24647,17914,'56467'),(24648,17915,'56468'),(24649,17916,'56469'),(24650,17917,'56470'),(24651,17918,'56472'),(24652,17919,'56473'),(24653,17920,'56474'),(24654,17921,'56475'),(24655,17922,'56477'),(24656,17923,'56478'),(24657,17924,'56479'),(24658,17925,'56481'),(24659,17926,'56482'),(24660,17927,'56484'),(24661,17928,'56501'),(24662,17928,'56502'),(24663,17929,'56510'),(24664,17930,'56511'),(24665,17931,'56513'),(24666,17932,'56514'),(24667,17933,'56515'),(24668,17934,'56516'),(24669,17935,'56517'),(24670,17936,'56518'),(24671,17937,'56519'),(24672,17938,'56520'),(24673,17939,'56521'),(24674,17940,'56522'),(24675,17941,'56523'),(24676,17942,'56524'),(24677,17943,'56525'),(24678,17944,'56527'),(24679,17945,'56528'),(24680,17946,'56529'),(24681,17947,'56531'),(24682,17948,'56533'),(24683,17949,'56534'),(24684,17950,'56535'),(24685,17951,'56536'),(24686,17952,'56537'),(24687,17952,'56538'),(24688,17953,'56540'),(24689,17954,'56541'),(24690,17955,'56542'),(24691,17956,'56543'),(24692,17957,'56544'),(24693,17958,'56545'),(24694,17959,'56546'),(24695,17960,'56547'),(24696,17961,'56548'),(24697,17962,'56549'),(24698,17963,'56550'),(24699,17964,'56551'),(24700,17965,'56552'),(24701,17966,'56553'),(24702,17967,'56554'),(24703,17968,'56556'),(24704,17969,'56557'),(24705,17970,'56560'),(24706,17970,'56561'),(24707,17970,'56562'),(24708,17970,'56563'),(24709,17971,'56565'),(24710,17972,'56566'),(24711,17973,'56567'),(24712,17974,'56568'),(24713,17975,'56569'),(24714,17976,'56570'),(24715,17977,'56571'),(24716,17978,'56572'),(24717,17979,'56573'),(24718,17980,'56574'),(24719,17981,'56575'),(24720,17982,'56576'),(24721,17983,'56577'),(24722,17984,'56578'),(24723,17985,'56579'),(24724,17986,'56580'),(24725,17987,'56581'),(24726,17988,'56583'),(24727,17989,'56584'),(24728,17990,'56585'),(24729,17991,'56586'),(24730,17992,'56587'),(24731,17993,'56588'),(24732,17994,'56589'),(24733,17995,'56590'),(24734,17996,'56591'),(24735,17997,'56592'),(24736,17998,'56593'),(24737,17999,'56594'),(24738,18000,'56601'),(24739,18000,'56619'),(24740,18001,'56621'),(24741,18002,'56623'),(24742,18003,'56626'),(24743,18004,'56627'),(24744,18005,'56628'),(24745,18006,'56629'),(24746,18007,'56630'),(24747,18008,'56631'),(24748,18009,'56633'),(24749,18010,'56634'),(24750,18011,'56636'),(24751,18012,'56637'),(24752,18013,'56639'),(24753,18014,'56641'),(24754,18015,'56644'),(24755,18016,'56646'),(24756,18017,'56647'),(24757,18018,'56649'),(24758,18019,'56650'),(24759,18020,'56651'),(24760,18021,'56652'),(24761,18022,'56653'),(24762,18023,'56654'),(24763,18024,'56655'),(24764,18025,'56657'),(24765,18026,'56658'),(24766,18027,'56659'),(24767,18028,'56660'),(24768,18029,'56661'),(24769,18030,'56662'),(24770,18031,'56663'),(24771,18032,'56666'),(24772,18033,'56667'),(24773,18034,'56668'),(24774,18035,'56669'),(24775,18036,'56670'),(24776,18037,'56671'),(24777,18038,'56672'),(24778,18039,'56673'),(24779,18040,'56676'),(24780,18041,'56678'),(24781,18042,'56679'),(24782,18043,'56680'),(24783,18044,'56681'),(24784,18045,'56682'),(24785,18046,'56683'),(24786,18047,'56684'),(24787,18048,'56685'),(24788,18049,'56686'),(24789,18050,'56687'),(24790,18051,'56688'),(24791,18052,'56701'),(24792,18053,'56710'),(24793,18054,'56711'),(24794,18055,'56712'),(24795,18056,'56713'),(24796,18057,'56714'),(24797,18058,'56715'),(24798,18059,'56716'),(24799,18060,'56720'),(24800,18061,'56721'),(24801,18062,'56722'),(24802,18063,'56723'),(24803,18064,'56724'),(24804,18065,'56725'),(24805,18066,'56726'),(24806,18067,'56727'),(24807,18068,'56728'),(24808,18069,'56729'),(24809,18070,'56731'),(24810,18071,'56732'),(24811,18072,'56733'),(24812,18073,'56734'),(24813,18074,'56735'),(24814,18075,'56736'),(24815,18076,'56737'),(24816,18077,'56738'),(24817,18078,'56740'),(24818,18079,'56741'),(24819,18080,'56742'),(24820,18081,'56744'),(24821,18082,'56748'),(24822,18083,'56750'),(24823,18084,'56751'),(24824,18085,'56754'),(24825,18086,'56755'),(24826,18087,'56756'),(24827,18088,'56757'),(24828,18089,'56758'),(24829,18090,'56759'),(24830,18091,'56760'),(24831,18092,'56761'),(24832,18093,'56762'),(24833,18094,'56763'),(24834,18095,'57001'),(24835,18096,'57002'),(24836,18097,'57003'),(24837,18098,'57004'),(24838,18099,'57005'),(24839,18100,'57006'),(24840,18100,'57007'),(24841,18101,'57010'),(24842,18102,'57012'),(24843,18103,'57013'),(24844,18104,'57014'),(24845,18105,'57015'),(24846,18106,'57016'),(24847,18107,'57017'),(24848,18108,'57018'),(24849,18109,'57020'),(24850,18110,'57021'),(24851,18111,'57022'),(24852,18112,'57024'),(24853,18113,'57025'),(24854,18114,'57026'),(24855,18115,'57027'),(24856,18116,'57028'),(24857,18117,'57029'),(24858,18118,'57030'),(24859,18119,'57031'),(24860,18120,'57032'),(24861,18121,'57033'),(24862,18122,'57034'),(24863,18123,'57035'),(24864,18124,'57036'),(24865,18125,'57037'),(24866,18126,'57038'),(24867,18127,'57039'),(24868,18128,'57040'),(24869,18129,'57041'),(24870,18130,'57042'),(24871,18131,'57043'),(24872,18132,'57044'),(24873,18133,'57045'),(24874,18134,'57046'),(24875,18135,'57047'),(24876,18136,'57048'),(24877,18137,'57049'),(24878,18138,'57050'),(24879,18139,'57051'),(24880,18140,'57052'),(24881,18141,'57053'),(24882,18142,'57054'),(24883,18143,'57055'),(24884,18144,'57056'),(24885,18145,'57057'),(24886,18146,'57058'),(24887,18147,'57059'),(24888,18148,'57061'),(24889,18149,'57062'),(24890,18150,'57063'),(24891,18151,'57064'),(24892,18152,'57065'),(24893,18153,'57066'),(24894,18154,'57067'),(24895,18155,'57068'),(24896,18156,'57069'),(24897,18157,'57070'),(24898,18158,'57071'),(24899,18159,'57072'),(24900,18160,'57073'),(24901,18161,'57074'),(24902,18162,'57075'),(24903,18163,'57076'),(24904,18164,'57077'),(24905,18165,'57078'),(24906,18165,'57079'),(24907,18166,'57101'),(24908,18166,'57103'),(24909,18166,'57104'),(24910,18166,'57105'),(24911,18166,'57106'),(24912,18166,'57107'),(24913,18166,'57108'),(24914,18166,'57109'),(24915,18166,'57110'),(24916,18166,'57117'),(24917,18166,'57118'),(24918,18166,'57188'),(24919,18166,'57189'),(24920,18166,'57192'),(24921,18166,'57193'),(24922,18166,'57194'),(24923,18166,'57195'),(24924,18166,'57196'),(24925,18166,'57197'),(24926,18166,'57198'),(24927,18167,'57115'),(24928,18168,'57201'),(24929,18169,'57202'),(24930,18170,'57212'),(24931,18171,'57213'),(24932,18172,'57214'),(24933,18173,'57216'),(24934,18174,'57217'),(24935,18175,'57218'),(24936,18176,'57219'),(24937,18177,'57220'),(24938,18178,'57221'),(24939,18179,'57223'),(24940,18180,'57224'),(24941,18181,'57225'),(24942,18182,'57226'),(24943,18183,'57227'),(24944,18184,'57231'),(24945,18185,'57232'),(24946,18186,'57233'),(24947,18187,'57234'),(24948,18188,'57235'),(24949,18189,'57236'),(24950,18190,'57237'),(24951,18191,'57238'),(24952,18192,'57239'),(24953,18193,'57241'),(24954,18194,'57242'),(24955,18195,'57243'),(24956,18196,'57244'),(24957,18197,'57245'),(24958,18198,'57246'),(24959,18199,'57247'),(24960,18200,'57248'),(24961,18201,'57249'),(24962,18202,'57251'),(24963,18203,'57252'),(24964,18203,'57253'),(24965,18204,'57255'),(24966,18205,'57256'),(24967,18206,'57257'),(24968,18207,'57258'),(24969,18208,'57259'),(24970,18209,'57260'),(24971,18210,'57261'),(24972,18211,'57262'),(24973,18212,'57263'),(24974,18213,'57264'),(24975,18214,'57265'),(24976,18215,'57266'),(24977,18216,'57268'),(24978,18217,'57269'),(24979,18218,'57270'),(24980,18219,'57271'),(24981,18220,'57272'),(24982,18221,'57273'),(24983,18222,'57274'),(24984,18223,'57276'),(24985,18224,'57278'),(24986,18225,'57279'),(24987,18226,'57301'),(24988,18227,'57311'),(24989,18228,'57312'),(24990,18229,'57313'),(24991,18230,'57314'),(24992,18231,'57315'),(24993,18232,'57317'),(24994,18233,'57319'),(24995,18234,'57321'),(24996,18235,'57322'),(24997,18236,'57323'),(24998,18237,'57324'),(24999,18238,'57325'),(25000,18238,'57326'),(25001,18239,'57328'),(25002,18240,'57329'),(25003,18241,'57330'),(25004,18242,'57331'),(25005,18243,'57332'),(25006,18244,'57334'),(25007,18245,'57335'),(25008,18246,'57337'),(25009,18247,'57339'),(25010,18248,'57340'),(25011,18249,'57341'),(25012,18250,'57342'),(25013,18251,'57344'),(25014,18252,'57345'),(25015,18253,'57346'),(25016,18254,'57348'),(25017,18255,'57349'),(25018,18256,'57350'),(25019,18256,'57399'),(25020,18257,'57353'),(25021,18258,'57354'),(25022,18259,'57355'),(25023,18260,'57356'),(25024,18261,'57357'),(25025,18262,'57358'),(25026,18263,'57359'),(25027,18264,'57361'),(25028,18265,'57362'),(25029,18266,'57363'),(25030,18267,'57364'),(25031,18268,'57365'),(25032,18269,'57366'),(25033,18270,'57367'),(25034,18271,'57368'),(25035,18272,'57369'),(25036,18273,'57370'),(25037,18274,'57371'),(25038,18275,'57373'),(25039,18276,'57374'),(25040,18277,'57375'),(25041,18278,'57376'),(25042,18279,'57379'),(25043,18280,'57380'),(25044,18281,'57381'),(25045,18282,'57382'),(25046,18283,'57383'),(25047,18284,'57384'),(25048,18285,'57385'),(25049,18286,'57386'),(25050,18287,'57401'),(25051,18287,'57402'),(25052,18288,'57420'),(25053,18289,'57421'),(25054,18290,'57422'),(25055,18291,'57424'),(25056,18292,'57426'),(25057,18293,'57427'),(25058,18294,'57428'),(25059,18295,'57429'),(25060,18296,'57430'),(25061,18297,'57432'),(25062,18298,'57433'),(25063,18299,'57434'),(25064,18300,'57435'),(25065,18301,'57436'),(25066,18302,'57437'),(25067,18303,'57438'),(25068,18304,'57439'),(25069,18305,'57440'),(25070,18306,'57441'),(25071,18307,'57442'),(25072,18308,'57445'),(25073,18309,'57446'),(25074,18310,'57448'),(25075,18311,'57449'),(25076,18312,'57450'),(25077,18313,'57451'),(25078,18314,'57452'),(25079,18315,'57454'),(25080,18316,'57455'),(25081,18317,'57456'),(25082,18318,'57457'),(25083,18319,'57460'),(25084,18320,'57461'),(25085,18321,'57462'),(25086,18322,'57465'),(25087,18323,'57466'),(25088,18324,'57467'),(25089,18325,'57468'),(25090,18326,'57469'),(25091,18327,'57470'),(25092,18328,'57471'),(25093,18329,'57472'),(25094,18330,'57473'),(25095,18331,'57474'),(25096,18332,'57475'),(25097,18333,'57476'),(25098,18334,'57477'),(25099,18335,'57479'),(25100,18336,'57481'),(25101,18337,'57501'),(25102,18338,'57520'),(25103,18339,'57521'),(25104,18340,'57522'),(25105,18341,'57523'),(25106,18342,'57526'),(25107,18343,'57528'),(25108,18344,'57529'),(25109,18345,'57531'),(25110,18346,'57532'),(25111,18347,'57533'),(25112,18348,'57534'),(25113,18349,'57536'),(25114,18350,'57537'),(25115,18351,'57538'),(25116,18352,'57540'),(25117,18353,'57541'),(25118,18354,'57542'),(25119,18355,'57543'),(25120,18356,'57544'),(25121,18357,'57547'),(25122,18358,'57548'),(25123,18359,'57551'),(25124,18360,'57552'),(25125,18361,'57553'),(25126,18362,'57555'),(25127,18363,'57557'),(25128,18364,'57559'),(25129,18365,'57560'),(25130,18366,'57562'),(25131,18367,'57563'),(25132,18368,'57564'),(25133,18369,'57566'),(25134,18370,'57567'),(25135,18371,'57568'),(25136,18372,'57569'),(25137,18373,'57570'),(25138,18374,'57571'),(25139,18375,'57572'),(25140,18376,'57574'),(25141,18377,'57576'),(25142,18378,'57577'),(25143,18379,'57578'),(25144,18380,'57579'),(25145,18381,'57580'),(25146,18382,'57584'),(25147,18383,'57585'),(25148,18384,'57601'),(25149,18385,'57620'),(25150,18386,'57621'),(25151,18387,'57622'),(25152,18388,'57623'),(25153,18389,'57625'),(25154,18390,'57626'),(25155,18391,'57628'),(25156,18392,'57629'),(25157,18393,'57630'),(25158,18394,'57631'),(25159,18395,'57632'),(25160,18396,'57633'),(25161,18397,'57634'),(25162,18398,'57636'),(25163,18399,'57638'),(25164,18400,'57639'),(25165,18401,'57640'),(25166,18402,'57641'),(25167,18403,'57642'),(25168,18404,'57643'),(25169,18405,'57644'),(25170,18406,'57645'),(25171,18407,'57646'),(25172,18408,'57647'),(25173,18409,'57648'),(25174,18410,'57649'),(25175,18411,'57650'),(25176,18412,'57651'),(25177,18413,'57652'),(25178,18414,'57653'),(25179,18415,'57656'),(25180,18416,'57657'),(25181,18417,'57658'),(25182,18418,'57659'),(25183,18419,'57660'),(25184,18420,'57661'),(25185,18421,'57701'),(25186,18421,'57702'),(25187,18421,'57703'),(25188,18421,'57709'),(25189,18422,'57706'),(25190,18423,'57708'),(25191,18424,'57714'),(25192,18425,'57716'),(25193,18426,'57717'),(25194,18427,'57718'),(25195,18428,'57719'),(25196,18429,'57720'),(25197,18430,'57722'),(25198,18431,'57724'),(25199,18432,'57725'),(25200,18433,'57729'),(25201,18434,'57730'),(25202,18435,'57732'),(25203,18436,'57735'),(25204,18437,'57736'),(25205,18438,'57737'),(25206,18439,'57738'),(25207,18440,'57741'),(25208,18441,'57742'),(25209,18442,'57744'),(25210,18443,'57745'),(25211,18444,'57747'),(25212,18445,'57748'),(25213,18446,'57750'),(25214,18447,'57751'),(25215,18448,'57752'),(25216,18449,'57754'),(25217,18450,'57755'),(25218,18451,'57756'),(25219,18452,'57758'),(25220,18453,'57759'),(25221,18454,'57760'),(25222,18455,'57761'),(25223,18456,'57762'),(25224,18457,'57763'),(25225,18458,'57764'),(25226,18459,'57765'),(25227,18460,'57766'),(25228,18461,'57767'),(25229,18462,'57769'),(25230,18463,'57770'),(25231,18464,'57772'),(25232,18465,'57773'),(25233,18466,'57774'),(25234,18467,'57775'),(25235,18468,'57776'),(25236,18469,'57777'),(25237,18470,'57778'),(25238,18471,'57779'),(25239,18472,'57780'),(25240,18473,'57782'),(25241,18474,'57783'),(25242,18474,'57799'),(25243,18475,'57785'),(25244,18476,'57787'),(25245,18477,'57788'),(25246,18478,'57790'),(25247,18479,'57791'),(25248,18480,'57792'),(25249,18481,'57793'),(25250,18482,'57794'),(25251,18483,'58001'),(25252,18484,'58002'),(25253,18485,'58004'),(25254,18486,'58005'),(25255,18487,'58006'),(25256,18488,'58007'),(25257,18489,'58008'),(25258,18490,'58009'),(25259,18491,'58011'),(25260,18492,'58012'),(25261,18493,'58013'),(25262,18494,'58014'),(25263,18495,'58015'),(25264,18496,'58016'),(25265,18497,'58017'),(25266,18498,'58018'),(25267,18499,'58021'),(25268,18500,'58027'),(25269,18501,'58029'),(25270,18502,'58030'),(25271,18503,'58031'),(25272,18504,'58032'),(25273,18505,'58033'),(25274,18506,'58035'),(25275,18507,'58036'),(25276,18508,'58038'),(25277,18509,'58039'),(25278,18510,'58040'),(25279,18511,'58041'),(25280,18512,'58042'),(25281,18513,'58043'),(25282,18514,'58045'),(25283,18515,'58046'),(25284,18516,'58047'),(25285,18517,'58048'),(25286,18518,'58049'),(25287,18519,'58051'),(25288,18520,'58052'),(25289,18521,'58053'),(25290,18522,'58054'),(25291,18523,'58056'),(25292,18524,'58057'),(25293,18525,'58058'),(25294,18526,'58059'),(25295,18527,'58060'),(25296,18528,'58061'),(25297,18529,'58062'),(25298,18530,'58063'),(25299,18531,'58064'),(25300,18532,'58065'),(25301,18533,'58067'),(25302,18534,'58068'),(25303,18535,'58069'),(25304,18536,'58071'),(25305,18537,'58072'),(25306,18538,'58074'),(25307,18538,'58075'),(25308,18538,'58076'),(25309,18539,'58077'),(25310,18540,'58078'),(25311,18541,'58079'),(25312,18542,'58081'),(25313,18543,'58102'),(25314,18543,'58103'),(25315,18543,'58104'),(25316,18543,'58105'),(25317,18543,'58106'),(25318,18543,'58107'),(25319,18543,'58108'),(25320,18543,'58109'),(25321,18543,'58121'),(25322,18543,'58122'),(25323,18543,'58123'),(25324,18543,'58124'),(25325,18543,'58125'),(25326,18543,'58126'),(25327,18544,'58201'),(25328,18544,'58202'),(25329,18544,'58203'),(25330,18544,'58206'),(25331,18544,'58207'),(25332,18544,'58208'),(25333,18545,'58204'),(25334,18545,'58205'),(25335,18546,'58210'),(25336,18547,'58212'),(25337,18548,'58213'),(25338,18549,'58214'),(25339,18550,'58216'),(25340,18551,'58218'),(25341,18552,'58219'),(25342,18553,'58220'),(25343,18554,'58222'),(25344,18555,'58223'),(25345,18556,'58224'),(25346,18557,'58225'),(25347,18558,'58227'),(25348,18559,'58228'),(25349,18560,'58229'),(25350,18561,'58230'),(25351,18562,'58231'),(25352,18563,'58233'),(25353,18564,'58235'),(25354,18565,'58236'),(25355,18566,'58237'),(25356,18567,'58238'),(25357,18568,'58239'),(25358,18569,'58240'),(25359,18570,'58241'),(25360,18571,'58243'),(25361,18572,'58244'),(25362,18573,'58249'),(25363,18574,'58250'),(25364,18575,'58251'),(25365,18576,'58254'),(25366,18577,'58255'),(25367,18578,'58256'),(25368,18579,'58257'),(25369,18580,'58258'),(25370,18581,'58259'),(25371,18582,'58260'),(25372,18583,'58261'),(25373,18584,'58262'),(25374,18585,'58265'),(25375,18586,'58266'),(25376,18587,'58267'),(25377,18588,'58269'),(25378,18589,'58270'),(25379,18590,'58271'),(25380,18591,'58272'),(25381,18592,'58273'),(25382,18593,'58274'),(25383,18594,'58275'),(25384,18595,'58276'),(25385,18596,'58277'),(25386,18597,'58278'),(25387,18598,'58281'),(25388,18599,'58282'),(25389,18600,'58301'),(25390,18601,'58310'),(25391,18602,'58311'),(25392,18603,'58313'),(25393,18604,'58316'),(25394,18605,'58317'),(25395,18606,'58318'),(25396,18607,'58319'),(25397,18608,'58320'),(25398,18609,'58321'),(25399,18610,'58323'),(25400,18611,'58324'),(25401,18612,'58325'),(25402,18613,'58327'),(25403,18614,'58329'),(25404,18615,'58330'),(25405,18616,'58331'),(25406,18617,'58332'),(25407,18618,'58335'),(25408,18619,'58337'),(25409,18620,'58338'),(25410,18621,'58339'),(25411,18622,'58341'),(25412,18623,'58343'),(25413,18624,'58344'),(25414,18625,'58345'),(25415,18626,'58346'),(25416,18627,'58348'),(25417,18628,'58351'),(25418,18629,'58352'),(25419,18630,'58353'),(25420,18631,'58355'),(25421,18632,'58356'),(25422,18633,'58357'),(25423,18634,'58359'),(25424,18635,'58361'),(25425,18636,'58362'),(25426,18637,'58363'),(25427,18638,'58365'),(25428,18639,'58366'),(25429,18640,'58367'),(25430,18641,'58368'),(25431,18642,'58369'),(25432,18643,'58370'),(25433,18644,'58372'),(25434,18645,'58374'),(25435,18646,'58377'),(25436,18647,'58379'),(25437,18648,'58380'),(25438,18649,'58381'),(25439,18650,'58382'),(25440,18651,'58384'),(25441,18652,'58385'),(25442,18653,'58386'),(25443,18654,'58401'),(25444,18654,'58402'),(25445,18654,'58405'),(25446,18655,'58413'),(25447,18656,'58415'),(25448,18657,'58416'),(25449,18658,'58418'),(25450,18659,'58420'),(25451,18660,'58421'),(25452,18661,'58422'),(25453,18662,'58423'),(25454,18663,'58424'),(25455,18664,'58425'),(25456,18665,'58426'),(25457,18666,'58428'),(25458,18667,'58429'),(25459,18668,'58430'),(25460,18669,'58431'),(25461,18670,'58432'),(25462,18671,'58433'),(25463,18672,'58436'),(25464,18673,'58438'),(25465,18674,'58439'),(25466,18675,'58440'),(25467,18676,'58441'),(25468,18677,'58442'),(25469,18678,'58443'),(25470,18679,'58444'),(25471,18680,'58445'),(25472,18681,'58448'),(25473,18682,'58451'),(25474,18683,'58452'),(25475,18684,'58454'),(25476,18685,'58455'),(25477,18686,'58456'),(25478,18687,'58458'),(25479,18688,'58460'),(25480,18689,'58461'),(25481,18690,'58463'),(25482,18691,'58464'),(25483,18692,'58466'),(25484,18693,'58467'),(25485,18694,'58472'),(25486,18695,'58474'),(25487,18696,'58475'),(25488,18697,'58476'),(25489,18698,'58477'),(25490,18699,'58478'),(25491,18700,'58479'),(25492,18701,'58480'),(25493,18702,'58481'),(25494,18703,'58482'),(25495,18704,'58483'),(25496,18705,'58484'),(25497,18706,'58486'),(25498,18707,'58487'),(25499,18708,'58488'),(25500,18709,'58489'),(25501,18710,'58490'),(25502,18711,'58492'),(25503,18712,'58494'),(25504,18713,'58495'),(25505,18714,'58496'),(25506,18715,'58497'),(25507,18716,'58501'),(25508,18716,'58502'),(25509,18716,'58504'),(25510,18716,'58505'),(25511,18716,'58506'),(25512,18716,'58507'),(25513,18717,'58520'),(25514,18718,'58521'),(25515,18719,'58523'),(25516,18720,'58524'),(25517,18721,'58528'),(25518,18722,'58529'),(25519,18723,'58530'),(25520,18724,'58531'),(25521,18725,'58532'),(25522,18726,'58533'),(25523,18727,'58535'),(25524,18728,'58538'),(25525,18729,'58540'),(25526,18730,'58541'),(25527,18731,'58542'),(25528,18732,'58544'),(25529,18733,'58545'),(25530,18734,'58549'),(25531,18735,'58552'),(25532,18736,'58553'),(25533,18737,'58554'),(25534,18738,'58558'),(25535,18739,'58559'),(25536,18740,'58560'),(25537,18741,'58561'),(25538,18742,'58562'),(25539,18743,'58563'),(25540,18744,'58564'),(25541,18745,'58565'),(25542,18746,'58566'),(25543,18747,'58568'),(25544,18748,'58569'),(25545,18749,'58570'),(25546,18750,'58571'),(25547,18751,'58572'),(25548,18752,'58573'),(25549,18753,'58575'),(25550,18754,'58576'),(25551,18755,'58577'),(25552,18756,'58579'),(25553,18757,'58580'),(25554,18758,'58581'),(25555,18759,'58601'),(25556,18759,'58602'),(25557,18760,'58620'),(25558,18761,'58621'),(25559,18762,'58622'),(25560,18763,'58623'),(25561,18764,'58625'),(25562,18765,'58626'),(25563,18766,'58627'),(25564,18767,'58630'),(25565,18768,'58631'),(25566,18769,'58632'),(25567,18770,'58634'),(25568,18771,'58636'),(25569,18772,'58638'),(25570,18773,'58639'),(25571,18774,'58640'),(25572,18775,'58641'),(25573,18776,'58642'),(25574,18777,'58643'),(25575,18778,'58644'),(25576,18779,'58645'),(25577,18780,'58646'),(25578,18781,'58647'),(25579,18782,'58649'),(25580,18783,'58650'),(25581,18784,'58651'),(25582,18785,'58652'),(25583,18786,'58653'),(25584,18787,'58654'),(25585,18788,'58655'),(25586,18789,'58656'),(25587,18790,'58701'),(25588,18790,'58702'),(25589,18790,'58703'),(25590,18790,'58707'),(25591,18791,'58704'),(25592,18791,'58705'),(25593,18792,'58710'),(25594,18793,'58711'),(25595,18794,'58712'),(25596,18795,'58713'),(25597,18796,'58716'),(25598,18797,'58718'),(25599,18798,'58721'),(25600,18799,'58722'),(25601,18800,'58723'),(25602,18801,'58725'),(25603,18802,'58727'),(25604,18803,'58730'),(25605,18804,'58731'),(25606,18805,'58733'),(25607,18806,'58734'),(25608,18807,'58735'),(25609,18808,'58736'),(25610,18809,'58737'),(25611,18810,'58740'),(25612,18811,'58741'),(25613,18812,'58744'),(25614,18813,'58746'),(25615,18814,'58747'),(25616,18815,'58748'),(25617,18816,'58750'),(25618,18817,'58752'),(25619,18818,'58755'),(25620,18819,'58756'),(25621,18820,'58757'),(25622,18821,'58758'),(25623,18822,'58759'),(25624,18823,'58760'),(25625,18824,'58761'),(25626,18825,'58762'),(25627,18826,'58763'),(25628,18827,'58765'),(25629,18828,'58768'),(25630,18829,'58769'),(25631,18830,'58770'),(25632,18831,'58771'),(25633,18832,'58772'),(25634,18833,'58773'),(25635,18834,'58775'),(25636,18835,'58776'),(25637,18836,'58778'),(25638,18837,'58779'),(25639,18838,'58781'),(25640,18839,'58782'),(25641,18840,'58783'),(25642,18841,'58784'),(25643,18842,'58785'),(25644,18843,'58787'),(25645,18844,'58788'),(25646,18845,'58789'),(25647,18846,'58790'),(25648,18847,'58792'),(25649,18848,'58793'),(25650,18849,'58794'),(25651,18850,'58795'),(25652,18851,'58801'),(25653,18851,'58802'),(25654,18852,'58830'),(25655,18853,'58831'),(25656,18854,'58833'),(25657,18855,'58835'),(25658,18856,'58838'),(25659,18857,'58843'),(25660,18858,'58844'),(25661,18859,'58845'),(25662,18860,'58847'),(25663,18861,'58849'),(25664,18862,'58852'),(25665,18863,'58853'),(25666,18864,'58854'),(25667,18865,'58856'),(25668,18866,'59001'),(25669,18867,'59002'),(25670,18868,'59003'),(25671,18868,'59004'),(25672,18869,'59006'),(25673,18870,'59007'),(25674,18871,'59008'),(25675,18872,'59010'),(25676,18873,'59011'),(25677,18874,'59012'),(25678,18875,'59013'),(25679,18876,'59014'),(25680,18877,'59015'),(25681,18878,'59016'),(25682,18879,'59018'),(25683,18880,'59019'),(25684,18881,'59020'),(25685,18882,'59022'),(25686,18883,'59024'),(25687,18884,'59025'),(25688,18885,'59026'),(25689,18886,'59027'),(25690,18887,'59028'),(25691,18888,'59029'),(25692,18889,'59030'),(25693,18890,'59031'),(25694,18891,'59032'),(25695,18892,'59033'),(25696,18893,'59034'),(25697,18894,'59035'),(25698,18895,'59036'),(25699,18896,'59037'),(25700,18897,'59038'),(25701,18898,'59039'),(25702,18899,'59041'),(25703,18900,'59043'),(25704,18901,'59044'),(25705,18902,'59046'),(25706,18903,'59047'),(25707,18904,'59050'),(25708,18905,'59052'),(25709,18906,'59053'),(25710,18907,'59054'),(25711,18908,'59055'),(25712,18909,'59057'),(25713,18910,'59058'),(25714,18911,'59059'),(25715,18912,'59061'),(25716,18913,'59062'),(25717,18914,'59063'),(25718,18915,'59064'),(25719,18916,'59065'),(25720,18917,'59066'),(25721,18918,'59067'),(25722,18919,'59068'),(25723,18920,'59069'),(25724,18921,'59070'),(25725,18922,'59071'),(25726,18923,'59072'),(25727,18923,'59073'),(25728,18924,'59074'),(25729,18925,'59075'),(25730,18926,'59076'),(25731,18927,'59077'),(25732,18928,'59078'),(25733,18929,'59079'),(25734,18930,'59081'),(25735,18931,'59082'),(25736,18932,'59083'),(25737,18933,'59084'),(25738,18934,'59085'),(25739,18935,'59086'),(25740,18936,'59087'),(25741,18937,'59088'),(25742,18938,'59089'),(25743,18939,'59101'),(25744,18939,'59102'),(25745,18939,'59103'),(25746,18939,'59104'),(25747,18939,'59105'),(25748,18939,'59106'),(25749,18939,'59107'),(25750,18939,'59108'),(25751,18939,'59111'),(25752,18939,'59112'),(25753,18939,'59114'),(25754,18939,'59115'),(25755,18939,'59116'),(25756,18939,'59117'),(25757,18940,'59201'),(25758,18941,'59211'),(25759,18942,'59212'),(25760,18943,'59213'),(25761,18944,'59214'),(25762,18945,'59215'),(25763,18946,'59217'),(25764,18947,'59218'),(25765,18948,'59219'),(25766,18949,'59221'),(25767,18950,'59222'),(25768,18951,'59223'),(25769,18952,'59225'),(25770,18953,'59226'),(25771,18954,'59230'),(25772,18955,'59231'),(25773,18956,'59240'),(25774,18957,'59241'),(25775,18958,'59242'),(25776,18959,'59243'),(25777,18960,'59244'),(25778,18961,'59245'),(25779,18962,'59247'),(25780,18963,'59248'),(25781,18964,'59250'),(25782,18965,'59252'),(25783,18966,'59253'),(25784,18967,'59254'),(25785,18968,'59255'),(25786,18969,'59256'),(25787,18970,'59257'),(25788,18971,'59258'),(25789,18972,'59259'),(25790,18973,'59260'),(25791,18974,'59261'),(25792,18975,'59262'),(25793,18976,'59263'),(25794,18977,'59270'),(25795,18978,'59273'),(25796,18979,'59274'),(25797,18980,'59275'),(25798,18981,'59276'),(25799,18982,'59301'),(25800,18983,'59311'),(25801,18984,'59312'),(25802,18985,'59313'),(25803,18986,'59314'),(25804,18987,'59315'),(25805,18988,'59316'),(25806,18989,'59317'),(25807,18990,'59318'),(25808,18991,'59319'),(25809,18992,'59322'),(25810,18993,'59323'),(25811,18994,'59324'),(25812,18995,'59326'),(25813,18996,'59327'),(25814,18997,'59330'),(25815,18998,'59332'),(25816,18999,'59333'),(25817,19000,'59336'),(25818,19001,'59337'),(25819,19002,'59338'),(25820,19003,'59339'),(25821,19004,'59341'),(25822,19005,'59343'),(25823,19006,'59344'),(25824,19007,'59345'),(25825,19008,'59347'),(25826,19009,'59348'),(25827,19010,'59349'),(25828,19011,'59351'),(25829,19012,'59353'),(25830,19013,'59354'),(25831,19014,'59401'),(25832,19014,'59403'),(25833,19014,'59404'),(25834,19014,'59405'),(25835,19014,'59406'),(25836,19015,'59402'),(25837,19016,'59410'),(25838,19017,'59411'),(25839,19018,'59412'),(25840,19019,'59414'),(25841,19020,'59416'),(25842,19021,'59417'),(25843,19022,'59418'),(25844,19023,'59419'),(25845,19024,'59420'),(25846,19025,'59421'),(25847,19026,'59422'),(25848,19027,'59424'),(25849,19028,'59425'),(25850,19029,'59427'),(25851,19030,'59430'),(25852,19031,'59432'),(25853,19032,'59433'),(25854,19033,'59434'),(25855,19034,'59435'),(25856,19035,'59436'),(25857,19036,'59440'),(25858,19037,'59441'),(25859,19038,'59442'),(25860,19039,'59443'),(25861,19040,'59444'),(25862,19041,'59445'),(25863,19042,'59446'),(25864,19043,'59447'),(25865,19044,'59448'),(25866,19045,'59450'),(25867,19046,'59451'),(25868,19047,'59452'),(25869,19048,'59453'),(25870,19049,'59454'),(25871,19050,'59456'),(25872,19051,'59457'),(25873,19052,'59460'),(25874,19053,'59461'),(25875,19054,'59462'),(25876,19055,'59463'),(25877,19056,'59464'),(25878,19057,'59465'),(25879,19058,'59466'),(25880,19059,'59467'),(25881,19060,'59468'),(25882,19061,'59469'),(25883,19062,'59471'),(25884,19063,'59472'),(25885,19064,'59473'),(25886,19065,'59474'),(25887,19066,'59477'),(25888,19067,'59479'),(25889,19068,'59480'),(25890,19069,'59482'),(25891,19070,'59483'),(25892,19071,'59484'),(25893,19072,'59485'),(25894,19073,'59486'),(25895,19074,'59487'),(25896,19075,'59489'),(25897,19076,'59501'),(25898,19077,'59520'),(25899,19078,'59521'),(25900,19079,'59522'),(25901,19080,'59523'),(25902,19081,'59524'),(25903,19082,'59525'),(25904,19083,'59526'),(25905,19084,'59527'),(25906,19085,'59528'),(25907,19086,'59529'),(25908,19087,'59530'),(25909,19088,'59531'),(25910,19089,'59532'),(25911,19090,'59535'),(25912,19091,'59537'),(25913,19092,'59538'),(25914,19093,'59540'),(25915,19094,'59542'),(25916,19095,'59544'),(25917,19096,'59545'),(25918,19097,'59546'),(25919,19098,'59547'),(25920,19099,'59601'),(25921,19099,'59602'),(25922,19099,'59604'),(25923,19099,'59620'),(25924,19099,'59623'),(25925,19099,'59624'),(25926,19099,'59625'),(25927,19099,'59626'),(25928,19100,'59631'),(25929,19101,'59632'),(25930,19102,'59633'),(25931,19103,'59634'),(25932,19104,'59635'),(25933,19105,'59636'),(25934,19106,'59638'),(25935,19107,'59639'),(25936,19108,'59640'),(25937,19109,'59641'),(25938,19110,'59642'),(25939,19111,'59643'),(25940,19112,'59644'),(25941,19113,'59645'),(25942,19114,'59647'),(25943,19115,'59648'),(25944,19116,'59701'),(25945,19116,'59702'),(25946,19116,'59703'),(25947,19116,'59707'),(25948,19116,'59750'),(25949,19117,'59710'),(25950,19118,'59711'),(25951,19119,'59713'),(25952,19120,'59714'),(25953,19121,'59715'),(25954,19121,'59717'),(25955,19121,'59718'),(25956,19121,'59719'),(25957,19121,'59771'),(25958,19121,'59772'),(25959,19121,'59773'),(25960,19122,'59716'),(25961,19123,'59720'),(25962,19124,'59721'),(25963,19125,'59722'),(25964,19126,'59724'),(25965,19127,'59725'),(25966,19128,'59727'),(25967,19129,'59728'),(25968,19130,'59729'),(25969,19131,'59730'),(25970,19132,'59731'),(25971,19133,'59732'),(25972,19134,'59733'),(25973,19135,'59735'),(25974,19136,'59736'),(25975,19137,'59739'),(25976,19138,'59740'),(25977,19139,'59741'),(25978,19140,'59743'),(25979,19141,'59745'),(25980,19142,'59746'),(25981,19143,'59747'),(25982,19144,'59748'),(25983,19145,'59749'),(25984,19146,'59751'),(25985,19147,'59752'),(25986,19148,'59754'),(25987,19149,'59755'),(25988,19150,'59756'),(25989,19151,'59758'),(25990,19152,'59759'),(25991,19153,'59760'),(25992,19154,'59761'),(25993,19155,'59762'),(25994,19156,'59801'),(25995,19156,'59802'),(25996,19156,'59803'),(25997,19156,'59804'),(25998,19156,'59806'),(25999,19156,'59807'),(26000,19156,'59808'),(26001,19156,'59812'),(26002,19157,'59820'),(26003,19158,'59821'),(26004,19159,'59823'),(26005,19160,'59824'),(26006,19161,'59825'),(26007,19162,'59826'),(26008,19163,'59827'),(26009,19164,'59828'),(26010,19165,'59829'),(26011,19166,'59830'),(26012,19167,'59831'),(26013,19168,'59832'),(26014,19169,'59833'),(26015,19170,'59834'),(26016,19171,'59835'),(26017,19172,'59836'),(26018,19173,'59837'),(26019,19174,'59840'),(26020,19175,'59841'),(26021,19176,'59842'),(26022,19177,'59843'),(26023,19178,'59844'),(26024,19179,'59845'),(26025,19180,'59846'),(26026,19181,'59847'),(26027,19182,'59848'),(26028,19183,'59851'),(26029,19184,'59853'),(26030,19185,'59854'),(26031,19186,'59855'),(26032,19187,'59856'),(26033,19188,'59858'),(26034,19189,'59859'),(26035,19190,'59860'),(26036,19191,'59863'),(26037,19192,'59864'),(26038,19193,'59865'),(26039,19194,'59866'),(26040,19195,'59867'),(26041,19196,'59868'),(26042,19197,'59870'),(26043,19198,'59871'),(26044,19199,'59872'),(26045,19200,'59873'),(26046,19201,'59874'),(26047,19202,'59875'),(26048,19203,'59901'),(26049,19203,'59902'),(26050,19203,'59903'),(26051,19203,'59904'),(26052,19204,'59910'),(26053,19205,'59911'),(26054,19206,'59912'),(26055,19207,'59913'),(26056,19208,'59914'),(26057,19209,'59915'),(26058,19210,'59916'),(26059,19211,'59917'),(26060,19212,'59918'),(26061,19213,'59919'),(26062,19214,'59920'),(26063,19215,'59921'),(26064,19216,'59922'),(26065,19217,'59923'),(26066,19218,'59925'),(26067,19219,'59926'),(26068,19220,'59927'),(26069,19221,'59928'),(26070,19222,'59929'),(26071,19223,'59930'),(26072,19224,'59931'),(26073,19225,'59932'),(26074,19226,'59933'),(26075,19227,'59934'),(26076,19228,'59935'),(26077,19229,'59936'),(26078,19230,'59937'),(26079,19231,'60001'),(26080,19232,'60002'),(26081,19233,'60004'),(26082,19233,'60005'),(26083,19233,'60006'),(26084,19234,'60007'),(26085,19234,'60009'),(26086,19235,'60008'),(26087,19236,'60010'),(26088,19236,'60011'),(26089,19237,'60012'),(26090,19237,'60014'),(26091,19237,'60039'),(26092,19238,'60013'),(26093,19239,'60015'),(26094,19240,'60016'),(26095,19240,'60017'),(26096,19240,'60018'),(26097,19240,'60019'),(26098,19241,'60020'),(26099,19242,'60021'),(26100,19243,'60022'),(26101,19244,'60025'),(26102,19245,'60026'),(26103,19246,'60029'),(26104,19247,'60030'),(26105,19248,'60031'),(26106,19249,'60033'),(26107,19250,'60034'),(26108,19251,'60035'),(26109,19252,'60037'),(26110,19253,'60038'),(26111,19253,'60055'),(26112,19253,'60067'),(26113,19253,'60074'),(26114,19253,'60078'),(26115,19253,'60094'),(26116,19253,'60095'),(26117,19254,'60040'),(26118,19255,'60041'),(26119,19256,'60042'),(26120,19257,'60043'),(26121,19258,'60044'),(26122,19259,'60045'),(26123,19260,'60046'),(26124,19261,'60047'),(26125,19262,'60048'),(26126,19262,'60092'),(26127,19263,'60049'),(26128,19264,'60050'),(26129,19264,'60051'),(26130,19265,'60053'),(26131,19266,'60056'),(26132,19267,'60060'),(26133,19268,'60061'),(26134,19269,'60062'),(26135,19269,'60065'),(26136,19270,'60064'),(26137,19270,'60086'),(26138,19271,'60068'),(26139,19272,'60069'),(26140,19273,'60070'),(26141,19274,'60071'),(26142,19275,'60072'),(26143,19276,'60073'),(26144,19277,'60075'),(26145,19278,'60076'),(26146,19278,'60077'),(26147,19279,'60079'),(26148,19279,'60085'),(26149,19279,'60087'),(26150,19280,'60080'),(26151,19281,'60081'),(26152,19282,'60082'),(26153,19283,'60083'),(26154,19284,'60084'),(26155,19285,'60088'),(26156,19286,'60089'),(26157,19287,'60090'),(26158,19288,'60091'),(26159,19289,'60093'),(26160,19290,'60096'),(26161,19291,'60097'),(26162,19292,'60098'),(26163,19293,'60099'),(26164,19294,'60101'),(26165,19294,'60114'),(26166,19295,'60102'),(26167,19296,'60103'),(26168,19297,'60104'),(26169,19298,'60105'),(26170,19298,'60106'),(26171,19299,'60107'),(26172,19300,'60108'),(26173,19300,'60117'),(26174,19301,'60109'),(26175,19302,'60110'),(26176,19303,'60111'),(26177,19304,'60112'),(26178,19305,'60113'),(26179,19306,'60115'),(26180,19307,'60116'),(26181,19307,'60125'),(26182,19307,'60128'),(26183,19307,'60132'),(26184,19307,'60188'),(26185,19307,'60197'),(26186,19307,'60198'),(26187,19307,'60199'),(26188,19308,'60118'),(26189,19309,'60119'),(26190,19310,'60120'),(26191,19310,'60121'),(26192,19310,'60122'),(26193,19310,'60123'),(26194,19311,'60126'),(26195,19312,'60129'),(26196,19313,'60130'),(26197,19314,'60131'),(26198,19315,'60134'),(26199,19316,'60135'),(26200,19317,'60136'),(26201,19318,'60137'),(26202,19318,'60138'),(26203,19319,'60139'),(26204,19320,'60140'),(26205,19321,'60141'),(26206,19322,'60142'),(26207,19323,'60143'),(26208,19324,'60144'),(26209,19325,'60145'),(26210,19326,'60146'),(26211,19327,'60147'),(26212,19328,'60148'),(26213,19329,'60150'),(26214,19330,'60151'),(26215,19331,'60152'),(26216,19332,'60153'),(26217,19333,'60154'),(26218,19334,'60155'),(26219,19335,'60157'),(26220,19336,'60159'),(26221,19336,'60168'),(26222,19336,'60173'),(26223,19336,'60192'),(26224,19336,'60193'),(26225,19336,'60194'),(26226,19336,'60195'),(26227,19336,'60196'),(26228,19337,'60160'),(26229,19337,'60161'),(26230,19337,'60164'),(26231,19338,'60162'),(26232,19339,'60163'),(26233,19340,'60165'),(26234,19341,'60170'),(26235,19342,'60171'),(26236,19343,'60172'),(26237,19344,'60174'),(26238,19344,'60175'),(26239,19345,'60176'),(26240,19346,'60177'),(26241,19347,'60178'),(26242,19348,'60179'),(26243,19349,'60180'),(26244,19350,'60181'),(26245,19351,'60182'),(26246,19352,'60183'),(26247,19353,'60184'),(26248,19354,'60185'),(26249,19354,'60186'),(26250,19355,'60187'),(26251,19355,'60189'),(26252,19356,'60190'),(26253,19357,'60191'),(26254,19358,'60201'),(26255,19358,'60202'),(26256,19358,'60203'),(26257,19358,'60204'),(26258,19358,'60208'),(26259,19358,'60209'),(26260,19359,'60301'),(26261,19359,'60302'),(26262,19359,'60303'),(26263,19359,'60304'),(26264,19360,'60305'),(26265,19361,'60401'),(26266,19362,'60402'),(26267,19363,'60406'),(26268,19364,'60407'),(26269,19365,'60408'),(26270,19366,'60409'),(26271,19367,'60410'),(26272,19368,'60411'),(26273,19368,'60412'),(26274,19369,'60415'),(26275,19370,'60416'),(26276,19371,'60417'),(26277,19372,'60419'),(26278,19373,'60420'),(26279,19374,'60421'),(26280,19375,'60422'),(26281,19376,'60423'),(26282,19377,'60424'),(26283,19378,'60425'),(26284,19379,'60426'),(26285,19380,'60429'),(26286,19381,'60430'),(26287,19382,'60431'),(26288,19382,'60432'),(26289,19382,'60433'),(26290,19382,'60434'),(26291,19382,'60435'),(26292,19382,'60436'),(26293,19383,'60437'),(26294,19384,'60438'),(26295,19385,'60439'),(26296,19386,'60440'),(26297,19386,'60490'),(26298,19387,'60441'),(26299,19388,'60442'),(26300,19389,'60443'),(26301,19390,'60444'),(26302,19391,'60445'),(26303,19392,'60446'),(26304,19393,'60447'),(26305,19394,'60448'),(26306,19395,'60449'),(26307,19396,'60450'),(26308,19397,'60451'),(26309,19398,'60452'),(26310,19399,'60453'),(26311,19399,'60454'),(26312,19400,'60455'),(26313,19401,'60456'),(26314,19402,'60457'),(26315,19403,'60458'),(26316,19404,'60459'),(26317,19405,'60460'),(26318,19406,'60461'),(26319,19407,'60462'),(26320,19407,'60467'),(26321,19408,'60463'),(26322,19409,'60464'),(26323,19410,'60465'),(26324,19411,'60466'),(26325,19412,'60468'),(26326,19413,'60469'),(26327,19414,'60470'),(26328,19415,'60471'),(26329,19416,'60472'),(26330,19417,'60473'),(26331,19418,'60474'),(26332,19419,'60475'),(26333,19420,'60476'),(26334,19421,'60477'),(26335,19422,'60478'),(26336,19423,'60479'),(26337,19424,'60480'),(26338,19425,'60481'),(26339,19426,'60482'),(26340,19427,'60499'),(26341,19428,'60501'),(26342,19429,'60504'),(26343,19429,'60505'),(26344,19429,'60506'),(26345,19429,'60507'),(26346,19429,'60568'),(26347,19429,'60572'),(26348,19429,'60598'),(26349,19430,'60510'),(26350,19431,'60511'),(26351,19432,'60512'),(26352,19433,'60513'),(26353,19434,'60514'),(26354,19435,'60515'),(26355,19435,'60516'),(26356,19436,'60517'),(26357,19437,'60518'),(26358,19438,'60519'),(26359,19439,'60520'),(26360,19440,'60521'),(26361,19440,'60522'),(26362,19440,'60527'),(26363,19440,'60570'),(26364,19441,'60523'),(26365,19442,'60525'),(26366,19443,'60526'),(26367,19444,'60530'),(26368,19445,'60531'),(26369,19446,'60532'),(26370,19447,'60534'),(26371,19448,'60536'),(26372,19449,'60537'),(26373,19450,'60538'),(26374,19451,'60539'),(26375,19452,'60540'),(26376,19452,'60563'),(26377,19452,'60564'),(26378,19452,'60565'),(26379,19452,'60566'),(26380,19452,'60567'),(26381,19453,'60541'),(26382,19454,'60542'),(26383,19455,'60543'),(26384,19456,'60544'),(26385,19457,'60545'),(26386,19458,'60546'),(26387,19459,'60548'),(26388,19460,'60549'),(26389,19461,'60550'),(26390,19462,'60551'),(26391,19463,'60552'),(26392,19464,'60553'),(26393,19465,'60554'),(26394,19466,'60555'),(26395,19467,'60556'),(26396,19468,'60557'),(26397,19469,'60558'),(26398,19470,'60559'),(26399,19471,'60560'),(26400,19472,'60561'),(26401,19473,'60597'),(26402,19473,'60599'),(26403,19474,'60601'),(26404,19474,'60602'),(26405,19474,'60603'),(26406,19474,'60604'),(26407,19474,'60605'),(26408,19474,'60606'),(26409,19474,'60607'),(26410,19474,'60608'),(26411,19474,'60609'),(26412,19474,'60610'),(26413,19474,'60611'),(26414,19474,'60612'),(26415,19474,'60613'),(26416,19474,'60614'),(26417,19474,'60615'),(26418,19474,'60616'),(26419,19474,'60617'),(26420,19474,'60618'),(26421,19474,'60619'),(26422,19474,'60620'),(26423,19474,'60621'),(26424,19474,'60622'),(26425,19474,'60623'),(26426,19474,'60624'),(26427,19474,'60625'),(26428,19474,'60626'),(26429,19474,'60628'),(26430,19474,'60629'),(26431,19474,'60630'),(26432,19474,'60631'),(26433,19474,'60632'),(26434,19474,'60633'),(26435,19474,'60634'),(26436,19474,'60636'),(26437,19474,'60637'),(26438,19474,'60638'),(26439,19474,'60639'),(26440,19474,'60640'),(26441,19474,'60641'),(26442,19474,'60643'),(26443,19474,'60644'),(26444,19474,'60645'),(26445,19474,'60646'),(26446,19474,'60647'),(26447,19474,'60649'),(26448,19474,'60651'),(26449,19474,'60652'),(26450,19474,'60653'),(26451,19474,'60654'),(26452,19474,'60655'),(26453,19474,'60656'),(26454,19474,'60657'),(26455,19474,'60659'),(26456,19474,'60660'),(26457,19474,'60661'),(26458,19474,'60663'),(26459,19474,'60664'),(26460,19474,'60665'),(26461,19474,'60667'),(26462,19474,'60668'),(26463,19474,'60669'),(26464,19474,'60670'),(26465,19474,'60671'),(26466,19474,'60672'),(26467,19474,'60673'),(26468,19474,'60674'),(26469,19474,'60675'),(26470,19474,'60677'),(26471,19474,'60678'),(26472,19474,'60679'),(26473,19474,'60680'),(26474,19474,'60681'),(26475,19474,'60683'),(26476,19474,'60684'),(26477,19474,'60685'),(26478,19474,'60687'),(26479,19474,'60690'),(26480,19474,'60691'),(26481,19474,'60693'),(26482,19474,'60694'),(26483,19474,'60697'),(26484,19474,'60699'),(26485,19474,'60701'),(26486,19475,'60666'),(26487,19476,'60706'),(26488,19477,'60707'),(26489,19478,'60712'),(26490,19479,'60714'),(26491,19480,'60803'),(26492,19481,'60804'),(26493,19482,'60805'),(26494,19483,'60827'),(26495,19484,'60901'),(26496,19484,'60902'),(26497,19485,'60910'),(26498,19486,'60911'),(26499,19487,'60912'),(26500,19488,'60913'),(26501,19489,'60914'),(26502,19490,'60915'),(26503,19491,'60917'),(26504,19492,'60918'),(26505,19493,'60919'),(26506,19494,'60920'),(26507,19495,'60921'),(26508,19496,'60922'),(26509,19497,'60924'),(26510,19498,'60926'),(26511,19499,'60927'),(26512,19500,'60928'),(26513,19501,'60929'),(26514,19502,'60930'),(26515,19503,'60931'),(26516,19504,'60932'),(26517,19505,'60933'),(26518,19506,'60934'),(26519,19507,'60935'),(26520,19508,'60936'),(26521,19509,'60938'),(26522,19510,'60939'),(26523,19511,'60940'),(26524,19512,'60941'),(26525,19513,'60942'),(26526,19514,'60944'),(26527,19515,'60945'),(26528,19516,'60946'),(26529,19517,'60948'),(26530,19518,'60949'),(26531,19519,'60950'),(26532,19520,'60951'),(26533,19521,'60952'),(26534,19522,'60953'),(26535,19523,'60954'),(26536,19524,'60955'),(26537,19525,'60956'),(26538,19526,'60957'),(26539,19527,'60959'),(26540,19528,'60960'),(26541,19529,'60961'),(26542,19530,'60962'),(26543,19531,'60963'),(26544,19532,'60964'),(26545,19533,'60966'),(26546,19534,'60967'),(26547,19535,'60968'),(26548,19536,'60969'),(26549,19537,'60970'),(26550,19538,'60973'),(26551,19539,'60974'),(26552,19540,'61001'),(26553,19541,'61006'),(26554,19542,'61007'),(26555,19543,'61008'),(26556,19544,'61010'),(26557,19545,'61011'),(26558,19546,'61012'),(26559,19547,'61013'),(26560,19548,'61014'),(26561,19549,'61015'),(26562,19550,'61016'),(26563,19551,'61017'),(26564,19552,'61018'),(26565,19553,'61019'),(26566,19554,'61020'),(26567,19555,'61021'),(26568,19556,'61024'),(26569,19557,'61025'),(26570,19558,'61027'),(26571,19559,'61028'),(26572,19560,'61030'),(26573,19561,'61031'),(26574,19562,'61032'),(26575,19563,'61036'),(26576,19564,'61037'),(26577,19565,'61038'),(26578,19566,'61039'),(26579,19567,'61041'),(26580,19568,'61042'),(26581,19569,'61043'),(26582,19570,'61044'),(26583,19571,'61046'),(26584,19572,'61047'),(26585,19573,'61048'),(26586,19574,'61049'),(26587,19575,'61050'),(26588,19576,'61051'),(26589,19577,'61052'),(26590,19578,'61053'),(26591,19579,'61054'),(26592,19580,'61057'),(26593,19581,'61058'),(26594,19582,'61059'),(26595,19583,'61060'),(26596,19584,'61061'),(26597,19585,'61062'),(26598,19586,'61063'),(26599,19587,'61064'),(26600,19588,'61065'),(26601,19589,'61067'),(26602,19590,'61068'),(26603,19591,'61070'),(26604,19592,'61071'),(26605,19593,'61072'),(26606,19594,'61073'),(26607,19595,'61074'),(26608,19596,'61075'),(26609,19597,'61076'),(26610,19598,'61077'),(26611,19599,'61078'),(26612,19600,'61079'),(26613,19601,'61080'),(26614,19602,'61081'),(26615,19603,'61084'),(26616,19604,'61085'),(26617,19605,'61087'),(26618,19606,'61088'),(26619,19607,'61089'),(26620,19608,'61091'),(26621,19609,'61101'),(26622,19609,'61102'),(26623,19609,'61103'),(26624,19609,'61104'),(26625,19609,'61105'),(26626,19609,'61106'),(26627,19609,'61107'),(26628,19609,'61108'),(26629,19609,'61109'),(26630,19609,'61110'),(26631,19609,'61112'),(26632,19609,'61114'),(26633,19609,'61125'),(26634,19609,'61126'),(26635,19610,'61111'),(26636,19610,'61130'),(26637,19610,'61131'),(26638,19610,'61132'),(26639,19611,'61115'),(26640,19612,'61201'),(26641,19612,'61204'),(26642,19612,'61206'),(26643,19612,'61299'),(26644,19613,'61230'),(26645,19614,'61231'),(26646,19615,'61232'),(26647,19616,'61233'),(26648,19617,'61234'),(26649,19618,'61235'),(26650,19619,'61236'),(26651,19620,'61237'),(26652,19621,'61238'),(26653,19622,'61239'),(26654,19623,'61240'),(26655,19624,'61241'),(26656,19625,'61242'),(26657,19626,'61243'),(26658,19627,'61244'),(26659,19628,'61250'),(26660,19629,'61251'),(26661,19630,'61252'),(26662,19631,'61254'),(26663,19632,'61256'),(26664,19633,'61257'),(26665,19634,'61258'),(26666,19635,'61259'),(26667,19636,'61260'),(26668,19637,'61261'),(26669,19638,'61262'),(26670,19639,'61263'),(26671,19640,'61264'),(26672,19641,'61265'),(26673,19641,'61266'),(26674,19642,'61270'),(26675,19643,'61272'),(26676,19644,'61273'),(26677,19645,'61274'),(26678,19646,'61275'),(26679,19647,'61276'),(26680,19648,'61277'),(26681,19649,'61278'),(26682,19650,'61279'),(26683,19651,'61281'),(26684,19652,'61282'),(26685,19653,'61283'),(26686,19654,'61284'),(26687,19655,'61285'),(26688,19656,'61301'),(26689,19657,'61310'),(26690,19658,'61311'),(26691,19659,'61312'),(26692,19660,'61313'),(26693,19661,'61314'),(26694,19662,'61315'),(26695,19663,'61316'),(26696,19664,'61317'),(26697,19665,'61318'),(26698,19666,'61319'),(26699,19667,'61320'),(26700,19668,'61321'),(26701,19669,'61322'),(26702,19670,'61323'),(26703,19671,'61324'),(26704,19672,'61325'),(26705,19673,'61326'),(26706,19674,'61327'),(26707,19675,'61328'),(26708,19676,'61329'),(26709,19677,'61330'),(26710,19678,'61331'),(26711,19679,'61332'),(26712,19680,'61333'),(26713,19681,'61334'),(26714,19682,'61335'),(26715,19683,'61336'),(26716,19684,'61337'),(26717,19685,'61338'),(26718,19686,'61340'),(26719,19687,'61341'),(26720,19688,'61342'),(26721,19689,'61344'),(26722,19690,'61345'),(26723,19691,'61346'),(26724,19692,'61348'),(26725,19693,'61349'),(26726,19694,'61350'),(26727,19695,'61353'),(26728,19696,'61354'),(26729,19697,'61356'),(26730,19698,'61358'),(26731,19699,'61359'),(26732,19700,'61360'),(26733,19701,'61361'),(26734,19702,'61362'),(26735,19703,'61363'),(26736,19704,'61364'),(26737,19705,'61367'),(26738,19706,'61368'),(26739,19707,'61369'),(26740,19708,'61370'),(26741,19709,'61371'),(26742,19710,'61372'),(26743,19711,'61373'),(26744,19712,'61374'),(26745,19713,'61375'),(26746,19714,'61376'),(26747,19715,'61377'),(26748,19716,'61378'),(26749,19717,'61379'),(26750,19718,'61401'),(26751,19718,'61402'),(26752,19719,'61410'),(26753,19720,'61411'),(26754,19721,'61412'),(26755,19722,'61413'),(26756,19723,'61414'),(26757,19724,'61415'),(26758,19725,'61416'),(26759,19726,'61417'),(26760,19727,'61418'),(26761,19728,'61419'),(26762,19729,'61420'),(26763,19730,'61421'),(26764,19731,'61422'),(26765,19732,'61423'),(26766,19733,'61424'),(26767,19734,'61425'),(26768,19735,'61426'),(26769,19736,'61427'),(26770,19737,'61428'),(26771,19738,'61430'),(26772,19739,'61431'),(26773,19740,'61432'),(26774,19741,'61433'),(26775,19742,'61434'),(26776,19743,'61435'),(26777,19744,'61436'),(26778,19745,'61437'),(26779,19746,'61438'),(26780,19747,'61439'),(26781,19748,'61440'),(26782,19749,'61441'),(26783,19750,'61442'),(26784,19751,'61443'),(26785,19752,'61447'),(26786,19753,'61448'),(26787,19754,'61449'),(26788,19755,'61450'),(26789,19756,'61451'),(26790,19757,'61452'),(26791,19758,'61453'),(26792,19759,'61454'),(26793,19760,'61455'),(26794,19761,'61458'),(26795,19762,'61459'),(26796,19763,'61460'),(26797,19764,'61462'),(26798,19765,'61465'),(26799,19766,'61466'),(26800,19767,'61467'),(26801,19768,'61468'),(26802,19769,'61469'),(26803,19770,'61470'),(26804,19771,'61471'),(26805,19772,'61472'),(26806,19773,'61473'),(26807,19774,'61474'),(26808,19775,'61475'),(26809,19776,'61476'),(26810,19777,'61477'),(26811,19778,'61478'),(26812,19779,'61479'),(26813,19780,'61480'),(26814,19781,'61482'),(26815,19782,'61483'),(26816,19783,'61484'),(26817,19784,'61485'),(26818,19785,'61486'),(26819,19786,'61488'),(26820,19787,'61489'),(26821,19788,'61490'),(26822,19789,'61491'),(26823,19790,'61501'),(26824,19791,'61516'),(26825,19792,'61517'),(26826,19792,'61518'),(26827,19793,'61519'),(26828,19794,'61520'),(26829,19795,'61523'),(26830,19796,'61524'),(26831,19797,'61525'),(26832,19798,'61526'),(26833,19799,'61528'),(26834,19800,'61529'),(26835,19801,'61530'),(26836,19802,'61531'),(26837,19803,'61532'),(26838,19804,'61533'),(26839,19805,'61534'),(26840,19806,'61535'),(26841,19807,'61536'),(26842,19808,'61537'),(26843,19809,'61539'),(26844,19810,'61540'),(26845,19811,'61541'),(26846,19812,'61542'),(26847,19813,'61543'),(26848,19814,'61544'),(26849,19815,'61545'),(26850,19816,'61546'),(26851,19817,'61547'),(26852,19818,'61548'),(26853,19819,'61550'),(26854,19820,'61552'),(26855,19821,'61553'),(26856,19822,'61554'),(26857,19822,'61555'),(26858,19822,'61558'),(26859,19823,'61559'),(26860,19824,'61560'),(26861,19825,'61561'),(26862,19826,'61562'),(26863,19827,'61563'),(26864,19828,'61564'),(26865,19829,'61565'),(26866,19830,'61567'),(26867,19831,'61568'),(26868,19832,'61569'),(26869,19833,'61570'),(26870,19834,'61571'),(26871,19835,'61572'),(26872,19836,'61601'),(26873,19836,'61602'),(26874,19836,'61603'),(26875,19836,'61604'),(26876,19836,'61605'),(26877,19836,'61606'),(26878,19836,'61607'),(26879,19836,'61612'),(26880,19836,'61613'),(26881,19836,'61614'),(26882,19836,'61615'),(26883,19836,'61625'),(26884,19836,'61628'),(26885,19836,'61629'),(26886,19836,'61630'),(26887,19836,'61632'),(26888,19836,'61633'),(26889,19836,'61634'),(26890,19836,'61635'),(26891,19836,'61636'),(26892,19836,'61637'),(26893,19836,'61638'),(26894,19836,'61639'),(26895,19836,'61640'),(26896,19836,'61641'),(26897,19836,'61643'),(26898,19836,'61644'),(26899,19836,'61650'),(26900,19836,'61651'),(26901,19836,'61652'),(26902,19836,'61653'),(26903,19836,'61654'),(26904,19836,'61655'),(26905,19836,'61656'),(26906,19837,'61610'),(26907,19838,'61611'),(26908,19839,'61701'),(26909,19839,'61702'),(26910,19839,'61704'),(26911,19839,'61709'),(26912,19839,'61710'),(26913,19839,'61791'),(26914,19839,'61799'),(26915,19840,'61720'),(26916,19841,'61721'),(26917,19842,'61722'),(26918,19843,'61723'),(26919,19844,'61724'),(26920,19845,'61725'),(26921,19846,'61726'),(26922,19847,'61727'),(26923,19848,'61728'),(26924,19849,'61729'),(26925,19850,'61730'),(26926,19851,'61731'),(26927,19852,'61732'),(26928,19853,'61733'),(26929,19854,'61734'),(26930,19855,'61735'),(26931,19856,'61736'),(26932,19857,'61737'),(26933,19858,'61738'),(26934,19859,'61739'),(26935,19860,'61740'),(26936,19861,'61741'),(26937,19862,'61742'),(26938,19863,'61743'),(26939,19864,'61744'),(26940,19865,'61745'),(26941,19866,'61747'),(26942,19867,'61748'),(26943,19868,'61749'),(26944,19869,'61750'),(26945,19870,'61751'),(26946,19871,'61752'),(26947,19872,'61753'),(26948,19873,'61754'),(26949,19874,'61755'),(26950,19875,'61756'),(26951,19876,'61758'),(26952,19877,'61759'),(26953,19878,'61760'),(26954,19879,'61761'),(26955,19879,'61790'),(26956,19880,'61764'),(26957,19881,'61769'),(26958,19882,'61770'),(26959,19883,'61771'),(26960,19884,'61772'),(26961,19885,'61773'),(26962,19886,'61774'),(26963,19887,'61775'),(26964,19888,'61776'),(26965,19889,'61777'),(26966,19890,'61778'),(26967,19891,'61801'),(26968,19891,'61802'),(26969,19891,'61803'),(26970,19892,'61810'),(26971,19893,'61811'),(26972,19894,'61812'),(26973,19895,'61813'),(26974,19896,'61814'),(26975,19897,'61815'),(26976,19898,'61816'),(26977,19899,'61817'),(26978,19900,'61818'),(26979,19901,'61820'),(26980,19901,'61821'),(26981,19901,'61822'),(26982,19901,'61824'),(26983,19901,'61825'),(26984,19901,'61826'),(26985,19902,'61830'),(26986,19903,'61831'),(26987,19904,'61832'),(26988,19904,'61834'),(26989,19905,'61833'),(26990,19906,'61839'),(26991,19907,'61840'),(26992,19908,'61841'),(26993,19909,'61842'),(26994,19910,'61843'),(26995,19911,'61844'),(26996,19912,'61845'),(26997,19913,'61846'),(26998,19914,'61847'),(26999,19915,'61848'),(27000,19916,'61849'),(27001,19917,'61850'),(27002,19918,'61851'),(27003,19919,'61852'),(27004,19920,'61853'),(27005,19921,'61854'),(27006,19922,'61855'),(27007,19923,'61856'),(27008,19924,'61857'),(27009,19925,'61858'),(27010,19926,'61859'),(27011,19927,'61862'),(27012,19928,'61863'),(27013,19929,'61864'),(27014,19930,'61865'),(27015,19931,'61866'),(27016,19932,'61870'),(27017,19933,'61871'),(27018,19934,'61872'),(27019,19935,'61873'),(27020,19936,'61874'),(27021,19937,'61875'),(27022,19938,'61876'),(27023,19939,'61877'),(27024,19940,'61878'),(27025,19941,'61880'),(27026,19942,'61882'),(27027,19943,'61883'),(27028,19944,'61884'),(27029,19945,'61910'),(27030,19946,'61911'),(27031,19947,'61912'),(27032,19948,'61913'),(27033,19949,'61914'),(27034,19950,'61917'),(27035,19951,'61919'),(27036,19952,'61920'),(27037,19953,'61924'),(27038,19954,'61925'),(27039,19955,'61928'),(27040,19956,'61929'),(27041,19957,'61930'),(27042,19958,'61931'),(27043,19959,'61932'),(27044,19960,'61933'),(27045,19961,'61936'),(27046,19962,'61937'),(27047,19963,'61938'),(27048,19964,'61940'),(27049,19965,'61941'),(27050,19966,'61942'),(27051,19967,'61943'),(27052,19968,'61944'),(27053,19969,'61949'),(27054,19970,'61951'),(27055,19971,'61953'),(27056,19972,'61955'),(27057,19973,'61956'),(27058,19974,'61957'),(27059,19975,'62001'),(27060,19976,'62002'),(27061,19977,'62006'),(27062,19978,'62009'),(27063,19979,'62010'),(27064,19980,'62011'),(27065,19981,'62012'),(27066,19982,'62013'),(27067,19983,'62014'),(27068,19984,'62015'),(27069,19985,'62016'),(27070,19986,'62017'),(27071,19987,'62018'),(27072,19988,'62019'),(27073,19989,'62021'),(27074,19990,'62022'),(27075,19991,'62023'),(27076,19992,'62024'),(27077,19993,'62025'),(27078,19993,'62026'),(27079,19994,'62027'),(27080,19995,'62028'),(27081,19996,'62030'),(27082,19997,'62031'),(27083,19998,'62032'),(27084,19999,'62033'),(27085,20000,'62034'),(27086,20001,'62035'),(27087,20002,'62036'),(27088,20003,'62037'),(27089,20004,'62040'),(27090,20005,'62044'),(27091,20006,'62045'),(27092,20007,'62046'),(27093,20008,'62047'),(27094,20009,'62048'),(27095,20010,'62049'),(27096,20011,'62050'),(27097,20012,'62051'),(27098,20013,'62052'),(27099,20014,'62053'),(27100,20015,'62054'),(27101,20016,'62056'),(27102,20017,'62058'),(27103,20018,'62059'),(27104,20019,'62060'),(27105,20020,'62061'),(27106,20021,'62062'),(27107,20022,'62063'),(27108,20023,'62065'),(27109,20024,'62067'),(27110,20025,'62069'),(27111,20026,'62070'),(27112,20027,'62071'),(27113,20028,'62074'),(27114,20029,'62075'),(27115,20030,'62076'),(27116,20031,'62077'),(27117,20032,'62078'),(27118,20033,'62079'),(27119,20034,'62080'),(27120,20035,'62081'),(27121,20036,'62082'),(27122,20037,'62083'),(27123,20038,'62084'),(27124,20039,'62085'),(27125,20040,'62086'),(27126,20041,'62087'),(27127,20042,'62088'),(27128,20043,'62089'),(27129,20044,'62090'),(27130,20045,'62091'),(27131,20046,'62092'),(27132,20047,'62093'),(27133,20048,'62094'),(27134,20049,'62095'),(27135,20050,'62097'),(27136,20051,'62098'),(27137,20052,'62201'),(27138,20052,'62202'),(27139,20052,'62203'),(27140,20052,'62204'),(27141,20052,'62205'),(27142,20052,'62206'),(27143,20052,'62207'),(27144,20053,'62208'),(27145,20054,'62214'),(27146,20055,'62215'),(27147,20056,'62216'),(27148,20057,'62217'),(27149,20058,'62218'),(27150,20059,'62219'),(27151,20060,'62220'),(27152,20060,'62221'),(27153,20060,'62222'),(27154,20060,'62223'),(27155,20060,'62226'),(27156,20061,'62224'),(27157,20061,'62258'),(27158,20062,'62225'),(27159,20063,'62230'),(27160,20064,'62231'),(27161,20065,'62232'),(27162,20066,'62233'),(27163,20067,'62234'),(27164,20068,'62236'),(27165,20069,'62237'),(27166,20070,'62238'),(27167,20071,'62239'),(27168,20072,'62240'),(27169,20073,'62241'),(27170,20074,'62242'),(27171,20075,'62243'),(27172,20076,'62244'),(27173,20077,'62245'),(27174,20078,'62246'),(27175,20079,'62247'),(27176,20080,'62248'),(27177,20081,'62249'),(27178,20082,'62250'),(27179,20083,'62252'),(27180,20084,'62253'),(27181,20085,'62254'),(27182,20086,'62255'),(27183,20087,'62256'),(27184,20088,'62257'),(27185,20089,'62259'),(27186,20090,'62260'),(27187,20091,'62261'),(27188,20092,'62262'),(27189,20093,'62263'),(27190,20094,'62264'),(27191,20095,'62265'),(27192,20096,'62266'),(27193,20097,'62268'),(27194,20098,'62269'),(27195,20099,'62271'),(27196,20100,'62272'),(27197,20101,'62273'),(27198,20102,'62274'),(27199,20103,'62275'),(27200,20104,'62277'),(27201,20105,'62278'),(27202,20106,'62279'),(27203,20107,'62280'),(27204,20108,'62281'),(27205,20109,'62282'),(27206,20110,'62283'),(27207,20111,'62284'),(27208,20112,'62285'),(27209,20113,'62286'),(27210,20114,'62288'),(27211,20115,'62289'),(27212,20116,'62292'),(27213,20117,'62293'),(27214,20118,'62294'),(27215,20119,'62295'),(27216,20120,'62297'),(27217,20121,'62298'),(27218,20122,'62301'),(27219,20122,'62305'),(27220,20122,'62306'),(27221,20123,'62310'),(27222,20124,'62311'),(27223,20125,'62312'),(27224,20126,'62313'),(27225,20127,'62314'),(27226,20128,'62316'),(27227,20129,'62318'),(27228,20130,'62319'),(27229,20131,'62320'),(27230,20132,'62321'),(27231,20133,'62323'),(27232,20134,'62324'),(27233,20135,'62325'),(27234,20136,'62326'),(27235,20137,'62329'),(27236,20138,'62330'),(27237,20139,'62334'),(27238,20140,'62336'),(27239,20141,'62338'),(27240,20142,'62339'),(27241,20143,'62340'),(27242,20144,'62341'),(27243,20145,'62343'),(27244,20146,'62344'),(27245,20147,'62345'),(27246,20148,'62346'),(27247,20149,'62347'),(27248,20150,'62348'),(27249,20151,'62349'),(27250,20152,'62351'),(27251,20153,'62352'),(27252,20154,'62353'),(27253,20155,'62354'),(27254,20156,'62355'),(27255,20157,'62356'),(27256,20158,'62357'),(27257,20159,'62358'),(27258,20160,'62359'),(27259,20161,'62360'),(27260,20162,'62361'),(27261,20163,'62362'),(27262,20164,'62363'),(27263,20165,'62365'),(27264,20166,'62366'),(27265,20167,'62367'),(27266,20168,'62370'),(27267,20169,'62373'),(27268,20170,'62374'),(27269,20171,'62375'),(27270,20172,'62376'),(27271,20173,'62378'),(27272,20174,'62379'),(27273,20175,'62380'),(27274,20176,'62401'),(27275,20177,'62410'),(27276,20178,'62411'),(27277,20179,'62413'),(27278,20180,'62414'),(27279,20181,'62415'),(27280,20182,'62417'),(27281,20183,'62418'),(27282,20184,'62419'),(27283,20185,'62420'),(27284,20186,'62421'),(27285,20187,'62422'),(27286,20188,'62423'),(27287,20189,'62424'),(27288,20190,'62425'),(27289,20191,'62426'),(27290,20192,'62427'),(27291,20193,'62428'),(27292,20194,'62431'),(27293,20195,'62432'),(27294,20196,'62433'),(27295,20197,'62434'),(27296,20198,'62435'),(27297,20199,'62436'),(27298,20200,'62438'),(27299,20201,'62439'),(27300,20202,'62440'),(27301,20203,'62441'),(27302,20204,'62442'),(27303,20205,'62443'),(27304,20206,'62444'),(27305,20207,'62445'),(27306,20208,'62446'),(27307,20209,'62447'),(27308,20210,'62448'),(27309,20211,'62449'),(27310,20212,'62450'),(27311,20213,'62451'),(27312,20214,'62452'),(27313,20215,'62454'),(27314,20216,'62458'),(27315,20217,'62459'),(27316,20218,'62460'),(27317,20219,'62461'),(27318,20220,'62462'),(27319,20221,'62463'),(27320,20222,'62464'),(27321,20223,'62465'),(27322,20224,'62466'),(27323,20225,'62467'),(27324,20226,'62468'),(27325,20227,'62469'),(27326,20228,'62471'),(27327,20229,'62473'),(27328,20230,'62474'),(27329,20231,'62475'),(27330,20232,'62476'),(27331,20233,'62477'),(27332,20234,'62478'),(27333,20235,'62479'),(27334,20236,'62480'),(27335,20237,'62481'),(27336,20238,'62501'),(27337,20239,'62510'),(27338,20240,'62511'),(27339,20241,'62512'),(27340,20242,'62513'),(27341,20243,'62514'),(27342,20244,'62515'),(27343,20245,'62517'),(27344,20246,'62518'),(27345,20247,'62519'),(27346,20248,'62520'),(27347,20249,'62521'),(27348,20249,'62522'),(27349,20249,'62523'),(27350,20249,'62524'),(27351,20249,'62525'),(27352,20249,'62526'),(27353,20249,'62527'),(27354,20250,'62530'),(27355,20251,'62531'),(27356,20252,'62532'),(27357,20253,'62533'),(27358,20254,'62534'),(27359,20255,'62535'),(27360,20256,'62536'),(27361,20257,'62537'),(27362,20258,'62538'),(27363,20259,'62539'),(27364,20260,'62540'),(27365,20261,'62541'),(27366,20262,'62543'),(27367,20263,'62544'),(27368,20264,'62545'),(27369,20265,'62546'),(27370,20266,'62547'),(27371,20267,'62548'),(27372,20268,'62549'),(27373,20269,'62550'),(27374,20270,'62551'),(27375,20271,'62552'),(27376,20272,'62553'),(27377,20273,'62554'),(27378,20274,'62555'),(27379,20275,'62556'),(27380,20276,'62557'),(27381,20277,'62558'),(27382,20278,'62560'),(27383,20279,'62561'),(27384,20280,'62563'),(27385,20281,'62565'),(27386,20282,'62567'),(27387,20283,'62568'),(27388,20284,'62570'),(27389,20285,'62571'),(27390,20286,'62572'),(27391,20287,'62573'),(27392,20288,'62601'),(27393,20289,'62610'),(27394,20290,'62611'),(27395,20291,'62612'),(27396,20292,'62613'),(27397,20293,'62615'),(27398,20294,'62617'),(27399,20295,'62618'),(27400,20296,'62621'),(27401,20297,'62622'),(27402,20298,'62624'),(27403,20299,'62625'),(27404,20300,'62626'),(27405,20301,'62627'),(27406,20302,'62628'),(27407,20303,'62629'),(27408,20304,'62630'),(27409,20305,'62631'),(27410,20306,'62633'),(27411,20307,'62634'),(27412,20308,'62635'),(27413,20309,'62638'),(27414,20310,'62639'),(27415,20311,'62640'),(27416,20312,'62642'),(27417,20313,'62643'),(27418,20314,'62644'),(27419,20315,'62649'),(27420,20316,'62650'),(27421,20316,'62651'),(27422,20317,'62655'),(27423,20318,'62656'),(27424,20319,'62659'),(27425,20320,'62660'),(27426,20321,'62661'),(27427,20322,'62662'),(27428,20323,'62663'),(27429,20324,'62664'),(27430,20325,'62665'),(27431,20326,'62666'),(27432,20327,'62667'),(27433,20328,'62668'),(27434,20329,'62670'),(27435,20330,'62671'),(27436,20331,'62672'),(27437,20332,'62673'),(27438,20333,'62674'),(27439,20334,'62675'),(27440,20335,'62677'),(27441,20336,'62681'),(27442,20337,'62682'),(27443,20338,'62683'),(27444,20339,'62684'),(27445,20340,'62685'),(27446,20341,'62686'),(27447,20342,'62688'),(27448,20343,'62689'),(27449,20344,'62690'),(27450,20345,'62691'),(27451,20346,'62692'),(27452,20347,'62693'),(27453,20348,'62694'),(27454,20349,'62695'),(27455,20350,'62701'),(27456,20350,'62702'),(27457,20350,'62703'),(27458,20350,'62704'),(27459,20350,'62705'),(27460,20350,'62706'),(27461,20350,'62707'),(27462,20350,'62708'),(27463,20350,'62709'),(27464,20350,'62713'),(27465,20350,'62715'),(27466,20350,'62716'),(27467,20350,'62718'),(27468,20350,'62719'),(27469,20350,'62720'),(27470,20350,'62721'),(27471,20350,'62722'),(27472,20350,'62723'),(27473,20350,'62726'),(27474,20350,'62736'),(27475,20350,'62739'),(27476,20350,'62746'),(27477,20350,'62756'),(27478,20350,'62757'),(27479,20350,'62761'),(27480,20350,'62762'),(27481,20350,'62763'),(27482,20350,'62764'),(27483,20350,'62765'),(27484,20350,'62766'),(27485,20350,'62767'),(27486,20350,'62769'),(27487,20350,'62776'),(27488,20350,'62777'),(27489,20350,'62781'),(27490,20350,'62786'),(27491,20350,'62791'),(27492,20350,'62794'),(27493,20350,'62796'),(27494,20351,'62801'),(27495,20352,'62803'),(27496,20353,'62805'),(27497,20354,'62806'),(27498,20355,'62807'),(27499,20356,'62808'),(27500,20357,'62809'),(27501,20358,'62810'),(27502,20359,'62811'),(27503,20360,'62812'),(27504,20361,'62814'),(27505,20362,'62815'),(27506,20363,'62816'),(27507,20364,'62817'),(27508,20365,'62818'),(27509,20366,'62819'),(27510,20367,'62820'),(27511,20368,'62821'),(27512,20369,'62822'),(27513,20370,'62823'),(27514,20371,'62824'),(27515,20372,'62825'),(27516,20373,'62827'),(27517,20374,'62828'),(27518,20375,'62829'),(27519,20376,'62830'),(27520,20377,'62831'),(27521,20378,'62832'),(27522,20379,'62833'),(27523,20380,'62834'),(27524,20381,'62835'),(27525,20382,'62836'),(27526,20383,'62837'),(27527,20384,'62838'),(27528,20385,'62839'),(27529,20386,'62840'),(27530,20387,'62841'),(27531,20388,'62842'),(27532,20389,'62843'),(27533,20390,'62844'),(27534,20391,'62845'),(27535,20392,'62846'),(27536,20393,'62847'),(27537,20394,'62848'),(27538,20395,'62849'),(27539,20396,'62850'),(27540,20397,'62851'),(27541,20398,'62852'),(27542,20399,'62853'),(27543,20400,'62854'),(27544,20401,'62855'),(27545,20402,'62856'),(27546,20403,'62857'),(27547,20404,'62858'),(27548,20405,'62859'),(27549,20406,'62860'),(27550,20407,'62861'),(27551,20408,'62862'),(27552,20409,'62863'),(27553,20410,'62864'),(27554,20411,'62865'),(27555,20412,'62866'),(27556,20413,'62867'),(27557,20414,'62868'),(27558,20415,'62869'),(27559,20416,'62870'),(27560,20417,'62871'),(27561,20418,'62872'),(27562,20419,'62874'),(27563,20420,'62875'),(27564,20421,'62876'),(27565,20422,'62877'),(27566,20423,'62878'),(27567,20424,'62879'),(27568,20425,'62880'),(27569,20426,'62881'),(27570,20427,'62882'),(27571,20428,'62883'),(27572,20429,'62884'),(27573,20430,'62885'),(27574,20431,'62886'),(27575,20432,'62887'),(27576,20433,'62888'),(27577,20434,'62889'),(27578,20435,'62890'),(27579,20436,'62891'),(27580,20437,'62892'),(27581,20438,'62893'),(27582,20439,'62894'),(27583,20440,'62895'),(27584,20441,'62896'),(27585,20442,'62897'),(27586,20443,'62898'),(27587,20444,'62899'),(27588,20445,'62901'),(27589,20445,'62902'),(27590,20445,'62903'),(27591,20446,'62905'),(27592,20447,'62906'),(27593,20448,'62907'),(27594,20449,'62908'),(27595,20450,'62909'),(27596,20451,'62910'),(27597,20452,'62912'),(27598,20453,'62913'),(27599,20454,'62914'),(27600,20455,'62915'),(27601,20456,'62916'),(27602,20457,'62917'),(27603,20458,'62918'),(27604,20459,'62919'),(27605,20460,'62920'),(27606,20461,'62921'),(27607,20462,'62922'),(27608,20463,'62923'),(27609,20464,'62924'),(27610,20465,'62926'),(27611,20466,'62927'),(27612,20467,'62928'),(27613,20468,'62930'),(27614,20469,'62931'),(27615,20470,'62932'),(27616,20471,'62933'),(27617,20472,'62934'),(27618,20473,'62935'),(27619,20474,'62938'),(27620,20475,'62939'),(27621,20476,'62940'),(27622,20477,'62941'),(27623,20478,'62942'),(27624,20479,'62943'),(27625,20480,'62944'),(27626,20481,'62946'),(27627,20482,'62947'),(27628,20483,'62948'),(27629,20484,'62949'),(27630,20485,'62950'),(27631,20486,'62951'),(27632,20487,'62952'),(27633,20488,'62953'),(27634,20489,'62954'),(27635,20490,'62955'),(27636,20491,'62956'),(27637,20492,'62957'),(27638,20493,'62958'),(27639,20494,'62959'),(27640,20495,'62960'),(27641,20496,'62961'),(27642,20497,'62962'),(27643,20498,'62963'),(27644,20499,'62964'),(27645,20500,'62965'),(27646,20501,'62966'),(27647,20502,'62967'),(27648,20503,'62969'),(27649,20504,'62970'),(27650,20505,'62971'),(27651,20506,'62972'),(27652,20507,'62973'),(27653,20508,'62974'),(27654,20509,'62975'),(27655,20510,'62976'),(27656,20511,'62977'),(27657,20512,'62979'),(27658,20513,'62982'),(27659,20514,'62983'),(27660,20515,'62984'),(27661,20516,'62985'),(27662,20517,'62987'),(27663,20518,'62988'),(27664,20519,'62990'),(27665,20520,'62991'),(27666,20521,'62992'),(27667,20522,'62993'),(27668,20523,'62994'),(27669,20524,'62995'),(27670,20525,'62996'),(27671,20526,'62997'),(27672,20527,'62998'),(27673,20528,'62999'),(27674,20529,'63001'),(27675,20530,'63005'),(27676,20530,'63006'),(27677,20530,'63017'),(27678,20531,'63010'),(27679,20532,'63011'),(27680,20532,'63021'),(27681,20532,'63022'),(27682,20532,'63024'),(27683,20533,'63012'),(27684,20534,'63013'),(27685,20535,'63014'),(27686,20536,'63015'),(27687,20537,'63016'),(27688,20538,'63019'),(27689,20539,'63020'),(27690,20540,'63023'),(27691,20541,'63025'),(27692,20542,'63026'),(27693,20542,'63099'),(27694,20543,'63028'),(27695,20544,'63030'),(27696,20545,'63031'),(27697,20545,'63032'),(27698,20545,'63033'),(27699,20545,'63034'),(27700,20546,'63036'),(27701,20547,'63037'),(27702,20548,'63038'),(27703,20549,'63039'),(27704,20550,'63040'),(27705,20551,'63041'),(27706,20552,'63042'),(27707,20553,'63043'),(27708,20554,'63044'),(27709,20555,'63045'),(27710,20556,'63047'),(27711,20557,'63048'),(27712,20558,'63049'),(27713,20559,'63050'),(27714,20560,'63051'),(27715,20561,'63052'),(27716,20562,'63053'),(27717,20563,'63055'),(27718,20564,'63056'),(27719,20565,'63057'),(27720,20566,'63060'),(27721,20567,'63061'),(27722,20568,'63065'),(27723,20569,'63066'),(27724,20570,'63068'),(27725,20571,'63069'),(27726,20572,'63070'),(27727,20573,'63071'),(27728,20574,'63072'),(27729,20575,'63073'),(27730,20576,'63074'),(27731,20577,'63077'),(27732,20578,'63079'),(27733,20579,'63080'),(27734,20580,'63084'),(27735,20581,'63087'),(27736,20582,'63088'),(27737,20583,'63089'),(27738,20584,'63090'),(27739,20585,'63091'),(27740,20586,'63101'),(27741,20586,'63102'),(27742,20586,'63103'),(27743,20586,'63104'),(27744,20586,'63105'),(27745,20586,'63106'),(27746,20586,'63107'),(27747,20586,'63108'),(27748,20586,'63109'),(27749,20586,'63110'),(27750,20586,'63111'),(27751,20586,'63112'),(27752,20586,'63113'),(27753,20586,'63114'),(27754,20586,'63115'),(27755,20586,'63116'),(27756,20586,'63117'),(27757,20586,'63118'),(27758,20586,'63119'),(27759,20586,'63120'),(27760,20586,'63121'),(27761,20586,'63122'),(27762,20586,'63123'),(27763,20586,'63124'),(27764,20586,'63125'),(27765,20586,'63126'),(27766,20586,'63127'),(27767,20586,'63128'),(27768,20586,'63129'),(27769,20586,'63130'),(27770,20586,'63131'),(27771,20586,'63132'),(27772,20586,'63133'),(27773,20586,'63134'),(27774,20586,'63135'),(27775,20586,'63136'),(27776,20586,'63137'),(27777,20586,'63138'),(27778,20586,'63139'),(27779,20586,'63140'),(27780,20586,'63141'),(27781,20586,'63143'),(27782,20586,'63144'),(27783,20586,'63145'),(27784,20586,'63146'),(27785,20586,'63147'),(27786,20586,'63150'),(27787,20586,'63151'),(27788,20586,'63153'),(27789,20586,'63155'),(27790,20586,'63156'),(27791,20586,'63157'),(27792,20586,'63158'),(27793,20586,'63160'),(27794,20586,'63163'),(27795,20586,'63164'),(27796,20586,'63166'),(27797,20586,'63167'),(27798,20586,'63169'),(27799,20586,'63171'),(27800,20586,'63177'),(27801,20586,'63178'),(27802,20586,'63179'),(27803,20586,'63180'),(27804,20586,'63182'),(27805,20586,'63188'),(27806,20586,'63195'),(27807,20586,'63196'),(27808,20586,'63197'),(27809,20586,'63198'),(27810,20586,'63199'),(27811,20587,'63301'),(27812,20587,'63302'),(27813,20587,'63303'),(27814,20587,'63304'),(27815,20588,'63330'),(27816,20589,'63332'),(27817,20590,'63333'),(27818,20591,'63334'),(27819,20592,'63336'),(27820,20593,'63338'),(27821,20594,'63339'),(27822,20595,'63341'),(27823,20596,'63342'),(27824,20597,'63343'),(27825,20598,'63344'),(27826,20599,'63345'),(27827,20600,'63346'),(27828,20601,'63347'),(27829,20602,'63348'),(27830,20603,'63349'),(27831,20604,'63350'),(27832,20605,'63351'),(27833,20606,'63352'),(27834,20607,'63353'),(27835,20608,'63357'),(27836,20609,'63359'),(27837,20610,'63361'),(27838,20611,'63362'),(27839,20612,'63363'),(27840,20613,'63365'),(27841,20614,'63366'),(27842,20615,'63367'),(27843,20616,'63369'),(27844,20617,'63370'),(27845,20618,'63373'),(27846,20619,'63376'),(27847,20620,'63377'),(27848,20621,'63378'),(27849,20622,'63379'),(27850,20623,'63381'),(27851,20624,'63382'),(27852,20625,'63383'),(27853,20626,'63384'),(27854,20627,'63385'),(27855,20628,'63386'),(27856,20629,'63387'),(27857,20630,'63388'),(27858,20631,'63389'),(27859,20632,'63390'),(27860,20633,'63401'),(27861,20634,'63430'),(27862,20635,'63431'),(27863,20636,'63432'),(27864,20637,'63433'),(27865,20638,'63434'),(27866,20639,'63435'),(27867,20640,'63436'),(27868,20641,'63437'),(27869,20642,'63438'),(27870,20643,'63439'),(27871,20644,'63440'),(27872,20645,'63441'),(27873,20646,'63442'),(27874,20647,'63443'),(27875,20648,'63445'),(27876,20649,'63446'),(27877,20650,'63447'),(27878,20651,'63448'),(27879,20652,'63450'),(27880,20653,'63451'),(27881,20654,'63452'),(27882,20655,'63453'),(27883,20656,'63454'),(27884,20657,'63456'),(27885,20658,'63457'),(27886,20659,'63458'),(27887,20660,'63459'),(27888,20661,'63460'),(27889,20662,'63461'),(27890,20663,'63462'),(27891,20664,'63463'),(27892,20665,'63464'),(27893,20666,'63465'),(27894,20667,'63466'),(27895,20668,'63467'),(27896,20669,'63468'),(27897,20670,'63469'),(27898,20671,'63471'),(27899,20672,'63472'),(27900,20673,'63473'),(27901,20674,'63474'),(27902,20675,'63501'),(27903,20676,'63530'),(27904,20677,'63531'),(27905,20678,'63532'),(27906,20679,'63533'),(27907,20680,'63534'),(27908,20681,'63535'),(27909,20682,'63536'),(27910,20683,'63537'),(27911,20684,'63538'),(27912,20685,'63539'),(27913,20686,'63540'),(27914,20687,'63541'),(27915,20688,'63543'),(27916,20689,'63544'),(27917,20690,'63545'),(27918,20691,'63546'),(27919,20692,'63547'),(27920,20693,'63548'),(27921,20694,'63549'),(27922,20695,'63551'),(27923,20696,'63552'),(27924,20697,'63555'),(27925,20698,'63556'),(27926,20699,'63557'),(27927,20700,'63558'),(27928,20701,'63559'),(27929,20702,'63560'),(27930,20703,'63561'),(27931,20704,'63563'),(27932,20705,'63565'),(27933,20706,'63566'),(27934,20707,'63567'),(27935,20708,'63601'),(27936,20709,'63620'),(27937,20710,'63621'),(27938,20711,'63622'),(27939,20712,'63623'),(27940,20713,'63624'),(27941,20714,'63625'),(27942,20715,'63626'),(27943,20716,'63627'),(27944,20717,'63628'),(27945,20718,'63629'),(27946,20719,'63630'),(27947,20720,'63631'),(27948,20721,'63632'),(27949,20722,'63633'),(27950,20723,'63636'),(27951,20724,'63637'),(27952,20725,'63638'),(27953,20726,'63640'),(27954,20727,'63645'),(27955,20728,'63646'),(27956,20729,'63648'),(27957,20730,'63650'),(27958,20731,'63651'),(27959,20732,'63653'),(27960,20733,'63654'),(27961,20734,'63655'),(27962,20735,'63656'),(27963,20736,'63660'),(27964,20737,'63661'),(27965,20738,'63662'),(27966,20739,'63663'),(27967,20740,'63664'),(27968,20741,'63665'),(27969,20742,'63666'),(27970,20743,'63670'),(27971,20744,'63673'),(27972,20745,'63674'),(27973,20746,'63675'),(27974,20747,'63701'),(27975,20747,'63702'),(27976,20747,'63703'),(27977,20747,'63705'),(27978,20748,'63730'),(27979,20749,'63732'),(27980,20750,'63735'),(27981,20751,'63736'),(27982,20752,'63737'),(27983,20753,'63738'),(27984,20754,'63739'),(27985,20755,'63740'),(27986,20756,'63742'),(27987,20757,'63743'),(27988,20758,'63744'),(27989,20759,'63745'),(27990,20760,'63746'),(27991,20761,'63747'),(27992,20762,'63748'),(27993,20763,'63750'),(27994,20764,'63751'),(27995,20765,'63752'),(27996,20766,'63753'),(27997,20767,'63755'),(27998,20768,'63758'),(27999,20769,'63760'),(28000,20770,'63763'),(28001,20771,'63764'),(28002,20772,'63766'),(28003,20773,'63767'),(28004,20774,'63769'),(28005,20775,'63770'),(28006,20776,'63771'),(28007,20777,'63772'),(28008,20778,'63774'),(28009,20779,'63775'),(28010,20780,'63776'),(28011,20781,'63779'),(28012,20782,'63780'),(28013,20783,'63781'),(28014,20784,'63782'),(28015,20785,'63783'),(28016,20786,'63784'),(28017,20787,'63785'),(28018,20788,'63787'),(28019,20789,'63801'),(28020,20790,'63820'),(28021,20791,'63821'),(28022,20792,'63822'),(28023,20793,'63823'),(28024,20794,'63824'),(28025,20795,'63825'),(28026,20796,'63826'),(28027,20797,'63827'),(28028,20798,'63828'),(28029,20799,'63829'),(28030,20800,'63830'),(28031,20801,'63833'),(28032,20802,'63834'),(28033,20803,'63837'),(28034,20804,'63838'),(28035,20805,'63839'),(28036,20806,'63840'),(28037,20807,'63841'),(28038,20808,'63845'),(28039,20809,'63846'),(28040,20810,'63847'),(28041,20811,'63848'),(28042,20812,'63849'),(28043,20813,'63850'),(28044,20814,'63851'),(28045,20815,'63852'),(28046,20816,'63853'),(28047,20817,'63855'),(28048,20818,'63857'),(28049,20819,'63860'),(28050,20820,'63862'),(28051,20821,'63863'),(28052,20822,'63866'),(28053,20823,'63867'),(28054,20824,'63868'),(28055,20825,'63869'),(28056,20826,'63870'),(28057,20827,'63871'),(28058,20828,'63873'),(28059,20829,'63874'),(28060,20830,'63875'),(28061,20831,'63876'),(28062,20832,'63877'),(28063,20833,'63878'),(28064,20834,'63879'),(28065,20835,'63880'),(28066,20836,'63881'),(28067,20837,'63882'),(28068,20838,'63901'),(28069,20838,'63902'),(28070,20839,'63931'),(28071,20840,'63932'),(28072,20841,'63933'),(28073,20842,'63934'),(28074,20843,'63935'),(28075,20844,'63936'),(28076,20845,'63937'),(28077,20846,'63938'),(28078,20847,'63939'),(28079,20848,'63940'),(28080,20849,'63941'),(28081,20850,'63942'),(28082,20851,'63943'),(28083,20852,'63944'),(28084,20853,'63945'),(28085,20854,'63947'),(28086,20855,'63950'),(28087,20856,'63951'),(28088,20857,'63952'),(28089,20858,'63953'),(28090,20859,'63954'),(28091,20860,'63955'),(28092,20861,'63956'),(28093,20862,'63957'),(28094,20863,'63960'),(28095,20864,'63961'),(28096,20865,'63962'),(28097,20866,'63963'),(28098,20867,'63964'),(28099,20868,'63965'),(28100,20869,'63966'),(28101,20870,'63967'),(28102,20871,'64001'),(28103,20872,'64011'),(28104,20873,'64012'),(28105,20874,'64013'),(28106,20874,'64014'),(28107,20874,'64015'),(28108,20875,'64016'),(28109,20876,'64017'),(28110,20877,'64018'),(28111,20878,'64019'),(28112,20879,'64020'),(28113,20880,'64021'),(28114,20881,'64022'),(28115,20882,'64024'),(28116,20883,'64028'),(28117,20884,'64029'),(28118,20885,'64030'),(28119,20886,'64034'),(28120,20887,'64035'),(28121,20888,'64036'),(28122,20889,'64037'),(28123,20890,'64040'),(28124,20891,'64048'),(28125,20892,'64050'),(28126,20892,'64051'),(28127,20892,'64052'),(28128,20892,'64053'),(28129,20892,'64054'),(28130,20892,'64055'),(28131,20892,'64056'),(28132,20892,'64057'),(28133,20892,'64058'),(28134,20893,'64060'),(28135,20894,'64061'),(28136,20895,'64062'),(28137,20896,'64063'),(28138,20896,'64064'),(28139,20896,'64065'),(28140,20896,'64081'),(28141,20896,'64082'),(28142,20896,'64086'),(28143,20897,'64066'),(28144,20898,'64067'),(28145,20899,'64068'),(28146,20899,'64069'),(28147,20899,'64087'),(28148,20900,'64070'),(28149,20901,'64071'),(28150,20902,'64072'),(28151,20903,'64073'),(28152,20904,'64074'),(28153,20905,'64075'),(28154,20906,'64076'),(28155,20907,'64077'),(28156,20908,'64078'),(28157,20909,'64079'),(28158,20910,'64080'),(28159,20911,'64083'),(28160,20912,'64084'),(28161,20913,'64085'),(28162,20914,'64088'),(28163,20915,'64089'),(28164,20916,'64090'),(28165,20917,'64092'),(28166,20918,'64093'),(28167,20919,'64096'),(28168,20920,'64097'),(28169,20921,'64098'),(28170,20922,'64101'),(28171,20922,'64102'),(28172,20922,'64105'),(28173,20922,'64106'),(28174,20922,'64108'),(28175,20922,'64109'),(28176,20922,'64110'),(28177,20922,'64111'),(28178,20922,'64112'),(28179,20922,'64113'),(28180,20922,'64114'),(28181,20922,'64116'),(28182,20922,'64117'),(28183,20922,'64118'),(28184,20922,'64119'),(28185,20922,'64120'),(28186,20922,'64121'),(28187,20922,'64123'),(28188,20922,'64124'),(28189,20922,'64125'),(28190,20922,'64126'),(28191,20922,'64127'),(28192,20922,'64128'),(28193,20922,'64129'),(28194,20922,'64130'),(28195,20922,'64131'),(28196,20922,'64132'),(28197,20922,'64133'),(28198,20922,'64134'),(28199,20922,'64136'),(28200,20922,'64137'),(28201,20922,'64138'),(28202,20922,'64139'),(28203,20922,'64141'),(28204,20922,'64142'),(28205,20922,'64144'),(28206,20922,'64145'),(28207,20922,'64146'),(28208,20922,'64147'),(28209,20922,'64148'),(28210,20922,'64149'),(28211,20922,'64151'),(28212,20922,'64152'),(28213,20922,'64153'),(28214,20922,'64154'),(28215,20922,'64155'),(28216,20922,'64156'),(28217,20922,'64157'),(28218,20922,'64158'),(28219,20922,'64160'),(28220,20922,'64161'),(28221,20922,'64163'),(28222,20922,'64164'),(28223,20922,'64165'),(28224,20922,'64166'),(28225,20922,'64167'),(28226,20922,'64168'),(28227,20922,'64170'),(28228,20922,'64171'),(28229,20922,'64172'),(28230,20922,'64173'),(28231,20922,'64179'),(28232,20922,'64180'),(28233,20922,'64183'),(28234,20922,'64184'),(28235,20922,'64185'),(28236,20922,'64187'),(28237,20922,'64188'),(28238,20922,'64189'),(28239,20922,'64190'),(28240,20922,'64191'),(28241,20922,'64192'),(28242,20922,'64193'),(28243,20922,'64194'),(28244,20922,'64195'),(28245,20922,'64196'),(28246,20922,'64197'),(28247,20922,'64198'),(28248,20922,'64199'),(28249,20922,'64944'),(28250,20922,'64999'),(28251,20923,'64150'),(28252,20924,'64401'),(28253,20925,'64402'),(28254,20926,'64420'),(28255,20927,'64421'),(28256,20928,'64422'),(28257,20929,'64423'),(28258,20930,'64424'),(28259,20931,'64426'),(28260,20932,'64427'),(28261,20933,'64428'),(28262,20934,'64429'),(28263,20935,'64430'),(28264,20936,'64431'),(28265,20937,'64432'),(28266,20938,'64433'),(28267,20939,'64434'),(28268,20940,'64436'),(28269,20941,'64437'),(28270,20942,'64438'),(28271,20943,'64439'),(28272,20944,'64440'),(28273,20945,'64441'),(28274,20946,'64442'),(28275,20947,'64443'),(28276,20948,'64444'),(28277,20949,'64445'),(28278,20950,'64446'),(28279,20951,'64447'),(28280,20952,'64448'),(28281,20953,'64449'),(28282,20954,'64451'),(28283,20955,'64453'),(28284,20956,'64454'),(28285,20957,'64455'),(28286,20958,'64456'),(28287,20959,'64457'),(28288,20960,'64458'),(28289,20961,'64459'),(28290,20962,'64461'),(28291,20963,'64463'),(28292,20964,'64465'),(28293,20965,'64466'),(28294,20966,'64467'),(28295,20967,'64468'),(28296,20968,'64469'),(28297,20969,'64470'),(28298,20970,'64471'),(28299,20971,'64473'),(28300,20972,'64474'),(28301,20973,'64475'),(28302,20974,'64476'),(28303,20975,'64477'),(28304,20976,'64478'),(28305,20977,'64479'),(28306,20978,'64480'),(28307,20979,'64481'),(28308,20980,'64482'),(28309,20981,'64483'),(28310,20982,'64484'),(28311,20983,'64485'),(28312,20984,'64486'),(28313,20985,'64487'),(28314,20986,'64489'),(28315,20987,'64490'),(28316,20988,'64491'),(28317,20989,'64492'),(28318,20990,'64493'),(28319,20991,'64494'),(28320,20992,'64496'),(28321,20993,'64497'),(28322,20994,'64498'),(28323,20995,'64499'),(28324,20996,'64501'),(28325,20996,'64502'),(28326,20996,'64503'),(28327,20996,'64504'),(28328,20996,'64505'),(28329,20996,'64506'),(28330,20996,'64507'),(28331,20996,'64508'),(28332,20997,'64601'),(28333,20998,'64620'),(28334,20999,'64622'),(28335,21000,'64623'),(28336,21001,'64624'),(28337,21002,'64625'),(28338,21003,'64628'),(28339,21004,'64630'),(28340,21005,'64631'),(28341,21006,'64632'),(28342,21007,'64633'),(28343,21008,'64635'),(28344,21009,'64636'),(28345,21010,'64637'),(28346,21011,'64638'),(28347,21012,'64639'),(28348,21013,'64640'),(28349,21014,'64641'),(28350,21015,'64642'),(28351,21016,'64643'),(28352,21017,'64644'),(28353,21018,'64645'),(28354,21019,'64646'),(28355,21020,'64647'),(28356,21021,'64648'),(28357,21022,'64649'),(28358,21023,'64650'),(28359,21024,'64651'),(28360,21025,'64652'),(28361,21026,'64653'),(28362,21027,'64654'),(28363,21028,'64655'),(28364,21029,'64656'),(28365,21030,'64657'),(28366,21031,'64658'),(28367,21032,'64659'),(28368,21033,'64660'),(28369,21034,'64661'),(28370,21035,'64664'),(28371,21036,'64665'),(28372,21037,'64667'),(28373,21038,'64668'),(28374,21039,'64670'),(28375,21040,'64671'),(28376,21041,'64672'),(28377,21042,'64673'),(28378,21043,'64674'),(28379,21044,'64676'),(28380,21045,'64679'),(28381,21046,'64680'),(28382,21047,'64681'),(28383,21048,'64682'),(28384,21049,'64683'),(28385,21050,'64686'),(28386,21051,'64687'),(28387,21052,'64688'),(28388,21053,'64689'),(28389,21054,'64701'),(28390,21055,'64720'),(28391,21056,'64722'),(28392,21057,'64723'),(28393,21058,'64724'),(28394,21059,'64725'),(28395,21060,'64726'),(28396,21061,'64728'),(28397,21062,'64730'),(28398,21063,'64733'),(28399,21064,'64734'),(28400,21065,'64735'),(28401,21066,'64738'),(28402,21067,'64739'),(28403,21068,'64740'),(28404,21069,'64741'),(28405,21070,'64742'),(28406,21071,'64743'),(28407,21072,'64744'),(28408,21073,'64745'),(28409,21074,'64746'),(28410,21075,'64747'),(28411,21076,'64748'),(28412,21077,'64750'),(28413,21078,'64751'),(28414,21079,'64752'),(28415,21080,'64755'),(28416,21081,'64756'),(28417,21082,'64759'),(28418,21083,'64761'),(28419,21084,'64762'),(28420,21085,'64763'),(28421,21086,'64765'),(28422,21087,'64766'),(28423,21088,'64767'),(28424,21089,'64769'),(28425,21090,'64770'),(28426,21091,'64771'),(28427,21092,'64772'),(28428,21093,'64776'),(28429,21094,'64777'),(28430,21095,'64778'),(28431,21096,'64779'),(28432,21097,'64780'),(28433,21098,'64781'),(28434,21099,'64783'),(28435,21100,'64784'),(28436,21101,'64788'),(28437,21102,'64789'),(28438,21103,'64790'),(28439,21104,'64801'),(28440,21104,'64802'),(28441,21104,'64803'),(28442,21104,'64804'),(28443,21105,'64830'),(28444,21106,'64831'),(28445,21107,'64832'),(28446,21108,'64833'),(28447,21109,'64834'),(28448,21110,'64835'),(28449,21111,'64836'),(28450,21112,'64840'),(28451,21113,'64841'),(28452,21114,'64842'),(28453,21115,'64843'),(28454,21116,'64844'),(28455,21117,'64847'),(28456,21118,'64848'),(28457,21119,'64849'),(28458,21120,'64850'),(28459,21121,'64853'),(28460,21122,'64854'),(28461,21123,'64855'),(28462,21124,'64856'),(28463,21125,'64857'),(28464,21126,'64858'),(28465,21127,'64859'),(28466,21128,'64861'),(28467,21129,'64862'),(28468,21130,'64863'),(28469,21131,'64864'),(28470,21132,'64865'),(28471,21133,'64866'),(28472,21134,'64867'),(28473,21135,'64868'),(28474,21136,'64869'),(28475,21137,'64870'),(28476,21138,'64873'),(28477,21139,'64874'),(28478,21140,'65001'),(28479,21141,'65010'),(28480,21142,'65011'),(28481,21143,'65013'),(28482,21144,'65014'),(28483,21145,'65016'),(28484,21146,'65017'),(28485,21147,'65018'),(28486,21148,'65020'),(28487,21149,'65022'),(28488,21150,'65023'),(28489,21151,'65024'),(28490,21152,'65025'),(28491,21153,'65026'),(28492,21154,'65031'),(28493,21155,'65032'),(28494,21156,'65034'),(28495,21157,'65035'),(28496,21158,'65036'),(28497,21159,'65037'),(28498,21160,'65038'),(28499,21161,'65039'),(28500,21162,'65040'),(28501,21163,'65041'),(28502,21164,'65042'),(28503,21165,'65043'),(28504,21166,'65046'),(28505,21167,'65047'),(28506,21168,'65048'),(28507,21169,'65049'),(28508,21170,'65050'),(28509,21171,'65051'),(28510,21172,'65052'),(28511,21173,'65053'),(28512,21174,'65054'),(28513,21175,'65055'),(28514,21176,'65058'),(28515,21177,'65059'),(28516,21178,'65061'),(28517,21179,'65062'),(28518,21180,'65063'),(28519,21181,'65064'),(28520,21182,'65065'),(28521,21183,'65066'),(28522,21184,'65067'),(28523,21185,'65068'),(28524,21186,'65069'),(28525,21187,'65072'),(28526,21188,'65074'),(28527,21189,'65075'),(28528,21190,'65076'),(28529,21191,'65077'),(28530,21192,'65078'),(28531,21193,'65079'),(28532,21194,'65080'),(28533,21195,'65081'),(28534,21196,'65082'),(28535,21197,'65083'),(28536,21198,'65084'),(28537,21199,'65085'),(28538,21200,'65101'),(28539,21200,'65102'),(28540,21200,'65103'),(28541,21200,'65104'),(28542,21200,'65105'),(28543,21200,'65106'),(28544,21200,'65107'),(28545,21200,'65108'),(28546,21200,'65109'),(28547,21200,'65110'),(28548,21200,'65111'),(28549,21201,'65201'),(28550,21201,'65202'),(28551,21201,'65203'),(28552,21201,'65205'),(28553,21201,'65211'),(28554,21201,'65212'),(28555,21201,'65215'),(28556,21201,'65216'),(28557,21201,'65217'),(28558,21201,'65218'),(28559,21202,'65230'),(28560,21203,'65231'),(28561,21204,'65232'),(28562,21205,'65233'),(28563,21206,'65236'),(28564,21207,'65237'),(28565,21208,'65239'),(28566,21209,'65240'),(28567,21210,'65243'),(28568,21211,'65244'),(28569,21212,'65246'),(28570,21213,'65247'),(28571,21214,'65248'),(28572,21215,'65250'),(28573,21216,'65251'),(28574,21217,'65254'),(28575,21218,'65255'),(28576,21219,'65256'),(28577,21220,'65257'),(28578,21221,'65258'),(28579,21222,'65259'),(28580,21223,'65260'),(28581,21224,'65261'),(28582,21225,'65262'),(28583,21226,'65263'),(28584,21227,'65264'),(28585,21228,'65265'),(28586,21229,'65270'),(28587,21230,'65274'),(28588,21231,'65275'),(28589,21232,'65276'),(28590,21233,'65278'),(28591,21234,'65279'),(28592,21235,'65280'),(28593,21236,'65281'),(28594,21237,'65282'),(28595,21238,'65283'),(28596,21239,'65284'),(28597,21240,'65285'),(28598,21241,'65286'),(28599,21242,'65287'),(28600,21243,'65299'),(28601,21244,'65301'),(28602,21244,'65302'),(28603,21245,'65305'),(28604,21246,'65320'),(28605,21247,'65321'),(28606,21248,'65322'),(28607,21249,'65323'),(28608,21250,'65324'),(28609,21251,'65325'),(28610,21252,'65326'),(28611,21253,'65327'),(28612,21254,'65329'),(28613,21255,'65330'),(28614,21256,'65332'),(28615,21257,'65333'),(28616,21258,'65334'),(28617,21259,'65335'),(28618,21260,'65336'),(28619,21261,'65337'),(28620,21262,'65338'),(28621,21263,'65339'),(28622,21264,'65340'),(28623,21265,'65344'),(28624,21266,'65345'),(28625,21267,'65347'),(28626,21268,'65348'),(28627,21269,'65349'),(28628,21270,'65350'),(28629,21271,'65351'),(28630,21272,'65354'),(28631,21273,'65355'),(28632,21274,'65360'),(28633,21275,'65401'),(28634,21275,'65402'),(28635,21275,'65409'),(28636,21276,'65433'),(28637,21277,'65436'),(28638,21278,'65438'),(28639,21279,'65439'),(28640,21280,'65440'),(28641,21281,'65441'),(28642,21282,'65443'),(28643,21283,'65444'),(28644,21284,'65446'),(28645,21285,'65449'),(28646,21286,'65452'),(28647,21287,'65453'),(28648,21288,'65456'),(28649,21289,'65457'),(28650,21290,'65459'),(28651,21291,'65461'),(28652,21292,'65462'),(28653,21293,'65463'),(28654,21294,'65464'),(28655,21295,'65466'),(28656,21296,'65468'),(28657,21297,'65470'),(28658,21298,'65473'),(28659,21299,'65479'),(28660,21300,'65483'),(28661,21301,'65484'),(28662,21302,'65486'),(28663,21303,'65501'),(28664,21304,'65529'),(28665,21305,'65532'),(28666,21306,'65534'),(28667,21307,'65535'),(28668,21308,'65536'),(28669,21309,'65540'),(28670,21310,'65541'),(28671,21311,'65542'),(28672,21312,'65543'),(28673,21313,'65546'),(28674,21314,'65548'),(28675,21315,'65550'),(28676,21316,'65552'),(28677,21317,'65555'),(28678,21318,'65556'),(28679,21319,'65557'),(28680,21320,'65559'),(28681,21321,'65560'),(28682,21322,'65564'),(28683,21323,'65565'),(28684,21324,'65566'),(28685,21325,'65567'),(28686,21326,'65570'),(28687,21327,'65571'),(28688,21328,'65572'),(28689,21329,'65573'),(28690,21330,'65580'),(28691,21331,'65582'),(28692,21332,'65583'),(28693,21333,'65586'),(28694,21334,'65588'),(28695,21335,'65589'),(28696,21336,'65590'),(28697,21337,'65591'),(28698,21338,'65601'),(28699,21339,'65603'),(28700,21340,'65604'),(28701,21341,'65605'),(28702,21342,'65606'),(28703,21343,'65607'),(28704,21344,'65608'),(28705,21345,'65609'),(28706,21346,'65610'),(28707,21347,'65611'),(28708,21348,'65612'),(28709,21349,'65613'),(28710,21350,'65614'),(28711,21351,'65615'),(28712,21351,'65616'),(28713,21352,'65617'),(28714,21353,'65618'),(28715,21354,'65619'),(28716,21355,'65620'),(28717,21356,'65622'),(28718,21357,'65623'),(28719,21358,'65624'),(28720,21359,'65625'),(28721,21360,'65626'),(28722,21361,'65627'),(28723,21362,'65629'),(28724,21363,'65630'),(28725,21364,'65631'),(28726,21365,'65632'),(28727,21366,'65633'),(28728,21367,'65634'),(28729,21368,'65635'),(28730,21369,'65636'),(28731,21370,'65637'),(28732,21371,'65638'),(28733,21372,'65640'),(28734,21373,'65641'),(28735,21374,'65644'),(28736,21375,'65645'),(28737,21376,'65646'),(28738,21377,'65647'),(28739,21378,'65648'),(28740,21379,'65649'),(28741,21380,'65650'),(28742,21381,'65652'),(28743,21382,'65653'),(28744,21383,'65654'),(28745,21384,'65655'),(28746,21385,'65656'),(28747,21386,'65657'),(28748,21387,'65658'),(28749,21388,'65659'),(28750,21389,'65660'),(28751,21390,'65661'),(28752,21391,'65662'),(28753,21392,'65663'),(28754,21393,'65664'),(28755,21394,'65666'),(28756,21395,'65667'),(28757,21396,'65668'),(28758,21397,'65669'),(28759,21398,'65672'),(28760,21398,'65673'),(28761,21399,'65674'),(28762,21400,'65675'),(28763,21401,'65676'),(28764,21402,'65679'),(28765,21403,'65680'),(28766,21404,'65681'),(28767,21405,'65682'),(28768,21406,'65685'),(28769,21407,'65686'),(28770,21408,'65688'),(28771,21409,'65689'),(28772,21410,'65690'),(28773,21411,'65692'),(28774,21412,'65701'),(28775,21413,'65702'),(28776,21414,'65704'),(28777,21415,'65705'),(28778,21416,'65706'),(28779,21417,'65707'),(28780,21418,'65708'),(28781,21419,'65710'),(28782,21420,'65711'),(28783,21421,'65712'),(28784,21422,'65713'),(28785,21423,'65714'),(28786,21424,'65715'),(28787,21425,'65717'),(28788,21426,'65720'),(28789,21427,'65721'),(28790,21428,'65722'),(28791,21429,'65723'),(28792,21430,'65724'),(28793,21431,'65725'),(28794,21432,'65726'),(28795,21433,'65727'),(28796,21434,'65728'),(28797,21435,'65729'),(28798,21436,'65730'),(28799,21437,'65731'),(28800,21438,'65732'),(28801,21439,'65733'),(28802,21440,'65734'),(28803,21441,'65735'),(28804,21442,'65737'),(28805,21443,'65738'),(28806,21444,'65739'),(28807,21445,'65740'),(28808,21446,'65741'),(28809,21447,'65742'),(28810,21448,'65744'),(28811,21449,'65745'),(28812,21450,'65746'),(28813,21451,'65747'),(28814,21452,'65752'),(28815,21453,'65753'),(28816,21454,'65754'),(28817,21455,'65755'),(28818,21456,'65756'),(28819,21457,'65757'),(28820,21458,'65759'),(28821,21459,'65760'),(28822,21460,'65761'),(28823,21461,'65762'),(28824,21462,'65764'),(28825,21463,'65765'),(28826,21464,'65766'),(28827,21465,'65767'),(28828,21466,'65768'),(28829,21467,'65769'),(28830,21468,'65770'),(28831,21469,'65771'),(28832,21470,'65772'),(28833,21471,'65773'),(28834,21472,'65774'),(28835,21473,'65775'),(28836,21474,'65776'),(28837,21475,'65777'),(28838,21476,'65778'),(28839,21477,'65779'),(28840,21478,'65781'),(28841,21479,'65783'),(28842,21480,'65784'),(28843,21481,'65785'),(28844,21482,'65786'),(28845,21483,'65787'),(28846,21484,'65788'),(28847,21485,'65789'),(28848,21486,'65790'),(28849,21487,'65791'),(28850,21488,'65793'),(28851,21489,'65801'),(28852,21489,'65802'),(28853,21489,'65803'),(28854,21489,'65804'),(28855,21489,'65805'),(28856,21489,'65806'),(28857,21489,'65807'),(28858,21489,'65808'),(28859,21489,'65809'),(28860,21489,'65810'),(28861,21489,'65814'),(28862,21489,'65817'),(28863,21489,'65890'),(28864,21489,'65898'),(28865,21489,'65899'),(28866,21490,'66002'),(28867,21491,'66006'),(28868,21492,'66007'),(28869,21493,'66008'),(28870,21494,'66010'),(28871,21495,'66012'),(28872,21496,'66013'),(28873,21497,'66014'),(28874,21498,'66015'),(28875,21499,'66016'),(28876,21500,'66017'),(28877,21501,'66018'),(28878,21502,'66019'),(28879,21503,'66020'),(28880,21504,'66021'),(28881,21505,'66023'),(28882,21506,'66024'),(28883,21507,'66025'),(28884,21508,'66026'),(28885,21509,'66027'),(28886,21510,'66030'),(28887,21511,'66031'),(28888,21512,'66032'),(28889,21513,'66033'),(28890,21514,'66035'),(28891,21515,'66036'),(28892,21516,'66039'),(28893,21517,'66040'),(28894,21518,'66041'),(28895,21519,'66042'),(28896,21520,'66043'),(28897,21521,'66044'),(28898,21521,'66045'),(28899,21521,'66046'),(28900,21521,'66047'),(28901,21521,'66049'),(28902,21522,'66048'),(28903,21523,'66050'),(28904,21524,'66051'),(28905,21524,'66061'),(28906,21524,'66062'),(28907,21524,'66063'),(28908,21525,'66052'),(28909,21526,'66053'),(28910,21527,'66054'),(28911,21528,'66056'),(28912,21529,'66058'),(28913,21530,'66060'),(28914,21531,'66064'),(28915,21532,'66066'),(28916,21533,'66067'),(28917,21534,'66070'),(28918,21535,'66071'),(28919,21536,'66072'),(28920,21537,'66073'),(28921,21538,'66075'),(28922,21539,'66076'),(28923,21540,'66077'),(28924,21541,'66078'),(28925,21542,'66079'),(28926,21543,'66080'),(28927,21544,'66083'),(28928,21545,'66085'),(28929,21546,'66086'),(28930,21547,'66087'),(28931,21548,'66088'),(28932,21549,'66090'),(28933,21550,'66091'),(28934,21551,'66092'),(28935,21552,'66093'),(28936,21553,'66094'),(28937,21554,'66095'),(28938,21555,'66097'),(28939,21556,'66101'),(28940,21556,'66102'),(28941,21556,'66103'),(28942,21556,'66104'),(28943,21556,'66105'),(28944,21556,'66106'),(28945,21556,'66109'),(28946,21556,'66110'),(28947,21556,'66111'),(28948,21556,'66112'),(28949,21556,'66115'),(28950,21556,'66117'),(28951,21556,'66118'),(28952,21556,'66119'),(28953,21556,'66160'),(28954,21557,'66113'),(28955,21558,'66201'),(28956,21558,'66202'),(28957,21558,'66203'),(28958,21558,'66204'),(28959,21558,'66205'),(28960,21558,'66206'),(28961,21558,'66207'),(28962,21558,'66208'),(28963,21558,'66209'),(28964,21558,'66210'),(28965,21558,'66211'),(28966,21558,'66212'),(28967,21558,'66213'),(28968,21558,'66214'),(28969,21558,'66215'),(28970,21558,'66216'),(28971,21558,'66217'),(28972,21558,'66218'),(28973,21558,'66219'),(28974,21558,'66220'),(28975,21558,'66221'),(28976,21558,'66222'),(28977,21558,'66223'),(28978,21558,'66224'),(28979,21558,'66225'),(28980,21558,'66226'),(28981,21558,'66227'),(28982,21558,'66250'),(28983,21558,'66251'),(28984,21558,'66276'),(28985,21558,'66279'),(28986,21558,'66282'),(28987,21558,'66283'),(28988,21558,'66285'),(28989,21558,'66286'),(28990,21559,'66401'),(28991,21560,'66402'),(28992,21561,'66403'),(28993,21562,'66404'),(28994,21563,'66406'),(28995,21564,'66407'),(28996,21565,'66408'),(28997,21566,'66409'),(28998,21567,'66411'),(28999,21568,'66412'),(29000,21569,'66413'),(29001,21570,'66414'),(29002,21571,'66415'),(29003,21572,'66416'),(29004,21573,'66417'),(29005,21574,'66418'),(29006,21575,'66419'),(29007,21576,'66420'),(29008,21577,'66422'),(29009,21578,'66423'),(29010,21579,'66424'),(29011,21580,'66425'),(29012,21581,'66426'),(29013,21582,'66427'),(29014,21583,'66428'),(29015,21584,'66429'),(29016,21585,'66431'),(29017,21586,'66432'),(29018,21587,'66434'),(29019,21588,'66436'),(29020,21589,'66438'),(29021,21590,'66439'),(29022,21591,'66440'),(29023,21592,'66441'),(29024,21593,'66442'),(29025,21594,'66449'),(29026,21595,'66450'),(29027,21596,'66451'),(29028,21597,'66501'),(29029,21598,'66502'),(29030,21598,'66503'),(29031,21598,'66505'),(29032,21598,'66506'),(29033,21599,'66507'),(29034,21600,'66508'),(29035,21600,'66555'),(29036,21601,'66509'),(29037,21602,'66510'),(29038,21603,'66512'),(29039,21604,'66514'),(29040,21605,'66515'),(29041,21606,'66516'),(29042,21607,'66517'),(29043,21608,'66518'),(29044,21609,'66520'),(29045,21610,'66521'),(29046,21611,'66522'),(29047,21612,'66523'),(29048,21613,'66524'),(29049,21614,'66526'),(29050,21615,'66527'),(29051,21616,'66528'),(29052,21617,'66531'),(29053,21618,'66532'),(29054,21619,'66533'),(29055,21620,'66534'),(29056,21621,'66535'),(29057,21622,'66536'),(29058,21623,'66537'),(29059,21624,'66538'),(29060,21625,'66539'),(29061,21626,'66540'),(29062,21627,'66541'),(29063,21628,'66542'),(29064,21629,'66543'),(29065,21630,'66544'),(29066,21631,'66546'),(29067,21632,'66547'),(29068,21633,'66548'),(29069,21634,'66549'),(29070,21635,'66550'),(29071,21636,'66551'),(29072,21637,'66552'),(29073,21638,'66554'),(29074,21639,'66601'),(29075,21639,'66603'),(29076,21639,'66604'),(29077,21639,'66605'),(29078,21639,'66606'),(29079,21639,'66607'),(29080,21639,'66608'),(29081,21639,'66609'),(29082,21639,'66610'),(29083,21639,'66611'),(29084,21639,'66612'),(29085,21639,'66614'),(29086,21639,'66615'),(29087,21639,'66616'),(29088,21639,'66617'),(29089,21639,'66618'),(29090,21639,'66619'),(29091,21639,'66620'),(29092,21639,'66621'),(29093,21639,'66622'),(29094,21639,'66624'),(29095,21639,'66625'),(29096,21639,'66626'),(29097,21639,'66628'),(29098,21639,'66629'),(29099,21639,'66634'),(29100,21639,'66636'),(29101,21639,'66637'),(29102,21639,'66638'),(29103,21639,'66642'),(29104,21639,'66647'),(29105,21639,'66652'),(29106,21639,'66653'),(29107,21639,'66658'),(29108,21639,'66667'),(29109,21639,'66675'),(29110,21639,'66683'),(29111,21639,'66686'),(29112,21639,'66692'),(29113,21639,'66699'),(29114,21640,'66701'),(29115,21641,'66710'),(29116,21642,'66711'),(29117,21642,'66741'),(29118,21643,'66712'),(29119,21644,'66713'),(29120,21645,'66714'),(29121,21646,'66716'),(29122,21647,'66717'),(29123,21648,'66720'),(29124,21649,'66724'),(29125,21650,'66725'),(29126,21651,'66727'),(29127,21652,'66728'),(29128,21653,'66732'),(29129,21654,'66733'),(29130,21655,'66734'),(29131,21656,'66735'),(29132,21657,'66736'),(29133,21658,'66738'),(29134,21659,'66739'),(29135,21660,'66740'),(29136,21661,'66742'),(29137,21662,'66743'),(29138,21663,'66746'),(29139,21664,'66748'),(29140,21665,'66749'),(29141,21666,'66751'),(29142,21667,'66753'),(29143,21668,'66754'),(29144,21669,'66755'),(29145,21670,'66756'),(29146,21671,'66757'),(29147,21672,'66758'),(29148,21673,'66759'),(29149,21674,'66760'),(29150,21675,'66761'),(29151,21676,'66762'),(29152,21677,'66763'),(29153,21678,'66767'),(29154,21679,'66769'),(29155,21680,'66770'),(29156,21681,'66771'),(29157,21682,'66772'),(29158,21683,'66773'),(29159,21684,'66775'),(29160,21685,'66776'),(29161,21686,'66777'),(29162,21687,'66778'),(29163,21688,'66779'),(29164,21689,'66780'),(29165,21690,'66781'),(29166,21691,'66782'),(29167,21692,'66783'),(29168,21693,'66801'),(29169,21694,'66830'),(29170,21695,'66833'),(29171,21696,'66834'),(29172,21697,'66835'),(29173,21698,'66838'),(29174,21699,'66839'),(29175,21700,'66840'),(29176,21701,'66842'),(29177,21702,'66843'),(29178,21703,'66845'),(29179,21704,'66846'),(29180,21705,'66849'),(29181,21706,'66850'),(29182,21707,'66851'),(29183,21708,'66852'),(29184,21709,'66853'),(29185,21710,'66854'),(29186,21711,'66855'),(29187,21712,'66856'),(29188,21713,'66857'),(29189,21714,'66858'),(29190,21715,'66859'),(29191,21716,'66860'),(29192,21717,'66861'),(29193,21718,'66862'),(29194,21719,'66863'),(29195,21720,'66864'),(29196,21721,'66865'),(29197,21722,'66866'),(29198,21723,'66868'),(29199,21724,'66869'),(29200,21725,'66870'),(29201,21726,'66871'),(29202,21727,'66872'),(29203,21728,'66873'),(29204,21729,'66901'),(29205,21730,'66930'),(29206,21731,'66932'),(29207,21732,'66933'),(29208,21733,'66935'),(29209,21734,'66936'),(29210,21735,'66937'),(29211,21736,'66938'),(29212,21737,'66939'),(29213,21738,'66940'),(29214,21739,'66941'),(29215,21740,'66942'),(29216,21741,'66943'),(29217,21742,'66944'),(29218,21743,'66945'),(29219,21744,'66946'),(29220,21745,'66948'),(29221,21746,'66949'),(29222,21747,'66951'),(29223,21748,'66952'),(29224,21749,'66953'),(29225,21750,'66955'),(29226,21751,'66956'),(29227,21752,'66958'),(29228,21753,'66959'),(29229,21754,'66960'),(29230,21755,'66961'),(29231,21756,'66962'),(29232,21757,'66963'),(29233,21758,'66964'),(29234,21759,'66966'),(29235,21760,'66967'),(29236,21761,'66968'),(29237,21762,'66970'),(29238,21763,'67001'),(29239,21764,'67002'),(29240,21765,'67003'),(29241,21766,'67004'),(29242,21767,'67005'),(29243,21768,'67008'),(29244,21769,'67009'),(29245,21770,'67010'),(29246,21771,'67012'),(29247,21772,'67013'),(29248,21773,'67016'),(29249,21774,'67017'),(29250,21775,'67018'),(29251,21776,'67019'),(29252,21777,'67020'),(29253,21778,'67021'),(29254,21779,'67022'),(29255,21780,'67023'),(29256,21781,'67024'),(29257,21782,'67025'),(29258,21783,'67026'),(29259,21784,'67028'),(29260,21785,'67029'),(29261,21786,'67030'),(29262,21787,'67031'),(29263,21788,'67035'),(29264,21789,'67036'),(29265,21790,'67037'),(29266,21791,'67038'),(29267,21792,'67039'),(29268,21793,'67041'),(29269,21794,'67042'),(29270,21795,'67045'),(29271,21796,'67047'),(29272,21797,'67049'),(29273,21798,'67050'),(29274,21799,'67051'),(29275,21800,'67052'),(29276,21801,'67053'),(29277,21802,'67054'),(29278,21803,'67055'),(29279,21804,'67056'),(29280,21805,'67057'),(29281,21806,'67058'),(29282,21807,'67059'),(29283,21808,'67060'),(29284,21809,'67061'),(29285,21810,'67062'),(29286,21811,'67063'),(29287,21812,'67065'),(29288,21813,'67066'),(29289,21814,'67067'),(29290,21815,'67068'),(29291,21816,'67070'),(29292,21817,'67071'),(29293,21818,'67072'),(29294,21819,'67073'),(29295,21820,'67074'),(29296,21821,'67101'),(29297,21822,'67102'),(29298,21823,'67103'),(29299,21824,'67104'),(29300,21825,'67105'),(29301,21826,'67106'),(29302,21827,'67107'),(29303,21828,'67108'),(29304,21829,'67109'),(29305,21830,'67110'),(29306,21831,'67111'),(29307,21832,'67112'),(29308,21833,'67114'),(29309,21834,'67117'),(29310,21835,'67118'),(29311,21836,'67119'),(29312,21837,'67120'),(29313,21838,'67122'),(29314,21839,'67123'),(29315,21840,'67124'),(29316,21841,'67127'),(29317,21842,'67128'),(29318,21843,'67131'),(29319,21844,'67132'),(29320,21845,'67133'),(29321,21846,'67134'),(29322,21847,'67135'),(29323,21848,'67137'),(29324,21849,'67138'),(29325,21850,'67140'),(29326,21851,'67142'),(29327,21852,'67143'),(29328,21853,'67144'),(29329,21854,'67146'),(29330,21855,'67147'),(29331,21856,'67149'),(29332,21857,'67150'),(29333,21858,'67151'),(29334,21859,'67152'),(29335,21860,'67154'),(29336,21861,'67155'),(29337,21862,'67156'),(29338,21863,'67159'),(29339,21864,'67201'),(29340,21864,'67202'),(29341,21864,'67203'),(29342,21864,'67204'),(29343,21864,'67205'),(29344,21864,'67206'),(29345,21864,'67207'),(29346,21864,'67208'),(29347,21864,'67209'),(29348,21864,'67210'),(29349,21864,'67211'),(29350,21864,'67212'),(29351,21864,'67213'),(29352,21864,'67214'),(29353,21864,'67215'),(29354,21864,'67216'),(29355,21864,'67217'),(29356,21864,'67218'),(29357,21864,'67219'),(29358,21864,'67220'),(29359,21864,'67223'),(29360,21864,'67226'),(29361,21864,'67227'),(29362,21864,'67228'),(29363,21864,'67230'),(29364,21864,'67231'),(29365,21864,'67232'),(29366,21864,'67233'),(29367,21864,'67235'),(29368,21864,'67236'),(29369,21864,'67251'),(29370,21864,'67256'),(29371,21864,'67257'),(29372,21864,'67259'),(29373,21864,'67260'),(29374,21864,'67275'),(29375,21864,'67276'),(29376,21864,'67277'),(29377,21864,'67278'),(29378,21865,'67221'),(29379,21866,'67301'),(29380,21867,'67330'),(29381,21868,'67332'),(29382,21869,'67333'),(29383,21870,'67334'),(29384,21871,'67335'),(29385,21872,'67336'),(29386,21873,'67337'),(29387,21874,'67340'),(29388,21875,'67341'),(29389,21876,'67342'),(29390,21877,'67344'),(29391,21878,'67345'),(29392,21879,'67346'),(29393,21880,'67347'),(29394,21881,'67349'),(29395,21882,'67351'),(29396,21883,'67352'),(29397,21884,'67353'),(29398,21885,'67354'),(29399,21886,'67355'),(29400,21887,'67356'),(29401,21888,'67357'),(29402,21889,'67360'),(29403,21890,'67361'),(29404,21891,'67363'),(29405,21892,'67364'),(29406,21893,'67401'),(29407,21893,'67402'),(29408,21894,'67410'),(29409,21895,'67416'),(29410,21896,'67417'),(29411,21897,'67418'),(29412,21898,'67420'),(29413,21899,'67422'),(29414,21900,'67423'),(29415,21901,'67425'),(29416,21902,'67427'),(29417,21903,'67428'),(29418,21904,'67430'),(29419,21905,'67431'),(29420,21906,'67432'),(29421,21907,'67436'),(29422,21908,'67437'),(29423,21909,'67438'),(29424,21910,'67439'),(29425,21911,'67441'),(29426,21912,'67442'),(29427,21913,'67443'),(29428,21914,'67444'),(29429,21915,'67445'),(29430,21916,'67446'),(29431,21917,'67447'),(29432,21918,'67448'),(29433,21919,'67449'),(29434,21920,'67450'),(29435,21921,'67451'),(29436,21922,'67452'),(29437,21923,'67454'),(29438,21924,'67455'),(29439,21925,'67456'),(29440,21926,'67457'),(29441,21927,'67458'),(29442,21928,'67459'),(29443,21929,'67460'),(29444,21930,'67464'),(29445,21931,'67466'),(29446,21932,'67467'),(29447,21933,'67468'),(29448,21934,'67470'),(29449,21935,'67473'),(29450,21936,'67474'),(29451,21937,'67475'),(29452,21938,'67476'),(29453,21939,'67478'),(29454,21940,'67480'),(29455,21941,'67481'),(29456,21942,'67482'),(29457,21943,'67483'),(29458,21944,'67484'),(29459,21945,'67485'),(29460,21946,'67487'),(29461,21947,'67490'),(29462,21948,'67491'),(29463,21949,'67492'),(29464,21950,'67501'),(29465,21950,'67502'),(29466,21950,'67504'),(29467,21951,'67505'),(29468,21952,'67510'),(29469,21953,'67511'),(29470,21954,'67512'),(29471,21955,'67513'),(29472,21956,'67514'),(29473,21957,'67515'),(29474,21958,'67516'),(29475,21959,'67518'),(29476,21960,'67519'),(29477,21961,'67520'),(29478,21962,'67521'),(29479,21963,'67522'),(29480,21964,'67523'),(29481,21965,'67524'),(29482,21966,'67525'),(29483,21967,'67526'),(29484,21968,'67529'),(29485,21969,'67530'),(29486,21970,'67543'),(29487,21971,'67544'),(29488,21972,'67545'),(29489,21973,'67546'),(29490,21974,'67547'),(29491,21975,'67548'),(29492,21976,'67550'),(29493,21977,'67552'),(29494,21978,'67553'),(29495,21979,'67554'),(29496,21980,'67556'),(29497,21981,'67557'),(29498,21982,'67559'),(29499,21983,'67560'),(29500,21984,'67561'),(29501,21985,'67563'),(29502,21986,'67564'),(29503,21987,'67565'),(29504,21988,'67566'),(29505,21989,'67567'),(29506,21990,'67568'),(29507,21991,'67570'),(29508,21992,'67572'),(29509,21993,'67573'),(29510,21994,'67574'),(29511,21995,'67575'),(29512,21996,'67576'),(29513,21997,'67578'),(29514,21998,'67579'),(29515,21999,'67581'),(29516,22000,'67583'),(29517,22001,'67584'),(29518,22002,'67585'),(29519,22003,'67601'),(29520,22004,'67621'),(29521,22005,'67622'),(29522,22006,'67623'),(29523,22007,'67625'),(29524,22008,'67626'),(29525,22009,'67627'),(29526,22010,'67628'),(29527,22011,'67629'),(29528,22012,'67631'),(29529,22013,'67632'),(29530,22014,'67634'),(29531,22015,'67635'),(29532,22016,'67637'),(29533,22017,'67638'),(29534,22018,'67639'),(29535,22019,'67640'),(29536,22020,'67642'),(29537,22021,'67643'),(29538,22022,'67644'),(29539,22023,'67645'),(29540,22024,'67646'),(29541,22025,'67647'),(29542,22026,'67648'),(29543,22027,'67649'),(29544,22028,'67650'),(29545,22029,'67651'),(29546,22030,'67653'),(29547,22031,'67654'),(29548,22032,'67656'),(29549,22033,'67657'),(29550,22034,'67658'),(29551,22035,'67659'),(29552,22036,'67660'),(29553,22037,'67661'),(29554,22038,'67663'),(29555,22039,'67664'),(29556,22040,'67665'),(29557,22041,'67667'),(29558,22042,'67669'),(29559,22043,'67670'),(29560,22044,'67671'),(29561,22045,'67672'),(29562,22046,'67673'),(29563,22047,'67674'),(29564,22048,'67675'),(29565,22049,'67701'),(29566,22050,'67730'),(29567,22051,'67731'),(29568,22052,'67732'),(29569,22053,'67733'),(29570,22054,'67734'),(29571,22055,'67735'),(29572,22056,'67736'),(29573,22057,'67737'),(29574,22058,'67738'),(29575,22059,'67739'),(29576,22060,'67740'),(29577,22061,'67741'),(29578,22062,'67743'),(29579,22063,'67744'),(29580,22064,'67745'),(29581,22065,'67747'),(29582,22066,'67748'),(29583,22067,'67749'),(29584,22068,'67751'),(29585,22069,'67752'),(29586,22070,'67753'),(29587,22071,'67756'),(29588,22072,'67757'),(29589,22073,'67758'),(29590,22074,'67761'),(29591,22075,'67762'),(29592,22076,'67764'),(29593,22077,'67801'),(29594,22078,'67831'),(29595,22079,'67834'),(29596,22080,'67835'),(29597,22081,'67836'),(29598,22082,'67837'),(29599,22083,'67838'),(29600,22084,'67839'),(29601,22085,'67840'),(29602,22086,'67841'),(29603,22087,'67842'),(29604,22088,'67844'),(29605,22089,'67846'),(29606,22090,'67849'),(29607,22091,'67850'),(29608,22092,'67851'),(29609,22093,'67853'),(29610,22094,'67854'),(29611,22095,'67855'),(29612,22096,'67857'),(29613,22097,'67859'),(29614,22098,'67860'),(29615,22099,'67861'),(29616,22100,'67862'),(29617,22101,'67863'),(29618,22102,'67864'),(29619,22103,'67865'),(29620,22104,'67867'),(29621,22105,'67868'),(29622,22106,'67869'),(29623,22107,'67870'),(29624,22108,'67871'),(29625,22109,'67876'),(29626,22110,'67877'),(29627,22111,'67878'),(29628,22112,'67879'),(29629,22113,'67880'),(29630,22114,'67882'),(29631,22115,'67901'),(29632,22115,'67905'),(29633,22116,'67950'),(29634,22117,'67951'),(29635,22118,'67952'),(29636,22119,'67953'),(29637,22120,'67954'),(29638,22121,'68001'),(29639,22122,'68002'),(29640,22123,'68003'),(29641,22124,'68004'),(29642,22125,'68005'),(29643,22125,'68123'),(29644,22125,'68147'),(29645,22126,'68007'),(29646,22127,'68008'),(29647,22127,'68009'),(29648,22128,'68010'),(29649,22129,'68014'),(29650,22130,'68015'),(29651,22131,'68016'),(29652,22132,'68017'),(29653,22133,'68018'),(29654,22134,'68019'),(29655,22135,'68020'),(29656,22136,'68022'),(29657,22137,'68023'),(29658,22138,'68025'),(29659,22138,'68026'),(29660,22139,'68028'),(29661,22140,'68029'),(29662,22141,'68030'),(29663,22142,'68031'),(29664,22143,'68033'),(29665,22144,'68034'),(29666,22145,'68035'),(29667,22146,'68036'),(29668,22147,'68037'),(29669,22148,'68038'),(29670,22149,'68039'),(29671,22150,'68040'),(29672,22151,'68041'),(29673,22152,'68042'),(29674,22153,'68044'),(29675,22154,'68045'),(29676,22155,'68046'),(29677,22155,'68133'),(29678,22156,'68047'),(29679,22157,'68048'),(29680,22158,'68050'),(29681,22159,'68054'),(29682,22160,'68055'),(29683,22161,'68056'),(29684,22162,'68057'),(29685,22163,'68058'),(29686,22164,'68059'),(29687,22165,'68061'),(29688,22166,'68062'),(29689,22167,'68063'),(29690,22168,'68064'),(29691,22169,'68065'),(29692,22170,'68066'),(29693,22171,'68067'),(29694,22172,'68068'),(29695,22173,'68069'),(29696,22174,'68070'),(29697,22175,'68071'),(29698,22176,'68072'),(29699,22177,'68073'),(29700,22178,'68101'),(29701,22178,'68102'),(29702,22178,'68103'),(29703,22178,'68104'),(29704,22178,'68105'),(29705,22178,'68106'),(29706,22178,'68107'),(29707,22178,'68108'),(29708,22178,'68109'),(29709,22178,'68110'),(29710,22178,'68111'),(29711,22178,'68112'),(29712,22178,'68114'),(29713,22178,'68116'),(29714,22178,'68117'),(29715,22178,'68118'),(29716,22178,'68119'),(29717,22178,'68120'),(29718,22178,'68122'),(29719,22178,'68124'),(29720,22178,'68127'),(29721,22178,'68130'),(29722,22178,'68131'),(29723,22178,'68132'),(29724,22178,'68134'),(29725,22178,'68135'),(29726,22178,'68136'),(29727,22178,'68137'),(29728,22178,'68138'),(29729,22178,'68139'),(29730,22178,'68142'),(29731,22178,'68144'),(29732,22178,'68145'),(29733,22178,'68152'),(29734,22178,'68154'),(29735,22178,'68155'),(29736,22178,'68157'),(29737,22178,'68164'),(29738,22178,'68172'),(29739,22178,'68175'),(29740,22178,'68176'),(29741,22178,'68178'),(29742,22178,'68179'),(29743,22178,'68180'),(29744,22178,'68181'),(29745,22178,'68182'),(29746,22178,'68183'),(29747,22178,'68198'),(29748,22179,'68113'),(29749,22180,'68128'),(29750,22181,'68301'),(29751,22182,'68303'),(29752,22183,'68304'),(29753,22184,'68305'),(29754,22185,'68307'),(29755,22186,'68309'),(29756,22187,'68310'),(29757,22188,'68313'),(29758,22189,'68314'),(29759,22190,'68315'),(29760,22191,'68316'),(29761,22192,'68317'),(29762,22193,'68318'),(29763,22194,'68319'),(29764,22195,'68320'),(29765,22196,'68321'),(29766,22197,'68322'),(29767,22198,'68323'),(29768,22199,'68324'),(29769,22200,'68325'),(29770,22201,'68326'),(29771,22202,'68327'),(29772,22203,'68328'),(29773,22204,'68329'),(29774,22205,'68330'),(29775,22206,'68331'),(29776,22207,'68332'),(29777,22208,'68333'),(29778,22209,'68335'),(29779,22210,'68336'),(29780,22211,'68337'),(29781,22212,'68338'),(29782,22213,'68339'),(29783,22214,'68340'),(29784,22215,'68341'),(29785,22216,'68342'),(29786,22217,'68343'),(29787,22218,'68344'),(29788,22219,'68345'),(29789,22220,'68346'),(29790,22221,'68347'),(29791,22222,'68348'),(29792,22223,'68349'),(29793,22224,'68350'),(29794,22225,'68351'),(29795,22226,'68352'),(29796,22227,'68354'),(29797,22228,'68355'),(29798,22229,'68357'),(29799,22230,'68358'),(29800,22231,'68359'),(29801,22232,'68360'),(29802,22233,'68361'),(29803,22234,'68362'),(29804,22235,'68364'),(29805,22236,'68365'),(29806,22237,'68366'),(29807,22238,'68367'),(29808,22239,'68368'),(29809,22240,'68370'),(29810,22241,'68371'),(29811,22242,'68372'),(29812,22243,'68374'),(29813,22244,'68375'),(29814,22245,'68376'),(29815,22246,'68377'),(29816,22247,'68378'),(29817,22248,'68380'),(29818,22249,'68381'),(29819,22250,'68382'),(29820,22251,'68401'),(29821,22252,'68402'),(29822,22253,'68403'),(29823,22254,'68404'),(29824,22255,'68405'),(29825,22256,'68406'),(29826,22257,'68407'),(29827,22258,'68409'),(29828,22259,'68410'),(29829,22260,'68413'),(29830,22261,'68414'),(29831,22262,'68415'),(29832,22263,'68416'),(29833,22264,'68417'),(29834,22265,'68418'),(29835,22266,'68419'),(29836,22267,'68420'),(29837,22268,'68421'),(29838,22269,'68422'),(29839,22270,'68423'),(29840,22271,'68424'),(29841,22272,'68428'),(29842,22273,'68429'),(29843,22274,'68430'),(29844,22275,'68431'),(29845,22276,'68433'),(29846,22277,'68434'),(29847,22278,'68436'),(29848,22279,'68437'),(29849,22280,'68438'),(29850,22281,'68439'),(29851,22282,'68440'),(29852,22283,'68441'),(29853,22284,'68442'),(29854,22285,'68443'),(29855,22286,'68444'),(29856,22287,'68445'),(29857,22288,'68446'),(29858,22289,'68447'),(29859,22290,'68448'),(29860,22291,'68450'),(29861,22292,'68452'),(29862,22293,'68453'),(29863,22294,'68454'),(29864,22295,'68455'),(29865,22296,'68456'),(29866,22297,'68457'),(29867,22298,'68458'),(29868,22299,'68460'),(29869,22300,'68461'),(29870,22301,'68462'),(29871,22302,'68463'),(29872,22303,'68464'),(29873,22304,'68465'),(29874,22305,'68466'),(29875,22306,'68467'),(29876,22307,'68501'),(29877,22307,'68502'),(29878,22307,'68503'),(29879,22307,'68504'),(29880,22307,'68505'),(29881,22307,'68506'),(29882,22307,'68507'),(29883,22307,'68508'),(29884,22307,'68509'),(29885,22307,'68510'),(29886,22307,'68512'),(29887,22307,'68514'),(29888,22307,'68516'),(29889,22307,'68517'),(29890,22307,'68520'),(29891,22307,'68521'),(29892,22307,'68522'),(29893,22307,'68523'),(29894,22307,'68524'),(29895,22307,'68526'),(29896,22307,'68527'),(29897,22307,'68528'),(29898,22307,'68529'),(29899,22307,'68531'),(29900,22307,'68532'),(29901,22307,'68542'),(29902,22307,'68544'),(29903,22307,'68572'),(29904,22307,'68583'),(29905,22307,'68588'),(29906,22308,'68601'),(29907,22308,'68602'),(29908,22309,'68620'),(29909,22310,'68621'),(29910,22311,'68622'),(29911,22312,'68623'),(29912,22313,'68624'),(29913,22314,'68626'),(29914,22315,'68627'),(29915,22316,'68628'),(29916,22317,'68629'),(29917,22318,'68631'),(29918,22319,'68632'),(29919,22320,'68633'),(29920,22321,'68634'),(29921,22322,'68635'),(29922,22323,'68636'),(29923,22324,'68637'),(29924,22325,'68638'),(29925,22326,'68640'),(29926,22327,'68641'),(29927,22328,'68642'),(29928,22329,'68643'),(29929,22330,'68644'),(29930,22331,'68647'),(29931,22332,'68648'),(29932,22333,'68649'),(29933,22334,'68651'),(29934,22335,'68652'),(29935,22336,'68653'),(29936,22337,'68654'),(29937,22338,'68655'),(29938,22339,'68658'),(29939,22340,'68659'),(29940,22341,'68660'),(29941,22342,'68661'),(29942,22343,'68662'),(29943,22344,'68663'),(29944,22345,'68664'),(29945,22346,'68665'),(29946,22347,'68666'),(29947,22348,'68667'),(29948,22349,'68669'),(29949,22350,'68701'),(29950,22350,'68702'),(29951,22351,'68710'),(29952,22352,'68711'),(29953,22353,'68713'),(29954,22354,'68714'),(29955,22355,'68715'),(29956,22356,'68716'),(29957,22357,'68717'),(29958,22358,'68718'),(29959,22359,'68719'),(29960,22360,'68720'),(29961,22361,'68722'),(29962,22362,'68723'),(29963,22363,'68724'),(29964,22364,'68725'),(29965,22365,'68726'),(29966,22366,'68727'),(29967,22367,'68728'),(29968,22368,'68729'),(29969,22369,'68730'),(29970,22370,'68731'),(29971,22371,'68732'),(29972,22372,'68733'),(29973,22373,'68734'),(29974,22374,'68735'),(29975,22375,'68736'),(29976,22376,'68737'),(29977,22377,'68738'),(29978,22378,'68739'),(29979,22379,'68740'),(29980,22380,'68741'),(29981,22381,'68742'),(29982,22382,'68743'),(29983,22383,'68745'),(29984,22384,'68746'),(29985,22385,'68747'),(29986,22386,'68748'),(29987,22387,'68749'),(29988,22388,'68751'),(29989,22389,'68752'),(29990,22390,'68753'),(29991,22391,'68755'),(29992,22392,'68756'),(29993,22393,'68757'),(29994,22394,'68758'),(29995,22395,'68759'),(29996,22396,'68760'),(29997,22397,'68761'),(29998,22398,'68763'),(29999,22399,'68764'),(30000,22400,'68765'),(30001,22401,'68766'),(30002,22402,'68767'),(30003,22403,'68768'),(30004,22404,'68769'),(30005,22405,'68770'),(30006,22406,'68771'),(30007,22407,'68772'),(30008,22408,'68773'),(30009,22409,'68774'),(30010,22410,'68776'),(30011,22411,'68777'),(30012,22412,'68778'),(30013,22413,'68779'),(30014,22414,'68780'),(30015,22415,'68781'),(30016,22416,'68783'),(30017,22417,'68784'),(30018,22418,'68785'),(30019,22419,'68786'),(30020,22420,'68787'),(30021,22421,'68788'),(30022,22422,'68789'),(30023,22423,'68790'),(30024,22424,'68791'),(30025,22425,'68792'),(30026,22426,'68801'),(30027,22426,'68802'),(30028,22426,'68803'),(30029,22427,'68810'),(30030,22428,'68812'),(30031,22429,'68813'),(30032,22430,'68814'),(30033,22431,'68815'),(30034,22432,'68816'),(30035,22433,'68817'),(30036,22434,'68818'),(30037,22435,'68819'),(30038,22436,'68820'),(30039,22437,'68821'),(30040,22438,'68822'),(30041,22439,'68823'),(30042,22440,'68824'),(30043,22441,'68825'),(30044,22442,'68826'),(30045,22443,'68827'),(30046,22444,'68828'),(30047,22445,'68831'),(30048,22446,'68832'),(30049,22447,'68833'),(30050,22448,'68834'),(30051,22449,'68835'),(30052,22450,'68836'),(30053,22451,'68837'),(30054,22452,'68838'),(30055,22453,'68840'),(30056,22454,'68841'),(30057,22455,'68842'),(30058,22456,'68843'),(30059,22457,'68844'),(30060,22458,'68845'),(30061,22458,'68847'),(30062,22458,'68848'),(30063,22458,'68849'),(30064,22459,'68846'),(30065,22460,'68850'),(30066,22461,'68852'),(30067,22462,'68853'),(30068,22463,'68854'),(30069,22464,'68855'),(30070,22465,'68856'),(30071,22466,'68858'),(30072,22467,'68859'),(30073,22468,'68860'),(30074,22469,'68861'),(30075,22470,'68862'),(30076,22471,'68863'),(30077,22472,'68864'),(30078,22473,'68865'),(30079,22474,'68866'),(30080,22475,'68869'),(30081,22476,'68870'),(30082,22477,'68871'),(30083,22478,'68872'),(30084,22479,'68873'),(30085,22480,'68874'),(30086,22481,'68875'),(30087,22482,'68876'),(30088,22483,'68878'),(30089,22484,'68879'),(30090,22485,'68880'),(30091,22486,'68881'),(30092,22487,'68882'),(30093,22488,'68883'),(30094,22489,'68901'),(30095,22489,'68902'),(30096,22490,'68920'),(30097,22491,'68922'),(30098,22492,'68923'),(30099,22493,'68924'),(30100,22494,'68925'),(30101,22495,'68926'),(30102,22496,'68927'),(30103,22497,'68928'),(30104,22498,'68929'),(30105,22499,'68930'),(30106,22500,'68932'),(30107,22501,'68933'),(30108,22502,'68934'),(30109,22503,'68935'),(30110,22504,'68936'),(30111,22505,'68937'),(30112,22506,'68938'),(30113,22507,'68939'),(30114,22508,'68940'),(30115,22509,'68941'),(30116,22510,'68942'),(30117,22511,'68943'),(30118,22512,'68944'),(30119,22513,'68945'),(30120,22514,'68946'),(30121,22515,'68947'),(30122,22516,'68948'),(30123,22517,'68949'),(30124,22518,'68950'),(30125,22519,'68952'),(30126,22520,'68954'),(30127,22521,'68955'),(30128,22522,'68956'),(30129,22523,'68957'),(30130,22524,'68958'),(30131,22525,'68959'),(30132,22526,'68960'),(30133,22527,'68961'),(30134,22528,'68963'),(30135,22529,'68964'),(30136,22530,'68966'),(30137,22531,'68967'),(30138,22532,'68969'),(30139,22533,'68970'),(30140,22534,'68971'),(30141,22535,'68972'),(30142,22536,'68973'),(30143,22537,'68974'),(30144,22538,'68975'),(30145,22539,'68976'),(30146,22540,'68977'),(30147,22541,'68978'),(30148,22542,'68979'),(30149,22543,'68980'),(30150,22544,'68981'),(30151,22545,'68982'),(30152,22546,'69001'),(30153,22547,'69020'),(30154,22548,'69021'),(30155,22549,'69022'),(30156,22550,'69023'),(30157,22551,'69024'),(30158,22552,'69025'),(30159,22553,'69026'),(30160,22554,'69027'),(30161,22555,'69028'),(30162,22556,'69029'),(30163,22557,'69030'),(30164,22558,'69031'),(30165,22559,'69032'),(30166,22560,'69033'),(30167,22561,'69034'),(30168,22562,'69036'),(30169,22563,'69037'),(30170,22564,'69038'),(30171,22565,'69039'),(30172,22566,'69040'),(30173,22567,'69041'),(30174,22568,'69042'),(30175,22569,'69043'),(30176,22570,'69044'),(30177,22571,'69045'),(30178,22572,'69046'),(30179,22573,'69101'),(30180,22573,'69103'),(30181,22574,'69120'),(30182,22575,'69121'),(30183,22576,'69122'),(30184,22577,'69123'),(30185,22578,'69125'),(30186,22579,'69127'),(30187,22580,'69128'),(30188,22581,'69129'),(30189,22582,'69130'),(30190,22583,'69131'),(30191,22584,'69132'),(30192,22585,'69133'),(30193,22586,'69134'),(30194,22587,'69135'),(30195,22588,'69138'),(30196,22589,'69140'),(30197,22590,'69141'),(30198,22591,'69142'),(30199,22592,'69143'),(30200,22593,'69144'),(30201,22594,'69145'),(30202,22595,'69146'),(30203,22596,'69147'),(30204,22597,'69148'),(30205,22598,'69149'),(30206,22599,'69150'),(30207,22600,'69151'),(30208,22601,'69152'),(30209,22602,'69153'),(30210,22603,'69154'),(30211,22603,'69190'),(30212,22604,'69155'),(30213,22605,'69156'),(30214,22606,'69157'),(30215,22607,'69160'),(30216,22607,'69162'),(30217,22608,'69161'),(30218,22609,'69163'),(30219,22610,'69165'),(30220,22611,'69166'),(30221,22612,'69167'),(30222,22613,'69168'),(30223,22614,'69169'),(30224,22615,'69170'),(30225,22616,'69171'),(30226,22617,'69201'),(30227,22618,'69210'),(30228,22619,'69211'),(30229,22620,'69212'),(30230,22621,'69214'),(30231,22622,'69216'),(30232,22623,'69217'),(30233,22624,'69218'),(30234,22625,'69219'),(30235,22626,'69220'),(30236,22627,'69221'),(30237,22628,'69301'),(30238,22629,'69331'),(30239,22630,'69333'),(30240,22631,'69334'),(30241,22632,'69335'),(30242,22633,'69336'),(30243,22634,'69337'),(30244,22635,'69339'),(30245,22636,'69340'),(30246,22637,'69341'),(30247,22638,'69343'),(30248,22639,'69345'),(30249,22640,'69346'),(30250,22641,'69347'),(30251,22642,'69348'),(30252,22643,'69349'),(30253,22644,'69350'),(30254,22645,'69351'),(30255,22646,'69352'),(30256,22647,'69353'),(30257,22648,'69354'),(30258,22649,'69355'),(30259,22650,'69356'),(30260,22651,'69357'),(30261,22652,'69358'),(30262,22653,'69360'),(30263,22654,'69361'),(30264,22654,'69363'),(30265,22655,'69365'),(30266,22656,'69366'),(30267,22657,'69367'),(30268,22658,'70001'),(30269,22658,'70002'),(30270,22658,'70003'),(30271,22658,'70004'),(30272,22658,'70005'),(30273,22658,'70006'),(30274,22658,'70009'),(30275,22658,'70010'),(30276,22658,'70011'),(30277,22658,'70033'),(30278,22658,'70055'),(30279,22658,'70060'),(30280,22659,'70030'),(30281,22660,'70031'),(30282,22661,'70032'),(30283,22662,'70036'),(30284,22663,'70037'),(30285,22664,'70038'),(30286,22665,'70039'),(30287,22666,'70040'),(30288,22667,'70041'),(30289,22668,'70042'),(30290,22669,'70043'),(30291,22669,'70044'),(30292,22670,'70046'),(30293,22671,'70047'),(30294,22672,'70049'),(30295,22673,'70050'),(30296,22674,'70051'),(30297,22675,'70052'),(30298,22676,'70053'),(30299,22676,'70054'),(30300,22676,'70056'),(30301,22677,'70057'),(30302,22678,'70058'),(30303,22678,'70059'),(30304,22679,'70062'),(30305,22679,'70063'),(30306,22679,'70064'),(30307,22679,'70065'),(30308,22680,'70066'),(30309,22681,'70067'),(30310,22682,'70068'),(30311,22682,'70069'),(30312,22683,'70070'),(30313,22684,'70071'),(30314,22685,'70072'),(30315,22685,'70073'),(30316,22686,'70075'),(30317,22687,'70076'),(30318,22688,'70078'),(30319,22689,'70079'),(30320,22690,'70080'),(30321,22691,'70081'),(30322,22692,'70082'),(30323,22693,'70083'),(30324,22694,'70084'),(30325,22695,'70085'),(30326,22696,'70086'),(30327,22697,'70087'),(30328,22698,'70090'),(30329,22699,'70091'),(30330,22700,'70092'),(30331,22701,'70094'),(30332,22701,'70096'),(30333,22702,'70112'),(30334,22702,'70113'),(30335,22702,'70114'),(30336,22702,'70115'),(30337,22702,'70116'),(30338,22702,'70117'),(30339,22702,'70118'),(30340,22702,'70119'),(30341,22702,'70121'),(30342,22702,'70122'),(30343,22702,'70123'),(30344,22702,'70124'),(30345,22702,'70125'),(30346,22702,'70126'),(30347,22702,'70127'),(30348,22702,'70128'),(30349,22702,'70129'),(30350,22702,'70130'),(30351,22702,'70131'),(30352,22702,'70139'),(30353,22702,'70140'),(30354,22702,'70141'),(30355,22702,'70142'),(30356,22702,'70143'),(30357,22702,'70145'),(30358,22702,'70146'),(30359,22702,'70148'),(30360,22702,'70149'),(30361,22702,'70150'),(30362,22702,'70151'),(30363,22702,'70152'),(30364,22702,'70153'),(30365,22702,'70154'),(30366,22702,'70156'),(30367,22702,'70157'),(30368,22702,'70158'),(30369,22702,'70159'),(30370,22702,'70160'),(30371,22702,'70161'),(30372,22702,'70162'),(30373,22702,'70163'),(30374,22702,'70164'),(30375,22702,'70165'),(30376,22702,'70166'),(30377,22702,'70167'),(30378,22702,'70170'),(30379,22702,'70172'),(30380,22702,'70174'),(30381,22702,'70175'),(30382,22702,'70176'),(30383,22702,'70177'),(30384,22702,'70178'),(30385,22702,'70179'),(30386,22702,'70181'),(30387,22702,'70182'),(30388,22702,'70183'),(30389,22702,'70184'),(30390,22702,'70185'),(30391,22702,'70186'),(30392,22702,'70187'),(30393,22702,'70189'),(30394,22702,'70190'),(30395,22702,'70195'),(30396,22703,'70301'),(30397,22703,'70302'),(30398,22703,'70310'),(30399,22704,'70339'),(30400,22705,'70340'),(30401,22706,'70341'),(30402,22707,'70342'),(30403,22708,'70343'),(30404,22709,'70344'),(30405,22710,'70345'),(30406,22711,'70346'),(30407,22712,'70352'),(30408,22713,'70353'),(30409,22714,'70354'),(30410,22715,'70355'),(30411,22716,'70356'),(30412,22717,'70357'),(30413,22718,'70358'),(30414,22719,'70359'),(30415,22720,'70360'),(30416,22720,'70361'),(30417,22720,'70363'),(30418,22720,'70364'),(30419,22721,'70371'),(30420,22722,'70372'),(30421,22723,'70373'),(30422,22724,'70374'),(30423,22725,'70375'),(30424,22726,'70376'),(30425,22727,'70377'),(30426,22728,'70380'),(30427,22728,'70381'),(30428,22729,'70390'),(30429,22730,'70391'),(30430,22731,'70392'),(30431,22732,'70393'),(30432,22733,'70394'),(30433,22734,'70395'),(30434,22735,'70397'),(30435,22736,'70401'),(30436,22736,'70402'),(30437,22736,'70403'),(30438,22736,'70404'),(30439,22737,'70420'),(30440,22738,'70421'),(30441,22739,'70422'),(30442,22740,'70426'),(30443,22740,'70467'),(30444,22741,'70427'),(30445,22741,'70429'),(30446,22742,'70431'),(30447,22743,'70433'),(30448,22743,'70434'),(30449,22743,'70435'),(30450,22744,'70436'),(30451,22745,'70437'),(30452,22746,'70438'),(30453,22747,'70441'),(30454,22748,'70442'),(30455,22749,'70443'),(30456,22750,'70444'),(30457,22751,'70445'),(30458,22752,'70446'),(30459,22753,'70447'),(30460,22754,'70448'),(30461,22754,'70470'),(30462,22754,'70471'),(30463,22755,'70449'),(30464,22756,'70450'),(30465,22757,'70451'),(30466,22758,'70452'),(30467,22759,'70453'),(30468,22760,'70454'),(30469,22761,'70455'),(30470,22762,'70456'),(30471,22763,'70457'),(30472,22764,'70458'),(30473,22764,'70459'),(30474,22764,'70460'),(30475,22764,'70461'),(30476,22764,'70469'),(30477,22765,'70462'),(30478,22766,'70463'),(30479,22767,'70464'),(30480,22768,'70465'),(30481,22769,'70466'),(30482,22770,'70501'),(30483,22770,'70502'),(30484,22770,'70503'),(30485,22770,'70504'),(30486,22770,'70505'),(30487,22770,'70506'),(30488,22770,'70507'),(30489,22770,'70508'),(30490,22770,'70509'),(30491,22770,'70593'),(30492,22770,'70596'),(30493,22770,'70598'),(30494,22771,'70510'),(30495,22771,'70511'),(30496,22772,'70512'),(30497,22773,'70513'),(30498,22774,'70514'),(30499,22775,'70515'),(30500,22776,'70516'),(30501,22777,'70517'),(30502,22778,'70518'),(30503,22779,'70519'),(30504,22780,'70520'),(30505,22781,'70521'),(30506,22782,'70522'),(30507,22783,'70523'),(30508,22784,'70524'),(30509,22785,'70525'),(30510,22786,'70526'),(30511,22786,'70527'),(30512,22787,'70528'),(30513,22788,'70529'),(30514,22789,'70531'),(30515,22790,'70532'),(30516,22791,'70533'),(30517,22792,'70534'),(30518,22793,'70535'),(30519,22794,'70537'),(30520,22795,'70538'),(30521,22796,'70540'),(30522,22797,'70541'),(30523,22798,'70542'),(30524,22799,'70543'),(30525,22800,'70544'),(30526,22801,'70546'),(30527,22802,'70548'),(30528,22803,'70549'),(30529,22804,'70550'),(30530,22805,'70551'),(30531,22806,'70552'),(30532,22807,'70554'),(30533,22808,'70555'),(30534,22809,'70556'),(30535,22810,'70558'),(30536,22811,'70559'),(30537,22812,'70560'),(30538,22812,'70562'),(30539,22812,'70563'),(30540,22813,'70569'),(30541,22814,'70570'),(30542,22814,'70571'),(30543,22815,'70575'),(30544,22816,'70576'),(30545,22817,'70577'),(30546,22818,'70578'),(30547,22819,'70580'),(30548,22820,'70581'),(30549,22821,'70582'),(30550,22822,'70583'),(30551,22823,'70584'),(30552,22824,'70585'),(30553,22825,'70586'),(30554,22826,'70589'),(30555,22827,'70591'),(30556,22828,'70592'),(30557,22829,'70601'),(30558,22829,'70602'),(30559,22829,'70605'),(30560,22829,'70606'),(30561,22829,'70607'),(30562,22829,'70609'),(30563,22829,'70611'),(30564,22829,'70612'),(30565,22829,'70615'),(30566,22829,'70616'),(30567,22829,'70629'),(30568,22830,'70630'),(30569,22831,'70631'),(30570,22832,'70632'),(30571,22833,'70633'),(30572,22834,'70634'),(30573,22835,'70637'),(30574,22836,'70638'),(30575,22837,'70639'),(30576,22838,'70640'),(30577,22839,'70642'),(30578,22840,'70643'),(30579,22841,'70644'),(30580,22842,'70645'),(30581,22843,'70646'),(30582,22844,'70647'),(30583,22845,'70648'),(30584,22846,'70650'),(30585,22847,'70651'),(30586,22848,'70652'),(30587,22849,'70653'),(30588,22850,'70654'),(30589,22851,'70655'),(30590,22852,'70656'),(30591,22853,'70657'),(30592,22854,'70658'),(30593,22855,'70659'),(30594,22856,'70660'),(30595,22857,'70661'),(30596,22858,'70662'),(30597,22859,'70663'),(30598,22859,'70664'),(30599,22859,'70665'),(30600,22860,'70668'),(30601,22861,'70669'),(30602,22862,'70704'),(30603,22862,'70714'),(30604,22863,'70706'),(30605,22863,'70726'),(30606,22863,'70727'),(30607,22864,'70707'),(30608,22864,'70737'),(30609,22865,'70710'),(30610,22866,'70711'),(30611,22867,'70712'),(30612,22868,'70715'),(30613,22869,'70716'),(30614,22870,'70717'),(30615,22871,'70718'),(30616,22872,'70719'),(30617,22873,'70720'),(30618,22874,'70721'),(30619,22875,'70722'),(30620,22876,'70723'),(30621,22877,'70725'),(30622,22878,'70728'),(30623,22879,'70729'),(30624,22880,'70730'),(30625,22881,'70732'),(30626,22882,'70733'),(30627,22883,'70734'),(30628,22884,'70736'),(30629,22885,'70738'),(30630,22886,'70739'),(30631,22887,'70740'),(30632,22888,'70743'),(30633,22889,'70744'),(30634,22890,'70747'),(30635,22891,'70748'),(30636,22892,'70749'),(30637,22893,'70750'),(30638,22894,'70751'),(30639,22895,'70752'),(30640,22896,'70753'),(30641,22897,'70754'),(30642,22898,'70755'),(30643,22899,'70756'),(30644,22900,'70757'),(30645,22901,'70759'),(30646,22902,'70760'),(30647,22903,'70761'),(30648,22904,'70762'),(30649,22905,'70763'),(30650,22906,'70764'),(30651,22906,'70765'),(30652,22907,'70767'),(30653,22908,'70769'),(30654,22909,'70770'),(30655,22910,'70772'),(30656,22911,'70773'),(30657,22912,'70774'),(30658,22913,'70775'),(30659,22914,'70776'),(30660,22915,'70777'),(30661,22916,'70778'),(30662,22917,'70780'),(30663,22918,'70781'),(30664,22919,'70782'),(30665,22920,'70783'),(30666,22921,'70784'),(30667,22922,'70785'),(30668,22923,'70786'),(30669,22924,'70787'),(30670,22925,'70788'),(30671,22926,'70789'),(30672,22927,'70791'),(30673,22928,'70792'),(30674,22929,'70801'),(30675,22929,'70802'),(30676,22929,'70803'),(30677,22929,'70804'),(30678,22929,'70805'),(30679,22929,'70806'),(30680,22929,'70807'),(30681,22929,'70808'),(30682,22929,'70809'),(30683,22929,'70810'),(30684,22929,'70811'),(30685,22929,'70812'),(30686,22929,'70813'),(30687,22929,'70814'),(30688,22929,'70815'),(30689,22929,'70816'),(30690,22929,'70817'),(30691,22929,'70818'),(30692,22929,'70819'),(30693,22929,'70820'),(30694,22929,'70821'),(30695,22929,'70822'),(30696,22929,'70823'),(30697,22929,'70825'),(30698,22929,'70826'),(30699,22929,'70827'),(30700,22929,'70831'),(30701,22929,'70833'),(30702,22929,'70835'),(30703,22929,'70836'),(30704,22929,'70837'),(30705,22929,'70874'),(30706,22929,'70879'),(30707,22929,'70883'),(30708,22929,'70884'),(30709,22929,'70892'),(30710,22929,'70893'),(30711,22929,'70894'),(30712,22929,'70895'),(30713,22929,'70896'),(30714,22929,'70898'),(30715,22930,'71001'),(30716,22931,'71002'),(30717,22932,'71003'),(30718,22933,'71004'),(30719,22934,'71006'),(30720,22935,'71007'),(30721,22936,'71008'),(30722,22937,'71009'),(30723,22938,'71016'),(30724,22939,'71018'),(30725,22940,'71019'),(30726,22941,'71021'),(30727,22942,'71023'),(30728,22943,'71024'),(30729,22944,'71025'),(30730,22945,'71027'),(30731,22946,'71028'),(30732,22947,'71029'),(30733,22948,'71030'),(30734,22949,'71031'),(30735,22950,'71032'),(30736,22951,'71033'),(30737,22952,'71034'),(30738,22953,'71036'),(30739,22954,'71037'),(30740,22955,'71038'),(30741,22956,'71039'),(30742,22957,'71040'),(30743,22958,'71043'),(30744,22959,'71044'),(30745,22960,'71045'),(30746,22961,'71046'),(30747,22962,'71047'),(30748,22963,'71048'),(30749,22964,'71049'),(30750,22965,'71050'),(30751,22966,'71051'),(30752,22967,'71052'),(30753,22968,'71055'),(30754,22968,'71058'),(30755,22969,'71060'),(30756,22970,'71061'),(30757,22971,'71063'),(30758,22972,'71064'),(30759,22973,'71065'),(30760,22974,'71066'),(30761,22975,'71067'),(30762,22976,'71068'),(30763,22977,'71069'),(30764,22978,'71070'),(30765,22979,'71071'),(30766,22980,'71072'),(30767,22981,'71073'),(30768,22982,'71075'),(30769,22983,'71078'),(30770,22984,'71079'),(30771,22985,'71080'),(30772,22986,'71082'),(30773,22987,'71101'),(30774,22987,'71102'),(30775,22987,'71103'),(30776,22987,'71104'),(30777,22987,'71105'),(30778,22987,'71106'),(30779,22987,'71107'),(30780,22987,'71108'),(30781,22987,'71109'),(30782,22987,'71115'),(30783,22987,'71118'),(30784,22987,'71119'),(30785,22987,'71120'),(30786,22987,'71129'),(30787,22987,'71130'),(30788,22987,'71133'),(30789,22987,'71134'),(30790,22987,'71135'),(30791,22987,'71136'),(30792,22987,'71137'),(30793,22987,'71138'),(30794,22987,'71148'),(30795,22987,'71149'),(30796,22987,'71151'),(30797,22987,'71152'),(30798,22987,'71153'),(30799,22987,'71154'),(30800,22987,'71156'),(30801,22987,'71161'),(30802,22987,'71162'),(30803,22987,'71163'),(30804,22987,'71164'),(30805,22987,'71165'),(30806,22987,'71166'),(30807,22988,'71110'),(30808,22989,'71111'),(30809,22989,'71112'),(30810,22989,'71113'),(30811,22989,'71171'),(30812,22989,'71172'),(30813,22990,'71201'),(30814,22990,'71202'),(30815,22990,'71203'),(30816,22990,'71207'),(30817,22990,'71208'),(30818,22990,'71209'),(30819,22990,'71210'),(30820,22990,'71211'),(30821,22990,'71212'),(30822,22990,'71213'),(30823,22991,'71218'),(30824,22992,'71219'),(30825,22993,'71220'),(30826,22993,'71221'),(30827,22994,'71222'),(30828,22995,'71223'),(30829,22996,'71225'),(30830,22997,'71226'),(30831,22998,'71227'),(30832,22999,'71229'),(30833,23000,'71230'),(30834,23001,'71232'),(30835,23002,'71233'),(30836,23003,'71234'),(30837,23004,'71235'),(30838,23005,'71237'),(30839,23006,'71238'),(30840,23007,'71240'),(30841,23008,'71241'),(30842,23009,'71242'),(30843,23010,'71243'),(30844,23011,'71245'),(30845,23012,'71247'),(30846,23013,'71249'),(30847,23014,'71250'),(30848,23015,'71251'),(30849,23016,'71253'),(30850,23017,'71254'),(30851,23018,'71256'),(30852,23019,'71259'),(30853,23020,'71260'),(30854,23021,'71261'),(30855,23022,'71263'),(30856,23023,'71264'),(30857,23024,'71266'),(30858,23025,'71268'),(30859,23026,'71269'),(30860,23027,'71270'),(30861,23027,'71272'),(30862,23027,'71273'),(30863,23028,'71275'),(30864,23029,'71276'),(30865,23030,'71277'),(30866,23031,'71279'),(30867,23032,'71280'),(30868,23033,'71281'),(30869,23034,'71282'),(30870,23034,'71284'),(30871,23035,'71286'),(30872,23036,'71291'),(30873,23036,'71292'),(30874,23036,'71294'),(30875,23037,'71295'),(30876,23038,'71301'),(30877,23038,'71302'),(30878,23038,'71303'),(30879,23038,'71306'),(30880,23038,'71307'),(30881,23038,'71309'),(30882,23038,'71315'),(30883,23039,'71316'),(30884,23040,'71320'),(30885,23041,'71322'),(30886,23042,'71323'),(30887,23043,'71324'),(30888,23044,'71325'),(30889,23045,'71326'),(30890,23046,'71327'),(30891,23047,'71328'),(30892,23048,'71329'),(30893,23049,'71330'),(30894,23050,'71331'),(30895,23051,'71333'),(30896,23052,'71334'),(30897,23053,'71336'),(30898,23054,'71339'),(30899,23055,'71340'),(30900,23056,'71341'),(30901,23057,'71342'),(30902,23058,'71343'),(30903,23059,'71345'),(30904,23060,'71346'),(30905,23061,'71348'),(30906,23062,'71350'),(30907,23063,'71351'),(30908,23064,'71353'),(30909,23065,'71354'),(30910,23066,'71355'),(30911,23067,'71356'),(30912,23068,'71357'),(30913,23069,'71358'),(30914,23070,'71359'),(30915,23070,'71360'),(30916,23070,'71361'),(30917,23071,'71362'),(30918,23072,'71363'),(30919,23073,'71365'),(30920,23074,'71366'),(30921,23075,'71367'),(30922,23076,'71368'),(30923,23077,'71369'),(30924,23078,'71371'),(30925,23079,'71373'),(30926,23080,'71375'),(30927,23081,'71377'),(30928,23082,'71378'),(30929,23083,'71401'),(30930,23084,'71403'),(30931,23085,'71404'),(30932,23086,'71405'),(30933,23087,'71406'),(30934,23088,'71407'),(30935,23089,'71409'),(30936,23090,'71410'),(30937,23091,'71411'),(30938,23092,'71414'),(30939,23093,'71415'),(30940,23094,'71416'),(30941,23095,'71417'),(30942,23096,'71418'),(30943,23097,'71419'),(30944,23098,'71422'),(30945,23099,'71423'),(30946,23100,'71424'),(30947,23101,'71425'),(30948,23102,'71426'),(30949,23103,'71427'),(30950,23104,'71428'),(30951,23105,'71429'),(30952,23106,'71430'),(30953,23107,'71431'),(30954,23108,'71432'),(30955,23109,'71433'),(30956,23110,'71434'),(30957,23111,'71435'),(30958,23112,'71438'),(30959,23113,'71439'),(30960,23114,'71440'),(30961,23115,'71441'),(30962,23116,'71443'),(30963,23117,'71444'),(30964,23118,'71446'),(30965,23118,'71459'),(30966,23118,'71496'),(30967,23119,'71447'),(30968,23120,'71448'),(30969,23121,'71449'),(30970,23122,'71450'),(30971,23123,'71452'),(30972,23124,'71454'),(30973,23125,'71455'),(30974,23126,'71456'),(30975,23127,'71457'),(30976,23127,'71458'),(30977,23127,'71497'),(30978,23128,'71460'),(30979,23129,'71461'),(30980,23130,'71462'),(30981,23131,'71463'),(30982,23132,'71465'),(30983,23133,'71466'),(30984,23134,'71467'),(30985,23135,'71468'),(30986,23136,'71469'),(30987,23137,'71471'),(30988,23138,'71472'),(30989,23139,'71473'),(30990,23140,'71474'),(30991,23141,'71475'),(30992,23142,'71477'),(30993,23143,'71479'),(30994,23144,'71480'),(30995,23145,'71481'),(30996,23146,'71483'),(30997,23147,'71485'),(30998,23148,'71486'),(30999,23149,'71601'),(31000,23149,'71603'),(31001,23149,'71611'),(31002,23149,'71613'),(31003,23150,'71602'),(31004,23150,'71612'),(31005,23151,'71630'),(31006,23152,'71631'),(31007,23153,'71635'),(31008,23154,'71638'),(31009,23155,'71639'),(31010,23156,'71640'),(31011,23157,'71642'),(31012,23158,'71643'),(31013,23159,'71644'),(31014,23160,'71646'),(31015,23161,'71647'),(31016,23162,'71649'),(31017,23163,'71650'),(31018,23164,'71651'),(31019,23165,'71652'),(31020,23166,'71653'),(31021,23167,'71654'),(31022,23167,'71666'),(31023,23168,'71655'),(31024,23168,'71656'),(31025,23168,'71657'),(31026,23169,'71658'),(31027,23170,'71659'),(31028,23171,'71660'),(31029,23172,'71661'),(31030,23173,'71662'),(31031,23174,'71663'),(31032,23175,'71665'),(31033,23176,'71667'),(31034,23177,'71670'),(31035,23178,'71671'),(31036,23179,'71674'),(31037,23180,'71675'),(31038,23181,'71676'),(31039,23182,'71677'),(31040,23183,'71678'),(31041,23184,'71701'),(31042,23184,'71711'),(31043,23185,'71720'),(31044,23186,'71721'),(31045,23187,'71722'),(31046,23188,'71724'),(31047,23189,'71725'),(31048,23190,'71726'),(31049,23191,'71728'),(31050,23192,'71730'),(31051,23192,'71731'),(31052,23193,'71740'),(31053,23194,'71742'),(31054,23195,'71743'),(31055,23196,'71744'),(31056,23196,'71767'),(31057,23197,'71745'),(31058,23198,'71747'),(31059,23199,'71748'),(31060,23200,'71749'),(31061,23201,'71750'),(31062,23202,'71751'),(31063,23203,'71752'),(31064,23204,'71753'),(31065,23204,'71754'),(31066,23205,'71758'),(31067,23206,'71759'),(31068,23207,'71762'),(31069,23208,'71763'),(31070,23209,'71764'),(31071,23210,'71765'),(31072,23211,'71766'),(31073,23212,'71768'),(31074,23213,'71769'),(31075,23214,'71770'),(31076,23215,'71772'),(31077,23216,'71801'),(31078,23216,'71802'),(31079,23217,'71820'),(31080,23218,'71822'),(31081,23219,'71823'),(31082,23220,'71825'),(31083,23221,'71826'),(31084,23222,'71827'),(31085,23223,'71828'),(31086,23224,'71831'),(31087,23225,'71832'),(31088,23226,'71833'),(31089,23227,'71834'),(31090,23228,'71835'),(31091,23229,'71836'),(31092,23230,'71837'),(31093,23231,'71838'),(31094,23232,'71839'),(31095,23233,'71840'),(31096,23234,'71841'),(31097,23235,'71842'),(31098,23236,'71844'),(31099,23237,'71845'),(31100,23238,'71846'),(31101,23239,'71847'),(31102,23240,'71851'),(31103,23241,'71852'),(31104,23242,'71853'),(31105,23243,'71854'),(31106,23244,'71855'),(31107,23245,'71857'),(31108,23246,'71858'),(31109,23247,'71859'),(31110,23248,'71860'),(31111,23249,'71861'),(31112,23250,'71862'),(31113,23251,'71864'),(31114,23252,'71865'),(31115,23253,'71866'),(31116,23254,'71901'),(31117,23254,'71902'),(31118,23254,'71903'),(31119,23254,'71913'),(31120,23254,'71914'),(31121,23254,'71951'),(31122,23255,'71909'),(31123,23255,'71910'),(31124,23256,'71920'),(31125,23257,'71921'),(31126,23258,'71922'),(31127,23259,'71923'),(31128,23259,'71998'),(31129,23259,'71999'),(31130,23260,'71929'),(31131,23261,'71932'),(31132,23262,'71933'),(31133,23263,'71935'),(31134,23264,'71937'),(31135,23265,'71940'),(31136,23266,'71941'),(31137,23267,'71942'),(31138,23268,'71943'),(31139,23269,'71944'),(31140,23270,'71945'),(31141,23271,'71946'),(31142,23272,'71949'),(31143,23273,'71950'),(31144,23274,'71952'),(31145,23275,'71953'),(31146,23276,'71956'),(31147,23277,'71957'),(31148,23278,'71958'),(31149,23279,'71959'),(31150,23280,'71960'),(31151,23281,'71961'),(31152,23281,'71966'),(31153,23282,'71962'),(31154,23283,'71964'),(31155,23284,'71965'),(31156,23285,'71968'),(31157,23286,'71969'),(31158,23287,'71970'),(31159,23288,'71971'),(31160,23289,'71972'),(31161,23290,'71973'),(31162,23291,'72001'),(31163,23292,'72002'),(31164,23293,'72003'),(31165,23294,'72004'),(31166,23295,'72005'),(31167,23296,'72006'),(31168,23297,'72007'),(31169,23298,'72010'),(31170,23299,'72011'),(31171,23300,'72012'),(31172,23301,'72013'),(31173,23302,'72014'),(31174,23303,'72015'),(31175,23303,'72018'),(31176,23303,'72158'),(31177,23304,'72016'),(31178,23305,'72017'),(31179,23306,'72020'),(31180,23307,'72021'),(31181,23308,'72022'),(31182,23308,'72089'),(31183,23309,'72023'),(31184,23310,'72024'),(31185,23311,'72025'),(31186,23312,'72026'),(31187,23313,'72027'),(31188,23314,'72028'),(31189,23315,'72029'),(31190,23316,'72030'),(31191,23317,'72031'),(31192,23318,'72032'),(31193,23318,'72033'),(31194,23318,'72035'),(31195,23319,'72036'),(31196,23320,'72037'),(31197,23321,'72038'),(31198,23322,'72039'),(31199,23323,'72040'),(31200,23324,'72041'),(31201,23325,'72042'),(31202,23326,'72043'),(31203,23327,'72044'),(31204,23328,'72045'),(31205,23329,'72046'),(31206,23330,'72047'),(31207,23331,'72048'),(31208,23332,'72051'),(31209,23333,'72052'),(31210,23334,'72053'),(31211,23335,'72055'),(31212,23336,'72057'),(31213,23337,'72058'),(31214,23338,'72059'),(31215,23339,'72060'),(31216,23340,'72061'),(31217,23341,'72063'),(31218,23342,'72064'),(31219,23343,'72065'),(31220,23344,'72066'),(31221,23345,'72067'),(31222,23346,'72068'),(31223,23347,'72069'),(31224,23348,'72070'),(31225,23349,'72071'),(31226,23350,'72072'),(31227,23351,'72073'),(31228,23352,'72074'),(31229,23353,'72075'),(31230,23354,'72076'),(31231,23354,'72078'),(31232,23355,'72079'),(31233,23356,'72080'),(31234,23357,'72081'),(31235,23358,'72082'),(31236,23359,'72083'),(31237,23360,'72084'),(31238,23361,'72085'),(31239,23362,'72086'),(31240,23363,'72087'),(31241,23364,'72088'),(31242,23365,'72099'),(31243,23366,'72101'),(31244,23366,'72189'),(31245,23366,'72397'),(31246,23367,'72102'),(31247,23368,'72103'),(31248,23369,'72104'),(31249,23370,'72105'),(31250,23371,'72106'),(31251,23372,'72107'),(31252,23373,'72108'),(31253,23374,'72110'),(31254,23375,'72111'),(31255,23376,'72112'),(31256,23377,'72113'),(31257,23378,'72114'),(31258,23378,'72115'),(31259,23378,'72116'),(31260,23378,'72117'),(31261,23378,'72118'),(31262,23378,'72119'),(31263,23378,'72124'),(31264,23378,'72190'),(31265,23378,'72199'),(31266,23379,'72120'),(31267,23380,'72121'),(31268,23381,'72122'),(31269,23382,'72123'),(31270,23383,'72125'),(31271,23384,'72126'),(31272,23385,'72127'),(31273,23386,'72128'),(31274,23387,'72129'),(31275,23388,'72130'),(31276,23389,'72131'),(31277,23390,'72132'),(31278,23391,'72133'),(31279,23392,'72134'),(31280,23393,'72135'),(31281,23394,'72136'),(31282,23395,'72137'),(31283,23396,'72139'),(31284,23397,'72140'),(31285,23398,'72141'),(31286,23399,'72142'),(31287,23400,'72143'),(31288,23400,'72145'),(31289,23400,'72149'),(31290,23401,'72150'),(31291,23402,'72152'),(31292,23403,'72153'),(31293,23404,'72156'),(31294,23405,'72157'),(31295,23406,'72160'),(31296,23407,'72164'),(31297,23408,'72165'),(31298,23409,'72166'),(31299,23410,'72167'),(31300,23411,'72168'),(31301,23412,'72169'),(31302,23413,'72170'),(31303,23414,'72173'),(31304,23415,'72175'),(31305,23416,'72176'),(31306,23417,'72178'),(31307,23418,'72179'),(31308,23419,'72180'),(31309,23420,'72181'),(31310,23421,'72182'),(31311,23422,'72183'),(31312,23423,'72201'),(31313,23423,'72202'),(31314,23423,'72203'),(31315,23423,'72204'),(31316,23423,'72205'),(31317,23423,'72206'),(31318,23423,'72207'),(31319,23423,'72209'),(31320,23423,'72210'),(31321,23423,'72211'),(31322,23423,'72212'),(31323,23423,'72214'),(31324,23423,'72215'),(31325,23423,'72216'),(31326,23423,'72217'),(31327,23423,'72219'),(31328,23423,'72221'),(31329,23423,'72222'),(31330,23423,'72223'),(31331,23423,'72225'),(31332,23423,'72227'),(31333,23423,'72231'),(31334,23423,'72295'),(31335,23424,'72301'),(31336,23424,'72303'),(31337,23425,'72310'),(31338,23426,'72311'),(31339,23427,'72312'),(31340,23428,'72313'),(31341,23429,'72314'),(31342,23430,'72315'),(31343,23430,'72316'),(31344,23431,'72319'),(31345,23432,'72320'),(31346,23433,'72321'),(31347,23434,'72322'),(31348,23435,'72324'),(31349,23436,'72325'),(31350,23437,'72326'),(31351,23438,'72327'),(31352,23439,'72328'),(31353,23440,'72329'),(31354,23441,'72330'),(31355,23442,'72331'),(31356,23443,'72332'),(31357,23444,'72333'),(31358,23445,'72335'),(31359,23445,'72336'),(31360,23446,'72338'),(31361,23447,'72339'),(31362,23448,'72340'),(31363,23449,'72341'),(31364,23450,'72342'),(31365,23451,'72346'),(31366,23452,'72347'),(31367,23453,'72348'),(31368,23454,'72350'),(31369,23455,'72351'),(31370,23456,'72352'),(31371,23457,'72353'),(31372,23458,'72354'),(31373,23459,'72355'),(31374,23460,'72358'),(31375,23461,'72359'),(31376,23462,'72360'),(31377,23463,'72364'),(31378,23464,'72365'),(31379,23465,'72366'),(31380,23466,'72367'),(31381,23467,'72368'),(31382,23468,'72369'),(31383,23469,'72370'),(31384,23470,'72372'),(31385,23471,'72373'),(31386,23472,'72374'),(31387,23473,'72376'),(31388,23474,'72377'),(31389,23475,'72379'),(31390,23476,'72381'),(31391,23477,'72383'),(31392,23478,'72384'),(31393,23479,'72385'),(31394,23480,'72386'),(31395,23481,'72387'),(31396,23482,'72389'),(31397,23483,'72390'),(31398,23484,'72391'),(31399,23485,'72392'),(31400,23486,'72394'),(31401,23487,'72395'),(31402,23488,'72396'),(31403,23489,'72401'),(31404,23489,'72402'),(31405,23489,'72403'),(31406,23489,'72404'),(31407,23490,'72410'),(31408,23491,'72411'),(31409,23492,'72412'),(31410,23493,'72413'),(31411,23494,'72414'),(31412,23495,'72415'),(31413,23496,'72416'),(31414,23497,'72417'),(31415,23498,'72419'),(31416,23499,'72421'),(31417,23500,'72422'),(31418,23501,'72424'),(31419,23502,'72425'),(31420,23503,'72426'),(31421,23504,'72427'),(31422,23505,'72428'),(31423,23506,'72429'),(31424,23507,'72430'),(31425,23508,'72431'),(31426,23509,'72432'),(31427,23510,'72433'),(31428,23511,'72434'),(31429,23512,'72435'),(31430,23513,'72436'),(31431,23514,'72437'),(31432,23515,'72438'),(31433,23516,'72439'),(31434,23517,'72440'),(31435,23518,'72441'),(31436,23519,'72442'),(31437,23520,'72443'),(31438,23521,'72444'),(31439,23522,'72445'),(31440,23523,'72447'),(31441,23524,'72449'),(31442,23525,'72450'),(31443,23525,'72451'),(31444,23526,'72453'),(31445,23527,'72454'),(31446,23528,'72455'),(31447,23529,'72456'),(31448,23530,'72457'),(31449,23531,'72458'),(31450,23532,'72459'),(31451,23533,'72460'),(31452,23534,'72461'),(31453,23535,'72462'),(31454,23536,'72464'),(31455,23537,'72465'),(31456,23538,'72466'),(31457,23539,'72467'),(31458,23540,'72469'),(31459,23541,'72470'),(31460,23542,'72471'),(31461,23543,'72472'),(31462,23544,'72473'),(31463,23545,'72474'),(31464,23546,'72475'),(31465,23547,'72476'),(31466,23548,'72478'),(31467,23549,'72479'),(31468,23550,'72482'),(31469,23551,'72501'),(31470,23551,'72503'),(31471,23552,'72512'),(31472,23553,'72513'),(31473,23554,'72515'),(31474,23555,'72516'),(31475,23556,'72517'),(31476,23557,'72519'),(31477,23558,'72520'),(31478,23559,'72521'),(31479,23560,'72522'),(31480,23561,'72523'),(31481,23562,'72524'),(31482,23563,'72525'),(31483,23563,'72529'),(31484,23564,'72526'),(31485,23565,'72527'),(31486,23566,'72528'),(31487,23567,'72530'),(31488,23568,'72531'),(31489,23569,'72532'),(31490,23570,'72533'),(31491,23571,'72534'),(31492,23572,'72536'),(31493,23573,'72537'),(31494,23574,'72538'),(31495,23575,'72539'),(31496,23576,'72540'),(31497,23577,'72542'),(31498,23578,'72543'),(31499,23578,'72545'),(31500,23579,'72544'),(31501,23580,'72546'),(31502,23581,'72550'),(31503,23582,'72553'),(31504,23583,'72554'),(31505,23584,'72555'),(31506,23585,'72556'),(31507,23586,'72557'),(31508,23587,'72560'),(31509,23588,'72561'),(31510,23589,'72562'),(31511,23590,'72564'),(31512,23591,'72565'),(31513,23592,'72566'),(31514,23593,'72567'),(31515,23594,'72568'),(31516,23595,'72569'),(31517,23596,'72571'),(31518,23597,'72572'),(31519,23598,'72573'),(31520,23599,'72575'),(31521,23600,'72576'),(31522,23601,'72577'),(31523,23602,'72578'),(31524,23603,'72579'),(31525,23604,'72581'),(31526,23605,'72583'),(31527,23606,'72584'),(31528,23607,'72585'),(31529,23608,'72587'),(31530,23609,'72601'),(31531,23609,'72602'),(31532,23610,'72610'),(31533,23611,'72611'),(31534,23612,'72613'),(31535,23613,'72615'),(31536,23614,'72616'),(31537,23615,'72617'),(31538,23616,'72619'),(31539,23617,'72623'),(31540,23618,'72624'),(31541,23619,'72626'),(31542,23620,'72628'),(31543,23621,'72629'),(31544,23622,'72630'),(31545,23623,'72631'),(31546,23623,'72632'),(31547,23624,'72633'),(31548,23625,'72634'),(31549,23626,'72635'),(31550,23627,'72636'),(31551,23628,'72638'),(31552,23629,'72639'),(31553,23630,'72640'),(31554,23631,'72641'),(31555,23632,'72642'),(31556,23633,'72644'),(31557,23634,'72645'),(31558,23635,'72648'),(31559,23636,'72650'),(31560,23637,'72651'),(31561,23638,'72653'),(31562,23638,'72654'),(31563,23639,'72655'),(31564,23640,'72657'),(31565,23640,'72680'),(31566,23641,'72658'),(31567,23641,'72659'),(31568,23642,'72660'),(31569,23643,'72661'),(31570,23644,'72662'),(31571,23645,'72663'),(31572,23646,'72666'),(31573,23647,'72668'),(31574,23648,'72669'),(31575,23649,'72670'),(31576,23650,'72672'),(31577,23651,'72675'),(31578,23652,'72677'),(31579,23653,'72679'),(31580,23654,'72682'),(31581,23655,'72683'),(31582,23656,'72685'),(31583,23657,'72686'),(31584,23658,'72687'),(31585,23659,'72701'),(31586,23659,'72702'),(31587,23659,'72703'),(31588,23659,'72704'),(31589,23660,'72711'),(31590,23661,'72712'),(31591,23661,'72716'),(31592,23662,'72714'),(31593,23662,'72715'),(31594,23663,'72717'),(31595,23664,'72718'),(31596,23665,'72719'),(31597,23666,'72721'),(31598,23667,'72722'),(31599,23668,'72727'),(31600,23669,'72728'),(31601,23670,'72729'),(31602,23671,'72730'),(31603,23672,'72732'),(31604,23673,'72733'),(31605,23674,'72734'),(31606,23675,'72735'),(31607,23676,'72736'),(31608,23677,'72737'),(31609,23678,'72738'),(31610,23679,'72739'),(31611,23680,'72740'),(31612,23681,'72741'),(31613,23682,'72742'),(31614,23683,'72744'),(31615,23684,'72745'),(31616,23685,'72747'),(31617,23686,'72749'),(31618,23687,'72751'),(31619,23688,'72752'),(31620,23689,'72753'),(31621,23690,'72756'),(31622,23690,'72757'),(31623,23690,'72758'),(31624,23691,'72760'),(31625,23692,'72761'),(31626,23693,'72762'),(31627,23693,'72764'),(31628,23693,'72765'),(31629,23693,'72766'),(31630,23694,'72768'),(31631,23695,'72769'),(31632,23696,'72770'),(31633,23697,'72773'),(31634,23698,'72774'),(31635,23699,'72776'),(31636,23700,'72801'),(31637,23700,'72802'),(31638,23700,'72811'),(31639,23700,'72812'),(31640,23701,'72820'),(31641,23702,'72821'),(31642,23703,'72823'),(31643,23704,'72824'),(31644,23705,'72826'),(31645,23706,'72827'),(31646,23707,'72828'),(31647,23708,'72829'),(31648,23709,'72830'),(31649,23710,'72832'),(31650,23711,'72833'),(31651,23712,'72834'),(31652,23713,'72835'),(31653,23714,'72837'),(31654,23715,'72838'),(31655,23716,'72839'),(31656,23717,'72840'),(31657,23718,'72841'),(31658,23719,'72842'),(31659,23720,'72843'),(31660,23721,'72845'),(31661,23722,'72846'),(31662,23723,'72847'),(31663,23724,'72851'),(31664,23725,'72852'),(31665,23726,'72853'),(31666,23727,'72854'),(31667,23728,'72855'),(31668,23729,'72856'),(31669,23730,'72857'),(31670,23731,'72858'),(31671,23732,'72860'),(31672,23733,'72863'),(31673,23734,'72865'),(31674,23735,'72901'),(31675,23735,'72902'),(31676,23735,'72903'),(31677,23735,'72904'),(31678,23735,'72905'),(31679,23735,'72906'),(31680,23735,'72908'),(31681,23735,'72913'),(31682,23735,'72914'),(31683,23735,'72916'),(31684,23735,'72917'),(31685,23735,'72918'),(31686,23735,'72919'),(31687,23736,'72921'),(31688,23737,'72923'),(31689,23738,'72924'),(31690,23739,'72926'),(31691,23740,'72927'),(31692,23741,'72928'),(31693,23742,'72930'),(31694,23743,'72932'),(31695,23744,'72933'),(31696,23745,'72934'),(31697,23746,'72935'),(31698,23747,'72936'),(31699,23748,'72937'),(31700,23749,'72938'),(31701,23750,'72940'),(31702,23751,'72941'),(31703,23752,'72943'),(31704,23753,'72944'),(31705,23754,'72945'),(31706,23755,'72946'),(31707,23756,'72947'),(31708,23757,'72948'),(31709,23758,'72949'),(31710,23759,'72950'),(31711,23760,'72951'),(31712,23761,'72952'),(31713,23762,'72955'),(31714,23763,'72956'),(31715,23763,'72957'),(31716,23764,'72958'),(31717,23765,'72959'),(31718,23766,'73001'),(31719,23767,'73002'),(31720,23768,'73003'),(31721,23768,'73013'),(31722,23768,'73034'),(31723,23768,'73083'),(31724,23769,'73004'),(31725,23770,'73005'),(31726,23771,'73006'),(31727,23772,'73007'),(31728,23773,'73008'),(31729,23774,'73009'),(31730,23775,'73010'),(31731,23776,'73011'),(31732,23777,'73012'),(31733,23778,'73014'),(31734,23779,'73015'),(31735,23780,'73016'),(31736,23781,'73017'),(31737,23782,'73018'),(31738,23782,'73023'),(31739,23783,'73019'),(31740,23783,'73026'),(31741,23783,'73069'),(31742,23783,'73070'),(31743,23783,'73071'),(31744,23783,'73072'),(31745,23784,'73020'),(31746,23785,'73021'),(31747,23786,'73022'),(31748,23787,'73024'),(31749,23788,'73027'),(31750,23789,'73028'),(31751,23790,'73029'),(31752,23791,'73030'),(31753,23792,'73031'),(31754,23793,'73032'),(31755,23794,'73033'),(31756,23795,'73036'),(31757,23796,'73038'),(31758,23797,'73040'),(31759,23798,'73041'),(31760,23799,'73042'),(31761,23800,'73043'),(31762,23801,'73044'),(31763,23802,'73045'),(31764,23803,'73047'),(31765,23804,'73048'),(31766,23805,'73049'),(31767,23806,'73050'),(31768,23807,'73051'),(31769,23808,'73052'),(31770,23809,'73053'),(31771,23810,'73054'),(31772,23811,'73055'),(31773,23812,'73056'),(31774,23813,'73057'),(31775,23814,'73058'),(31776,23815,'73059'),(31777,23816,'73061'),(31778,23817,'73062'),(31779,23818,'73063'),(31780,23819,'73064'),(31781,23820,'73065'),(31782,23821,'73066'),(31783,23822,'73067'),(31784,23823,'73068'),(31785,23824,'73073'),(31786,23825,'73074'),(31787,23826,'73075'),(31788,23827,'73077'),(31789,23828,'73078'),(31790,23829,'73079'),(31791,23830,'73080'),(31792,23831,'73082'),(31793,23832,'73084'),(31794,23833,'73085'),(31795,23833,'73099'),(31796,23834,'73086'),(31797,23835,'73089'),(31798,23836,'73090'),(31799,23837,'73092'),(31800,23838,'73093'),(31801,23839,'73094'),(31802,23840,'73095'),(31803,23841,'73096'),(31804,23842,'73097'),(31805,23843,'73098'),(31806,23844,'73101'),(31807,23844,'73102'),(31808,23844,'73103'),(31809,23844,'73104'),(31810,23844,'73105'),(31811,23844,'73106'),(31812,23844,'73107'),(31813,23844,'73108'),(31814,23844,'73109'),(31815,23844,'73110'),(31816,23844,'73111'),(31817,23844,'73112'),(31818,23844,'73113'),(31819,23844,'73114'),(31820,23844,'73115'),(31821,23844,'73116'),(31822,23844,'73117'),(31823,23844,'73118'),(31824,23844,'73119'),(31825,23844,'73120'),(31826,23844,'73121'),(31827,23844,'73122'),(31828,23844,'73123'),(31829,23844,'73124'),(31830,23844,'73125'),(31831,23844,'73126'),(31832,23844,'73127'),(31833,23844,'73128'),(31834,23844,'73129'),(31835,23844,'73130'),(31836,23844,'73131'),(31837,23844,'73132'),(31838,23844,'73134'),(31839,23844,'73135'),(31840,23844,'73136'),(31841,23844,'73137'),(31842,23844,'73139'),(31843,23844,'73140'),(31844,23844,'73141'),(31845,23844,'73142'),(31846,23844,'73143'),(31847,23844,'73144'),(31848,23844,'73145'),(31849,23844,'73146'),(31850,23844,'73147'),(31851,23844,'73148'),(31852,23844,'73149'),(31853,23844,'73150'),(31854,23844,'73151'),(31855,23844,'73152'),(31856,23844,'73153'),(31857,23844,'73154'),(31858,23844,'73155'),(31859,23844,'73156'),(31860,23844,'73157'),(31861,23844,'73159'),(31862,23844,'73160'),(31863,23844,'73162'),(31864,23844,'73163'),(31865,23844,'73164'),(31866,23844,'73165'),(31867,23844,'73167'),(31868,23844,'73169'),(31869,23844,'73170'),(31870,23844,'73172'),(31871,23844,'73173'),(31872,23844,'73177'),(31873,23844,'73178'),(31874,23844,'73179'),(31875,23844,'73180'),(31876,23844,'73184'),(31877,23844,'73185'),(31878,23844,'73189'),(31879,23844,'73190'),(31880,23844,'73193'),(31881,23844,'73194'),(31882,23844,'73196'),(31883,23844,'73197'),(31884,23844,'73198'),(31885,23844,'73199'),(31886,23845,'73401'),(31887,23845,'73402'),(31888,23845,'73403'),(31889,23846,'73425'),(31890,23847,'73430'),(31891,23848,'73432'),(31892,23849,'73433'),(31893,23850,'73434'),(31894,23851,'73435'),(31895,23852,'73436'),(31896,23853,'73437'),(31897,23854,'73438'),(31898,23855,'73439'),(31899,23856,'73440'),(31900,23857,'73441'),(31901,23858,'73442'),(31902,23859,'73443'),(31903,23860,'73444'),(31904,23861,'73446'),(31905,23862,'73447'),(31906,23863,'73448'),(31907,23864,'73449'),(31908,23865,'73450'),(31909,23866,'73453'),(31910,23867,'73455'),(31911,23868,'73456'),(31912,23869,'73458'),(31913,23870,'73459'),(31914,23871,'73460'),(31915,23872,'73461'),(31916,23873,'73463'),(31917,23874,'73476'),(31918,23875,'73481'),(31919,23876,'73487'),(31920,23877,'73488'),(31921,23878,'73491'),(31922,23879,'73501'),(31923,23879,'73502'),(31924,23879,'73505'),(31925,23879,'73506'),(31926,23879,'73507'),(31927,23880,'73503'),(31928,23881,'73520'),(31929,23882,'73521'),(31930,23882,'73522'),(31931,23883,'73523'),(31932,23884,'73526'),(31933,23885,'73527'),(31934,23886,'73528'),(31935,23887,'73529'),(31936,23888,'73530'),(31937,23889,'73531'),(31938,23890,'73532'),(31939,23891,'73533'),(31940,23891,'73534'),(31941,23891,'73536'),(31942,23891,'73575'),(31943,23892,'73537'),(31944,23893,'73538'),(31945,23894,'73539'),(31946,23895,'73540'),(31947,23896,'73541'),(31948,23897,'73542'),(31949,23898,'73543'),(31950,23899,'73544'),(31951,23900,'73546'),(31952,23901,'73547'),(31953,23902,'73548'),(31954,23903,'73549'),(31955,23904,'73550'),(31956,23905,'73551'),(31957,23906,'73552'),(31958,23907,'73553'),(31959,23908,'73554'),(31960,23909,'73555'),(31961,23910,'73556'),(31962,23911,'73557'),(31963,23912,'73558'),(31964,23913,'73559'),(31965,23914,'73560'),(31966,23915,'73561'),(31967,23916,'73562'),(31968,23917,'73564'),(31969,23918,'73565'),(31970,23919,'73566'),(31971,23920,'73567'),(31972,23921,'73568'),(31973,23922,'73569'),(31974,23923,'73570'),(31975,23924,'73571'),(31976,23925,'73572'),(31977,23926,'73573'),(31978,23927,'73601'),(31979,23928,'73620'),(31980,23929,'73622'),(31981,23930,'73624'),(31982,23931,'73625'),(31983,23932,'73626'),(31984,23933,'73627'),(31985,23934,'73628'),(31986,23935,'73632'),(31987,23936,'73638'),(31988,23937,'73639'),(31989,23938,'73641'),(31990,23939,'73642'),(31991,23940,'73644'),(31992,23940,'73648'),(31993,23941,'73645'),(31994,23942,'73646'),(31995,23943,'73647'),(31996,23944,'73650'),(31997,23945,'73651'),(31998,23946,'73654'),(31999,23947,'73655'),(32000,23948,'73656'),(32001,23949,'73658'),(32002,23950,'73659'),(32003,23951,'73660'),(32004,23952,'73661'),(32005,23953,'73662'),(32006,23954,'73663'),(32007,23955,'73664'),(32008,23956,'73666'),(32009,23957,'73667'),(32010,23958,'73668'),(32011,23959,'73669'),(32012,23960,'73673'),(32013,23961,'73701'),(32014,23961,'73702'),(32015,23961,'73703'),(32016,23961,'73705'),(32017,23961,'73706'),(32018,23962,'73716'),(32019,23963,'73717'),(32020,23964,'73718'),(32021,23965,'73719'),(32022,23966,'73720'),(32023,23967,'73722'),(32024,23968,'73724'),(32025,23969,'73726'),(32026,23970,'73727'),(32027,23971,'73728'),(32028,23972,'73729'),(32029,23973,'73730'),(32030,23974,'73731'),(32031,23975,'73733'),(32032,23976,'73734'),(32033,23977,'73735'),(32034,23978,'73736'),(32035,23979,'73737'),(32036,23980,'73738'),(32037,23981,'73739'),(32038,23982,'73741'),(32039,23983,'73742'),(32040,23984,'73743'),(32041,23985,'73744'),(32042,23986,'73746'),(32043,23987,'73747'),(32044,23988,'73749'),(32045,23989,'73750'),(32046,23990,'73753'),(32047,23991,'73754'),(32048,23992,'73755'),(32049,23993,'73756'),(32050,23994,'73757'),(32051,23995,'73758'),(32052,23996,'73759'),(32053,23997,'73760'),(32054,23998,'73761'),(32055,23999,'73762'),(32056,24000,'73763'),(32057,24001,'73764'),(32058,24002,'73766'),(32059,24003,'73768'),(32060,24004,'73770'),(32061,24005,'73771'),(32062,24006,'73772'),(32063,24007,'73773'),(32064,24008,'73801'),(32065,24008,'73802'),(32066,24009,'73832'),(32067,24010,'73834'),(32068,24011,'73835'),(32069,24012,'73838'),(32070,24013,'73840'),(32071,24014,'73841'),(32072,24015,'73842'),(32073,24016,'73843'),(32074,24017,'73844'),(32075,24018,'73847'),(32076,24019,'73848'),(32077,24020,'73851'),(32078,24021,'73852'),(32079,24022,'73853'),(32080,24023,'73855'),(32081,24024,'73857'),(32082,24025,'73858'),(32083,24026,'73859'),(32084,24027,'73860'),(32085,24028,'73901'),(32086,24029,'73931'),(32087,24030,'73932'),(32088,24031,'73933'),(32089,24032,'73937'),(32090,24033,'73938'),(32091,24034,'73939'),(32092,24035,'73942'),(32093,24036,'73944'),(32094,24037,'73945'),(32095,24038,'73946'),(32096,24039,'73947'),(32097,24040,'73949'),(32098,24041,'73950'),(32099,24042,'73951'),(32100,24043,'74001'),(32101,24044,'74002'),(32102,24045,'74003'),(32103,24045,'74004'),(32104,24045,'74005'),(32105,24045,'74006'),(32106,24046,'74008'),(32107,24047,'74009'),(32108,24048,'74010'),(32109,24049,'74011'),(32110,24049,'74012'),(32111,24049,'74013'),(32112,24049,'74014'),(32113,24050,'74015'),(32114,24051,'74016'),(32115,24052,'74017'),(32116,24052,'74018'),(32117,24053,'74020'),(32118,24054,'74021'),(32119,24055,'74022'),(32120,24056,'74023'),(32121,24057,'74026'),(32122,24058,'74027'),(32123,24059,'74028'),(32124,24060,'74029'),(32125,24061,'74030'),(32126,24062,'74031'),(32127,24063,'74032'),(32128,24064,'74033'),(32129,24065,'74034'),(32130,24066,'74035'),(32131,24067,'74036'),(32132,24068,'74037'),(32133,24069,'74038'),(32134,24070,'74039'),(32135,24071,'74041'),(32136,24072,'74042'),(32137,24073,'74043'),(32138,24074,'74044'),(32139,24075,'74045'),(32140,24076,'74046'),(32141,24077,'74047'),(32142,24078,'74048'),(32143,24079,'74050'),(32144,24080,'74051'),(32145,24081,'74052'),(32146,24082,'74053'),(32147,24083,'74054'),(32148,24084,'74055'),(32149,24085,'74056'),(32150,24086,'74058'),(32151,24087,'74059'),(32152,24088,'74060'),(32153,24089,'74061'),(32154,24090,'74062'),(32155,24091,'74063'),(32156,24092,'74066'),(32157,24092,'74067'),(32158,24093,'74068'),(32159,24094,'74070'),(32160,24095,'74071'),(32161,24096,'74072'),(32162,24097,'74073'),(32163,24098,'74074'),(32164,24098,'74075'),(32165,24098,'74076'),(32166,24098,'74077'),(32167,24098,'74078'),(32168,24099,'74079'),(32169,24100,'74080'),(32170,24101,'74081'),(32171,24102,'74082'),(32172,24103,'74083'),(32173,24104,'74084'),(32174,24105,'74085'),(32175,24106,'74101'),(32176,24106,'74102'),(32177,24106,'74103'),(32178,24106,'74104'),(32179,24106,'74105'),(32180,24106,'74106'),(32181,24106,'74107'),(32182,24106,'74108'),(32183,24106,'74110'),(32184,24106,'74112'),(32185,24106,'74114'),(32186,24106,'74115'),(32187,24106,'74116'),(32188,24106,'74117'),(32189,24106,'74119'),(32190,24106,'74120'),(32191,24106,'74121'),(32192,24106,'74126'),(32193,24106,'74127'),(32194,24106,'74128'),(32195,24106,'74129'),(32196,24106,'74130'),(32197,24106,'74131'),(32198,24106,'74132'),(32199,24106,'74133'),(32200,24106,'74134'),(32201,24106,'74135'),(32202,24106,'74136'),(32203,24106,'74137'),(32204,24106,'74141'),(32205,24106,'74145'),(32206,24106,'74146'),(32207,24106,'74147'),(32208,24106,'74148'),(32209,24106,'74149'),(32210,24106,'74150'),(32211,24106,'74152'),(32212,24106,'74153'),(32213,24106,'74155'),(32214,24106,'74156'),(32215,24106,'74157'),(32216,24106,'74158'),(32217,24106,'74159'),(32218,24106,'74169'),(32219,24106,'74170'),(32220,24106,'74171'),(32221,24106,'74172'),(32222,24106,'74182'),(32223,24106,'74183'),(32224,24106,'74184'),(32225,24106,'74186'),(32226,24106,'74187'),(32227,24106,'74189'),(32228,24106,'74192'),(32229,24106,'74193'),(32230,24106,'74194'),(32231,24107,'74301'),(32232,24108,'74330'),(32233,24109,'74331'),(32234,24110,'74332'),(32235,24111,'74333'),(32236,24112,'74335'),(32237,24113,'74337'),(32238,24114,'74338'),(32239,24115,'74339'),(32240,24116,'74340'),(32241,24117,'74342'),(32242,24118,'74343'),(32243,24119,'74344'),(32244,24119,'74345'),(32245,24120,'74346'),(32246,24121,'74347'),(32247,24122,'74349'),(32248,24123,'74350'),(32249,24124,'74352'),(32250,24125,'74353'),(32251,24126,'74354'),(32252,24126,'74355'),(32253,24127,'74358'),(32254,24128,'74359'),(32255,24129,'74360'),(32256,24130,'74361'),(32257,24130,'74362'),(32258,24131,'74363'),(32259,24132,'74364'),(32260,24133,'74365'),(32261,24134,'74366'),(32262,24135,'74367'),(32263,24136,'74368'),(32264,24137,'74369'),(32265,24138,'74370'),(32266,24139,'74401'),(32267,24139,'74402'),(32268,24139,'74403'),(32269,24140,'74421'),(32270,24141,'74422'),(32271,24142,'74423'),(32272,24143,'74425'),(32273,24144,'74426'),(32274,24145,'74427'),(32275,24146,'74428'),(32276,24147,'74429'),(32277,24148,'74430'),(32278,24149,'74431'),(32279,24150,'74432'),(32280,24151,'74434'),(32281,24152,'74435'),(32282,24153,'74436'),(32283,24154,'74437'),(32284,24155,'74438'),(32285,24156,'74440'),(32286,24157,'74441'),(32287,24158,'74442'),(32288,24159,'74444'),(32289,24160,'74445'),(32290,24161,'74446'),(32291,24162,'74447'),(32292,24163,'74450'),(32293,24164,'74451'),(32294,24165,'74452'),(32295,24166,'74454'),(32296,24167,'74455'),(32297,24168,'74456'),(32298,24169,'74457'),(32299,24170,'74458'),(32300,24171,'74459'),(32301,24172,'74460'),(32302,24173,'74461'),(32303,24174,'74462'),(32304,24175,'74463'),(32305,24176,'74464'),(32306,24176,'74465'),(32307,24177,'74466'),(32308,24178,'74467'),(32309,24178,'74477'),(32310,24179,'74468'),(32311,24180,'74469'),(32312,24181,'74470'),(32313,24182,'74471'),(32314,24183,'74472'),(32315,24184,'74501'),(32316,24184,'74502'),(32317,24185,'74521'),(32318,24186,'74522'),(32319,24187,'74523'),(32320,24188,'74525'),(32321,24188,'74542'),(32322,24189,'74528'),(32323,24190,'74529'),(32324,24191,'74530'),(32325,24192,'74531'),(32326,24193,'74533'),(32327,24194,'74534'),(32328,24195,'74535'),(32329,24196,'74536'),(32330,24197,'74538'),(32331,24198,'74540'),(32332,24199,'74543'),(32333,24200,'74545'),(32334,24201,'74546'),(32335,24202,'74547'),(32336,24203,'74549'),(32337,24204,'74552'),(32338,24205,'74553'),(32339,24206,'74554'),(32340,24207,'74555'),(32341,24208,'74556'),(32342,24209,'74557'),(32343,24210,'74558'),(32344,24211,'74559'),(32345,24212,'74560'),(32346,24213,'74561'),(32347,24214,'74562'),(32348,24215,'74563'),(32349,24216,'74565'),(32350,24217,'74567'),(32351,24218,'74569'),(32352,24219,'74570'),(32353,24220,'74571'),(32354,24221,'74572'),(32355,24222,'74574'),(32356,24223,'74576'),(32357,24224,'74577'),(32358,24225,'74578'),(32359,24226,'74601'),(32360,24226,'74602'),(32361,24226,'74603'),(32362,24226,'74604'),(32363,24227,'74630'),(32364,24228,'74631'),(32365,24229,'74632'),(32366,24230,'74633'),(32367,24231,'74636'),(32368,24232,'74637'),(32369,24233,'74640'),(32370,24234,'74641'),(32371,24235,'74643'),(32372,24236,'74644'),(32373,24237,'74646'),(32374,24238,'74647'),(32375,24239,'74650'),(32376,24240,'74651'),(32377,24241,'74652'),(32378,24242,'74653'),(32379,24243,'74701'),(32380,24243,'74702'),(32381,24244,'74720'),(32382,24245,'74721'),(32383,24246,'74722'),(32384,24247,'74723'),(32385,24248,'74724'),(32386,24249,'74726'),(32387,24250,'74727'),(32388,24251,'74728'),(32389,24252,'74729'),(32390,24253,'74730'),(32391,24254,'74731'),(32392,24255,'74733'),(32393,24256,'74734'),(32394,24257,'74735'),(32395,24258,'74736'),(32396,24259,'74737'),(32397,24260,'74738'),(32398,24261,'74740'),(32399,24262,'74741'),(32400,24263,'74743'),(32401,24264,'74745'),(32402,24265,'74747'),(32403,24266,'74748'),(32404,24267,'74750'),(32405,24268,'74752'),(32406,24269,'74753'),(32407,24270,'74754'),(32408,24271,'74755'),(32409,24272,'74756'),(32410,24273,'74759'),(32411,24274,'74760'),(32412,24275,'74761'),(32413,24276,'74764'),(32414,24277,'74766'),(32415,24278,'74801'),(32416,24278,'74802'),(32417,24278,'74804'),(32418,24279,'74818'),(32419,24279,'74868'),(32420,24280,'74820'),(32421,24280,'74821'),(32422,24281,'74824'),(32423,24282,'74825'),(32424,24283,'74826'),(32425,24284,'74827'),(32426,24285,'74829'),(32427,24286,'74830'),(32428,24287,'74831'),(32429,24288,'74832'),(32430,24289,'74833'),(32431,24290,'74834'),(32432,24291,'74836'),(32433,24292,'74837'),(32434,24293,'74839'),(32435,24294,'74840'),(32436,24295,'74842'),(32437,24296,'74843'),(32438,24297,'74844'),(32439,24298,'74845'),(32440,24299,'74848'),(32441,24300,'74849'),(32442,24301,'74850'),(32443,24302,'74851'),(32444,24303,'74852'),(32445,24304,'74854'),(32446,24305,'74855'),(32447,24306,'74856'),(32448,24307,'74857'),(32449,24308,'74859'),(32450,24309,'74860'),(32451,24310,'74864'),(32452,24311,'74865'),(32453,24312,'74866'),(32454,24313,'74867'),(32455,24314,'74869'),(32456,24315,'74871'),(32457,24316,'74872'),(32458,24317,'74873'),(32459,24318,'74875'),(32460,24319,'74878'),(32461,24320,'74880'),(32462,24321,'74881'),(32463,24322,'74883'),(32464,24323,'74884'),(32465,24324,'74901'),(32466,24325,'74902'),(32467,24326,'74930'),(32468,24327,'74931'),(32469,24328,'74932'),(32470,24329,'74935'),(32471,24330,'74936'),(32472,24331,'74937'),(32473,24332,'74939'),(32474,24333,'74940'),(32475,24334,'74941'),(32476,24335,'74942'),(32477,24336,'74943'),(32478,24337,'74944'),(32479,24338,'74945'),(32480,24339,'74946'),(32481,24340,'74947'),(32482,24341,'74948'),(32483,24342,'74949'),(32484,24343,'74951'),(32485,24344,'74953'),(32486,24345,'74954'),(32487,24346,'74955'),(32488,24347,'74956'),(32489,24348,'74957'),(32490,24349,'74959'),(32491,24350,'74960'),(32492,24351,'74962'),(32493,24352,'74963'),(32494,24353,'74964'),(32495,24354,'74965'),(32496,24355,'74966'),(32497,24356,'73301'),(32498,24356,'73344'),(32499,24356,'78701'),(32500,24356,'78702'),(32501,24356,'78703'),(32502,24356,'78704'),(32503,24356,'78705'),(32504,24356,'78708'),(32505,24356,'78709'),(32506,24356,'78710'),(32507,24356,'78711'),(32508,24356,'78712'),(32509,24356,'78713'),(32510,24356,'78714'),(32511,24356,'78715'),(32512,24356,'78716'),(32513,24356,'78717'),(32514,24356,'78718'),(32515,24356,'78719'),(32516,24356,'78720'),(32517,24356,'78721'),(32518,24356,'78722'),(32519,24356,'78723'),(32520,24356,'78724'),(32521,24356,'78725'),(32522,24356,'78726'),(32523,24356,'78727'),(32524,24356,'78728'),(32525,24356,'78729'),(32526,24356,'78730'),(32527,24356,'78731'),(32528,24356,'78732'),(32529,24356,'78733'),(32530,24356,'78734'),(32531,24356,'78735'),(32532,24356,'78736'),(32533,24356,'78737'),(32534,24356,'78738'),(32535,24356,'78739'),(32536,24356,'78741'),(32537,24356,'78742'),(32538,24356,'78744'),(32539,24356,'78745'),(32540,24356,'78746'),(32541,24356,'78747'),(32542,24356,'78748'),(32543,24356,'78749'),(32544,24356,'78750'),(32545,24356,'78751'),(32546,24356,'78752'),(32547,24356,'78753'),(32548,24356,'78754'),(32549,24356,'78755'),(32550,24356,'78756'),(32551,24356,'78757'),(32552,24356,'78758'),(32553,24356,'78759'),(32554,24356,'78760'),(32555,24356,'78761'),(32556,24356,'78762'),(32557,24356,'78763'),(32558,24356,'78764'),(32559,24356,'78765'),(32560,24356,'78766'),(32561,24356,'78767'),(32562,24356,'78768'),(32563,24356,'78769'),(32564,24356,'78771'),(32565,24356,'78772'),(32566,24356,'78773'),(32567,24356,'78774'),(32568,24356,'78778'),(32569,24356,'78779'),(32570,24356,'78780'),(32571,24356,'78781'),(32572,24356,'78782'),(32573,24356,'78783'),(32574,24356,'78785'),(32575,24356,'78786'),(32576,24356,'78787'),(32577,24356,'78788'),(32578,24356,'78789'),(32579,24357,'75001'),(32580,24358,'75002'),(32581,24358,'75013'),(32582,24359,'75006'),(32583,24359,'75007'),(32584,24359,'75008'),(32585,24359,'75010'),(32586,24359,'75011'),(32587,24360,'75009'),(32588,24361,'75014'),(32589,24361,'75015'),(32590,24361,'75016'),(32591,24361,'75017'),(32592,24361,'75037'),(32593,24361,'75038'),(32594,24361,'75039'),(32595,24361,'75060'),(32596,24361,'75061'),(32597,24361,'75062'),(32598,24361,'75063'),(32599,24362,'75019'),(32600,24362,'75099'),(32601,24363,'75020'),(32602,24363,'75021'),(32603,24364,'75022'),(32604,24364,'75027'),(32605,24364,'75028'),(32606,24365,'75023'),(32607,24365,'75024'),(32608,24365,'75025'),(32609,24365,'75026'),(32610,24365,'75074'),(32611,24365,'75075'),(32612,24365,'75086'),(32613,24365,'75093'),(32614,24365,'75094'),(32615,24366,'75029'),(32616,24366,'75057'),(32617,24366,'75067'),(32618,24366,'75077'),(32619,24367,'75030'),(32620,24367,'75088'),(32621,24367,'75089'),(32622,24368,'75032'),(32623,24368,'75087'),(32624,24369,'75034'),(32625,24369,'75035'),(32626,24370,'75040'),(32627,24370,'75041'),(32628,24370,'75042'),(32629,24370,'75043'),(32630,24370,'75044'),(32631,24370,'75045'),(32632,24370,'75046'),(32633,24370,'75047'),(32634,24370,'75048'),(32635,24370,'75049'),(32636,24371,'75050'),(32637,24371,'75051'),(32638,24371,'75052'),(32639,24371,'75053'),(32640,24371,'75054'),(32641,24372,'75056'),(32642,24373,'75058'),(32643,24374,'75065'),(32644,24375,'75068'),(32645,24376,'75069'),(32646,24376,'75070'),(32647,24377,'75076'),(32648,24378,'75078'),(32649,24379,'75080'),(32650,24379,'75081'),(32651,24379,'75082'),(32652,24379,'75083'),(32653,24379,'75085'),(32654,24380,'75090'),(32655,24380,'75091'),(32656,24380,'75092'),(32657,24381,'75097'),(32658,24382,'75098'),(32659,24383,'75101'),(32660,24384,'75102'),(32661,24385,'75103'),(32662,24386,'75104'),(32663,24386,'75106'),(32664,24387,'75105'),(32665,24388,'75110'),(32666,24388,'75151'),(32667,24389,'75114'),(32668,24390,'75115'),(32669,24390,'75123'),(32670,24391,'75116'),(32671,24391,'75137'),(32672,24391,'75138'),(32673,24392,'75117'),(32674,24393,'75118'),(32675,24394,'75119'),(32676,24394,'75120'),(32677,24395,'75121'),(32678,24396,'75124'),(32679,24397,'75125'),(32680,24398,'75126'),(32681,24399,'75127'),(32682,24400,'75132'),(32683,24401,'75134'),(32684,24401,'75146'),(32685,24402,'75135'),(32686,24403,'75140'),(32687,24404,'75141'),(32688,24405,'75142'),(32689,24406,'75143'),(32690,24407,'75144'),(32691,24408,'75147'),(32692,24409,'75148'),(32693,24410,'75149'),(32694,24410,'75150'),(32695,24410,'75180'),(32696,24410,'75181'),(32697,24410,'75185'),(32698,24410,'75187'),(32699,24411,'75152'),(32700,24412,'75153'),(32701,24413,'75154'),(32702,24414,'75155'),(32703,24415,'75157'),(32704,24416,'75158'),(32705,24417,'75159'),(32706,24418,'75160'),(32707,24418,'75161'),(32708,24419,'75163'),(32709,24420,'75164'),(32710,24421,'75165'),(32711,24421,'75167'),(32712,24421,'75168'),(32713,24422,'75166'),(32714,24423,'75169'),(32715,24424,'75172'),(32716,24425,'75173'),(32717,24426,'75182'),(32718,24427,'75189'),(32719,24428,'75201'),(32720,24428,'75202'),(32721,24428,'75203'),(32722,24428,'75204'),(32723,24428,'75205'),(32724,24428,'75206'),(32725,24428,'75207'),(32726,24428,'75208'),(32727,24428,'75209'),(32728,24428,'75210'),(32729,24428,'75211'),(32730,24428,'75212'),(32731,24428,'75214'),(32732,24428,'75215'),(32733,24428,'75216'),(32734,24428,'75217'),(32735,24428,'75218'),(32736,24428,'75219'),(32737,24428,'75220'),(32738,24428,'75221'),(32739,24428,'75222'),(32740,24428,'75223'),(32741,24428,'75224'),(32742,24428,'75225'),(32743,24428,'75226'),(32744,24428,'75227'),(32745,24428,'75228'),(32746,24428,'75229'),(32747,24428,'75230'),(32748,24428,'75231'),(32749,24428,'75232'),(32750,24428,'75233'),(32751,24428,'75234'),(32752,24428,'75235'),(32753,24428,'75236'),(32754,24428,'75237'),(32755,24428,'75238'),(32756,24428,'75239'),(32757,24428,'75240'),(32758,24428,'75241'),(32759,24428,'75242'),(32760,24428,'75243'),(32761,24428,'75244'),(32762,24428,'75245'),(32763,24428,'75246'),(32764,24428,'75247'),(32765,24428,'75248'),(32766,24428,'75249'),(32767,24428,'75250'),(32768,24428,'75251'),(32769,24428,'75252'),(32770,24428,'75253'),(32771,24428,'75258'),(32772,24428,'75260'),(32773,24428,'75261'),(32774,24428,'75262'),(32775,24428,'75263'),(32776,24428,'75264'),(32777,24428,'75265'),(32778,24428,'75266'),(32779,24428,'75267'),(32780,24428,'75270'),(32781,24428,'75275'),(32782,24428,'75277'),(32783,24428,'75283'),(32784,24428,'75284'),(32785,24428,'75285'),(32786,24428,'75286'),(32787,24428,'75287'),(32788,24428,'75294'),(32789,24428,'75295'),(32790,24428,'75301'),(32791,24428,'75303'),(32792,24428,'75310'),(32793,24428,'75312'),(32794,24428,'75313'),(32795,24428,'75315'),(32796,24428,'75320'),(32797,24428,'75323'),(32798,24428,'75326'),(32799,24428,'75336'),(32800,24428,'75339'),(32801,24428,'75342'),(32802,24428,'75346'),(32803,24428,'75350'),(32804,24428,'75353'),(32805,24428,'75354'),(32806,24428,'75355'),(32807,24428,'75356'),(32808,24428,'75357'),(32809,24428,'75359'),(32810,24428,'75360'),(32811,24428,'75363'),(32812,24428,'75364'),(32813,24428,'75367'),(32814,24428,'75368'),(32815,24428,'75370'),(32816,24428,'75371'),(32817,24428,'75372'),(32818,24428,'75373'),(32819,24428,'75374'),(32820,24428,'75376'),(32821,24428,'75378'),(32822,24428,'75379'),(32823,24428,'75380'),(32824,24428,'75381'),(32825,24428,'75382'),(32826,24428,'75386'),(32827,24428,'75387'),(32828,24428,'75388'),(32829,24428,'75389'),(32830,24428,'75390'),(32831,24428,'75391'),(32832,24428,'75392'),(32833,24428,'75393'),(32834,24428,'75394'),(32835,24428,'75395'),(32836,24428,'75396'),(32837,24428,'75397'),(32838,24428,'75398'),(32839,24429,'75401'),(32840,24429,'75402'),(32841,24429,'75403'),(32842,24429,'75404'),(32843,24430,'75407'),(32844,24431,'75409'),(32845,24432,'75410'),(32846,24433,'75411'),(32847,24434,'75412'),(32848,24435,'75413'),(32849,24436,'75414'),(32850,24437,'75415'),(32851,24438,'75416'),(32852,24439,'75417'),(32853,24440,'75418'),(32854,24441,'75420'),(32855,24442,'75421'),(32856,24443,'75422'),(32857,24444,'75423'),(32858,24445,'75424'),(32859,24446,'75425'),(32860,24447,'75426'),(32861,24448,'75428'),(32862,24448,'75429'),(32863,24449,'75431'),(32864,24450,'75432'),(32865,24451,'75433'),(32866,24452,'75434'),(32867,24453,'75435'),(32868,24454,'75436'),(32869,24455,'75437'),(32870,24456,'75438'),(32871,24457,'75439'),(32872,24458,'75440'),(32873,24459,'75441'),(32874,24460,'75442'),(32875,24461,'75443'),(32876,24462,'75444'),(32877,24463,'75446'),(32878,24464,'75447'),(32879,24465,'75448'),(32880,24466,'75449'),(32881,24467,'75450'),(32882,24468,'75451'),(32883,24469,'75452'),(32884,24470,'75453'),(32885,24471,'75454'),(32886,24472,'75455'),(32887,24472,'75456'),(32888,24473,'75457'),(32889,24474,'75458'),(32890,24475,'75459'),(32891,24476,'75460'),(32892,24476,'75461'),(32893,24476,'75462'),(32894,24477,'75468'),(32895,24478,'75469'),(32896,24479,'75470'),(32897,24480,'75471'),(32898,24481,'75472'),(32899,24482,'75473'),(32900,24483,'75474'),(32901,24484,'75475'),(32902,24485,'75476'),(32903,24486,'75477'),(32904,24487,'75478'),(32905,24488,'75479'),(32906,24489,'75480'),(32907,24490,'75481'),(32908,24491,'75482'),(32909,24491,'75483'),(32910,24492,'75485'),(32911,24493,'75486'),(32912,24494,'75487'),(32913,24495,'75488'),(32914,24496,'75489'),(32915,24497,'75490'),(32916,24498,'75491'),(32917,24499,'75492'),(32918,24500,'75493'),(32919,24501,'75494'),(32920,24502,'75495'),(32921,24503,'75496'),(32922,24504,'75497'),(32923,24505,'75501'),(32924,24505,'75503'),(32925,24505,'75504'),(32926,24505,'75505'),(32927,24505,'75507'),(32928,24505,'75599'),(32929,24506,'75550'),(32930,24507,'75551'),(32931,24508,'75554'),(32932,24509,'75555'),(32933,24510,'75556'),(32934,24511,'75558'),(32935,24512,'75559'),(32936,24513,'75560'),(32937,24514,'75561'),(32938,24515,'75562'),(32939,24516,'75563'),(32940,24517,'75564'),(32941,24518,'75565'),(32942,24519,'75566'),(32943,24520,'75567'),(32944,24521,'75568'),(32945,24522,'75569'),(32946,24523,'75570'),(32947,24524,'75571'),(32948,24525,'75572'),(32949,24526,'75573'),(32950,24527,'75574'),(32951,24528,'75601'),(32952,24528,'75602'),(32953,24528,'75603'),(32954,24528,'75604'),(32955,24528,'75605'),(32956,24528,'75606'),(32957,24528,'75607'),(32958,24528,'75608'),(32959,24528,'75615'),(32960,24529,'75630'),(32961,24530,'75631'),(32962,24531,'75633'),(32963,24532,'75636'),(32964,24533,'75637'),(32965,24534,'75638'),(32966,24535,'75639'),(32967,24536,'75640'),(32968,24537,'75641'),(32969,24538,'75642'),(32970,24539,'75643'),(32971,24540,'75644'),(32972,24541,'75647'),(32973,24542,'75650'),(32974,24543,'75651'),(32975,24544,'75652'),(32976,24544,'75653'),(32977,24544,'75654'),(32978,24545,'75656'),(32979,24546,'75657'),(32980,24547,'75658'),(32981,24548,'75659'),(32982,24549,'75660'),(32983,24550,'75661'),(32984,24551,'75662'),(32985,24551,'75663'),(32986,24552,'75666'),(32987,24553,'75667'),(32988,24554,'75668'),(32989,24555,'75669'),(32990,24556,'75670'),(32991,24556,'75671'),(32992,24556,'75672'),(32993,24557,'75680'),(32994,24558,'75681'),(32995,24559,'75682'),(32996,24560,'75683'),(32997,24561,'75684'),(32998,24562,'75685'),(32999,24563,'75686'),(33000,24564,'75687'),(33001,24565,'75688'),(33002,24566,'75689'),(33003,24567,'75691'),(33004,24568,'75692'),(33005,24569,'75693'),(33006,24570,'75694'),(33007,24571,'75701'),(33008,24571,'75702'),(33009,24571,'75703'),(33010,24571,'75704'),(33011,24571,'75705'),(33012,24571,'75706'),(33013,24571,'75707'),(33014,24571,'75708'),(33015,24571,'75709'),(33016,24571,'75710'),(33017,24571,'75711'),(33018,24571,'75712'),(33019,24571,'75713'),(33020,24571,'75798'),(33021,24571,'75799'),(33022,24572,'75750'),(33023,24573,'75751'),(33024,24574,'75754'),(33025,24575,'75755'),(33026,24576,'75756'),(33027,24577,'75757'),(33028,24578,'75758'),(33029,24579,'75759'),(33030,24580,'75760'),(33031,24581,'75762'),(33032,24582,'75763'),(33033,24583,'75764'),(33034,24584,'75765'),(33035,24585,'75766'),(33036,24586,'75770'),(33037,24587,'75771'),(33038,24588,'75772'),(33039,24589,'75773'),(33040,24590,'75778'),(33041,24591,'75779'),(33042,24592,'75780'),(33043,24593,'75782'),(33044,24594,'75783'),(33045,24595,'75784'),(33046,24596,'75785'),(33047,24597,'75788'),(33048,24598,'75789'),(33049,24599,'75790'),(33050,24600,'75791'),(33051,24601,'75792'),(33052,24602,'75801'),(33053,24602,'75802'),(33054,24602,'75882'),(33055,24603,'75831'),(33056,24604,'75832'),(33057,24605,'75833'),(33058,24606,'75834'),(33059,24607,'75835'),(33060,24608,'75838'),(33061,24609,'75839'),(33062,24610,'75840'),(33063,24611,'75844'),(33064,24612,'75845'),(33065,24613,'75846'),(33066,24614,'75847'),(33067,24615,'75848'),(33068,24616,'75849'),(33069,24617,'75850'),(33070,24618,'75851'),(33071,24619,'75852'),(33072,24620,'75853'),(33073,24621,'75855'),(33074,24622,'75856'),(33075,24623,'75858'),(33076,24624,'75859'),(33077,24625,'75860'),(33078,24626,'75861'),(33079,24626,'75880'),(33080,24626,'75884'),(33081,24626,'75886'),(33082,24627,'75862'),(33083,24628,'75865'),(33084,24629,'75901'),(33085,24629,'75902'),(33086,24629,'75903'),(33087,24629,'75904'),(33088,24629,'75915'),(33089,24630,'75925'),(33090,24631,'75926'),(33091,24632,'75928'),(33092,24633,'75929'),(33093,24634,'75930'),(33094,24635,'75931'),(33095,24636,'75932'),(33096,24637,'75933'),(33097,24638,'75934'),(33098,24639,'75935'),(33099,24640,'75936'),(33100,24641,'75937'),(33101,24642,'75938'),(33102,24643,'75939'),(33103,24644,'75941'),(33104,24645,'75942'),(33105,24646,'75943'),(33106,24647,'75944'),(33107,24648,'75946'),(33108,24649,'75947'),(33109,24650,'75948'),(33110,24651,'75949'),(33111,24652,'75951'),(33112,24653,'75954'),(33113,24654,'75956'),(33114,24655,'75958'),(33115,24656,'75959'),(33116,24657,'75960'),(33117,24658,'75961'),(33118,24658,'75962'),(33119,24658,'75963'),(33120,24658,'75964'),(33121,24659,'75966'),(33122,24660,'75968'),(33123,24661,'75969'),(33124,24662,'75972'),(33125,24663,'75973'),(33126,24664,'75974'),(33127,24665,'75975'),(33128,24666,'75976'),(33129,24667,'75977'),(33130,24668,'75978'),(33131,24669,'75979'),(33132,24669,'75990'),(33133,24670,'75980'),(33134,24671,'76001'),(33135,24671,'76002'),(33136,24671,'76003'),(33137,24671,'76004'),(33138,24671,'76005'),(33139,24671,'76006'),(33140,24671,'76007'),(33141,24671,'76010'),(33142,24671,'76011'),(33143,24671,'76012'),(33144,24671,'76013'),(33145,24671,'76014'),(33146,24671,'76015'),(33147,24671,'76016'),(33148,24671,'76017'),(33149,24671,'76018'),(33150,24671,'76019'),(33151,24671,'76094'),(33152,24671,'76096'),(33153,24672,'76008'),(33154,24673,'76009'),(33155,24674,'76020'),(33156,24674,'76098'),(33157,24675,'76021'),(33158,24675,'76022'),(33159,24675,'76095'),(33160,24676,'76023'),(33161,24677,'76028'),(33162,24677,'76097'),(33163,24678,'76031'),(33164,24678,'76033'),(33165,24679,'76034'),(33166,24680,'76035'),(33167,24681,'76036'),(33168,24682,'76039'),(33169,24682,'76040'),(33170,24683,'76041'),(33171,24684,'76043'),(33172,24685,'76044'),(33173,24686,'76048'),(33174,24686,'76049'),(33175,24687,'76050'),(33176,24688,'76051'),(33177,24688,'76099'),(33178,24689,'76052'),(33179,24690,'76053'),(33180,24690,'76054'),(33181,24691,'76055'),(33182,24692,'76058'),(33183,24693,'76059'),(33184,24694,'76060'),(33185,24695,'76061'),(33186,24696,'76063'),(33187,24697,'76064'),(33188,24698,'76065'),(33189,24699,'76066'),(33190,24700,'76067'),(33191,24700,'76068'),(33192,24701,'76070'),(33193,24702,'76071'),(33194,24703,'76073'),(33195,24704,'76077'),(33196,24705,'76078'),(33197,24706,'76082'),(33198,24707,'76084'),(33199,24708,'76086'),(33200,24708,'76087'),(33201,24708,'76088'),(33202,24709,'76092'),(33203,24710,'76093'),(33204,24711,'76101'),(33205,24711,'76102'),(33206,24711,'76103'),(33207,24711,'76104'),(33208,24711,'76105'),(33209,24711,'76106'),(33210,24711,'76107'),(33211,24711,'76108'),(33212,24711,'76109'),(33213,24711,'76110'),(33214,24711,'76111'),(33215,24711,'76112'),(33216,24711,'76113'),(33217,24711,'76114'),(33218,24711,'76115'),(33219,24711,'76116'),(33220,24711,'76118'),(33221,24711,'76119'),(33222,24711,'76120'),(33223,24711,'76121'),(33224,24711,'76122'),(33225,24711,'76123'),(33226,24711,'76124'),(33227,24711,'76126'),(33228,24711,'76129'),(33229,24711,'76130'),(33230,24711,'76131'),(33231,24711,'76132'),(33232,24711,'76133'),(33233,24711,'76134'),(33234,24711,'76135'),(33235,24711,'76136'),(33236,24711,'76137'),(33237,24711,'76140'),(33238,24711,'76147'),(33239,24711,'76148'),(33240,24711,'76150'),(33241,24711,'76155'),(33242,24711,'76161'),(33243,24711,'76162'),(33244,24711,'76163'),(33245,24711,'76164'),(33246,24711,'76177'),(33247,24711,'76178'),(33248,24711,'76179'),(33249,24711,'76181'),(33250,24711,'76185'),(33251,24711,'76191'),(33252,24711,'76192'),(33253,24711,'76193'),(33254,24711,'76195'),(33255,24711,'76196'),(33256,24711,'76197'),(33257,24711,'76198'),(33258,24711,'76199'),(33259,24712,'76117'),(33260,24713,'76127'),(33261,24714,'76180'),(33262,24714,'76182'),(33263,24715,'76201'),(33264,24715,'76202'),(33265,24715,'76203'),(33266,24715,'76204'),(33267,24715,'76205'),(33268,24715,'76206'),(33269,24715,'76207'),(33270,24715,'76208'),(33271,24716,'76225'),(33272,24717,'76226'),(33273,24718,'76227'),(33274,24719,'76228'),(33275,24720,'76230'),(33276,24721,'76233'),(33277,24722,'76234'),(33278,24723,'76238'),(33279,24724,'76239'),(33280,24725,'76240'),(33281,24725,'76241'),(33282,24726,'76244'),(33283,24726,'76248'),(33284,24727,'76245'),(33285,24728,'76246'),(33286,24729,'76247'),(33287,24730,'76249'),(33288,24731,'76250'),(33289,24732,'76251'),(33290,24733,'76252'),(33291,24734,'76253'),(33292,24735,'76255'),(33293,24736,'76258'),(33294,24737,'76259'),(33295,24738,'76261'),(33296,24739,'76262'),(33297,24739,'76299'),(33298,24740,'76263'),(33299,24741,'76264'),(33300,24742,'76265'),(33301,24743,'76266'),(33302,24744,'76267'),(33303,24745,'76268'),(33304,24746,'76270'),(33305,24747,'76271'),(33306,24748,'76272'),(33307,24749,'76273'),(33308,24750,'76301'),(33309,24750,'76302'),(33310,24750,'76305'),(33311,24750,'76306'),(33312,24750,'76307'),(33313,24750,'76308'),(33314,24750,'76309'),(33315,24750,'76310'),(33316,24751,'76311'),(33317,24752,'76351'),(33318,24753,'76352'),(33319,24754,'76354'),(33320,24755,'76357'),(33321,24756,'76360'),(33322,24757,'76363'),(33323,24758,'76364'),(33324,24759,'76365'),(33325,24760,'76366'),(33326,24761,'76367'),(33327,24762,'76369'),(33328,24763,'76370'),(33329,24764,'76371'),(33330,24765,'76372'),(33331,24766,'76373'),(33332,24767,'76374'),(33333,24768,'76377'),(33334,24769,'76379'),(33335,24770,'76380'),(33336,24771,'76384'),(33337,24771,'76385'),(33338,24772,'76388'),(33339,24773,'76389'),(33340,24774,'76401'),(33341,24774,'76402'),(33342,24775,'76424'),(33343,24776,'76426'),(33344,24777,'76427'),(33345,24778,'76429'),(33346,24779,'76430'),(33347,24780,'76431'),(33348,24781,'76432'),(33349,24782,'76433'),(33350,24783,'76435'),(33351,24784,'76436'),(33352,24785,'76437'),(33353,24786,'76439'),(33354,24787,'76442'),(33355,24788,'76443'),(33356,24789,'76444'),(33357,24790,'76445'),(33358,24791,'76446'),(33359,24792,'76448'),(33360,24793,'76449'),(33361,24794,'76450'),(33362,24795,'76452'),(33363,24796,'76453'),(33364,24797,'76454'),(33365,24798,'76455'),(33366,24799,'76457'),(33367,24800,'76458'),(33368,24801,'76459'),(33369,24802,'76460'),(33370,24803,'76461'),(33371,24804,'76462'),(33372,24805,'76463'),(33373,24806,'76464'),(33374,24807,'76465'),(33375,24808,'76466'),(33376,24809,'76467'),(33377,24810,'76468'),(33378,24811,'76469'),(33379,24812,'76470'),(33380,24813,'76471'),(33381,24814,'76472'),(33382,24815,'76474'),(33383,24816,'76475'),(33384,24817,'76476'),(33385,24818,'76481'),(33386,24819,'76483'),(33387,24820,'76484'),(33388,24821,'76485'),(33389,24822,'76486'),(33390,24823,'76487'),(33391,24824,'76490'),(33392,24825,'76491'),(33393,24826,'76501'),(33394,24826,'76502'),(33395,24826,'76503'),(33396,24826,'76504'),(33397,24826,'76505'),(33398,24826,'76508'),(33399,24827,'76511'),(33400,24828,'76513'),(33401,24829,'76518'),(33402,24830,'76519'),(33403,24831,'76520'),(33404,24832,'76522'),(33405,24833,'76523'),(33406,24834,'76524'),(33407,24835,'76525'),(33408,24836,'76526'),(33409,24837,'76527'),(33410,24838,'76528'),(33411,24838,'76596'),(33412,24838,'76597'),(33413,24838,'76598'),(33414,24838,'76599'),(33415,24839,'76530'),(33416,24840,'76531'),(33417,24841,'76533'),(33418,24842,'76534'),(33419,24843,'76537'),(33420,24844,'76538'),(33421,24845,'76539'),(33422,24846,'76540'),(33423,24846,'76541'),(33424,24846,'76542'),(33425,24846,'76543'),(33426,24846,'76544'),(33427,24846,'76545'),(33428,24846,'76546'),(33429,24846,'76547'),(33430,24846,'76549'),(33431,24847,'76548'),(33432,24848,'76550'),(33433,24849,'76552'),(33434,24850,'76554'),(33435,24851,'76555'),(33436,24852,'76556'),(33437,24853,'76557'),(33438,24854,'76558'),(33439,24855,'76559'),(33440,24856,'76561'),(33441,24857,'76564'),(33442,24858,'76565'),(33443,24859,'76566'),(33444,24860,'76567'),(33445,24861,'76569'),(33446,24862,'76570'),(33447,24863,'76571'),(33448,24864,'76573'),(33449,24865,'76574'),(33450,24866,'76577'),(33451,24867,'76578'),(33452,24868,'76579'),(33453,24869,'76621'),(33454,24870,'76622'),(33455,24871,'76623'),(33456,24872,'76624'),(33457,24873,'76626'),(33458,24874,'76627'),(33459,24875,'76628'),(33460,24876,'76629'),(33461,24877,'76630'),(33462,24878,'76631'),(33463,24879,'76632'),(33464,24880,'76633'),(33465,24881,'76634'),(33466,24882,'76635'),(33467,24883,'76636'),(33468,24884,'76637'),(33469,24885,'76638'),(33470,24886,'76639'),(33471,24887,'76640'),(33472,24888,'76641'),(33473,24889,'76642'),(33474,24890,'76643'),(33475,24891,'76644'),(33476,24892,'76645'),(33477,24893,'76648'),(33478,24894,'76649'),(33479,24895,'76650'),(33480,24896,'76651'),(33481,24897,'76652'),(33482,24898,'76653'),(33483,24899,'76654'),(33484,24900,'76655'),(33485,24901,'76656'),(33486,24902,'76657'),(33487,24903,'76660'),(33488,24904,'76661'),(33489,24905,'76664'),(33490,24906,'76665'),(33491,24907,'76666'),(33492,24908,'76667'),(33493,24909,'76670'),(33494,24910,'76671'),(33495,24911,'76673'),(33496,24912,'76675'),(33497,24913,'76676'),(33498,24914,'76677'),(33499,24915,'76678'),(33500,24916,'76679'),(33501,24917,'76680'),(33502,24918,'76681'),(33503,24919,'76682'),(33504,24920,'76684'),(33505,24921,'76685'),(33506,24922,'76686'),(33507,24923,'76687'),(33508,24924,'76689'),(33509,24925,'76690'),(33510,24926,'76691'),(33511,24927,'76692'),(33512,24928,'76693'),(33513,24929,'76701'),(33514,24929,'76702'),(33515,24929,'76703'),(33516,24929,'76704'),(33517,24929,'76705'),(33518,24929,'76706'),(33519,24929,'76707'),(33520,24929,'76708'),(33521,24929,'76710'),(33522,24929,'76711'),(33523,24929,'76714'),(33524,24929,'76715'),(33525,24929,'76716'),(33526,24929,'76795'),(33527,24929,'76797'),(33528,24929,'76798'),(33529,24929,'76799'),(33530,24930,'76712'),(33531,24931,'76801'),(33532,24931,'76803'),(33533,24931,'76804'),(33534,24932,'76802'),(33535,24933,'76820'),(33536,24934,'76821'),(33537,24935,'76823'),(33538,24936,'76824'),(33539,24937,'76825'),(33540,24938,'76827'),(33541,24939,'76828'),(33542,24940,'76831'),(33543,24941,'76832'),(33544,24942,'76834'),(33545,24943,'76836'),(33546,24944,'76837'),(33547,24945,'76841'),(33548,24946,'76842'),(33549,24947,'76844'),(33550,24948,'76845'),(33551,24949,'76848'),(33552,24950,'76849'),(33553,24951,'76852'),(33554,24952,'76853'),(33555,24953,'76854'),(33556,24954,'76855'),(33557,24955,'76856'),(33558,24956,'76857'),(33559,24957,'76858'),(33560,24958,'76859'),(33561,24959,'76861'),(33562,24960,'76862'),(33563,24961,'76864'),(33564,24962,'76865'),(33565,24963,'76866'),(33566,24964,'76867'),(33567,24965,'76869'),(33568,24966,'76870'),(33569,24967,'76871'),(33570,24968,'76872'),(33571,24969,'76873'),(33572,24970,'76874'),(33573,24971,'76875'),(33574,24972,'76877'),(33575,24973,'76878'),(33576,24974,'76880'),(33577,24975,'76882'),(33578,24976,'76883'),(33579,24977,'76884'),(33580,24978,'76885'),(33581,24979,'76886'),(33582,24980,'76887'),(33583,24981,'76888'),(33584,24982,'76890'),(33585,24983,'76901'),(33586,24983,'76902'),(33587,24983,'76903'),(33588,24983,'76904'),(33589,24983,'76905'),(33590,24983,'76906'),(33591,24983,'76909'),(33592,24984,'76908'),(33593,24985,'76930'),(33594,24986,'76932'),(33595,24987,'76933'),(33596,24988,'76934'),(33597,24989,'76935'),(33598,24990,'76936'),(33599,24991,'76937'),(33600,24992,'76939'),(33601,24993,'76940'),(33602,24994,'76941'),(33603,24995,'76943'),(33604,24996,'76945'),(33605,24997,'76949'),(33606,24998,'76950'),(33607,24999,'76951'),(33608,25000,'76953'),(33609,25001,'76955'),(33610,25002,'76957'),(33611,25003,'76958'),(33612,25004,'77001'),(33613,25004,'77002'),(33614,25004,'77003'),(33615,25004,'77004'),(33616,25004,'77005'),(33617,25004,'77006'),(33618,25004,'77007'),(33619,25004,'77008'),(33620,25004,'77009'),(33621,25004,'77010'),(33622,25004,'77011'),(33623,25004,'77012'),(33624,25004,'77013'),(33625,25004,'77014'),(33626,25004,'77015'),(33627,25004,'77016'),(33628,25004,'77017'),(33629,25004,'77018'),(33630,25004,'77019'),(33631,25004,'77020'),(33632,25004,'77021'),(33633,25004,'77022'),(33634,25004,'77023'),(33635,25004,'77024'),(33636,25004,'77025'),(33637,25004,'77026'),(33638,25004,'77027'),(33639,25004,'77028'),(33640,25004,'77029'),(33641,25004,'77030'),(33642,25004,'77031'),(33643,25004,'77032'),(33644,25004,'77033'),(33645,25004,'77034'),(33646,25004,'77035'),(33647,25004,'77036'),(33648,25004,'77037'),(33649,25004,'77038'),(33650,25004,'77039'),(33651,25004,'77040'),(33652,25004,'77041'),(33653,25004,'77042'),(33654,25004,'77043'),(33655,25004,'77044'),(33656,25004,'77045'),(33657,25004,'77046'),(33658,25004,'77047'),(33659,25004,'77048'),(33660,25004,'77049'),(33661,25004,'77050'),(33662,25004,'77051'),(33663,25004,'77052'),(33664,25004,'77053'),(33665,25004,'77054'),(33666,25004,'77055'),(33667,25004,'77056'),(33668,25004,'77057'),(33669,25004,'77058'),(33670,25004,'77059'),(33671,25004,'77060'),(33672,25004,'77061'),(33673,25004,'77062'),(33674,25004,'77063'),(33675,25004,'77064'),(33676,25004,'77065'),(33677,25004,'77066'),(33678,25004,'77067'),(33679,25004,'77068'),(33680,25004,'77069'),(33681,25004,'77070'),(33682,25004,'77071'),(33683,25004,'77072'),(33684,25004,'77073'),(33685,25004,'77074'),(33686,25004,'77075'),(33687,25004,'77076'),(33688,25004,'77077'),(33689,25004,'77078'),(33690,25004,'77079'),(33691,25004,'77080'),(33692,25004,'77081'),(33693,25004,'77082'),(33694,25004,'77083'),(33695,25004,'77084'),(33696,25004,'77085'),(33697,25004,'77086'),(33698,25004,'77087'),(33699,25004,'77088'),(33700,25004,'77089'),(33701,25004,'77090'),(33702,25004,'77091'),(33703,25004,'77092'),(33704,25004,'77093'),(33705,25004,'77094'),(33706,25004,'77095'),(33707,25004,'77096'),(33708,25004,'77097'),(33709,25004,'77098'),(33710,25004,'77099'),(33711,25004,'77201'),(33712,25004,'77202'),(33713,25004,'77203'),(33714,25004,'77204'),(33715,25004,'77205'),(33716,25004,'77206'),(33717,25004,'77207'),(33718,25004,'77208'),(33719,25004,'77209'),(33720,25004,'77210'),(33721,25004,'77212'),(33722,25004,'77213'),(33723,25004,'77215'),(33724,25004,'77216'),(33725,25004,'77217'),(33726,25004,'77218'),(33727,25004,'77219'),(33728,25004,'77220'),(33729,25004,'77221'),(33730,25004,'77222'),(33731,25004,'77223'),(33732,25004,'77224'),(33733,25004,'77225'),(33734,25004,'77226'),(33735,25004,'77227'),(33736,25004,'77228'),(33737,25004,'77229'),(33738,25004,'77230'),(33739,25004,'77231'),(33740,25004,'77233'),(33741,25004,'77234'),(33742,25004,'77235'),(33743,25004,'77236'),(33744,25004,'77237'),(33745,25004,'77238'),(33746,25004,'77240'),(33747,25004,'77241'),(33748,25004,'77242'),(33749,25004,'77243'),(33750,25004,'77244'),(33751,25004,'77245'),(33752,25004,'77248'),(33753,25004,'77249'),(33754,25004,'77251'),(33755,25004,'77252'),(33756,25004,'77253'),(33757,25004,'77254'),(33758,25004,'77255'),(33759,25004,'77256'),(33760,25004,'77257'),(33761,25004,'77258'),(33762,25004,'77259'),(33763,25004,'77261'),(33764,25004,'77262'),(33765,25004,'77263'),(33766,25004,'77265'),(33767,25004,'77266'),(33768,25004,'77267'),(33769,25004,'77268'),(33770,25004,'77269'),(33771,25004,'77270'),(33772,25004,'77271'),(33773,25004,'77272'),(33774,25004,'77273'),(33775,25004,'77274'),(33776,25004,'77275'),(33777,25004,'77277'),(33778,25004,'77279'),(33779,25004,'77280'),(33780,25004,'77281'),(33781,25004,'77282'),(33782,25004,'77284'),(33783,25004,'77287'),(33784,25004,'77288'),(33785,25004,'77289'),(33786,25004,'77290'),(33787,25004,'77291'),(33788,25004,'77292'),(33789,25004,'77293'),(33790,25004,'77297'),(33791,25004,'77298'),(33792,25004,'77299'),(33793,25005,'77301'),(33794,25005,'77302'),(33795,25005,'77303'),(33796,25005,'77304'),(33797,25005,'77305'),(33798,25005,'77306'),(33799,25005,'77384'),(33800,25005,'77385'),(33801,25006,'77315'),(33802,25007,'77316'),(33803,25007,'77356'),(33804,25008,'77318'),(33805,25008,'77378'),(33806,25009,'77320'),(33807,25009,'77340'),(33808,25009,'77341'),(33809,25009,'77342'),(33810,25009,'77343'),(33811,25009,'77344'),(33812,25009,'77348'),(33813,25009,'77349'),(33814,25010,'77325'),(33815,25010,'77338'),(33816,25010,'77339'),(33817,25010,'77345'),(33818,25010,'77346'),(33819,25010,'77347'),(33820,25010,'77396'),(33821,25011,'77326'),(33822,25012,'77327'),(33823,25012,'77328'),(33824,25013,'77331'),(33825,25014,'77332'),(33826,25015,'77333'),(33827,25016,'77334'),(33828,25017,'77335'),(33829,25018,'77336'),(33830,25019,'77337'),(33831,25020,'77350'),(33832,25021,'77351'),(33833,25021,'77399'),(33834,25022,'77353'),(33835,25022,'77354'),(33836,25022,'77355'),(33837,25023,'77357'),(33838,25024,'77358'),(33839,25025,'77359'),(33840,25026,'77360'),(33841,25027,'77362'),(33842,25028,'77363'),(33843,25029,'77364'),(33844,25030,'77365'),(33845,25031,'77367'),(33846,25032,'77368'),(33847,25033,'77369'),(33848,25034,'77371'),(33849,25035,'77372'),(33850,25036,'77373'),(33851,25036,'77379'),(33852,25036,'77380'),(33853,25036,'77381'),(33854,25036,'77382'),(33855,25036,'77383'),(33856,25036,'77386'),(33857,25036,'77387'),(33858,25036,'77388'),(33859,25036,'77389'),(33860,25036,'77391'),(33861,25036,'77393'),(33862,25037,'77374'),(33863,25038,'77375'),(33864,25038,'77377'),(33865,25039,'77376'),(33866,25040,'77401'),(33867,25040,'77402'),(33868,25041,'77404'),(33869,25041,'77414'),(33870,25042,'77406'),(33871,25042,'77469'),(33872,25043,'77410'),(33873,25043,'77429'),(33874,25043,'77433'),(33875,25044,'77411'),(33876,25045,'77412'),(33877,25046,'77413'),(33878,25047,'77415'),(33879,25048,'77417'),(33880,25049,'77418'),(33881,25050,'77419'),(33882,25051,'77420'),(33883,25052,'77422'),(33884,25053,'77423'),(33885,25054,'77426'),(33886,25055,'77428'),(33887,25056,'77430'),(33888,25057,'77431'),(33889,25058,'77432'),(33890,25059,'77434'),(33891,25060,'77435'),(33892,25061,'77436'),(33893,25062,'77437'),(33894,25063,'77440'),(33895,25064,'77441'),(33896,25065,'77442'),(33897,25066,'77443'),(33898,25067,'77444'),(33899,25068,'77445'),(33900,25069,'77446'),(33901,25070,'77447'),(33902,25071,'77448'),(33903,25072,'77449'),(33904,25072,'77450'),(33905,25072,'77491'),(33906,25072,'77492'),(33907,25072,'77493'),(33908,25072,'77494'),(33909,25073,'77451'),(33910,25074,'77452'),(33911,25075,'77453'),(33912,25076,'77454'),(33913,25077,'77455'),(33914,25078,'77456'),(33915,25079,'77457'),(33916,25080,'77458'),(33917,25081,'77459'),(33918,25081,'77489'),(33919,25082,'77460'),(33920,25083,'77461'),(33921,25084,'77462'),(33922,25085,'77463'),(33923,25086,'77464'),(33924,25087,'77465'),(33925,25088,'77466'),(33926,25089,'77467'),(33927,25090,'77468'),(33928,25091,'77470'),(33929,25092,'77471'),(33930,25093,'77473'),(33931,25094,'77474'),(33932,25095,'77475'),(33933,25096,'77476'),(33934,25097,'77477'),(33935,25097,'77497'),(33936,25098,'77478'),(33937,25098,'77479'),(33938,25098,'77487'),(33939,25098,'77496'),(33940,25099,'77480'),(33941,25100,'77481'),(33942,25101,'77482'),(33943,25102,'77483'),(33944,25103,'77484'),(33945,25104,'77485'),(33946,25105,'77486'),(33947,25106,'77488'),(33948,25107,'77501'),(33949,25107,'77502'),(33950,25107,'77503'),(33951,25107,'77504'),(33952,25107,'77505'),(33953,25107,'77506'),(33954,25107,'77507'),(33955,25107,'77508'),(33956,25108,'77510'),(33957,25108,'77517'),(33958,25109,'77511'),(33959,25109,'77512'),(33960,25110,'77514'),(33961,25111,'77515'),(33962,25111,'77516'),(33963,25112,'77518'),(33964,25113,'77519'),(33965,25114,'77520'),(33966,25114,'77521'),(33967,25114,'77522'),(33968,25115,'77530'),(33969,25116,'77531'),(33970,25117,'77532'),(33971,25118,'77533'),(33972,25119,'77534'),(33973,25120,'77535'),(33974,25121,'77536'),(33975,25122,'77538'),(33976,25123,'77539'),(33977,25124,'77541'),(33978,25124,'77542'),(33979,25125,'77545'),(33980,25126,'77546'),(33981,25126,'77549'),(33982,25127,'77547'),(33983,25128,'77550'),(33984,25128,'77551'),(33985,25128,'77552'),(33986,25128,'77553'),(33987,25128,'77554'),(33988,25128,'77555'),(33989,25129,'77560'),(33990,25130,'77561'),(33991,25131,'77562'),(33992,25132,'77563'),(33993,25133,'77564'),(33994,25134,'77565'),(33995,25135,'77566'),(33996,25136,'77568'),(33997,25137,'77571'),(33998,25137,'77572'),(33999,25138,'77573'),(34000,25138,'77574'),(34001,25139,'77575'),(34002,25140,'77577'),(34003,25141,'77578'),(34004,25142,'77580'),(34005,25143,'77581'),(34006,25143,'77584'),(34007,25143,'77588'),(34008,25144,'77582'),(34009,25145,'77583'),(34010,25146,'77585'),(34011,25147,'77586'),(34012,25148,'77587'),(34013,25149,'77590'),(34014,25149,'77591'),(34015,25149,'77592'),(34016,25150,'77597'),(34017,25151,'77598'),(34018,25152,'77611'),(34019,25153,'77612'),(34020,25154,'77613'),(34021,25155,'77614'),(34022,25156,'77615'),(34023,25157,'77616'),(34024,25158,'77617'),(34025,25159,'77619'),(34026,25160,'77622'),(34027,25161,'77623'),(34028,25162,'77624'),(34029,25163,'77625'),(34030,25164,'77626'),(34031,25165,'77627'),(34032,25166,'77629'),(34033,25167,'77630'),(34034,25167,'77631'),(34035,25167,'77632'),(34036,25168,'77639'),(34037,25169,'77640'),(34038,25169,'77641'),(34039,25169,'77642'),(34040,25169,'77643'),(34041,25170,'77650'),(34042,25171,'77651'),(34043,25172,'77655'),(34044,25173,'77656'),(34045,25174,'77657'),(34046,25175,'77659'),(34047,25176,'77660'),(34048,25177,'77661'),(34049,25178,'77662'),(34050,25178,'77670'),(34051,25179,'77663'),(34052,25180,'77664'),(34053,25181,'77665'),(34054,25182,'77701'),(34055,25182,'77702'),(34056,25182,'77703'),(34057,25182,'77704'),(34058,25182,'77705'),(34059,25182,'77706'),(34060,25182,'77707'),(34061,25182,'77708'),(34062,25182,'77710'),(34063,25182,'77713'),(34064,25182,'77720'),(34065,25182,'77725'),(34066,25182,'77726'),(34067,25183,'77709'),(34068,25184,'77801'),(34069,25184,'77802'),(34070,25184,'77803'),(34071,25184,'77805'),(34072,25184,'77806'),(34073,25184,'77807'),(34074,25184,'77808'),(34075,25185,'77830'),(34076,25186,'77831'),(34077,25187,'77833'),(34078,25187,'77834'),(34079,25188,'77835'),(34080,25189,'77836'),(34081,25190,'77837'),(34082,25191,'77838'),(34083,25192,'77839'),(34084,25193,'77840'),(34085,25193,'77841'),(34086,25193,'77842'),(34087,25193,'77843'),(34088,25193,'77844'),(34089,25193,'77845'),(34090,25194,'77850'),(34091,25195,'77852'),(34092,25196,'77853'),(34093,25197,'77855'),(34094,25198,'77856'),(34095,25199,'77857'),(34096,25200,'77859'),(34097,25201,'77861'),(34098,25202,'77862'),(34099,25203,'77863'),(34100,25204,'77864'),(34101,25205,'77865'),(34102,25206,'77866'),(34103,25207,'77867'),(34104,25208,'77868'),(34105,25208,'77869'),(34106,25209,'77870'),(34107,25210,'77871'),(34108,25211,'77872'),(34109,25212,'77873'),(34110,25213,'77875'),(34111,25214,'77876'),(34112,25215,'77878'),(34113,25216,'77879'),(34114,25217,'77880'),(34115,25218,'77881'),(34116,25219,'77882'),(34117,25220,'77901'),(34118,25220,'77902'),(34119,25220,'77903'),(34120,25220,'77904'),(34121,25220,'77905'),(34122,25221,'77950'),(34123,25222,'77951'),(34124,25223,'77954'),(34125,25224,'77957'),(34126,25225,'77960'),(34127,25226,'77961'),(34128,25227,'77962'),(34129,25228,'77963'),(34130,25229,'77964'),(34131,25230,'77967'),(34132,25231,'77968'),(34133,25232,'77969'),(34134,25233,'77970'),(34135,25234,'77971'),(34136,25235,'77972'),(34137,25236,'77973'),(34138,25237,'77974'),(34139,25238,'77975'),(34140,25239,'77976'),(34141,25240,'77977'),(34142,25241,'77978'),(34143,25242,'77979'),(34144,25243,'77982'),(34145,25244,'77983'),(34146,25245,'77984'),(34147,25246,'77985'),(34148,25247,'77986'),(34149,25248,'77987'),(34150,25249,'77988'),(34151,25250,'77989'),(34152,25251,'77990'),(34153,25252,'77991'),(34154,25253,'77993'),(34155,25254,'77994'),(34156,25255,'77995'),(34157,25256,'78001'),(34158,25257,'78002'),(34159,25258,'78003'),(34160,25259,'78004'),(34161,25260,'78005'),(34162,25261,'78006'),(34163,25261,'78015'),(34164,25262,'78007'),(34165,25263,'78008'),(34166,25264,'78009'),(34167,25265,'78010'),(34168,25266,'78011'),(34169,25267,'78012'),(34170,25268,'78013'),(34171,25269,'78014'),(34172,25270,'78016'),(34173,25271,'78017'),(34174,25272,'78019'),(34175,25273,'78021'),(34176,25274,'78022'),(34177,25275,'78023'),(34178,25276,'78024'),(34179,25277,'78025'),(34180,25278,'78026'),(34181,25279,'78027'),(34182,25280,'78028'),(34183,25280,'78029'),(34184,25281,'78039'),(34185,25282,'78040'),(34186,25282,'78041'),(34187,25282,'78042'),(34188,25282,'78043'),(34189,25282,'78044'),(34190,25282,'78045'),(34191,25282,'78046'),(34192,25282,'78049'),(34193,25283,'78050'),(34194,25284,'78052'),(34195,25285,'78053'),(34196,25286,'78054'),(34197,25287,'78055'),(34198,25288,'78056'),(34199,25289,'78057'),(34200,25290,'78058'),(34201,25291,'78059'),(34202,25292,'78060'),(34203,25293,'78061'),(34204,25294,'78062'),(34205,25295,'78063'),(34206,25296,'78064'),(34207,25297,'78065'),(34208,25298,'78066'),(34209,25299,'78067'),(34210,25300,'78069'),(34211,25301,'78070'),(34212,25302,'78071'),(34213,25303,'78072'),(34214,25304,'78073'),(34215,25305,'78074'),(34216,25306,'78075'),(34217,25307,'78076'),(34218,25308,'78101'),(34219,25309,'78102'),(34220,25309,'78104'),(34221,25310,'78107'),(34222,25311,'78108'),(34223,25312,'78109'),(34224,25313,'78111'),(34225,25314,'78112'),(34226,25315,'78113'),(34227,25316,'78114'),(34228,25317,'78115'),(34229,25318,'78116'),(34230,25319,'78117'),(34231,25320,'78118'),(34232,25321,'78119'),(34233,25322,'78121'),(34234,25323,'78122'),(34235,25324,'78123'),(34236,25325,'78124'),(34237,25326,'78125'),(34238,25327,'78130'),(34239,25327,'78131'),(34240,25327,'78132'),(34241,25327,'78135'),(34242,25328,'78133'),(34243,25329,'78140'),(34244,25330,'78141'),(34245,25331,'78142'),(34246,25332,'78143'),(34247,25333,'78144'),(34248,25334,'78145'),(34249,25335,'78146'),(34250,25336,'78147'),(34251,25337,'78148'),(34252,25337,'78150'),(34253,25338,'78151'),(34254,25339,'78152'),(34255,25340,'78154'),(34256,25341,'78155'),(34257,25341,'78156'),(34258,25342,'78159'),(34259,25343,'78160'),(34260,25344,'78161'),(34261,25345,'78162'),(34262,25346,'78163'),(34263,25347,'78164'),(34264,25348,'78201'),(34265,25348,'78202'),(34266,25348,'78203'),(34267,25348,'78204'),(34268,25348,'78205'),(34269,25348,'78206'),(34270,25348,'78207'),(34271,25348,'78208'),(34272,25348,'78209'),(34273,25348,'78210'),(34274,25348,'78211'),(34275,25348,'78212'),(34276,25348,'78213'),(34277,25348,'78214'),(34278,25348,'78215'),(34279,25348,'78216'),(34280,25348,'78217'),(34281,25348,'78218'),(34282,25348,'78219'),(34283,25348,'78220'),(34284,25348,'78221'),(34285,25348,'78222'),(34286,25348,'78223'),(34287,25348,'78224'),(34288,25348,'78225'),(34289,25348,'78226'),(34290,25348,'78227'),(34291,25348,'78228'),(34292,25348,'78229'),(34293,25348,'78230'),(34294,25348,'78231'),(34295,25348,'78232'),(34296,25348,'78233'),(34297,25348,'78234'),(34298,25348,'78235'),(34299,25348,'78236'),(34300,25348,'78237'),(34301,25348,'78238'),(34302,25348,'78239'),(34303,25348,'78240'),(34304,25348,'78241'),(34305,25348,'78242'),(34306,25348,'78243'),(34307,25348,'78244'),(34308,25348,'78245'),(34309,25348,'78246'),(34310,25348,'78247'),(34311,25348,'78248'),(34312,25348,'78249'),(34313,25348,'78250'),(34314,25348,'78251'),(34315,25348,'78252'),(34316,25348,'78253'),(34317,25348,'78254'),(34318,25348,'78255'),(34319,25348,'78256'),(34320,25348,'78257'),(34321,25348,'78258'),(34322,25348,'78259'),(34323,25348,'78260'),(34324,25348,'78261'),(34325,25348,'78262'),(34326,25348,'78263'),(34327,25348,'78264'),(34328,25348,'78265'),(34329,25348,'78266'),(34330,25348,'78268'),(34331,25348,'78269'),(34332,25348,'78270'),(34333,25348,'78275'),(34334,25348,'78278'),(34335,25348,'78279'),(34336,25348,'78280'),(34337,25348,'78283'),(34338,25348,'78284'),(34339,25348,'78285'),(34340,25348,'78286'),(34341,25348,'78287'),(34342,25348,'78288'),(34343,25348,'78289'),(34344,25348,'78291'),(34345,25348,'78292'),(34346,25348,'78293'),(34347,25348,'78294'),(34348,25348,'78295'),(34349,25348,'78296'),(34350,25348,'78297'),(34351,25348,'78298'),(34352,25348,'78299'),(34353,25349,'78330'),(34354,25350,'78332'),(34355,25350,'78333'),(34356,25351,'78335'),(34357,25351,'78336'),(34358,25352,'78338'),(34359,25353,'78339'),(34360,25354,'78340'),(34361,25355,'78341'),(34362,25356,'78342'),(34363,25357,'78343'),(34364,25358,'78344'),(34365,25359,'78347'),(34366,25360,'78349'),(34367,25361,'78350'),(34368,25362,'78351'),(34369,25363,'78352'),(34370,25364,'78353'),(34371,25365,'78355'),(34372,25366,'78357'),(34373,25367,'78358'),(34374,25368,'78359'),(34375,25369,'78360'),(34376,25370,'78361'),(34377,25371,'78362'),(34378,25372,'78363'),(34379,25372,'78364'),(34380,25373,'78368'),(34381,25374,'78369'),(34382,25375,'78370'),(34383,25376,'78371'),(34384,25377,'78372'),(34385,25378,'78373'),(34386,25379,'78374'),(34387,25380,'78375'),(34388,25381,'78376'),(34389,25382,'78377'),(34390,25383,'78379'),(34391,25384,'78380'),(34392,25385,'78381'),(34393,25385,'78382'),(34394,25386,'78383'),(34395,25387,'78384'),(34396,25388,'78385'),(34397,25389,'78387'),(34398,25390,'78389'),(34399,25391,'78390'),(34400,25392,'78391'),(34401,25393,'78393'),(34402,25394,'78401'),(34403,25394,'78402'),(34404,25394,'78403'),(34405,25394,'78404'),(34406,25394,'78405'),(34407,25394,'78406'),(34408,25394,'78407'),(34409,25394,'78408'),(34410,25394,'78409'),(34411,25394,'78410'),(34412,25394,'78411'),(34413,25394,'78412'),(34414,25394,'78413'),(34415,25394,'78414'),(34416,25394,'78415'),(34417,25394,'78416'),(34418,25394,'78417'),(34419,25394,'78418'),(34420,25394,'78419'),(34421,25394,'78426'),(34422,25394,'78427'),(34423,25394,'78460'),(34424,25394,'78461'),(34425,25394,'78463'),(34426,25394,'78465'),(34427,25394,'78466'),(34428,25394,'78467'),(34429,25394,'78468'),(34430,25394,'78469'),(34431,25394,'78470'),(34432,25394,'78471'),(34433,25394,'78472'),(34434,25394,'78473'),(34435,25394,'78474'),(34436,25394,'78475'),(34437,25394,'78476'),(34438,25394,'78477'),(34439,25394,'78478'),(34440,25394,'78480'),(34441,25395,'78501'),(34442,25395,'78502'),(34443,25395,'78503'),(34444,25395,'78504'),(34445,25395,'78505'),(34446,25396,'78516'),(34447,25397,'78520'),(34448,25397,'78521'),(34449,25397,'78522'),(34450,25397,'78523'),(34451,25397,'78526'),(34452,25398,'78535'),(34453,25399,'78536'),(34454,25400,'78537'),(34455,25401,'78538'),(34456,25402,'78539'),(34457,25402,'78540'),(34458,25403,'78543'),(34459,25404,'78545'),(34460,25405,'78547'),(34461,25406,'78548'),(34462,25407,'78549'),(34463,25408,'78550'),(34464,25408,'78551'),(34465,25408,'78552'),(34466,25408,'78553'),(34467,25409,'78557'),(34468,25410,'78558'),(34469,25411,'78559'),(34470,25412,'78560'),(34471,25413,'78561'),(34472,25414,'78562'),(34473,25415,'78563'),(34474,25416,'78564'),(34475,25417,'78565'),(34476,25418,'78566'),(34477,25419,'78567'),(34478,25420,'78568'),(34479,25421,'78569'),(34480,25422,'78570'),(34481,25423,'78572'),(34482,25423,'78573'),(34483,25424,'78575'),(34484,25425,'78576'),(34485,25426,'78577'),(34486,25427,'78578'),(34487,25428,'78579'),(34488,25429,'78580'),(34489,25430,'78582'),(34490,25431,'78583'),(34491,25432,'78584'),(34492,25433,'78585'),(34493,25434,'78586'),(34494,25435,'78588'),(34495,25436,'78589'),(34496,25437,'78590'),(34497,25438,'78591'),(34498,25439,'78592'),(34499,25440,'78593'),(34500,25441,'78594'),(34501,25442,'78595'),(34502,25443,'78596'),(34503,25443,'78599'),(34504,25444,'78597'),(34505,25445,'78598'),(34506,25446,'78602'),(34507,25447,'78603'),(34508,25448,'78604'),(34509,25449,'78605'),(34510,25450,'78606'),(34511,25451,'78607'),(34512,25452,'78608'),(34513,25453,'78609'),(34514,25454,'78610'),(34515,25455,'78611'),(34516,25456,'78612'),(34517,25457,'78613'),(34518,25457,'78630'),(34519,25458,'78614'),(34520,25459,'78615'),(34521,25460,'78616'),(34522,25461,'78617'),(34523,25462,'78618'),(34524,25463,'78619'),(34525,25464,'78620'),(34526,25465,'78621'),(34527,25466,'78622'),(34528,25467,'78623'),(34529,25468,'78624'),(34530,25469,'78626'),(34531,25469,'78627'),(34532,25469,'78628'),(34533,25470,'78629'),(34534,25471,'78631'),(34535,25472,'78632'),(34536,25473,'78634'),(34537,25474,'78635'),(34538,25475,'78636'),(34539,25476,'78638'),(34540,25477,'78639'),(34541,25478,'78640'),(34542,25479,'78641'),(34543,25479,'78645'),(34544,25479,'78646'),(34545,25480,'78642'),(34546,25481,'78643'),(34547,25482,'78644'),(34548,25483,'78648'),(34549,25484,'78650'),(34550,25485,'78651'),(34551,25486,'78652'),(34552,25487,'78653'),(34553,25488,'78654'),(34554,25488,'78657'),(34555,25489,'78655'),(34556,25490,'78656'),(34557,25491,'78658'),(34558,25492,'78659'),(34559,25493,'78660'),(34560,25493,'78691'),(34561,25494,'78661'),(34562,25495,'78662'),(34563,25496,'78663'),(34564,25497,'78664'),(34565,25497,'78680'),(34566,25497,'78681'),(34567,25497,'78682'),(34568,25497,'78683'),(34569,25498,'78665'),(34570,25499,'78666'),(34571,25499,'78667'),(34572,25500,'78669'),(34573,25501,'78670'),(34574,25502,'78671'),(34575,25503,'78672'),(34576,25504,'78673'),(34577,25505,'78674'),(34578,25506,'78675'),(34579,25507,'78676'),(34580,25508,'78677'),(34581,25509,'78801'),(34582,25509,'78802'),(34583,25510,'78827'),(34584,25511,'78828'),(34585,25512,'78829'),(34586,25513,'78830'),(34587,25514,'78832'),(34588,25515,'78833'),(34589,25516,'78834'),(34590,25517,'78836'),(34591,25518,'78837'),(34592,25519,'78838'),(34593,25520,'78839'),(34594,25521,'78840'),(34595,25521,'78841'),(34596,25521,'78842'),(34597,25521,'78847'),(34598,25522,'78843'),(34599,25523,'78850'),(34600,25524,'78851'),(34601,25525,'78852'),(34602,25525,'78853'),(34603,25526,'78860'),(34604,25527,'78861'),(34605,25528,'78870'),(34606,25529,'78871'),(34607,25530,'78872'),(34608,25531,'78873'),(34609,25532,'78877'),(34610,25533,'78879'),(34611,25534,'78880'),(34612,25535,'78881'),(34613,25536,'78883'),(34614,25537,'78884'),(34615,25538,'78885'),(34616,25539,'78886'),(34617,25540,'78931'),(34618,25541,'78932'),(34619,25542,'78933'),(34620,25543,'78934'),(34621,25544,'78935'),(34622,25545,'78938'),(34623,25546,'78940'),(34624,25547,'78941'),(34625,25548,'78942'),(34626,25549,'78943'),(34627,25550,'78944'),(34628,25551,'78945'),(34629,25552,'78946'),(34630,25553,'78947'),(34631,25554,'78948'),(34632,25555,'78949'),(34633,25556,'78950'),(34634,25557,'78951'),(34635,25558,'78952'),(34636,25559,'78953'),(34637,25560,'78954'),(34638,25560,'78961'),(34639,25561,'78956'),(34640,25562,'78957'),(34641,25563,'78959'),(34642,25564,'78960'),(34643,25565,'78962'),(34644,25566,'78963'),(34645,25567,'79001'),(34646,25568,'79002'),(34647,25569,'79003'),(34648,25570,'79005'),(34649,25571,'79007'),(34650,25571,'79008'),(34651,25572,'79009'),(34652,25573,'79010'),(34653,25574,'79011'),(34654,25575,'79012'),(34655,25576,'79013'),(34656,25577,'79014'),(34657,25578,'79015'),(34658,25578,'79016'),(34659,25579,'79018'),(34660,25580,'79019'),(34661,25581,'79021'),(34662,25582,'79022'),(34663,25583,'79024'),(34664,25584,'79025'),(34665,25585,'79027'),(34666,25586,'79029'),(34667,25587,'79031'),(34668,25588,'79032'),(34669,25589,'79033'),(34670,25590,'79034'),(34671,25591,'79035'),(34672,25592,'79036'),(34673,25593,'79039'),(34674,25594,'79040'),(34675,25595,'79041'),(34676,25596,'79042'),(34677,25597,'79043'),(34678,25598,'79044'),(34679,25599,'79045'),(34680,25600,'79046'),(34681,25601,'79051'),(34682,25602,'79052'),(34683,25603,'79053'),(34684,25604,'79054'),(34685,25605,'79056'),(34686,25606,'79057'),(34687,25607,'79058'),(34688,25608,'79059'),(34689,25609,'79061'),(34690,25610,'79062'),(34691,25611,'79063'),(34692,25612,'79064'),(34693,25613,'79065'),(34694,25613,'79066'),(34695,25614,'79068'),(34696,25615,'79070'),(34697,25616,'79072'),(34698,25616,'79073'),(34699,25617,'79077'),(34700,25618,'79078'),(34701,25619,'79079'),(34702,25620,'79080'),(34703,25621,'79081'),(34704,25622,'79082'),(34705,25623,'79083'),(34706,25624,'79084'),(34707,25625,'79085'),(34708,25626,'79086'),(34709,25627,'79087'),(34710,25628,'79088'),(34711,25629,'79091'),(34712,25630,'79092'),(34713,25631,'79093'),(34714,25632,'79094'),(34715,25633,'79095'),(34716,25634,'79096'),(34717,25635,'79097'),(34718,25636,'79098'),(34719,25637,'79101'),(34720,25637,'79102'),(34721,25637,'79103'),(34722,25637,'79104'),(34723,25637,'79105'),(34724,25637,'79106'),(34725,25637,'79107'),(34726,25637,'79108'),(34727,25637,'79109'),(34728,25637,'79110'),(34729,25637,'79111'),(34730,25637,'79114'),(34731,25637,'79116'),(34732,25637,'79117'),(34733,25637,'79118'),(34734,25637,'79119'),(34735,25637,'79120'),(34736,25637,'79121'),(34737,25637,'79123'),(34738,25637,'79124'),(34739,25637,'79159'),(34740,25637,'79160'),(34741,25637,'79163'),(34742,25637,'79164'),(34743,25637,'79165'),(34744,25637,'79166'),(34745,25637,'79167'),(34746,25637,'79168'),(34747,25637,'79170'),(34748,25637,'79171'),(34749,25637,'79172'),(34750,25637,'79174'),(34751,25637,'79175'),(34752,25637,'79178'),(34753,25637,'79180'),(34754,25637,'79181'),(34755,25637,'79182'),(34756,25637,'79184'),(34757,25637,'79185'),(34758,25637,'79186'),(34759,25637,'79187'),(34760,25637,'79189'),(34761,25638,'79201'),(34762,25639,'79220'),(34763,25640,'79221'),(34764,25641,'79222'),(34765,25642,'79223'),(34766,25643,'79224'),(34767,25644,'79225'),(34768,25645,'79226'),(34769,25646,'79227'),(34770,25647,'79229'),(34771,25648,'79230'),(34772,25649,'79231'),(34773,25650,'79232'),(34774,25651,'79233'),(34775,25652,'79234'),(34776,25653,'79235'),(34777,25654,'79236'),(34778,25655,'79237'),(34779,25656,'79238'),(34780,25657,'79239'),(34781,25658,'79240'),(34782,25659,'79241'),(34783,25660,'79243'),(34784,25661,'79244'),(34785,25662,'79245'),(34786,25663,'79247'),(34787,25664,'79248'),(34788,25665,'79250'),(34789,25666,'79251'),(34790,25667,'79252'),(34791,25668,'79255'),(34792,25669,'79256'),(34793,25670,'79257'),(34794,25671,'79258'),(34795,25672,'79259'),(34796,25673,'79261'),(34797,25674,'79311'),(34798,25675,'79312'),(34799,25676,'79313'),(34800,25677,'79314'),(34801,25678,'79316'),(34802,25679,'79320'),(34803,25680,'79322'),(34804,25681,'79323'),(34805,25682,'79324'),(34806,25683,'79325'),(34807,25684,'79326'),(34808,25685,'79329'),(34809,25686,'79330'),(34810,25687,'79331'),(34811,25688,'79336'),(34812,25688,'79338'),(34813,25689,'79339'),(34814,25690,'79342'),(34815,25691,'79343'),(34816,25692,'79344'),(34817,25693,'79345'),(34818,25694,'79346'),(34819,25695,'79347'),(34820,25696,'79350'),(34821,25697,'79351'),(34822,25698,'79353'),(34823,25699,'79355'),(34824,25700,'79356'),(34825,25701,'79357'),(34826,25702,'79358'),(34827,25703,'79359'),(34828,25704,'79360'),(34829,25705,'79363'),(34830,25706,'79364'),(34831,25707,'79366'),(34832,25708,'79367'),(34833,25709,'79369'),(34834,25710,'79370'),(34835,25711,'79371'),(34836,25712,'79372'),(34837,25713,'79373'),(34838,25714,'79376'),(34839,25715,'79377'),(34840,25716,'79378'),(34841,25717,'79379'),(34842,25718,'79380'),(34843,25719,'79381'),(34844,25720,'79382'),(34845,25721,'79383'),(34846,25722,'79401'),(34847,25722,'79402'),(34848,25722,'79403'),(34849,25722,'79404'),(34850,25722,'79405'),(34851,25722,'79406'),(34852,25722,'79407'),(34853,25722,'79408'),(34854,25722,'79409'),(34855,25722,'79410'),(34856,25722,'79411'),(34857,25722,'79412'),(34858,25722,'79413'),(34859,25722,'79414'),(34860,25722,'79415'),(34861,25722,'79416'),(34862,25722,'79423'),(34863,25722,'79424'),(34864,25722,'79430'),(34865,25722,'79452'),(34866,25722,'79453'),(34867,25722,'79457'),(34868,25722,'79464'),(34869,25722,'79490'),(34870,25722,'79491'),(34871,25722,'79493'),(34872,25722,'79499'),(34873,25723,'79501'),(34874,25724,'79502'),(34875,25725,'79503'),(34876,25726,'79504'),(34877,25727,'79505'),(34878,25728,'79506'),(34879,25729,'79508'),(34880,25730,'79510'),(34881,25731,'79511'),(34882,25732,'79512'),(34883,25733,'79516'),(34884,25734,'79517'),(34885,25735,'79518'),(34886,25736,'79519'),(34887,25737,'79520'),(34888,25738,'79521'),(34889,25739,'79525'),(34890,25740,'79526'),(34891,25741,'79527'),(34892,25742,'79528'),(34893,25743,'79529'),(34894,25744,'79530'),(34895,25745,'79532'),(34896,25746,'79533'),(34897,25747,'79534'),(34898,25748,'79535'),(34899,25749,'79536'),(34900,25750,'79537'),(34901,25751,'79538'),(34902,25752,'79539'),(34903,25753,'79540'),(34904,25754,'79541'),(34905,25755,'79543'),(34906,25756,'79544'),(34907,25757,'79545'),(34908,25758,'79546'),(34909,25759,'79547'),(34910,25759,'79548'),(34911,25760,'79549'),(34912,25760,'79550'),(34913,25761,'79553'),(34914,25762,'79556'),(34915,25763,'79560'),(34916,25764,'79561'),(34917,25765,'79562'),(34918,25766,'79563'),(34919,25767,'79565'),(34920,25768,'79566'),(34921,25769,'79567'),(34922,25770,'79601'),(34923,25770,'79602'),(34924,25770,'79603'),(34925,25770,'79604'),(34926,25770,'79605'),(34927,25770,'79606'),(34928,25770,'79608'),(34929,25770,'79697'),(34930,25770,'79698'),(34931,25770,'79699'),(34932,25771,'79607'),(34933,25772,'79701'),(34934,25772,'79702'),(34935,25772,'79703'),(34936,25772,'79704'),(34937,25772,'79705'),(34938,25772,'79706'),(34939,25772,'79707'),(34940,25772,'79708'),(34941,25772,'79710'),(34942,25772,'79711'),(34943,25772,'79712'),(34944,25773,'79713'),(34945,25774,'79714'),(34946,25775,'79718'),(34947,25776,'79719'),(34948,25777,'79720'),(34949,25777,'79721'),(34950,25778,'79730'),(34951,25779,'79731'),(34952,25780,'79733'),(34953,25781,'79734'),(34954,25782,'79735'),(34955,25783,'79738'),(34956,25784,'79739'),(34957,25785,'79740'),(34958,25786,'79741'),(34959,25787,'79742'),(34960,25788,'79743'),(34961,25789,'79744'),(34962,25790,'79745'),(34963,25791,'79748'),(34964,25792,'79749'),(34965,25793,'79752'),(34966,25794,'79754'),(34967,25795,'79755'),(34968,25796,'79756'),(34969,25797,'79758'),(34970,25798,'79759'),(34971,25799,'79760'),(34972,25799,'79761'),(34973,25799,'79762'),(34974,25799,'79763'),(34975,25799,'79764'),(34976,25799,'79765'),(34977,25799,'79766'),(34978,25799,'79768'),(34979,25799,'79769'),(34980,25800,'79770'),(34981,25801,'79772'),(34982,25802,'79776'),(34983,25803,'79777'),(34984,25804,'79778'),(34985,25805,'79779'),(34986,25806,'79780'),(34987,25807,'79781'),(34988,25808,'79782'),(34989,25809,'79783'),(34990,25810,'79785'),(34991,25811,'79786'),(34992,25812,'79788'),(34993,25813,'79789'),(34994,25814,'79821'),(34995,25815,'79830'),(34996,25815,'79831'),(34997,25815,'79832'),(34998,25816,'79834'),(34999,25817,'79835'),(35000,25818,'79836'),(35001,25819,'79837'),(35002,25820,'79838'),(35003,25821,'79839'),(35004,25822,'79842'),(35005,25823,'79843'),(35006,25824,'79845'),(35007,25825,'79846'),(35008,25826,'79847'),(35009,25827,'79848'),(35010,25828,'79849'),(35011,25829,'79850'),(35012,25830,'79851'),(35013,25831,'79852'),(35014,25832,'79853'),(35015,25833,'79854'),(35016,25834,'79855'),(35017,25835,'79901'),(35018,25835,'79902'),(35019,25835,'79903'),(35020,25835,'79904'),(35021,25835,'79905'),(35022,25835,'79906'),(35023,25835,'79907'),(35024,25835,'79908'),(35025,25835,'79910'),(35026,25835,'79911'),(35027,25835,'79912'),(35028,25835,'79913'),(35029,25835,'79914'),(35030,25835,'79915'),(35031,25835,'79916'),(35032,25835,'79917'),(35033,25835,'79918'),(35034,25835,'79920'),(35035,25835,'79922'),(35036,25835,'79923'),(35037,25835,'79924'),(35038,25835,'79925'),(35039,25835,'79926'),(35040,25835,'79927'),(35041,25835,'79929'),(35042,25835,'79930'),(35043,25835,'79931'),(35044,25835,'79932'),(35045,25835,'79934'),(35046,25835,'79935'),(35047,25835,'79936'),(35048,25835,'79937'),(35049,25835,'79938'),(35050,25835,'79940'),(35051,25835,'79941'),(35052,25835,'79942'),(35053,25835,'79943'),(35054,25835,'79944'),(35055,25835,'79945'),(35056,25835,'79946'),(35057,25835,'79947'),(35058,25835,'79948'),(35059,25835,'79949'),(35060,25835,'79950'),(35061,25835,'79951'),(35062,25835,'79952'),(35063,25835,'79953'),(35064,25835,'79954'),(35065,25835,'79955'),(35066,25835,'79958'),(35067,25835,'79960'),(35068,25835,'79961'),(35069,25835,'79966'),(35070,25835,'79968'),(35071,25835,'79973'),(35072,25835,'79974'),(35073,25835,'79975'),(35074,25835,'79976'),(35075,25835,'79977'),(35076,25835,'79978'),(35077,25835,'79980'),(35078,25835,'79982'),(35079,25835,'79983'),(35080,25835,'79984'),(35081,25835,'79985'),(35082,25835,'79986'),(35083,25835,'79987'),(35084,25835,'79988'),(35085,25835,'79989'),(35086,25835,'79990'),(35087,25835,'79991'),(35088,25835,'79992'),(35089,25835,'79993'),(35090,25835,'79994'),(35091,25835,'79995'),(35092,25835,'79996'),(35093,25835,'79997'),(35094,25835,'79998'),(35095,25835,'79999'),(35096,25835,'88510'),(35097,25835,'88511'),(35098,25835,'88512'),(35099,25835,'88513'),(35100,25835,'88514'),(35101,25835,'88515'),(35102,25835,'88516'),(35103,25835,'88517'),(35104,25835,'88518'),(35105,25835,'88519'),(35106,25835,'88520'),(35107,25835,'88521'),(35108,25835,'88523'),(35109,25835,'88524'),(35110,25835,'88525'),(35111,25835,'88526'),(35112,25835,'88527'),(35113,25835,'88528'),(35114,25835,'88529'),(35115,25835,'88530'),(35116,25835,'88531'),(35117,25835,'88532'),(35118,25835,'88533'),(35119,25835,'88534'),(35120,25835,'88535'),(35121,25835,'88536'),(35122,25835,'88538'),(35123,25835,'88539'),(35124,25835,'88540'),(35125,25835,'88541'),(35126,25835,'88542'),(35127,25835,'88543'),(35128,25835,'88544'),(35129,25835,'88545'),(35130,25835,'88546'),(35131,25835,'88547'),(35132,25835,'88548'),(35133,25835,'88549'),(35134,25835,'88550'),(35135,25835,'88553'),(35136,25835,'88554'),(35137,25835,'88555'),(35138,25835,'88556'),(35139,25835,'88557'),(35140,25835,'88558'),(35141,25835,'88559'),(35142,25835,'88560'),(35143,25835,'88561'),(35144,25835,'88562'),(35145,25835,'88563'),(35146,25835,'88565'),(35147,25835,'88566'),(35148,25835,'88567'),(35149,25835,'88568'),(35150,25835,'88569'),(35151,25835,'88570'),(35152,25835,'88571'),(35153,25835,'88572'),(35154,25835,'88573'),(35155,25835,'88574'),(35156,25835,'88575'),(35157,25835,'88576'),(35158,25835,'88577'),(35159,25835,'88578'),(35160,25835,'88579'),(35161,25835,'88580'),(35162,25835,'88581'),(35163,25835,'88582'),(35164,25835,'88583'),(35165,25835,'88584'),(35166,25835,'88585'),(35167,25835,'88586'),(35168,25835,'88587'),(35169,25835,'88588'),(35170,25835,'88589'),(35171,25835,'88590'),(35172,25835,'88595'),(35173,25836,'80001'),(35174,25836,'80002'),(35175,25836,'80003'),(35176,25836,'80004'),(35177,25836,'80005'),(35178,25836,'80006'),(35179,25836,'80007'),(35180,25837,'80010'),(35181,25837,'80011'),(35182,25837,'80012'),(35183,25837,'80013'),(35184,25837,'80014'),(35185,25837,'80015'),(35186,25837,'80016'),(35187,25837,'80017'),(35188,25837,'80018'),(35189,25837,'80019'),(35190,25837,'80040'),(35191,25837,'80041'),(35192,25837,'80042'),(35193,25837,'80044'),(35194,25837,'80045'),(35195,25837,'80046'),(35196,25837,'80047'),(35197,25838,'80020'),(35198,25838,'80021'),(35199,25838,'80038'),(35200,25839,'80022'),(35201,25839,'80037'),(35202,25840,'80024'),(35203,25841,'80025'),(35204,25842,'80026'),(35205,25843,'80027'),(35206,25843,'80028'),(35207,25844,'80030'),(35208,25844,'80031'),(35209,25844,'80035'),(35210,25844,'80036'),(35211,25845,'80033'),(35212,25845,'80034'),(35213,25846,'80101'),(35214,25847,'80102'),(35215,25848,'80103'),(35216,25849,'80104'),(35217,25850,'80105'),(35218,25851,'80106'),(35219,25852,'80107'),(35220,25853,'80110'),(35221,25853,'80111'),(35222,25853,'80112'),(35223,25853,'80150'),(35224,25853,'80151'),(35225,25853,'80154'),(35226,25853,'80155'),(35227,25854,'80116'),(35228,25855,'80117'),(35229,25856,'80118'),(35230,25857,'80120'),(35231,25857,'80121'),(35232,25857,'80122'),(35233,25857,'80123'),(35234,25857,'80124'),(35235,25857,'80125'),(35236,25857,'80126'),(35237,25857,'80127'),(35238,25857,'80128'),(35239,25857,'80160'),(35240,25857,'80161'),(35241,25857,'80162'),(35242,25857,'80163'),(35243,25857,'80165'),(35244,25857,'80166'),(35245,25858,'80131'),(35246,25859,'80132'),(35247,25860,'80133'),(35248,25861,'80134'),(35249,25861,'80138'),(35250,25862,'80135'),(35251,25863,'80136'),(35252,25864,'80137'),(35253,25865,'80201'),(35254,25865,'80202'),(35255,25865,'80203'),(35256,25865,'80204'),(35257,25865,'80205'),(35258,25865,'80206'),(35259,25865,'80207'),(35260,25865,'80208'),(35261,25865,'80209'),(35262,25865,'80210'),(35263,25865,'80211'),(35264,25865,'80212'),(35265,25865,'80214'),(35266,25865,'80215'),(35267,25865,'80216'),(35268,25865,'80217'),(35269,25865,'80218'),(35270,25865,'80219'),(35271,25865,'80220'),(35272,25865,'80221'),(35273,25865,'80222'),(35274,25865,'80223'),(35275,25865,'80224'),(35276,25865,'80225'),(35277,25865,'80226'),(35278,25865,'80227'),(35279,25865,'80228'),(35280,25865,'80229'),(35281,25865,'80230'),(35282,25865,'80231'),(35283,25865,'80232'),(35284,25865,'80233'),(35285,25865,'80234'),(35286,25865,'80235'),(35287,25865,'80236'),(35288,25865,'80237'),(35289,25865,'80238'),(35290,25865,'80239'),(35291,25865,'80241'),(35292,25865,'80243'),(35293,25865,'80244'),(35294,25865,'80246'),(35295,25865,'80248'),(35296,25865,'80249'),(35297,25865,'80250'),(35298,25865,'80251'),(35299,25865,'80252'),(35300,25865,'80254'),(35301,25865,'80255'),(35302,25865,'80256'),(35303,25865,'80257'),(35304,25865,'80259'),(35305,25865,'80260'),(35306,25865,'80261'),(35307,25865,'80262'),(35308,25865,'80263'),(35309,25865,'80264'),(35310,25865,'80265'),(35311,25865,'80266'),(35312,25865,'80270'),(35313,25865,'80271'),(35314,25865,'80273'),(35315,25865,'80274'),(35316,25865,'80275'),(35317,25865,'80279'),(35318,25865,'80280'),(35319,25865,'80281'),(35320,25865,'80290'),(35321,25865,'80291'),(35322,25865,'80292'),(35323,25865,'80293'),(35324,25865,'80294'),(35325,25865,'80295'),(35326,25865,'80299'),(35327,25866,'80301'),(35328,25866,'80302'),(35329,25866,'80303'),(35330,25866,'80304'),(35331,25866,'80306'),(35332,25866,'80307'),(35333,25866,'80308'),(35334,25866,'80309'),(35335,25866,'80310'),(35336,25866,'80314'),(35337,25866,'80321'),(35338,25866,'80322'),(35339,25866,'80323'),(35340,25866,'80328'),(35341,25866,'80329'),(35342,25867,'80401'),(35343,25867,'80402'),(35344,25867,'80403'),(35345,25867,'80419'),(35346,25868,'80420'),(35347,25869,'80421'),(35348,25870,'80422'),(35349,25871,'80423'),(35350,25872,'80424'),(35351,25873,'80425'),(35352,25874,'80426'),(35353,25875,'80427'),(35354,25876,'80428'),(35355,25877,'80429'),(35356,25878,'80430'),(35357,25879,'80432'),(35358,25880,'80433'),(35359,25881,'80434'),(35360,25882,'80435'),(35361,25883,'80436'),(35362,25884,'80437'),(35363,25884,'80439'),(35364,25885,'80438'),(35365,25886,'80440'),(35366,25887,'80442'),(35367,25888,'80443'),(35368,25889,'80444'),(35369,25890,'80446'),(35370,25891,'80447'),(35371,25892,'80448'),(35372,25893,'80449'),(35373,25894,'80451'),(35374,25895,'80452'),(35375,25896,'80453'),(35376,25897,'80454'),(35377,25898,'80455'),(35378,25899,'80456'),(35379,25900,'80457'),(35380,25901,'80459'),(35381,25902,'80461'),(35382,25903,'80463'),(35383,25904,'80465'),(35384,25905,'80466'),(35385,25906,'80467'),(35386,25907,'80468'),(35387,25908,'80469'),(35388,25909,'80470'),(35389,25910,'80471'),(35390,25911,'80473'),(35391,25912,'80474'),(35392,25913,'80475'),(35393,25914,'80476'),(35394,25915,'80477'),(35395,25915,'80487'),(35396,25915,'80488'),(35397,25916,'80478'),(35398,25917,'80479'),(35399,25918,'80480'),(35400,25919,'80481'),(35401,25920,'80482'),(35402,25921,'80483'),(35403,25922,'80497'),(35404,25922,'80498'),(35405,25923,'80501'),(35406,25923,'80502'),(35407,25923,'80503'),(35408,25923,'80504'),(35409,25924,'80510'),(35410,25925,'80511'),(35411,25925,'80517'),(35412,25926,'80512'),(35413,25927,'80513'),(35414,25928,'80514'),(35415,25929,'80515'),(35416,25930,'80516'),(35417,25931,'80520'),(35418,25932,'80521'),(35419,25932,'80522'),(35420,25932,'80523'),(35421,25932,'80524'),(35422,25932,'80525'),(35423,25932,'80526'),(35424,25932,'80527'),(35425,25932,'80528'),(35426,25932,'80553'),(35427,25933,'80530'),(35428,25934,'80532'),(35429,25935,'80533'),(35430,25936,'80534'),(35431,25937,'80535'),(35432,25938,'80536'),(35433,25939,'80537'),(35434,25939,'80538'),(35435,25939,'80539'),(35436,25940,'80540'),(35437,25941,'80541'),(35438,25942,'80542'),(35439,25943,'80543'),(35440,25944,'80544'),(35441,25945,'80545'),(35442,25946,'80546'),(35443,25947,'80547'),(35444,25948,'80549'),(35445,25949,'80550'),(35446,25949,'80551'),(35447,25950,'80601'),(35448,25951,'80610'),(35449,25952,'80611'),(35450,25953,'80612'),(35451,25954,'80614'),(35452,25955,'80615'),(35453,25956,'80620'),(35454,25957,'80621'),(35455,25958,'80622'),(35456,25959,'80623'),(35457,25960,'80624'),(35458,25961,'80631'),(35459,25961,'80632'),(35460,25961,'80633'),(35461,25961,'80634'),(35462,25961,'80638'),(35463,25961,'80639'),(35464,25962,'80640'),(35465,25963,'80642'),(35466,25964,'80643'),(35467,25965,'80644'),(35468,25966,'80645'),(35469,25967,'80646'),(35470,25968,'80648'),(35471,25969,'80649'),(35472,25970,'80650'),(35473,25971,'80651'),(35474,25972,'80652'),(35475,25973,'80653'),(35476,25974,'80654'),(35477,25975,'80701'),(35478,25976,'80705'),(35479,25977,'80720'),(35480,25978,'80721'),(35481,25979,'80722'),(35482,25980,'80723'),(35483,25981,'80726'),(35484,25982,'80727'),(35485,25983,'80728'),(35486,25984,'80729'),(35487,25985,'80731'),(35488,25986,'80732'),(35489,25987,'80733'),(35490,25988,'80734'),(35491,25989,'80735'),(35492,25990,'80736'),(35493,25991,'80737'),(35494,25992,'80740'),(35495,25993,'80741'),(35496,25994,'80742'),(35497,25995,'80743'),(35498,25996,'80744'),(35499,25997,'80745'),(35500,25998,'80746'),(35501,25999,'80747'),(35502,26000,'80749'),(35503,26001,'80750'),(35504,26002,'80751'),(35505,26003,'80754'),(35506,26004,'80755'),(35507,26005,'80757'),(35508,26006,'80758'),(35509,26007,'80759'),(35510,26008,'80801'),(35511,26009,'80802'),(35512,26010,'80804'),(35513,26011,'80805'),(35514,26012,'80807'),(35515,26013,'80808'),(35516,26014,'80809'),(35517,26015,'80810'),(35518,26016,'80812'),(35519,26017,'80813'),(35520,26018,'80814'),(35521,26019,'80815'),(35522,26020,'80816'),(35523,26021,'80817'),(35524,26022,'80818'),(35525,26023,'80819'),(35526,26024,'80820'),(35527,26025,'80821'),(35528,26026,'80822'),(35529,26027,'80823'),(35530,26028,'80824'),(35531,26029,'80825'),(35532,26030,'80826'),(35533,26030,'80828'),(35534,26031,'80827'),(35535,26032,'80829'),(35536,26033,'80830'),(35537,26034,'80831'),(35538,26035,'80832'),(35539,26036,'80833'),(35540,26037,'80834'),(35541,26038,'80835'),(35542,26039,'80836'),(35543,26040,'80840'),(35544,26040,'80841'),(35545,26041,'80860'),(35546,26042,'80861'),(35547,26043,'80862'),(35548,26044,'80863'),(35549,26044,'80866'),(35550,26045,'80864'),(35551,26046,'80901'),(35552,26046,'80903'),(35553,26046,'80904'),(35554,26046,'80905'),(35555,26046,'80906'),(35556,26046,'80907'),(35557,26046,'80908'),(35558,26046,'80909'),(35559,26046,'80910'),(35560,26046,'80911'),(35561,26046,'80912'),(35562,26046,'80913'),(35563,26046,'80914'),(35564,26046,'80915'),(35565,26046,'80916'),(35566,26046,'80917'),(35567,26046,'80918'),(35568,26046,'80919'),(35569,26046,'80920'),(35570,26046,'80921'),(35571,26046,'80922'),(35572,26046,'80925'),(35573,26046,'80926'),(35574,26046,'80928'),(35575,26046,'80929'),(35576,26046,'80930'),(35577,26046,'80931'),(35578,26046,'80932'),(35579,26046,'80933'),(35580,26046,'80934'),(35581,26046,'80935'),(35582,26046,'80936'),(35583,26046,'80937'),(35584,26046,'80940'),(35585,26046,'80941'),(35586,26046,'80942'),(35587,26046,'80943'),(35588,26046,'80944'),(35589,26046,'80945'),(35590,26046,'80946'),(35591,26046,'80947'),(35592,26046,'80949'),(35593,26046,'80950'),(35594,26046,'80960'),(35595,26046,'80962'),(35596,26046,'80970'),(35597,26046,'80977'),(35598,26046,'80995'),(35599,26046,'80997'),(35600,26047,'81001'),(35601,26047,'81002'),(35602,26047,'81003'),(35603,26047,'81004'),(35604,26047,'81005'),(35605,26047,'81006'),(35606,26047,'81007'),(35607,26047,'81008'),(35608,26047,'81009'),(35609,26047,'81010'),(35610,26047,'81011'),(35611,26047,'81012'),(35612,26047,'81013'),(35613,26047,'81014'),(35614,26047,'81015'),(35615,26048,'81019'),(35616,26049,'81020'),(35617,26050,'81021'),(35618,26051,'81022'),(35619,26052,'81023'),(35620,26053,'81024'),(35621,26054,'81025'),(35622,26055,'81027'),(35623,26056,'81029'),(35624,26057,'81030'),(35625,26058,'81033'),(35626,26058,'81034'),(35627,26059,'81036'),(35628,26060,'81038'),(35629,26061,'81039'),(35630,26062,'81040'),(35631,26063,'81041'),(35632,26064,'81042'),(35633,26065,'81043'),(35634,26066,'81044'),(35635,26067,'81045'),(35636,26068,'81046'),(35637,26069,'81047'),(35638,26070,'81049'),(35639,26071,'81050'),(35640,26072,'81052'),(35641,26073,'81054'),(35642,26074,'81055'),(35643,26075,'81057'),(35644,26076,'81058'),(35645,26077,'81059'),(35646,26078,'81062'),(35647,26079,'81063'),(35648,26080,'81064'),(35649,26081,'81066'),(35650,26082,'81067'),(35651,26083,'81069'),(35652,26084,'81071'),(35653,26085,'81073'),(35654,26086,'81074'),(35655,26087,'81076'),(35656,26088,'81077'),(35657,26089,'81081'),(35658,26090,'81082'),(35659,26091,'81084'),(35660,26092,'81087'),(35661,26093,'81089'),(35662,26094,'81090'),(35663,26095,'81091'),(35664,26096,'81092'),(35665,26097,'81101'),(35666,26097,'81102'),(35667,26098,'81120'),(35668,26099,'81121'),(35669,26100,'81122'),(35670,26101,'81123'),(35671,26102,'81124'),(35672,26103,'81125'),(35673,26104,'81126'),(35674,26105,'81127'),(35675,26106,'81128'),(35676,26107,'81129'),(35677,26108,'81130'),(35678,26109,'81131'),(35679,26110,'81132'),(35680,26111,'81133'),(35681,26112,'81134'),(35682,26113,'81135'),(35683,26114,'81136'),(35684,26115,'81137'),(35685,26116,'81138'),(35686,26117,'81140'),(35687,26118,'81141'),(35688,26119,'81143'),(35689,26120,'81144'),(35690,26121,'81146'),(35691,26122,'81147'),(35692,26122,'81157'),(35693,26123,'81148'),(35694,26124,'81149'),(35695,26125,'81151'),(35696,26126,'81152'),(35697,26127,'81153'),(35698,26128,'81154'),(35699,26129,'81155'),(35700,26130,'81201'),(35701,26131,'81210'),(35702,26132,'81211'),(35703,26133,'81212'),(35704,26133,'81215'),(35705,26133,'81246'),(35706,26134,'81220'),(35707,26135,'81221'),(35708,26136,'81222'),(35709,26137,'81223'),(35710,26138,'81224'),(35711,26138,'81225'),(35712,26139,'81226'),(35713,26139,'81290'),(35714,26140,'81227'),(35715,26141,'81228'),(35716,26142,'81230'),(35717,26142,'81231'),(35718,26142,'81247'),(35719,26143,'81232'),(35720,26144,'81233'),(35721,26145,'81235'),(35722,26146,'81236'),(35723,26147,'81237'),(35724,26148,'81239'),(35725,26149,'81240'),(35726,26150,'81241'),(35727,26151,'81242'),(35728,26152,'81243'),(35729,26153,'81244'),(35730,26154,'81248'),(35731,26155,'81251'),(35732,26156,'81252'),(35733,26157,'81253'),(35734,26158,'81301'),(35735,26158,'81302'),(35736,26159,'81320'),(35737,26160,'81321'),(35738,26161,'81323'),(35739,26162,'81324'),(35740,26163,'81325'),(35741,26164,'81326'),(35742,26165,'81327'),(35743,26166,'81328'),(35744,26167,'81329'),(35745,26168,'81330'),(35746,26169,'81331'),(35747,26170,'81332'),(35748,26171,'81334'),(35749,26172,'81335'),(35750,26173,'81401'),(35751,26173,'81402'),(35752,26174,'81410'),(35753,26175,'81411'),(35754,26176,'81413'),(35755,26177,'81414'),(35756,26178,'81415'),(35757,26179,'81416'),(35758,26180,'81418'),(35759,26181,'81419'),(35760,26182,'81420'),(35761,26183,'81421'),(35762,26184,'81422'),(35763,26185,'81423'),(35764,26186,'81424'),(35765,26187,'81425'),(35766,26188,'81426'),(35767,26189,'81427'),(35768,26190,'81428'),(35769,26191,'81429'),(35770,26192,'81430'),(35771,26193,'81431'),(35772,26194,'81432'),(35773,26195,'81433'),(35774,26196,'81434'),(35775,26197,'81435'),(35776,26198,'81501'),(35777,26198,'81502'),(35778,26198,'81503'),(35779,26198,'81504'),(35780,26198,'81505'),(35781,26198,'81506'),(35782,26199,'81520'),(35783,26200,'81521'),(35784,26201,'81522'),(35785,26202,'81523'),(35786,26203,'81524'),(35787,26204,'81525'),(35788,26205,'81526'),(35789,26206,'81527'),(35790,26207,'81601'),(35791,26207,'81602'),(35792,26208,'81610'),(35793,26208,'81633'),(35794,26209,'81611'),(35795,26209,'81612'),(35796,26210,'81615'),(35797,26211,'81620'),(35798,26212,'81621'),(35799,26213,'81623'),(35800,26214,'81624'),(35801,26215,'81625'),(35802,26215,'81626'),(35803,26216,'81628'),(35804,26217,'81630'),(35805,26218,'81631'),(35806,26219,'81632'),(35807,26220,'81635'),(35808,26221,'81636'),(35809,26222,'81637'),(35810,26223,'81638'),(35811,26224,'81639'),(35812,26225,'81640'),(35813,26226,'81641'),(35814,26227,'81642'),(35815,26228,'81643'),(35816,26229,'81645'),(35817,26230,'81646'),(35818,26231,'81647'),(35819,26232,'81648'),(35820,26233,'81649'),(35821,26234,'81650'),(35822,26235,'81652'),(35823,26236,'81653'),(35824,26237,'81654'),(35825,26238,'81655'),(35826,26239,'81656'),(35827,26240,'81657'),(35828,26240,'81658'),(35829,26241,'82001'),(35830,26241,'82002'),(35831,26241,'82003'),(35832,26241,'82006'),(35833,26241,'82007'),(35834,26241,'82008'),(35835,26241,'82009'),(35836,26241,'82010'),(35837,26242,'82005'),(35838,26243,'82050'),(35839,26244,'82051'),(35840,26245,'82052'),(35841,26246,'82053'),(35842,26247,'82054'),(35843,26248,'82055'),(35844,26249,'82058'),(35845,26250,'82059'),(35846,26251,'82060'),(35847,26252,'82061'),(35848,26253,'82063'),(35849,26254,'82070'),(35850,26254,'82071'),(35851,26254,'82072'),(35852,26254,'82073'),(35853,26255,'82081'),(35854,26256,'82082'),(35855,26257,'82083'),(35856,26258,'82084'),(35857,26259,'82190'),(35858,26260,'82201'),(35859,26261,'82210'),(35860,26262,'82212'),(35861,26263,'82213'),(35862,26264,'82214'),(35863,26265,'82215'),(35864,26266,'82217'),(35865,26267,'82218'),(35866,26268,'82219'),(35867,26269,'82221'),(35868,26270,'82222'),(35869,26271,'82223'),(35870,26272,'82224'),(35871,26273,'82225'),(35872,26274,'82227'),(35873,26275,'82229'),(35874,26276,'82240'),(35875,26277,'82242'),(35876,26278,'82243'),(35877,26279,'82244'),(35878,26280,'82301'),(35879,26281,'82310'),(35880,26282,'82321'),(35881,26283,'82322'),(35882,26284,'82323'),(35883,26285,'82324'),(35884,26286,'82325'),(35885,26287,'82327'),(35886,26288,'82329'),(35887,26289,'82331'),(35888,26290,'82332'),(35889,26291,'82334'),(35890,26292,'82335'),(35891,26293,'82336'),(35892,26294,'82401'),(35893,26295,'82410'),(35894,26296,'82411'),(35895,26297,'82412'),(35896,26298,'82414'),(35897,26299,'82420'),(35898,26300,'82421'),(35899,26301,'82422'),(35900,26302,'82423'),(35901,26303,'82426'),(35902,26304,'82427'),(35903,26305,'82428'),(35904,26306,'82430'),(35905,26307,'82431'),(35906,26308,'82432'),(35907,26309,'82433'),(35908,26310,'82434'),(35909,26311,'82435'),(35910,26312,'82440'),(35911,26313,'82441'),(35912,26314,'82442'),(35913,26315,'82443'),(35914,26316,'82450'),(35915,26317,'82501'),(35916,26318,'82510'),(35917,26319,'82512'),(35918,26320,'82513'),(35919,26321,'82514'),(35920,26322,'82515'),(35921,26323,'82516'),(35922,26324,'82520'),(35923,26325,'82523'),(35924,26326,'82524'),(35925,26327,'82601'),(35926,26327,'82602'),(35927,26327,'82604'),(35928,26327,'82605'),(35929,26327,'82609'),(35930,26328,'82615'),(35931,26329,'82620'),(35932,26330,'82630'),(35933,26331,'82631'),(35934,26332,'82633'),(35935,26333,'82635'),(35936,26334,'82636'),(35937,26335,'82637'),(35938,26336,'82638'),(35939,26337,'82639'),(35940,26338,'82640'),(35941,26339,'82642'),(35942,26340,'82643'),(35943,26341,'82644'),(35944,26342,'82646'),(35945,26343,'82648'),(35946,26344,'82649'),(35947,26345,'82701'),(35948,26346,'82710'),(35949,26347,'82711'),(35950,26348,'82712'),(35951,26349,'82713'),(35952,26350,'82714'),(35953,26351,'82715'),(35954,26352,'82716'),(35955,26352,'82717'),(35956,26352,'82718'),(35957,26353,'82720'),(35958,26354,'82721'),(35959,26355,'82723'),(35960,26356,'82725'),(35961,26357,'82727'),(35962,26358,'82729'),(35963,26359,'82730'),(35964,26360,'82731'),(35965,26361,'82732'),(35966,26362,'82801'),(35967,26363,'82831'),(35968,26364,'82832'),(35969,26365,'82833'),(35970,26366,'82834'),(35971,26367,'82835'),(35972,26368,'82836'),(35973,26369,'82837'),(35974,26370,'82838'),(35975,26371,'82839'),(35976,26372,'82840'),(35977,26373,'82842'),(35978,26374,'82844'),(35979,26375,'82845'),(35980,26376,'82901'),(35981,26376,'82902'),(35982,26377,'82922'),(35983,26378,'82923'),(35984,26379,'82925'),(35985,26380,'82929'),(35986,26381,'82930'),(35987,26381,'82931'),(35988,26382,'82932'),(35989,26383,'82933'),(35990,26384,'82934'),(35991,26385,'82935'),(35992,26386,'82936'),(35993,26387,'82937'),(35994,26388,'82938'),(35995,26389,'82939'),(35996,26390,'82941'),(35997,26391,'82942'),(35998,26392,'82943'),(35999,26393,'82944'),(36000,26394,'82945'),(36001,26395,'83001'),(36002,26395,'83002'),(36003,26396,'83011'),(36004,26397,'83012'),(36005,26398,'83013'),(36006,26399,'83014'),(36007,26400,'83025'),(36008,26401,'83101'),(36009,26402,'83110'),(36010,26403,'83111'),(36011,26404,'83112'),(36012,26405,'83113'),(36013,26406,'83114'),(36014,26407,'83115'),(36015,26408,'83116'),(36016,26409,'83118'),(36017,26410,'83119'),(36018,26411,'83120'),(36019,26412,'83121'),(36020,26413,'83122'),(36021,26414,'83123'),(36022,26415,'83124'),(36023,26416,'83126'),(36024,26417,'83127'),(36025,26418,'83128'),(36026,26419,'83201'),(36027,26419,'83202'),(36028,26419,'83204'),(36029,26419,'83205'),(36030,26419,'83206'),(36031,26419,'83209'),(36032,26420,'83203'),(36033,26421,'83210'),(36034,26422,'83211'),(36035,26423,'83212'),(36036,26424,'83213'),(36037,26425,'83214'),(36038,26426,'83215'),(36039,26427,'83217'),(36040,26428,'83218'),(36041,26429,'83220'),(36042,26430,'83221'),(36043,26431,'83223'),(36044,26432,'83226'),(36045,26433,'83227'),(36046,26434,'83228'),(36047,26435,'83229'),(36048,26436,'83230'),(36049,26437,'83232'),(36050,26438,'83233'),(36051,26439,'83234'),(36052,26440,'83235'),(36053,26441,'83236'),(36054,26442,'83237'),(36055,26443,'83238'),(36056,26444,'83239'),(36057,26445,'83241'),(36058,26446,'83243'),(36059,26447,'83244'),(36060,26448,'83245'),(36061,26449,'83246'),(36062,26450,'83250'),(36063,26451,'83251'),(36064,26452,'83252'),(36065,26453,'83253'),(36066,26454,'83254'),(36067,26455,'83255'),(36068,26456,'83256'),(36069,26457,'83261'),(36070,26458,'83262'),(36071,26459,'83263'),(36072,26460,'83271'),(36073,26461,'83272'),(36074,26462,'83274'),(36075,26463,'83276'),(36076,26464,'83277'),(36077,26465,'83278'),(36078,26466,'83281'),(36079,26467,'83283'),(36080,26468,'83285'),(36081,26469,'83286'),(36082,26470,'83287'),(36083,26471,'83301'),(36084,26471,'83303'),(36085,26472,'83302'),(36086,26473,'83311'),(36087,26474,'83312'),(36088,26475,'83313'),(36089,26476,'83314'),(36090,26477,'83316'),(36091,26478,'83318'),(36092,26479,'83320'),(36093,26480,'83321'),(36094,26481,'83322'),(36095,26482,'83323'),(36096,26483,'83324'),(36097,26484,'83325'),(36098,26485,'83327'),(36099,26486,'83328'),(36100,26487,'83330'),(36101,26488,'83332'),(36102,26489,'83333'),(36103,26490,'83334'),(36104,26491,'83335'),(36105,26492,'83336'),(36106,26493,'83337'),(36107,26494,'83338'),(36108,26495,'83340'),(36109,26496,'83341'),(36110,26497,'83342'),(36111,26498,'83343'),(36112,26499,'83344'),(36113,26500,'83346'),(36114,26501,'83347'),(36115,26502,'83348'),(36116,26503,'83349'),(36117,26504,'83350'),(36118,26505,'83352'),(36119,26506,'83353'),(36120,26506,'83354'),(36121,26507,'83355'),(36122,26508,'83401'),(36123,26508,'83402'),(36124,26508,'83403'),(36125,26508,'83404'),(36126,26508,'83405'),(36127,26508,'83406'),(36128,26508,'83415'),(36129,26509,'83420'),(36130,26510,'83421'),(36131,26511,'83422'),(36132,26512,'83423'),(36133,26513,'83424'),(36134,26514,'83425'),(36135,26515,'83427'),(36136,26516,'83428'),(36137,26517,'83429'),(36138,26518,'83431'),(36139,26519,'83433'),(36140,26520,'83434'),(36141,26521,'83435'),(36142,26522,'83436'),(36143,26523,'83438'),(36144,26524,'83440'),(36145,26524,'83441'),(36146,26524,'83460'),(36147,26525,'83442'),(36148,26526,'83443'),(36149,26527,'83444'),(36150,26528,'83445'),(36151,26529,'83446'),(36152,26530,'83447'),(36153,26531,'83448'),(36154,26532,'83449'),(36155,26533,'83450'),(36156,26534,'83451'),(36157,26535,'83452'),(36158,26536,'83454'),(36159,26537,'83455'),(36160,26538,'83462'),(36161,26539,'83463'),(36162,26540,'83464'),(36163,26541,'83465'),(36164,26542,'83466'),(36165,26543,'83467'),(36166,26544,'83468'),(36167,26545,'83469'),(36168,26546,'83501'),(36169,26547,'83520'),(36170,26548,'83522'),(36171,26549,'83523'),(36172,26550,'83524'),(36173,26551,'83525'),(36174,26552,'83526'),(36175,26553,'83530'),(36176,26554,'83531'),(36177,26555,'83533'),(36178,26556,'83535'),(36179,26557,'83536'),(36180,26558,'83537'),(36181,26559,'83539'),(36182,26560,'83540'),(36183,26561,'83541'),(36184,26562,'83542'),(36185,26563,'83543'),(36186,26564,'83544'),(36187,26565,'83545'),(36188,26566,'83546'),(36189,26567,'83547'),(36190,26568,'83548'),(36191,26569,'83549'),(36192,26570,'83551'),(36193,26571,'83552'),(36194,26572,'83553'),(36195,26573,'83554'),(36196,26574,'83555'),(36197,26575,'83601'),(36198,26576,'83602'),(36199,26577,'83604'),(36200,26578,'83605'),(36201,26578,'83606'),(36202,26578,'83607'),(36203,26579,'83610'),(36204,26580,'83611'),(36205,26581,'83612'),(36206,26582,'83615'),(36207,26583,'83616'),(36208,26584,'83617'),(36209,26585,'83619'),(36210,26586,'83620'),(36211,26587,'83622'),(36212,26588,'83623'),(36213,26589,'83624'),(36214,26590,'83626'),(36215,26591,'83627'),(36216,26592,'83628'),(36217,26593,'83629'),(36218,26594,'83630'),(36219,26595,'83631'),(36220,26596,'83632'),(36221,26597,'83633'),(36222,26598,'83634'),(36223,26599,'83635'),(36224,26600,'83636'),(36225,26601,'83637'),(36226,26602,'83638'),(36227,26603,'83639'),(36228,26604,'83641'),(36229,26605,'83642'),(36230,26605,'83680'),(36231,26606,'83643'),(36232,26607,'83644'),(36233,26608,'83645'),(36234,26609,'83647'),(36235,26610,'83648'),(36236,26611,'83650'),(36237,26612,'83651'),(36238,26612,'83652'),(36239,26612,'83653'),(36240,26612,'83686'),(36241,26612,'83687'),(36242,26613,'83654'),(36243,26614,'83655'),(36244,26615,'83656'),(36245,26616,'83657'),(36246,26617,'83660'),(36247,26618,'83661'),(36248,26619,'83666'),(36249,26620,'83669'),(36250,26621,'83670'),(36251,26622,'83671'),(36252,26623,'83672'),(36253,26624,'83676'),(36254,26625,'83677'),(36255,26626,'83701'),(36256,26626,'83702'),(36257,26626,'83703'),(36258,26626,'83704'),(36259,26626,'83705'),(36260,26626,'83706'),(36261,26626,'83707'),(36262,26626,'83708'),(36263,26626,'83709'),(36264,26626,'83711'),(36265,26626,'83712'),(36266,26626,'83713'),(36267,26626,'83714'),(36268,26626,'83715'),(36269,26626,'83716'),(36270,26626,'83717'),(36271,26626,'83719'),(36272,26626,'83720'),(36273,26626,'83721'),(36274,26626,'83722'),(36275,26626,'83723'),(36276,26626,'83724'),(36277,26626,'83725'),(36278,26626,'83726'),(36279,26626,'83727'),(36280,26626,'83728'),(36281,26626,'83729'),(36282,26626,'83730'),(36283,26626,'83731'),(36284,26626,'83732'),(36285,26626,'83733'),(36286,26626,'83735'),(36287,26626,'83744'),(36288,26626,'83756'),(36289,26626,'83757'),(36290,26626,'83788'),(36291,26626,'83799'),(36292,26627,'83801'),(36293,26628,'83802'),(36294,26629,'83803'),(36295,26630,'83804'),(36296,26631,'83805'),(36297,26632,'83806'),(36298,26633,'83808'),(36299,26634,'83809'),(36300,26635,'83810'),(36301,26636,'83811'),(36302,26637,'83812'),(36303,26638,'83813'),(36304,26639,'83814'),(36305,26639,'83815'),(36306,26639,'83816'),(36307,26640,'83821'),(36308,26641,'83822'),(36309,26642,'83823'),(36310,26643,'83824'),(36311,26644,'83825'),(36312,26645,'83826'),(36313,26646,'83827'),(36314,26647,'83830'),(36315,26648,'83832'),(36316,26649,'83833'),(36317,26650,'83834'),(36318,26651,'83835'),(36319,26652,'83836'),(36320,26653,'83837'),(36321,26654,'83839'),(36322,26655,'83840'),(36323,26656,'83841'),(36324,26657,'83842'),(36325,26658,'83843'),(36326,26658,'83844'),(36327,26659,'83845'),(36328,26660,'83846'),(36329,26661,'83847'),(36330,26662,'83848'),(36331,26663,'83849'),(36332,26664,'83850'),(36333,26665,'83851'),(36334,26666,'83852'),(36335,26667,'83853'),(36336,26668,'83854'),(36337,26668,'83877'),(36338,26669,'83855'),(36339,26670,'83856'),(36340,26671,'83857'),(36341,26672,'83858'),(36342,26673,'83860'),(36343,26674,'83861'),(36344,26675,'83862'),(36345,26676,'83864'),(36346,26676,'83888'),(36347,26677,'83865'),(36348,26678,'83866'),(36349,26679,'83867'),(36350,26680,'83868'),(36351,26681,'83869'),(36352,26682,'83870'),(36353,26683,'83871'),(36354,26684,'83872'),(36355,26685,'83873'),(36356,26686,'83874'),(36357,26687,'83876'),(36358,26688,'84001'),(36359,26689,'84002'),(36360,26690,'84003'),(36361,26691,'84004'),(36362,26692,'84006'),(36363,26693,'84007'),(36364,26694,'84008'),(36365,26695,'84010'),(36366,26695,'84011'),(36367,26696,'84013'),(36368,26697,'84014'),(36369,26698,'84015'),(36370,26698,'84016'),(36371,26698,'84089'),(36372,26699,'84017'),(36373,26700,'84018'),(36374,26701,'84020'),(36375,26702,'84021'),(36376,26703,'84022'),(36377,26704,'84023'),(36378,26705,'84024'),(36379,26706,'84025'),(36380,26707,'84026'),(36381,26708,'84027'),(36382,26709,'84028'),(36383,26710,'84029'),(36384,26711,'84030'),(36385,26712,'84031'),(36386,26713,'84032'),(36387,26714,'84033'),(36388,26715,'84034'),(36389,26716,'84035'),(36390,26717,'84036'),(36391,26718,'84037'),(36392,26719,'84038'),(36393,26720,'84039'),(36394,26721,'84040'),(36395,26721,'84041'),(36396,26722,'84042'),(36397,26723,'84043'),(36398,26724,'84044'),(36399,26725,'84046'),(36400,26726,'84047'),(36401,26727,'84049'),(36402,26728,'84050'),(36403,26729,'84051'),(36404,26730,'84052'),(36405,26731,'84053'),(36406,26732,'84054'),(36407,26733,'84055'),(36408,26734,'84056'),(36409,26735,'84057'),(36410,26735,'84058'),(36411,26735,'84059'),(36412,26735,'84097'),(36413,26736,'84060'),(36414,26736,'84068'),(36415,26736,'84098'),(36416,26737,'84061'),(36417,26738,'84062'),(36418,26739,'84063'),(36419,26740,'84064'),(36420,26741,'84065'),(36421,26742,'84066'),(36422,26743,'84067'),(36423,26744,'84069'),(36424,26745,'84070'),(36425,26745,'84090'),(36426,26745,'84091'),(36427,26745,'84092'),(36428,26745,'84093'),(36429,26745,'84094'),(36430,26746,'84071'),(36431,26747,'84072'),(36432,26748,'84073'),(36433,26749,'84074'),(36434,26750,'84075'),(36435,26751,'84076'),(36436,26752,'84078'),(36437,26752,'84079'),(36438,26753,'84080'),(36439,26754,'84082'),(36440,26755,'84083'),(36441,26756,'84084'),(36442,26756,'84088'),(36443,26757,'84085'),(36444,26758,'84086'),(36445,26759,'84087'),(36446,26760,'84095'),(36447,26761,'84101'),(36448,26761,'84102'),(36449,26761,'84103'),(36450,26761,'84104'),(36451,26761,'84105'),(36452,26761,'84106'),(36453,26761,'84107'),(36454,26761,'84108'),(36455,26761,'84109'),(36456,26761,'84110'),(36457,26761,'84111'),(36458,26761,'84112'),(36459,26761,'84113'),(36460,26761,'84114'),(36461,26761,'84115'),(36462,26761,'84116'),(36463,26761,'84117'),(36464,26761,'84118'),(36465,26761,'84119'),(36466,26761,'84120'),(36467,26761,'84121'),(36468,26761,'84122'),(36469,26761,'84123'),(36470,26761,'84124'),(36471,26761,'84125'),(36472,26761,'84126'),(36473,26761,'84127'),(36474,26761,'84128'),(36475,26761,'84130'),(36476,26761,'84131'),(36477,26761,'84132'),(36478,26761,'84133'),(36479,26761,'84134'),(36480,26761,'84135'),(36481,26761,'84136'),(36482,26761,'84137'),(36483,26761,'84138'),(36484,26761,'84139'),(36485,26761,'84140'),(36486,26761,'84141'),(36487,26761,'84142'),(36488,26761,'84143'),(36489,26761,'84144'),(36490,26761,'84145'),(36491,26761,'84147'),(36492,26761,'84148'),(36493,26761,'84150'),(36494,26761,'84151'),(36495,26761,'84152'),(36496,26761,'84153'),(36497,26761,'84157'),(36498,26761,'84158'),(36499,26761,'84165'),(36500,26761,'84170'),(36501,26761,'84171'),(36502,26761,'84180'),(36503,26761,'84184'),(36504,26761,'84185'),(36505,26761,'84189'),(36506,26761,'84190'),(36507,26761,'84199'),(36508,26762,'84201'),(36509,26762,'84244'),(36510,26762,'84401'),(36511,26762,'84402'),(36512,26762,'84403'),(36513,26762,'84404'),(36514,26762,'84405'),(36515,26762,'84407'),(36516,26762,'84408'),(36517,26762,'84409'),(36518,26762,'84412'),(36519,26762,'84414'),(36520,26762,'84415'),(36521,26763,'84301'),(36522,26764,'84302'),(36523,26765,'84304'),(36524,26766,'84305'),(36525,26767,'84306'),(36526,26768,'84307'),(36527,26769,'84308'),(36528,26770,'84309'),(36529,26771,'84310'),(36530,26772,'84311'),(36531,26773,'84312'),(36532,26774,'84313'),(36533,26775,'84314'),(36534,26776,'84315'),(36535,26777,'84316'),(36536,26778,'84317'),(36537,26779,'84318'),(36538,26780,'84319'),(36539,26781,'84320'),(36540,26782,'84321'),(36541,26782,'84322'),(36542,26782,'84323'),(36543,26782,'84341'),(36544,26783,'84324'),(36545,26784,'84325'),(36546,26785,'84326'),(36547,26786,'84327'),(36548,26787,'84328'),(36549,26788,'84329'),(36550,26789,'84330'),(36551,26790,'84331'),(36552,26791,'84332'),(36553,26792,'84333'),(36554,26793,'84334'),(36555,26794,'84335'),(36556,26795,'84336'),(36557,26796,'84337'),(36558,26797,'84338'),(36559,26798,'84339'),(36560,26799,'84340'),(36561,26800,'84501'),(36562,26801,'84510'),(36563,26802,'84511'),(36564,26803,'84512'),(36565,26804,'84513'),(36566,26805,'84515'),(36567,26806,'84516'),(36568,26807,'84518'),(36569,26808,'84520'),(36570,26809,'84521'),(36571,26810,'84522'),(36572,26811,'84523'),(36573,26812,'84525'),(36574,26813,'84526'),(36575,26814,'84527'),(36576,26815,'84528'),(36577,26816,'84529'),(36578,26817,'84530'),(36579,26818,'84531'),(36580,26819,'84532'),(36581,26820,'84533'),(36582,26821,'84534'),(36583,26822,'84535'),(36584,26823,'84536'),(36585,26824,'84537'),(36586,26825,'84539'),(36587,26826,'84540'),(36588,26827,'84542'),(36589,26828,'84601'),(36590,26828,'84602'),(36591,26828,'84603'),(36592,26828,'84604'),(36593,26828,'84605'),(36594,26828,'84606'),(36595,26829,'84620'),(36596,26830,'84621'),(36597,26831,'84622'),(36598,26832,'84623'),(36599,26833,'84624'),(36600,26834,'84626'),(36601,26835,'84627'),(36602,26836,'84628'),(36603,26837,'84629'),(36604,26838,'84630'),(36605,26839,'84631'),(36606,26840,'84632'),(36607,26841,'84633'),(36608,26842,'84634'),(36609,26843,'84635'),(36610,26844,'84636'),(36611,26845,'84637'),(36612,26846,'84638'),(36613,26847,'84639'),(36614,26848,'84640'),(36615,26849,'84642'),(36616,26850,'84643'),(36617,26851,'84644'),(36618,26852,'84645'),(36619,26853,'84646'),(36620,26854,'84647'),(36621,26855,'84648'),(36622,26856,'84649'),(36623,26857,'84650'),(36624,26858,'84651'),(36625,26859,'84652'),(36626,26860,'84653'),(36627,26861,'84654'),(36628,26862,'84655'),(36629,26863,'84656'),(36630,26864,'84657'),(36631,26865,'84660'),(36632,26866,'84662'),(36633,26867,'84663'),(36634,26868,'84664'),(36635,26869,'84665'),(36636,26870,'84667'),(36637,26871,'84701'),(36638,26872,'84710'),(36639,26873,'84711'),(36640,26874,'84712'),(36641,26875,'84713'),(36642,26876,'84714'),(36643,26877,'84715'),(36644,26878,'84716'),(36645,26879,'84717'),(36646,26880,'84718'),(36647,26881,'84719'),(36648,26882,'84720'),(36649,26882,'84721'),(36650,26883,'84722'),(36651,26884,'84723'),(36652,26885,'84724'),(36653,26886,'84725'),(36654,26887,'84726'),(36655,26888,'84728'),(36656,26889,'84729'),(36657,26890,'84730'),(36658,26891,'84731'),(36659,26892,'84732'),(36660,26893,'84733'),(36661,26894,'84734'),(36662,26895,'84735'),(36663,26896,'84736'),(36664,26897,'84737'),(36665,26898,'84738'),(36666,26899,'84739'),(36667,26900,'84740'),(36668,26901,'84741'),(36669,26902,'84742'),(36670,26903,'84743'),(36671,26904,'84744'),(36672,26905,'84745'),(36673,26906,'84746'),(36674,26907,'84747'),(36675,26908,'84749'),(36676,26909,'84750'),(36677,26910,'84751'),(36678,26911,'84752'),(36679,26912,'84753'),(36680,26913,'84754'),(36681,26914,'84755'),(36682,26915,'84756'),(36683,26916,'84757'),(36684,26917,'84758'),(36685,26918,'84759'),(36686,26919,'84760'),(36687,26920,'84761'),(36688,26921,'84762'),(36689,26922,'84763'),(36690,26923,'84764'),(36691,26924,'84765'),(36692,26925,'84766'),(36693,26926,'84767'),(36694,26927,'84770'),(36695,26927,'84771'),(36696,26927,'84790'),(36697,26927,'84791'),(36698,26928,'84772'),(36699,26929,'84773'),(36700,26930,'84774'),(36701,26931,'84775'),(36702,26932,'84776'),(36703,26933,'84779'),(36704,26934,'84780'),(36705,26935,'84781'),(36706,26936,'84782'),(36707,26937,'84783'),(36708,26938,'84784'),(36709,26939,'85001'),(36710,26939,'85002'),(36711,26939,'85003'),(36712,26939,'85004'),(36713,26939,'85005'),(36714,26939,'85006'),(36715,26939,'85007'),(36716,26939,'85008'),(36717,26939,'85009'),(36718,26939,'85010'),(36719,26939,'85011'),(36720,26939,'85012'),(36721,26939,'85013'),(36722,26939,'85014'),(36723,26939,'85015'),(36724,26939,'85016'),(36725,26939,'85017'),(36726,26939,'85018'),(36727,26939,'85019'),(36728,26939,'85020'),(36729,26939,'85021'),(36730,26939,'85022'),(36731,26939,'85023'),(36732,26939,'85024'),(36733,26939,'85025'),(36734,26939,'85026'),(36735,26939,'85027'),(36736,26939,'85028'),(36737,26939,'85029'),(36738,26939,'85030'),(36739,26939,'85031'),(36740,26939,'85032'),(36741,26939,'85033'),(36742,26939,'85034'),(36743,26939,'85035'),(36744,26939,'85036'),(36745,26939,'85037'),(36746,26939,'85038'),(36747,26939,'85039'),(36748,26939,'85040'),(36749,26939,'85041'),(36750,26939,'85043'),(36751,26939,'85044'),(36752,26939,'85045'),(36753,26939,'85046'),(36754,26939,'85048'),(36755,26939,'85050'),(36756,26939,'85051'),(36757,26939,'85053'),(36758,26939,'85054'),(36759,26939,'85055'),(36760,26939,'85060'),(36761,26939,'85061'),(36762,26939,'85062'),(36763,26939,'85063'),(36764,26939,'85064'),(36765,26939,'85065'),(36766,26939,'85066'),(36767,26939,'85067'),(36768,26939,'85068'),(36769,26939,'85069'),(36770,26939,'85070'),(36771,26939,'85071'),(36772,26939,'85072'),(36773,26939,'85073'),(36774,26939,'85074'),(36775,26939,'85075'),(36776,26939,'85076'),(36777,26939,'85077'),(36778,26939,'85078'),(36779,26939,'85079'),(36780,26939,'85080'),(36781,26939,'85082'),(36782,26939,'85085'),(36783,26939,'85097'),(36784,26939,'85098'),(36785,26939,'85099'),(36786,26940,'85086'),(36787,26941,'85087'),(36788,26942,'85201'),(36789,26942,'85202'),(36790,26942,'85203'),(36791,26942,'85204'),(36792,26942,'85205'),(36793,26942,'85206'),(36794,26942,'85207'),(36795,26942,'85208'),(36796,26942,'85210'),(36797,26942,'85211'),(36798,26942,'85212'),(36799,26942,'85213'),(36800,26942,'85214'),(36801,26942,'85215'),(36802,26942,'85216'),(36803,26942,'85274'),(36804,26942,'85275'),(36805,26942,'85277'),(36806,26943,'85217'),(36807,26943,'85219'),(36808,26943,'85220'),(36809,26943,'85278'),(36810,26944,'85221'),(36811,26945,'85222'),(36812,26945,'85230'),(36813,26946,'85223'),(36814,26947,'85224'),(36815,26947,'85225'),(36816,26947,'85226'),(36817,26947,'85244'),(36818,26947,'85246'),(36819,26947,'85248'),(36820,26947,'85249'),(36821,26948,'85227'),(36822,26949,'85228'),(36823,26950,'85231'),(36824,26951,'85232'),(36825,26951,'85279'),(36826,26952,'85233'),(36827,26952,'85234'),(36828,26952,'85296'),(36829,26952,'85299'),(36830,26953,'85235'),(36831,26954,'85236'),(36832,26955,'85237'),(36833,26956,'85239'),(36834,26957,'85241'),(36835,26958,'85242'),(36836,26959,'85245'),(36837,26960,'85247'),(36838,26961,'85250'),(36839,26961,'85251'),(36840,26961,'85252'),(36841,26961,'85254'),(36842,26961,'85255'),(36843,26961,'85256'),(36844,26961,'85257'),(36845,26961,'85258'),(36846,26961,'85259'),(36847,26961,'85260'),(36848,26961,'85261'),(36849,26961,'85262'),(36850,26961,'85266'),(36851,26961,'85267'),(36852,26961,'85271'),(36853,26962,'85253'),(36854,26963,'85263'),(36855,26964,'85264'),(36856,26965,'85268'),(36857,26965,'85269'),(36858,26966,'85272'),(36859,26967,'85273'),(36860,26968,'85280'),(36861,26968,'85281'),(36862,26968,'85282'),(36863,26968,'85283'),(36864,26968,'85284'),(36865,26968,'85285'),(36866,26968,'85287'),(36867,26968,'85289'),(36868,26969,'85290'),(36869,26970,'85291'),(36870,26971,'85292'),(36871,26972,'85301'),(36872,26972,'85302'),(36873,26972,'85303'),(36874,26972,'85304'),(36875,26972,'85305'),(36876,26972,'85306'),(36877,26972,'85307'),(36878,26972,'85308'),(36879,26972,'85310'),(36880,26972,'85311'),(36881,26972,'85312'),(36882,26972,'85313'),(36883,26972,'85318'),(36884,26973,'85309'),(36885,26974,'85320'),(36886,26975,'85321'),(36887,26976,'85322'),(36888,26977,'85323'),(36889,26978,'85324'),(36890,26979,'85325'),(36891,26980,'85326'),(36892,26981,'85327'),(36893,26981,'85331'),(36894,26982,'85328'),(36895,26983,'85329'),(36896,26984,'85332'),(36897,26985,'85333'),(36898,26986,'85334'),(36899,26987,'85335'),(36900,26988,'85336'),(36901,26989,'85337'),(36902,26990,'85338'),(36903,26991,'85339'),(36904,26992,'85340'),(36905,26993,'85341'),(36906,26994,'85342'),(36907,26995,'85343'),(36908,26996,'85344'),(36909,26997,'85345'),(36910,26997,'85380'),(36911,26997,'85381'),(36912,26997,'85382'),(36913,26997,'85385'),(36914,26998,'85346'),(36915,26998,'85359'),(36916,26999,'85347'),(36917,27000,'85348'),(36918,27001,'85349'),(36919,27002,'85350'),(36920,27003,'85351'),(36921,27003,'85372'),(36922,27003,'85373'),(36923,27004,'85352'),(36924,27005,'85353'),(36925,27006,'85354'),(36926,27007,'85355'),(36927,27008,'85356'),(36928,27009,'85357'),(36929,27010,'85358'),(36930,27010,'85390'),(36931,27011,'85360'),(36932,27012,'85361'),(36933,27013,'85362'),(36934,27014,'85363'),(36935,27015,'85364'),(36936,27015,'85365'),(36937,27015,'85366'),(36938,27015,'85367'),(36939,27015,'85369'),(36940,27016,'85371'),(36941,27017,'85374'),(36942,27017,'85378'),(36943,27017,'85379'),(36944,27017,'85387'),(36945,27018,'85375'),(36946,27018,'85376'),(36947,27019,'85377'),(36948,27020,'85501'),(36949,27020,'85502'),(36950,27021,'85530'),(36951,27022,'85531'),(36952,27023,'85532'),(36953,27024,'85533'),(36954,27025,'85534'),(36955,27026,'85535'),(36956,27027,'85536'),(36957,27028,'85539'),(36958,27029,'85540'),(36959,27030,'85541'),(36960,27030,'85547'),(36961,27031,'85542'),(36962,27032,'85543'),(36963,27033,'85544'),(36964,27034,'85545'),(36965,27035,'85546'),(36966,27035,'85548'),(36967,27036,'85550'),(36968,27037,'85551'),(36969,27038,'85552'),(36970,27039,'85553'),(36971,27040,'85554'),(36972,27041,'85601'),(36973,27042,'85602'),(36974,27043,'85603'),(36975,27044,'85605'),(36976,27045,'85606'),(36977,27046,'85607'),(36978,27046,'85608'),(36979,27046,'85655'),(36980,27047,'85609'),(36981,27048,'85610'),(36982,27049,'85611'),(36983,27050,'85613'),(36984,27050,'85670'),(36985,27051,'85614'),(36986,27051,'85622'),(36987,27052,'85615'),(36988,27053,'85616'),(36989,27054,'85617'),(36990,27055,'85618'),(36991,27056,'85619'),(36992,27057,'85620'),(36993,27058,'85621'),(36994,27058,'85628'),(36995,27058,'85662'),(36996,27059,'85623'),(36997,27060,'85624'),(36998,27061,'85625'),(36999,27062,'85626'),(37000,27063,'85627'),(37001,27064,'85629'),(37002,27065,'85630'),(37003,27066,'85631'),(37004,27067,'85632'),(37005,27068,'85633'),(37006,27069,'85634'),(37007,27070,'85635'),(37008,27070,'85636'),(37009,27070,'85650'),(37010,27070,'85671'),(37011,27071,'85637'),(37012,27072,'85638'),(37013,27073,'85639'),(37014,27074,'85640'),(37015,27075,'85641'),(37016,27076,'85643'),(37017,27076,'85644'),(37018,27077,'85645'),(37019,27078,'85646'),(37020,27079,'85648'),(37021,27080,'85652'),(37022,27081,'85653'),(37023,27082,'85654'),(37024,27083,'85701'),(37025,27083,'85702'),(37026,27083,'85703'),(37027,27083,'85704'),(37028,27083,'85705'),(37029,27083,'85706'),(37030,27083,'85707'),(37031,27083,'85708'),(37032,27083,'85709'),(37033,27083,'85710'),(37034,27083,'85711'),(37035,27083,'85712'),(37036,27083,'85713'),(37037,27083,'85714'),(37038,27083,'85715'),(37039,27083,'85716'),(37040,27083,'85717'),(37041,27083,'85718'),(37042,27083,'85719'),(37043,27083,'85720'),(37044,27083,'85721'),(37045,27083,'85722'),(37046,27083,'85723'),(37047,27083,'85724'),(37048,27083,'85725'),(37049,27083,'85726'),(37050,27083,'85728'),(37051,27083,'85730'),(37052,27083,'85731'),(37053,27083,'85732'),(37054,27083,'85733'),(37055,27083,'85734'),(37056,27083,'85735'),(37057,27083,'85736'),(37058,27083,'85737'),(37059,27083,'85739'),(37060,27083,'85740'),(37061,27083,'85741'),(37062,27083,'85742'),(37063,27083,'85743'),(37064,27083,'85744'),(37065,27083,'85745'),(37066,27083,'85746'),(37067,27083,'85747'),(37068,27083,'85748'),(37069,27083,'85749'),(37070,27083,'85750'),(37071,27083,'85751'),(37072,27083,'85752'),(37073,27083,'85754'),(37074,27083,'85775'),(37075,27083,'85777'),(37076,27084,'85738'),(37077,27085,'85901'),(37078,27085,'85902'),(37079,27086,'85911'),(37080,27087,'85912'),(37081,27088,'85920'),(37082,27089,'85922'),(37083,27090,'85923'),(37084,27091,'85924'),(37085,27092,'85925'),(37086,27093,'85926'),(37087,27094,'85927'),(37088,27095,'85928'),(37089,27096,'85929'),(37090,27097,'85930'),(37091,27098,'85931'),(37092,27099,'85932'),(37093,27100,'85933'),(37094,27101,'85934'),(37095,27102,'85935'),(37096,27103,'85936'),(37097,27104,'85937'),(37098,27105,'85938'),(37099,27106,'85939'),(37100,27107,'85940'),(37101,27108,'85941'),(37102,27109,'85942'),(37103,27110,'86001'),(37104,27110,'86002'),(37105,27110,'86003'),(37106,27110,'86004'),(37107,27110,'86011'),(37108,27111,'86015'),(37109,27112,'86016'),(37110,27113,'86017'),(37111,27114,'86018'),(37112,27115,'86020'),(37113,27116,'86021'),(37114,27117,'86022'),(37115,27118,'86023'),(37116,27119,'86024'),(37117,27120,'86025'),(37118,27121,'86028'),(37119,27122,'86029'),(37120,27123,'86030'),(37121,27124,'86031'),(37122,27125,'86032'),(37123,27126,'86033'),(37124,27127,'86034'),(37125,27128,'86035'),(37126,27129,'86036'),(37127,27130,'86038'),(37128,27131,'86039'),(37129,27132,'86040'),(37130,27133,'86042'),(37131,27134,'86043'),(37132,27135,'86044'),(37133,27136,'86045'),(37134,27137,'86046'),(37135,27138,'86047'),(37136,27139,'86052'),(37137,27140,'86053'),(37138,27141,'86054'),(37139,27142,'86301'),(37140,27142,'86302'),(37141,27142,'86303'),(37142,27142,'86304'),(37143,27142,'86305'),(37144,27142,'86313'),(37145,27143,'86312'),(37146,27143,'86314'),(37147,27144,'86320'),(37148,27145,'86321'),(37149,27146,'86322'),(37150,27147,'86323'),(37151,27148,'86324'),(37152,27149,'86325'),(37153,27150,'86326'),(37154,27151,'86327'),(37155,27152,'86329'),(37156,27153,'86330'),(37157,27154,'86331'),(37158,27155,'86332'),(37159,27156,'86333'),(37160,27157,'86334'),(37161,27158,'86335'),(37162,27159,'86336'),(37163,27159,'86339'),(37164,27159,'86340'),(37165,27159,'86341'),(37166,27159,'86351'),(37167,27160,'86337'),(37168,27161,'86338'),(37169,27162,'86342'),(37170,27163,'86343'),(37171,27164,'86401'),(37172,27164,'86402'),(37173,27165,'86403'),(37174,27165,'86404'),(37175,27165,'86405'),(37176,27165,'86406'),(37177,27166,'86411'),(37178,27167,'86412'),(37179,27168,'86413'),(37180,27169,'86426'),(37181,27169,'86427'),(37182,27170,'86429'),(37183,27170,'86430'),(37184,27170,'86439'),(37185,27170,'86442'),(37186,27171,'86431'),(37187,27172,'86432'),(37188,27173,'86433'),(37189,27174,'86434'),(37190,27175,'86435'),(37191,27176,'86436'),(37192,27177,'86437'),(37193,27178,'86438'),(37194,27179,'86440'),(37195,27179,'86446'),(37196,27180,'86441'),(37197,27181,'86443'),(37198,27182,'86444'),(37199,27183,'86445'),(37200,27184,'86502'),(37201,27185,'86503'),(37202,27186,'86504'),(37203,27187,'86505'),(37204,27188,'86506'),(37205,27189,'86507'),(37206,27190,'86508'),(37207,27191,'86510'),(37208,27192,'86511'),(37209,27193,'86512'),(37210,27194,'86514'),(37211,27195,'86515'),(37212,27196,'86520'),(37213,27197,'86535'),(37214,27198,'86538'),(37215,27199,'86540'),(37216,27200,'86544'),(37217,27201,'86545'),(37218,27202,'86547'),(37219,27203,'86549'),(37220,27204,'86556'),(37221,27205,'87001'),(37222,27206,'87002'),(37223,27207,'87004'),(37224,27208,'87005'),(37225,27209,'87006'),(37226,27210,'87007'),(37227,27211,'87008'),(37228,27212,'87009'),(37229,27213,'87010'),(37230,27214,'87011'),(37231,27215,'87012'),(37232,27216,'87013'),(37233,27217,'87014'),(37234,27218,'87015'),(37235,27219,'87016'),(37236,27220,'87017'),(37237,27221,'87018'),(37238,27222,'87020'),(37239,27223,'87021'),(37240,27224,'87022'),(37241,27225,'87023'),(37242,27226,'87024'),(37243,27227,'87025'),(37244,27228,'87026'),(37245,27229,'87027'),(37246,27230,'87028'),(37247,27231,'87029'),(37248,27232,'87031'),(37249,27233,'87032'),(37250,27234,'87034'),(37251,27235,'87035'),(37252,27236,'87036'),(37253,27237,'87037'),(37254,27238,'87038'),(37255,27239,'87040'),(37256,27240,'87041'),(37257,27241,'87042'),(37258,27242,'87043'),(37259,27243,'87044'),(37260,27244,'87045'),(37261,27245,'87046'),(37262,27246,'87047'),(37263,27247,'87048'),(37264,27248,'87049'),(37265,27249,'87051'),(37266,27250,'87052'),(37267,27251,'87053'),(37268,27252,'87056'),(37269,27253,'87057'),(37270,27254,'87059'),(37271,27255,'87060'),(37272,27256,'87061'),(37273,27257,'87062'),(37274,27258,'87063'),(37275,27259,'87064'),(37276,27260,'87068'),(37277,27261,'87070'),(37278,27262,'87072'),(37279,27263,'87083'),(37280,27264,'87101'),(37281,27264,'87102'),(37282,27264,'87103'),(37283,27264,'87104'),(37284,27264,'87105'),(37285,27264,'87106'),(37286,27264,'87107'),(37287,27264,'87108'),(37288,27264,'87109'),(37289,27264,'87110'),(37290,27264,'87111'),(37291,27264,'87112'),(37292,27264,'87113'),(37293,27264,'87114'),(37294,27264,'87115'),(37295,27264,'87116'),(37296,27264,'87118'),(37297,27264,'87119'),(37298,27264,'87120'),(37299,27264,'87121'),(37300,27264,'87122'),(37301,27264,'87123'),(37302,27264,'87125'),(37303,27264,'87131'),(37304,27264,'87140'),(37305,27264,'87153'),(37306,27264,'87154'),(37307,27264,'87158'),(37308,27264,'87176'),(37309,27264,'87180'),(37310,27264,'87181'),(37311,27264,'87184'),(37312,27264,'87185'),(37313,27264,'87187'),(37314,27264,'87190'),(37315,27264,'87191'),(37316,27264,'87192'),(37317,27264,'87193'),(37318,27264,'87194'),(37319,27264,'87195'),(37320,27264,'87196'),(37321,27264,'87197'),(37322,27264,'87198'),(37323,27264,'87199'),(37324,27264,'87201'),(37325,27265,'87117'),(37326,27266,'87124'),(37327,27266,'87174'),(37328,27267,'87301'),(37329,27267,'87302'),(37330,27267,'87305'),(37331,27268,'87310'),(37332,27269,'87311'),(37333,27270,'87312'),(37334,27271,'87313'),(37335,27272,'87315'),(37336,27273,'87316'),(37337,27274,'87317'),(37338,27275,'87319'),(37339,27276,'87320'),(37340,27277,'87321'),(37341,27278,'87322'),(37342,27279,'87323'),(37343,27280,'87325'),(37344,27281,'87326'),(37345,27282,'87327'),(37346,27283,'87328'),(37347,27284,'87347'),(37348,27285,'87357'),(37349,27286,'87364'),(37350,27287,'87365'),(37351,27288,'87375'),(37352,27289,'87401'),(37353,27289,'87402'),(37354,27289,'87499'),(37355,27290,'87410'),(37356,27291,'87412'),(37357,27292,'87413'),(37358,27293,'87415'),(37359,27294,'87416'),(37360,27295,'87417'),(37361,27296,'87418'),(37362,27297,'87419'),(37363,27298,'87420'),(37364,27299,'87421'),(37365,27300,'87455'),(37366,27301,'87461'),(37367,27302,'87501'),(37368,27302,'87502'),(37369,27302,'87503'),(37370,27302,'87504'),(37371,27302,'87505'),(37372,27302,'87506'),(37373,27302,'87509'),(37374,27302,'87592'),(37375,27302,'87594'),(37376,27303,'87510'),(37377,27304,'87511'),(37378,27305,'87512'),(37379,27306,'87513'),(37380,27307,'87514'),(37381,27308,'87515'),(37382,27309,'87516'),(37383,27310,'87517'),(37384,27311,'87518'),(37385,27312,'87519'),(37386,27313,'87520'),(37387,27314,'87521'),(37388,27315,'87522'),(37389,27316,'87523'),(37390,27317,'87524'),(37391,27318,'87525'),(37392,27319,'87527'),(37393,27320,'87528'),(37394,27321,'87529'),(37395,27322,'87530'),(37396,27323,'87531'),(37397,27324,'87532'),(37398,27324,'87533'),(37399,27325,'87535'),(37400,27326,'87537'),(37401,27327,'87538'),(37402,27328,'87539'),(37403,27329,'87540'),(37404,27330,'87543'),(37405,27331,'87544'),(37406,27331,'87545'),(37407,27332,'87548'),(37408,27333,'87549'),(37409,27334,'87551'),(37410,27335,'87552'),(37411,27336,'87553'),(37412,27337,'87554'),(37413,27338,'87556'),(37414,27339,'87557'),(37415,27340,'87558'),(37416,27341,'87560'),(37417,27342,'87562'),(37418,27343,'87564'),(37419,27344,'87565'),(37420,27345,'87566'),(37421,27346,'87567'),(37422,27347,'87569'),(37423,27348,'87571'),(37424,27349,'87573'),(37425,27350,'87574'),(37426,27351,'87575'),(37427,27352,'87576'),(37428,27353,'87577'),(37429,27354,'87578'),(37430,27355,'87579'),(37431,27356,'87580'),(37432,27357,'87581'),(37433,27358,'87582'),(37434,27359,'87583'),(37435,27360,'87701'),(37436,27361,'87710'),(37437,27362,'87711'),(37438,27363,'87712'),(37439,27364,'87713'),(37440,27365,'87714'),(37441,27366,'87715'),(37442,27367,'87718'),(37443,27368,'87722'),(37444,27369,'87723'),(37445,27370,'87724'),(37446,27371,'87728'),(37447,27372,'87729'),(37448,27373,'87730'),(37449,27374,'87731'),(37450,27375,'87732'),(37451,27376,'87733'),(37452,27377,'87734'),(37453,27378,'87735'),(37454,27379,'87736'),(37455,27380,'87740'),(37456,27381,'87742'),(37457,27382,'87743'),(37458,27383,'87745'),(37459,27384,'87746'),(37460,27385,'87747'),(37461,27386,'87749'),(37462,27387,'87750'),(37463,27388,'87752'),(37464,27389,'87753'),(37465,27390,'87801'),(37466,27391,'87820'),(37467,27392,'87821'),(37468,27393,'87823'),(37469,27394,'87824'),(37470,27395,'87825'),(37471,27396,'87827'),(37472,27397,'87828'),(37473,27398,'87829'),(37474,27399,'87830'),(37475,27400,'87831'),(37476,27401,'87832'),(37477,27402,'87901'),(37478,27403,'87930'),(37479,27404,'87931'),(37480,27405,'87933'),(37481,27406,'87935'),(37482,27407,'87936'),(37483,27408,'87937'),(37484,27409,'87939'),(37485,27410,'87940'),(37486,27411,'87941'),(37487,27412,'87942'),(37488,27413,'87943'),(37489,27414,'88001'),(37490,27414,'88003'),(37491,27414,'88004'),(37492,27414,'88005'),(37493,27414,'88006'),(37494,27414,'88011'),(37495,27414,'88012'),(37496,27415,'88002'),(37497,27416,'88008'),(37498,27417,'88009'),(37499,27418,'88020'),(37500,27419,'88021'),(37501,27420,'88022'),(37502,27421,'88023'),(37503,27422,'88024'),(37504,27423,'88025'),(37505,27424,'88026'),(37506,27425,'88027'),(37507,27426,'88028'),(37508,27427,'88029'),(37509,27428,'88030'),(37510,27428,'88031'),(37511,27429,'88032'),(37512,27430,'88033'),(37513,27431,'88034'),(37514,27432,'88036'),(37515,27433,'88038'),(37516,27434,'88039'),(37517,27435,'88040'),(37518,27436,'88041'),(37519,27437,'88042'),(37520,27438,'88043'),(37521,27439,'88044'),(37522,27440,'88045'),(37523,27441,'88046'),(37524,27442,'88047'),(37525,27443,'88048'),(37526,27444,'88049'),(37527,27445,'88051'),(37528,27446,'88052'),(37529,27447,'88053'),(37530,27448,'88054'),(37531,27449,'88055'),(37532,27450,'88056'),(37533,27451,'88058'),(37534,27452,'88061'),(37535,27452,'88062'),(37536,27453,'88063'),(37537,27454,'88065'),(37538,27455,'88072'),(37539,27456,'88101'),(37540,27456,'88102'),(37541,27457,'88103'),(37542,27458,'88112'),(37543,27459,'88113'),(37544,27460,'88114'),(37545,27461,'88115'),(37546,27462,'88116'),(37547,27463,'88118'),(37548,27464,'88119'),(37549,27465,'88120'),(37550,27466,'88121'),(37551,27467,'88122'),(37552,27468,'88123'),(37553,27469,'88124'),(37554,27470,'88125'),(37555,27471,'88126'),(37556,27472,'88130'),(37557,27473,'88132'),(37558,27474,'88133'),(37559,27475,'88134'),(37560,27476,'88135'),(37561,27477,'88136'),(37562,27478,'88201'),(37563,27478,'88202'),(37564,27479,'88210'),(37565,27479,'88211'),(37566,27480,'88213'),(37567,27481,'88220'),(37568,27481,'88221'),(37569,27482,'88230'),(37570,27483,'88231'),(37571,27484,'88232'),(37572,27485,'88240'),(37573,27485,'88241'),(37574,27485,'88242'),(37575,27485,'88244'),(37576,27486,'88250'),(37577,27487,'88252'),(37578,27488,'88253'),(37579,27489,'88254'),(37580,27490,'88255'),(37581,27491,'88256'),(37582,27492,'88260'),(37583,27493,'88262'),(37584,27494,'88263'),(37585,27495,'88264'),(37586,27496,'88265'),(37587,27497,'88267'),(37588,27498,'88268'),(37589,27499,'88301'),(37590,27500,'88310'),(37591,27500,'88311'),(37592,27501,'88312'),(37593,27502,'88314'),(37594,27503,'88316'),(37595,27504,'88317'),(37596,27505,'88318'),(37597,27506,'88321'),(37598,27507,'88323'),(37599,27508,'88324'),(37600,27509,'88325'),(37601,27510,'88330'),(37602,27511,'88336'),(37603,27512,'88337'),(37604,27513,'88338'),(37605,27514,'88339'),(37606,27515,'88340'),(37607,27516,'88341'),(37608,27517,'88342'),(37609,27518,'88343'),(37610,27519,'88344'),(37611,27520,'88345'),(37612,27520,'88355'),(37613,27521,'88346'),(37614,27522,'88347'),(37615,27523,'88348'),(37616,27524,'88349'),(37617,27525,'88350'),(37618,27526,'88351'),(37619,27527,'88352'),(37620,27528,'88353'),(37621,27529,'88354'),(37622,27530,'88401'),(37623,27531,'88410'),(37624,27532,'88411'),(37625,27533,'88414'),(37626,27534,'88415'),(37627,27535,'88416'),(37628,27536,'88417'),(37629,27537,'88418'),(37630,27538,'88419'),(37631,27539,'88421'),(37632,27540,'88422'),(37633,27541,'88424'),(37634,27542,'88426'),(37635,27543,'88427'),(37636,27544,'88429'),(37637,27545,'88430'),(37638,27546,'88431'),(37639,27547,'88433'),(37640,27548,'88434'),(37641,27549,'88435'),(37642,27550,'88436'),(37643,27551,'88437'),(37644,27552,'88439'),(37645,27553,'88441'),(37646,27554,'88901'),(37647,27554,'88905'),(37648,27554,'89163'),(37649,27555,'89001'),(37650,27556,'89003'),(37651,27557,'89004'),(37652,27558,'89005'),(37653,27558,'89006'),(37654,27559,'89007'),(37655,27560,'89008'),(37656,27561,'89009'),(37657,27561,'89011'),(37658,27561,'89012'),(37659,27561,'89014'),(37660,27561,'89015'),(37661,27561,'89016'),(37662,27561,'89052'),(37663,27561,'89053'),(37664,27562,'89010'),(37665,27563,'89013'),(37666,27564,'89017'),(37667,27565,'89018'),(37668,27565,'89070'),(37669,27566,'89019'),(37670,27566,'89026'),(37671,27567,'89020'),(37672,27568,'89021'),(37673,27569,'89022'),(37674,27570,'89023'),(37675,27571,'89024'),(37676,27571,'89027'),(37677,27572,'89025'),(37678,27573,'89028'),(37679,27573,'89029'),(37680,27574,'89030'),(37681,27574,'89031'),(37682,27574,'89032'),(37683,27574,'89033'),(37684,27574,'89036'),(37685,27575,'89039'),(37686,27576,'89040'),(37687,27577,'89041'),(37688,27577,'89048'),(37689,27578,'89042'),(37690,27579,'89043'),(37691,27580,'89045'),(37692,27581,'89046'),(37693,27582,'89047'),(37694,27583,'89049'),(37695,27584,'89101'),(37696,27584,'89102'),(37697,27584,'89103'),(37698,27584,'89104'),(37699,27584,'89106'),(37700,27584,'89107'),(37701,27584,'89108'),(37702,27584,'89109'),(37703,27584,'89110'),(37704,27584,'89111'),(37705,27584,'89112'),(37706,27584,'89113'),(37707,27584,'89114'),(37708,27584,'89115'),(37709,27584,'89116'),(37710,27584,'89117'),(37711,27584,'89118'),(37712,27584,'89119'),(37713,27584,'89120'),(37714,27584,'89121'),(37715,27584,'89122'),(37716,27584,'89123'),(37717,27584,'89124'),(37718,27584,'89125'),(37719,27584,'89126'),(37720,27584,'89127'),(37721,27584,'89128'),(37722,27584,'89129'),(37723,27584,'89130'),(37724,27584,'89131'),(37725,27584,'89132'),(37726,27584,'89133'),(37727,27584,'89134'),(37728,27584,'89135'),(37729,27584,'89137'),(37730,27584,'89138'),(37731,27584,'89139'),(37732,27584,'89141'),(37733,27584,'89142'),(37734,27584,'89143'),(37735,27584,'89144'),(37736,27584,'89145'),(37737,27584,'89146'),(37738,27584,'89147'),(37739,27584,'89148'),(37740,27584,'89149'),(37741,27584,'89150'),(37742,27584,'89151'),(37743,27584,'89152'),(37744,27584,'89153'),(37745,27584,'89154'),(37746,27584,'89155'),(37747,27584,'89156'),(37748,27584,'89158'),(37749,27584,'89159'),(37750,27584,'89160'),(37751,27584,'89164'),(37752,27584,'89170'),(37753,27584,'89173'),(37754,27584,'89177'),(37755,27584,'89180'),(37756,27584,'89185'),(37757,27584,'89193'),(37758,27584,'89195'),(37759,27584,'89199'),(37760,27585,'89191'),(37761,27586,'89301'),(37762,27586,'89315'),(37763,27587,'89310'),(37764,27588,'89311'),(37765,27589,'89314'),(37766,27590,'89316'),(37767,27591,'89317'),(37768,27592,'89318'),(37769,27593,'89319'),(37770,27594,'89402'),(37771,27595,'89403'),(37772,27596,'89404'),(37773,27597,'89405'),(37774,27598,'89406'),(37775,27598,'89407'),(37776,27598,'89496'),(37777,27599,'89408'),(37778,27600,'89409'),(37779,27601,'89410'),(37780,27602,'89411'),(37781,27603,'89412'),(37782,27604,'89413'),(37783,27605,'89414'),(37784,27606,'89415'),(37785,27607,'89418'),(37786,27608,'89419'),(37787,27609,'89420'),(37788,27610,'89421'),(37789,27611,'89422'),(37790,27612,'89423'),(37791,27613,'89424'),(37792,27614,'89425'),(37793,27615,'89426'),(37794,27616,'89427'),(37795,27617,'89428'),(37796,27618,'89429'),(37797,27619,'89430'),(37798,27620,'89431'),(37799,27620,'89432'),(37800,27620,'89434'),(37801,27620,'89435'),(37802,27620,'89436'),(37803,27621,'89433'),(37804,27622,'89438'),(37805,27623,'89439'),(37806,27624,'89440'),(37807,27625,'89442'),(37808,27626,'89444'),(37809,27627,'89445'),(37810,27627,'89446'),(37811,27628,'89447'),(37812,27629,'89448'),(37813,27630,'89449'),(37814,27631,'89450'),(37815,27631,'89451'),(37816,27631,'89452'),(37817,27632,'89501'),(37818,27632,'89502'),(37819,27632,'89503'),(37820,27632,'89504'),(37821,27632,'89505'),(37822,27632,'89506'),(37823,27632,'89507'),(37824,27632,'89509'),(37825,27632,'89510'),(37826,27632,'89511'),(37827,27632,'89512'),(37828,27632,'89513'),(37829,27632,'89515'),(37830,27632,'89520'),(37831,27632,'89523'),(37832,27632,'89533'),(37833,27632,'89557'),(37834,27632,'89564'),(37835,27632,'89570'),(37836,27632,'89595'),(37837,27632,'89599'),(37838,27633,'89701'),(37839,27633,'89702'),(37840,27633,'89703'),(37841,27633,'89705'),(37842,27633,'89706'),(37843,27633,'89710'),(37844,27633,'89711'),(37845,27633,'89712'),(37846,27633,'89713'),(37847,27633,'89714'),(37848,27633,'89721'),(37849,27634,'89704'),(37850,27635,'89801'),(37851,27635,'89802'),(37852,27635,'89803'),(37853,27636,'89815'),(37854,27637,'89820'),(37855,27638,'89821'),(37856,27639,'89822'),(37857,27640,'89823'),(37858,27641,'89824'),(37859,27642,'89825'),(37860,27643,'89826'),(37861,27644,'89828'),(37862,27645,'89830'),(37863,27646,'89831'),(37864,27647,'89832'),(37865,27648,'89833'),(37866,27649,'89834'),(37867,27650,'89835'),(37868,27651,'89883'),(37869,27652,'90001'),(37870,27652,'90002'),(37871,27652,'90003'),(37872,27652,'90004'),(37873,27652,'90005'),(37874,27652,'90006'),(37875,27652,'90007'),(37876,27652,'90008'),(37877,27652,'90009'),(37878,27652,'90010'),(37879,27652,'90011'),(37880,27652,'90012'),(37881,27652,'90013'),(37882,27652,'90014'),(37883,27652,'90015'),(37884,27652,'90016'),(37885,27652,'90017'),(37886,27652,'90018'),(37887,27652,'90019'),(37888,27652,'90020'),(37889,27652,'90021'),(37890,27652,'90022'),(37891,27652,'90023'),(37892,27652,'90024'),(37893,27652,'90025'),(37894,27652,'90026'),(37895,27652,'90027'),(37896,27652,'90028'),(37897,27652,'90029'),(37898,27652,'90030'),(37899,27652,'90031'),(37900,27652,'90032'),(37901,27652,'90033'),(37902,27652,'90034'),(37903,27652,'90035'),(37904,27652,'90036'),(37905,27652,'90037'),(37906,27652,'90038'),(37907,27652,'90039'),(37908,27652,'90040'),(37909,27652,'90041'),(37910,27652,'90042'),(37911,27652,'90043'),(37912,27652,'90044'),(37913,27652,'90045'),(37914,27652,'90046'),(37915,27652,'90047'),(37916,27652,'90048'),(37917,27652,'90049'),(37918,27652,'90050'),(37919,27652,'90051'),(37920,27652,'90052'),(37921,27652,'90053'),(37922,27652,'90054'),(37923,27652,'90055'),(37924,27652,'90056'),(37925,27652,'90057'),(37926,27652,'90058'),(37927,27652,'90059'),(37928,27652,'90060'),(37929,27652,'90061'),(37930,27652,'90062'),(37931,27652,'90063'),(37932,27652,'90064'),(37933,27652,'90065'),(37934,27652,'90066'),(37935,27652,'90067'),(37936,27652,'90068'),(37937,27652,'90070'),(37938,27652,'90071'),(37939,27652,'90072'),(37940,27652,'90073'),(37941,27652,'90074'),(37942,27652,'90075'),(37943,27652,'90076'),(37944,27652,'90077'),(37945,27652,'90078'),(37946,27652,'90079'),(37947,27652,'90080'),(37948,27652,'90081'),(37949,27652,'90082'),(37950,27652,'90083'),(37951,27652,'90084'),(37952,27652,'90086'),(37953,27652,'90087'),(37954,27652,'90088'),(37955,27652,'90089'),(37956,27652,'90091'),(37957,27652,'90093'),(37958,27652,'90094'),(37959,27652,'90095'),(37960,27652,'90096'),(37961,27652,'90097'),(37962,27652,'90099'),(37963,27652,'90101'),(37964,27652,'90102'),(37965,27652,'90103'),(37966,27652,'90174'),(37967,27652,'90185'),(37968,27653,'90069'),(37969,27654,'90201'),(37970,27655,'90202'),(37971,27656,'90209'),(37972,27656,'90210'),(37973,27656,'90211'),(37974,27656,'90212'),(37975,27656,'90213'),(37976,27657,'90220'),(37977,27657,'90221'),(37978,27657,'90222'),(37979,27657,'90223'),(37980,27657,'90224'),(37981,27658,'90230'),(37982,27658,'90231'),(37983,27658,'90232'),(37984,27658,'90233'),(37985,27659,'90239'),(37986,27659,'90240'),(37987,27659,'90241'),(37988,27659,'90242'),(37989,27660,'90245'),(37990,27661,'90247'),(37991,27661,'90248'),(37992,27661,'90249'),(37993,27662,'90250'),(37994,27662,'90251'),(37995,27663,'90254'),(37996,27664,'90255'),(37997,27665,'90260'),(37998,27665,'90261'),(37999,27666,'90262'),(38000,27667,'90263'),(38001,27667,'90264'),(38002,27667,'90265'),(38003,27668,'90266'),(38004,27668,'90267'),(38005,27669,'90270'),(38006,27670,'90272'),(38007,27671,'90274'),(38008,27672,'90275'),(38009,27673,'90277'),(38010,27673,'90278'),(38011,27674,'90280'),(38012,27675,'90290'),(38013,27676,'90291'),(38014,27676,'90294'),(38015,27677,'90292'),(38016,27677,'90295'),(38017,27678,'90293'),(38018,27678,'90296'),(38019,27679,'90301'),(38020,27679,'90302'),(38021,27679,'90303'),(38022,27679,'90304'),(38023,27679,'90305'),(38024,27679,'90306'),(38025,27679,'90307'),(38026,27679,'90308'),(38027,27679,'90309'),(38028,27679,'90310'),(38029,27679,'90311'),(38030,27679,'90312'),(38031,27679,'90313'),(38032,27679,'90397'),(38033,27679,'90398'),(38034,27680,'90401'),(38035,27680,'90402'),(38036,27680,'90403'),(38037,27680,'90404'),(38038,27680,'90405'),(38039,27680,'90406'),(38040,27680,'90407'),(38041,27680,'90408'),(38042,27680,'90409'),(38043,27680,'90410'),(38044,27680,'90411'),(38045,27681,'90501'),(38046,27681,'90502'),(38047,27681,'90503'),(38048,27681,'90504'),(38049,27681,'90505'),(38050,27681,'90506'),(38051,27681,'90507'),(38052,27681,'90508'),(38053,27681,'90509'),(38054,27681,'90510'),(38055,27682,'90601'),(38056,27682,'90602'),(38057,27682,'90603'),(38058,27682,'90604'),(38059,27682,'90605'),(38060,27682,'90606'),(38061,27682,'90607'),(38062,27682,'90608'),(38063,27682,'90609'),(38064,27682,'90610'),(38065,27682,'90612'),(38066,27683,'90620'),(38067,27683,'90621'),(38068,27683,'90622'),(38069,27683,'90624'),(38070,27684,'90623'),(38071,27685,'90630'),(38072,27686,'90631'),(38073,27686,'90632'),(38074,27686,'90633'),(38075,27687,'90637'),(38076,27687,'90638'),(38077,27687,'90639'),(38078,27688,'90640'),(38079,27689,'90650'),(38080,27689,'90651'),(38081,27689,'90652'),(38082,27689,'90659'),(38083,27690,'90660'),(38084,27690,'90661'),(38085,27690,'90662'),(38086,27690,'90665'),(38087,27691,'90670'),(38088,27691,'90671'),(38089,27692,'90680'),(38090,27693,'90701'),(38091,27693,'90702'),(38092,27694,'90703'),(38093,27695,'90704'),(38094,27696,'90706'),(38095,27696,'90707'),(38096,27697,'90710'),(38097,27698,'90711'),(38098,27698,'90712'),(38099,27698,'90713'),(38100,27698,'90714'),(38101,27698,'90715'),(38102,27699,'90716'),(38103,27700,'90717'),(38104,27701,'90720'),(38105,27701,'90721'),(38106,27702,'90723'),(38107,27703,'90731'),(38108,27703,'90732'),(38109,27703,'90733'),(38110,27703,'90734'),(38111,27704,'90740'),(38112,27705,'90742'),(38113,27706,'90743'),(38114,27707,'90744'),(38115,27707,'90748'),(38116,27708,'90745'),(38117,27708,'90746'),(38118,27708,'90747'),(38119,27708,'90749'),(38120,27709,'90801'),(38121,27709,'90802'),(38122,27709,'90803'),(38123,27709,'90804'),(38124,27709,'90805'),(38125,27709,'90806'),(38126,27709,'90807'),(38127,27709,'90808'),(38128,27709,'90809'),(38129,27709,'90810'),(38130,27709,'90813'),(38131,27709,'90814'),(38132,27709,'90815'),(38133,27709,'90822'),(38134,27709,'90831'),(38135,27709,'90832'),(38136,27709,'90833'),(38137,27709,'90834'),(38138,27709,'90835'),(38139,27709,'90840'),(38140,27709,'90842'),(38141,27709,'90844'),(38142,27709,'90845'),(38143,27709,'90846'),(38144,27709,'90847'),(38145,27709,'90848'),(38146,27709,'90853'),(38147,27709,'90888'),(38148,27710,'91001'),(38149,27710,'91003'),(38150,27711,'91006'),(38151,27711,'91007'),(38152,27711,'91066'),(38153,27711,'91077'),(38154,27712,'91009'),(38155,27712,'91010'),(38156,27713,'91011'),(38157,27713,'91012'),(38158,27714,'91016'),(38159,27714,'91017'),(38160,27715,'91020'),(38161,27715,'91021'),(38162,27716,'91023'),(38163,27717,'91024'),(38164,27717,'91025'),(38165,27718,'91030'),(38166,27718,'91031'),(38167,27719,'91040'),(38168,27719,'91041'),(38169,27720,'91042'),(38170,27720,'91043'),(38171,27721,'91046'),(38172,27722,'91050'),(38173,27722,'91051'),(38174,27722,'91101'),(38175,27722,'91102'),(38176,27722,'91103'),(38177,27722,'91104'),(38178,27722,'91105'),(38179,27722,'91106'),(38180,27722,'91107'),(38181,27722,'91109'),(38182,27722,'91110'),(38183,27722,'91114'),(38184,27722,'91115'),(38185,27722,'91116'),(38186,27722,'91117'),(38187,27722,'91121'),(38188,27722,'91123'),(38189,27722,'91124'),(38190,27722,'91125'),(38191,27722,'91126'),(38192,27722,'91129'),(38193,27722,'91131'),(38194,27722,'91175'),(38195,27722,'91182'),(38196,27722,'91184'),(38197,27722,'91185'),(38198,27722,'91186'),(38199,27722,'91187'),(38200,27722,'91188'),(38201,27722,'91189'),(38202,27722,'91191'),(38203,27723,'91108'),(38204,27723,'91118'),(38205,27724,'91201'),(38206,27724,'91202'),(38207,27724,'91203'),(38208,27724,'91204'),(38209,27724,'91205'),(38210,27724,'91206'),(38211,27724,'91207'),(38212,27724,'91208'),(38213,27724,'91209'),(38214,27724,'91210'),(38215,27724,'91221'),(38216,27724,'91222'),(38217,27724,'91225'),(38218,27724,'91226'),(38219,27725,'91214'),(38220,27725,'91224'),(38221,27726,'91301'),(38222,27726,'91376'),(38223,27727,'91302'),(38224,27727,'91372'),(38225,27728,'91303'),(38226,27728,'91304'),(38227,27728,'91305'),(38228,27728,'91309'),(38229,27729,'91306'),(38230,27729,'91396'),(38231,27730,'91307'),(38232,27730,'91308'),(38233,27731,'91310'),(38234,27731,'91384'),(38235,27732,'91311'),(38236,27732,'91312'),(38237,27732,'91313'),(38238,27733,'91316'),(38239,27733,'91416'),(38240,27733,'91426'),(38241,27733,'91436'),(38242,27734,'91319'),(38243,27734,'91320'),(38244,27735,'91321'),(38245,27735,'91322'),(38246,27736,'91324'),(38247,27736,'91325'),(38248,27736,'91326'),(38249,27736,'91327'),(38250,27736,'91328'),(38251,27736,'91329'),(38252,27736,'91330'),(38253,27737,'91331'),(38254,27737,'91333'),(38255,27737,'91334'),(38256,27738,'91335'),(38257,27738,'91337'),(38258,27739,'91340'),(38259,27739,'91341'),(38260,27740,'91342'),(38261,27740,'91392'),(38262,27741,'91343'),(38263,27741,'91393'),(38264,27742,'91344'),(38265,27742,'91394'),(38266,27743,'91345'),(38267,27743,'91346'),(38268,27743,'91395'),(38269,27744,'91350'),(38270,27744,'91380'),(38271,27744,'91382'),(38272,27744,'91383'),(38273,27745,'91351'),(38274,27745,'91386'),(38275,27746,'91352'),(38276,27746,'91353'),(38277,27747,'91354'),(38278,27747,'91355'),(38279,27747,'91385'),(38280,27748,'91356'),(38281,27748,'91357'),(38282,27749,'91358'),(38283,27749,'91360'),(38284,27749,'91362'),(38285,27750,'91359'),(38286,27750,'91361'),(38287,27750,'91363'),(38288,27751,'91364'),(38289,27751,'91365'),(38290,27751,'91367'),(38291,27751,'91371'),(38292,27751,'91399'),(38293,27752,'91377'),(38294,27753,'91381'),(38295,27754,'91388'),(38296,27754,'91401'),(38297,27754,'91404'),(38298,27754,'91405'),(38299,27754,'91406'),(38300,27754,'91407'),(38301,27754,'91408'),(38302,27754,'91409'),(38303,27754,'91410'),(38304,27754,'91411'),(38305,27754,'91470'),(38306,27754,'91482'),(38307,27754,'91496'),(38308,27754,'91497'),(38309,27754,'91499'),(38310,27755,'91402'),(38311,27755,'91412'),(38312,27756,'91403'),(38313,27756,'91413'),(38314,27756,'91423'),(38315,27756,'91495'),(38316,27757,'91501'),(38317,27757,'91502'),(38318,27757,'91503'),(38319,27757,'91504'),(38320,27757,'91505'),(38321,27757,'91506'),(38322,27757,'91507'),(38323,27757,'91508'),(38324,27757,'91510'),(38325,27757,'91521'),(38326,27757,'91522'),(38327,27757,'91523'),(38328,27757,'91526'),(38329,27758,'91601'),(38330,27758,'91602'),(38331,27758,'91603'),(38332,27758,'91605'),(38333,27758,'91606'),(38334,27758,'91609'),(38335,27758,'91611'),(38336,27758,'91612'),(38337,27758,'91615'),(38338,27758,'91616'),(38339,27758,'91618'),(38340,27759,'91604'),(38341,27759,'91614'),(38342,27760,'91607'),(38343,27760,'91617'),(38344,27761,'91608'),(38345,27762,'91610'),(38346,27763,'91701'),(38347,27763,'91737'),(38348,27764,'91702'),(38349,27765,'91706'),(38350,27766,'91708'),(38351,27766,'91710'),(38352,27767,'91709'),(38353,27768,'91711'),(38354,27769,'91714'),(38355,27769,'91715'),(38356,27769,'91716'),(38357,27770,'91718'),(38358,27770,'91719'),(38359,27770,'91720'),(38360,27770,'92877'),(38361,27770,'92878'),(38362,27770,'92879'),(38363,27770,'92880'),(38364,27770,'92881'),(38365,27770,'92882'),(38366,27770,'92883'),(38367,27771,'91722'),(38368,27771,'91723'),(38369,27771,'91724'),(38370,27772,'91729'),(38371,27772,'91730'),(38372,27772,'91739'),(38373,27773,'91731'),(38374,27773,'91732'),(38375,27773,'91734'),(38376,27773,'91735'),(38377,27774,'91733'),(38378,27775,'91740'),(38379,27775,'91741'),(38380,27776,'91743'),(38381,27777,'91744'),(38382,27777,'91746'),(38383,27777,'91747'),(38384,27777,'91749'),(38385,27778,'91745'),(38386,27779,'91748'),(38387,27780,'91750'),(38388,27781,'91752'),(38389,27782,'91754'),(38390,27782,'91755'),(38391,27782,'91756'),(38392,27783,'91758'),(38393,27783,'91761'),(38394,27783,'91762'),(38395,27783,'91764'),(38396,27783,'91798'),(38397,27784,'91759'),(38398,27785,'91760'),(38399,27785,'92860'),(38400,27786,'91763'),(38401,27787,'91765'),(38402,27788,'91766'),(38403,27788,'91767'),(38404,27788,'91768'),(38405,27788,'91769'),(38406,27788,'91797'),(38407,27788,'91799'),(38408,27789,'91770'),(38409,27789,'91771'),(38410,27789,'91772'),(38411,27790,'91773'),(38412,27791,'91775'),(38413,27791,'91776'),(38414,27791,'91778'),(38415,27792,'91780'),(38416,27793,'91784'),(38417,27793,'91785'),(38418,27793,'91786'),(38419,27794,'91788'),(38420,27794,'91789'),(38421,27794,'91795'),(38422,27795,'91790'),(38423,27795,'91791'),(38424,27795,'91792'),(38425,27795,'91793'),(38426,27796,'91801'),(38427,27796,'91802'),(38428,27796,'91803'),(38429,27796,'91804'),(38430,27796,'91841'),(38431,27796,'91896'),(38432,27796,'91899'),(38433,27797,'91901'),(38434,27797,'91903'),(38435,27798,'91902'),(38436,27798,'91908'),(38437,27799,'91905'),(38438,27800,'91906'),(38439,27801,'91909'),(38440,27801,'91910'),(38441,27801,'91911'),(38442,27801,'91912'),(38443,27801,'91913'),(38444,27801,'91914'),(38445,27801,'91915'),(38446,27801,'91921'),(38447,27802,'91916'),(38448,27803,'91917'),(38449,27804,'91931'),(38450,27805,'91932'),(38451,27805,'91933'),(38452,27806,'91934'),(38453,27807,'91935'),(38454,27808,'91941'),(38455,27808,'91942'),(38456,27808,'91943'),(38457,27808,'91944'),(38458,27809,'91945'),(38459,27809,'91946'),(38460,27810,'91947'),(38461,27811,'91948'),(38462,27812,'91950'),(38463,27812,'91951'),(38464,27813,'91962'),(38465,27814,'91963'),(38466,27814,'91990'),(38467,27815,'91976'),(38468,27815,'91977'),(38469,27815,'91978'),(38470,27815,'91979'),(38471,27816,'91980'),(38472,27816,'91987'),(38473,27817,'92003'),(38474,27818,'92004'),(38475,27819,'92007'),(38476,27820,'92008'),(38477,27820,'92009'),(38478,27820,'92013'),(38479,27820,'92018'),(38480,27821,'92014'),(38481,27822,'92019'),(38482,27822,'92020'),(38483,27822,'92021'),(38484,27822,'92022'),(38485,27822,'92090'),(38486,27823,'92023'),(38487,27823,'92024'),(38488,27824,'92025'),(38489,27824,'92026'),(38490,27824,'92027'),(38491,27824,'92029'),(38492,27824,'92030'),(38493,27824,'92033'),(38494,27824,'92046'),(38495,27825,'92028'),(38496,27825,'92088'),(38497,27826,'92036'),(38498,27827,'92037'),(38499,27827,'92038'),(38500,27827,'92039'),(38501,27827,'92092'),(38502,27827,'92093'),(38503,27828,'92040'),(38504,27829,'92049'),(38505,27829,'92051'),(38506,27829,'92052'),(38507,27829,'92054'),(38508,27829,'92056'),(38509,27829,'92057'),(38510,27829,'92058'),(38511,27830,'92055'),(38512,27831,'92059'),(38513,27832,'92060'),(38514,27833,'92061'),(38515,27834,'92064'),(38516,27834,'92074'),(38517,27835,'92065'),(38518,27836,'92066'),(38519,27837,'92067'),(38520,27837,'92091'),(38521,27838,'92068'),(38522,27839,'92069'),(38523,27839,'92078'),(38524,27839,'92079'),(38525,27839,'92096'),(38526,27840,'92070'),(38527,27841,'92071'),(38528,27841,'92072'),(38529,27842,'92075'),(38530,27843,'92082'),(38531,27844,'92083'),(38532,27844,'92084'),(38533,27844,'92085'),(38534,27845,'92086'),(38535,27846,'92101'),(38536,27846,'92102'),(38537,27846,'92103'),(38538,27846,'92104'),(38539,27846,'92105'),(38540,27846,'92106'),(38541,27846,'92107'),(38542,27846,'92108'),(38543,27846,'92109'),(38544,27846,'92110'),(38545,27846,'92111'),(38546,27846,'92112'),(38547,27846,'92113'),(38548,27846,'92114'),(38549,27846,'92115'),(38550,27846,'92116'),(38551,27846,'92117'),(38552,27846,'92119'),(38553,27846,'92120'),(38554,27846,'92121'),(38555,27846,'92122'),(38556,27846,'92123'),(38557,27846,'92124'),(38558,27846,'92126'),(38559,27846,'92127'),(38560,27846,'92128'),(38561,27846,'92129'),(38562,27846,'92130'),(38563,27846,'92131'),(38564,27846,'92132'),(38565,27846,'92133'),(38566,27846,'92134'),(38567,27846,'92135'),(38568,27846,'92136'),(38569,27846,'92137'),(38570,27846,'92138'),(38571,27846,'92139'),(38572,27846,'92140'),(38573,27846,'92142'),(38574,27846,'92145'),(38575,27846,'92147'),(38576,27846,'92149'),(38577,27846,'92150'),(38578,27846,'92152'),(38579,27846,'92153'),(38580,27846,'92154'),(38581,27846,'92155'),(38582,27846,'92158'),(38583,27846,'92159'),(38584,27846,'92160'),(38585,27846,'92161'),(38586,27846,'92162'),(38587,27846,'92163'),(38588,27846,'92164'),(38589,27846,'92165'),(38590,27846,'92166'),(38591,27846,'92167'),(38592,27846,'92168'),(38593,27846,'92169'),(38594,27846,'92170'),(38595,27846,'92171'),(38596,27846,'92172'),(38597,27846,'92174'),(38598,27846,'92175'),(38599,27846,'92176'),(38600,27846,'92177'),(38601,27846,'92179'),(38602,27846,'92182'),(38603,27846,'92184'),(38604,27846,'92186'),(38605,27846,'92187'),(38606,27846,'92190'),(38607,27846,'92191'),(38608,27846,'92192'),(38609,27846,'92193'),(38610,27846,'92194'),(38611,27846,'92195'),(38612,27846,'92196'),(38613,27846,'92197'),(38614,27846,'92198'),(38615,27846,'92199'),(38616,27847,'92118'),(38617,27847,'92178'),(38618,27848,'92143'),(38619,27848,'92173'),(38620,27849,'92201'),(38621,27849,'92202'),(38622,27849,'92203'),(38623,27850,'92210'),(38624,27851,'92211'),(38625,27851,'92255'),(38626,27851,'92260'),(38627,27851,'92261'),(38628,27852,'92220'),(38629,27853,'92222'),(38630,27854,'92223'),(38631,27855,'92225'),(38632,27855,'92226'),(38633,27856,'92227'),(38634,27857,'92230'),(38635,27858,'92231'),(38636,27858,'92232'),(38637,27859,'92233'),(38638,27860,'92234'),(38639,27860,'92235'),(38640,27861,'92236'),(38641,27862,'92239'),(38642,27863,'92240'),(38643,27863,'92241'),(38644,27864,'92242'),(38645,27865,'92243'),(38646,27865,'92244'),(38647,27866,'92249'),(38648,27867,'92250'),(38649,27868,'92251'),(38650,27869,'92252'),(38651,27870,'92253'),(38652,27871,'92254'),(38653,27872,'92256'),(38654,27873,'92257'),(38655,27874,'92258'),(38656,27875,'92259'),(38657,27876,'92262'),(38658,27876,'92263'),(38659,27876,'92264'),(38660,27876,'92292'),(38661,27877,'92266'),(38662,27878,'92267'),(38663,27879,'92268'),(38664,27880,'92270'),(38665,27881,'92273'),(38666,27882,'92274'),(38667,27883,'92275'),(38668,27884,'92276'),(38669,27885,'92277'),(38670,27885,'92278'),(38671,27886,'92280'),(38672,27887,'92281'),(38673,27888,'92282'),(38674,27889,'92283'),(38675,27890,'92284'),(38676,27890,'92286'),(38677,27891,'92285'),(38678,27892,'92301'),(38679,27893,'92304'),(38680,27894,'92305'),(38681,27895,'92307'),(38682,27895,'92308'),(38683,27896,'92309'),(38684,27897,'92310'),(38685,27898,'92311'),(38686,27898,'92312'),(38687,27899,'92313'),(38688,27900,'92314'),(38689,27901,'92315'),(38690,27902,'92316'),(38691,27903,'92317'),(38692,27904,'92318'),(38693,27905,'92320'),(38694,27906,'92321'),(38695,27907,'92322'),(38696,27908,'92323'),(38697,27909,'92324'),(38698,27910,'92325'),(38699,27911,'92326'),(38700,27912,'92327'),(38701,27913,'92328'),(38702,27914,'92329'),(38703,27914,'92371'),(38704,27915,'92332'),(38705,27916,'92333'),(38706,27917,'92334'),(38707,27917,'92335'),(38708,27917,'92336'),(38709,27917,'92337'),(38710,27918,'92338'),(38711,27919,'92339'),(38712,27920,'92340'),(38713,27920,'92345'),(38714,27921,'92341'),(38715,27922,'92342'),(38716,27923,'92346'),(38717,27924,'92347'),(38718,27925,'92350'),(38719,27925,'92354'),(38720,27925,'92357'),(38721,27926,'92352'),(38722,27927,'92356'),(38723,27928,'92358'),(38724,27929,'92359'),(38725,27930,'92363'),(38726,27931,'92364'),(38727,27932,'92365'),(38728,27933,'92366'),(38729,27934,'92368'),(38730,27935,'92369'),(38731,27936,'92372'),(38732,27937,'92373'),(38733,27937,'92374'),(38734,27937,'92375'),(38735,27938,'92376'),(38736,27938,'92377'),(38737,27939,'92378'),(38738,27940,'92382'),(38739,27941,'92384'),(38740,27942,'92385'),(38741,27943,'92386'),(38742,27944,'92389'),(38743,27945,'92391'),(38744,27946,'92392'),(38745,27946,'92393'),(38746,27946,'92394'),(38747,27947,'92397'),(38748,27948,'92398'),(38749,27949,'92399'),(38750,27950,'92401'),(38751,27950,'92402'),(38752,27950,'92403'),(38753,27950,'92404'),(38754,27950,'92405'),(38755,27950,'92406'),(38756,27950,'92407'),(38757,27950,'92408'),(38758,27950,'92410'),(38759,27950,'92411'),(38760,27950,'92412'),(38761,27950,'92413'),(38762,27950,'92414'),(38763,27950,'92415'),(38764,27950,'92416'),(38765,27950,'92418'),(38766,27950,'92420'),(38767,27950,'92423'),(38768,27950,'92424'),(38769,27950,'92427'),(38770,27951,'92501'),(38771,27951,'92502'),(38772,27951,'92503'),(38773,27951,'92504'),(38774,27951,'92505'),(38775,27951,'92506'),(38776,27951,'92507'),(38777,27951,'92508'),(38778,27951,'92509'),(38779,27951,'92513'),(38780,27951,'92514'),(38781,27951,'92515'),(38782,27951,'92516'),(38783,27951,'92517'),(38784,27951,'92519'),(38785,27951,'92521'),(38786,27951,'92522'),(38787,27952,'92518'),(38788,27953,'92530'),(38789,27953,'92531'),(38790,27953,'92532'),(38791,27954,'92536'),(38792,27955,'92539'),(38793,27956,'92543'),(38794,27956,'92544'),(38795,27956,'92545'),(38796,27956,'92546'),(38797,27957,'92548'),(38798,27958,'92549'),(38799,27959,'92551'),(38800,27959,'92552'),(38801,27959,'92553'),(38802,27959,'92554'),(38803,27959,'92555'),(38804,27959,'92556'),(38805,27959,'92557'),(38806,27960,'92561'),(38807,27961,'92562'),(38808,27961,'92563'),(38809,27961,'92564'),(38810,27962,'92567'),(38811,27963,'92570'),(38812,27963,'92571'),(38813,27963,'92572'),(38814,27963,'92599'),(38815,27964,'92581'),(38816,27964,'92582'),(38817,27964,'92583'),(38818,27965,'92584'),(38819,27966,'92585'),(38820,27966,'92586'),(38821,27966,'92587'),(38822,27967,'92589'),(38823,27967,'92590'),(38824,27967,'92591'),(38825,27967,'92592'),(38826,27967,'92593'),(38827,27968,'92595'),(38828,27969,'92596'),(38829,27970,'92602'),(38830,27970,'92603'),(38831,27970,'92604'),(38832,27970,'92606'),(38833,27970,'92612'),(38834,27970,'92614'),(38835,27970,'92616'),(38836,27970,'92618'),(38837,27970,'92619'),(38838,27970,'92620'),(38839,27970,'92623'),(38840,27970,'92697'),(38841,27970,'92709'),(38842,27970,'92710'),(38843,27971,'92605'),(38844,27971,'92615'),(38845,27971,'92646'),(38846,27971,'92647'),(38847,27971,'92648'),(38848,27971,'92649'),(38849,27972,'92607'),(38850,27972,'92677'),(38851,27973,'92610'),(38852,27974,'92624'),(38853,27975,'92625'),(38854,27976,'92626'),(38855,27976,'92627'),(38856,27976,'92628'),(38857,27977,'92629'),(38858,27978,'92630'),(38859,27979,'92650'),(38860,27980,'92651'),(38861,27980,'92652'),(38862,27981,'92653'),(38863,27981,'92654'),(38864,27982,'92655'),(38865,27983,'92656'),(38866,27983,'92698'),(38867,27984,'92657'),(38868,27985,'92658'),(38869,27985,'92659'),(38870,27985,'92660'),(38871,27985,'92661'),(38872,27985,'92662'),(38873,27985,'92663'),(38874,27986,'92672'),(38875,27986,'92673'),(38876,27986,'92674'),(38877,27987,'92675'),(38878,27987,'92693'),(38879,27988,'92676'),(38880,27989,'92678'),(38881,27989,'92679'),(38882,27990,'92683'),(38883,27990,'92684'),(38884,27990,'92685'),(38885,27991,'92688'),(38886,27992,'92690'),(38887,27992,'92691'),(38888,27992,'92692'),(38889,27993,'92694'),(38890,27994,'92701'),(38891,27994,'92702'),(38892,27994,'92703'),(38893,27994,'92704'),(38894,27994,'92705'),(38895,27994,'92706'),(38896,27994,'92707'),(38897,27994,'92711'),(38898,27994,'92712'),(38899,27994,'92735'),(38900,27994,'92799'),(38901,27995,'92708'),(38902,27995,'92728'),(38903,27996,'92780'),(38904,27996,'92781'),(38905,27996,'92782'),(38906,27997,'92801'),(38907,27997,'92802'),(38908,27997,'92803'),(38909,27997,'92804'),(38910,27997,'92805'),(38911,27997,'92806'),(38912,27997,'92807'),(38913,27997,'92808'),(38914,27997,'92812'),(38915,27997,'92814'),(38916,27997,'92815'),(38917,27997,'92816'),(38918,27997,'92817'),(38919,27997,'92825'),(38920,27997,'92850'),(38921,27997,'92899'),(38922,27998,'92811'),(38923,27999,'92821'),(38924,27999,'92822'),(38925,27999,'92823'),(38926,28000,'92831'),(38927,28000,'92832'),(38928,28000,'92833'),(38929,28000,'92834'),(38930,28000,'92835'),(38931,28000,'92836'),(38932,28000,'92837'),(38933,28000,'92838'),(38934,28001,'92840'),(38935,28001,'92841'),(38936,28001,'92842'),(38937,28001,'92843'),(38938,28001,'92844'),(38939,28001,'92845'),(38940,28001,'92846'),(38941,28002,'92856'),(38942,28002,'92857'),(38943,28002,'92859'),(38944,28002,'92862'),(38945,28002,'92863'),(38946,28002,'92864'),(38947,28002,'92865'),(38948,28002,'92866'),(38949,28002,'92867'),(38950,28002,'92868'),(38951,28002,'92869'),(38952,28003,'92861'),(38953,28004,'92870'),(38954,28004,'92871'),(38955,28005,'92885'),(38956,28005,'92886'),(38957,28005,'92887'),(38958,28006,'93001'),(38959,28006,'93002'),(38960,28006,'93003'),(38961,28006,'93004'),(38962,28006,'93005'),(38963,28006,'93006'),(38964,28006,'93007'),(38965,28006,'93009'),(38966,28007,'93010'),(38967,28007,'93011'),(38968,28007,'93012'),(38969,28008,'93013'),(38970,28008,'93014'),(38971,28009,'93015'),(38972,28009,'93016'),(38973,28010,'93020'),(38974,28010,'93021'),(38975,28011,'93022'),(38976,28012,'93023'),(38977,28012,'93024'),(38978,28013,'93030'),(38979,28013,'93031'),(38980,28013,'93032'),(38981,28013,'93033'),(38982,28013,'93034'),(38983,28013,'93035'),(38984,28014,'93040'),(38985,28015,'93041'),(38986,28015,'93044'),(38987,28016,'93042'),(38988,28017,'93043'),(38989,28018,'93060'),(38990,28018,'93061'),(38991,28019,'93062'),(38992,28019,'93063'),(38993,28019,'93065'),(38994,28019,'93093'),(38995,28019,'93094'),(38996,28019,'93099'),(38997,28020,'93064'),(38998,28021,'93066'),(38999,28022,'93067'),(39000,28023,'93101'),(39001,28023,'93102'),(39002,28023,'93103'),(39003,28023,'93105'),(39004,28023,'93106'),(39005,28023,'93107'),(39006,28023,'93108'),(39007,28023,'93109'),(39008,28023,'93110'),(39009,28023,'93111'),(39010,28023,'93120'),(39011,28023,'93121'),(39012,28023,'93130'),(39013,28023,'93140'),(39014,28023,'93150'),(39015,28023,'93160'),(39016,28023,'93190'),(39017,28024,'93116'),(39018,28024,'93117'),(39019,28024,'93118'),(39020,28024,'93199'),(39021,28025,'93201'),(39022,28026,'93202'),(39023,28027,'93203'),(39024,28028,'93204'),(39025,28029,'93205'),(39026,28030,'93206'),(39027,28031,'93207'),(39028,28032,'93208'),(39029,28033,'93210'),(39030,28034,'93212'),(39031,28035,'93215'),(39032,28035,'93216'),(39033,28036,'93218'),(39034,28037,'93219'),(39035,28038,'93220'),(39036,28039,'93221'),(39037,28040,'93222'),(39038,28040,'93225'),(39039,28041,'93223'),(39040,28042,'93224'),(39041,28043,'93226'),(39042,28044,'93227'),(39043,28045,'93230'),(39044,28045,'93231'),(39045,28045,'93232'),(39046,28046,'93234'),(39047,28047,'93235'),(39048,28048,'93237'),(39049,28049,'93238'),(39050,28050,'93239'),(39051,28051,'93240'),(39052,28052,'93241'),(39053,28053,'93242'),(39054,28054,'93243'),(39055,28055,'93244'),(39056,28056,'93245'),(39057,28056,'93246'),(39058,28057,'93247'),(39059,28058,'93249'),(39060,28059,'93250'),(39061,28060,'93251'),(39062,28061,'93252'),(39063,28062,'93254'),(39064,28063,'93255'),(39065,28064,'93256'),(39066,28065,'93257'),(39067,28065,'93258'),(39068,28066,'93260'),(39069,28067,'93261'),(39070,28068,'93262'),(39071,28069,'93263'),(39072,28070,'93265'),(39073,28071,'93266'),(39074,28072,'93267'),(39075,28073,'93268'),(39076,28074,'93270'),(39077,28075,'93271'),(39078,28076,'93272'),(39079,28077,'93274'),(39080,28077,'93275'),(39081,28078,'93276'),(39082,28079,'93277'),(39083,28079,'93278'),(39084,28079,'93279'),(39085,28079,'93291'),(39086,28079,'93292'),(39087,28080,'93280'),(39088,28081,'93282'),(39089,28082,'93283'),(39090,28083,'93285'),(39091,28084,'93286'),(39092,28085,'93287'),(39093,28086,'93301'),(39094,28086,'93302'),(39095,28086,'93303'),(39096,28086,'93304'),(39097,28086,'93305'),(39098,28086,'93306'),(39099,28086,'93307'),(39100,28086,'93308'),(39101,28086,'93309'),(39102,28086,'93311'),(39103,28086,'93312'),(39104,28086,'93313'),(39105,28086,'93380'),(39106,28086,'93381'),(39107,28086,'93382'),(39108,28086,'93383'),(39109,28086,'93384'),(39110,28086,'93385'),(39111,28086,'93386'),(39112,28086,'93387'),(39113,28086,'93388'),(39114,28086,'93389'),(39115,28086,'93390'),(39116,28087,'93401'),(39117,28087,'93403'),(39118,28087,'93405'),(39119,28087,'93406'),(39120,28087,'93407'),(39121,28087,'93408'),(39122,28087,'93409'),(39123,28087,'93410'),(39124,28088,'93402'),(39125,28088,'93412'),(39126,28089,'93420'),(39127,28089,'93421'),(39128,28090,'93422'),(39129,28090,'93423'),(39130,28091,'93424'),(39131,28092,'93426'),(39132,28093,'93427'),(39133,28094,'93428'),(39134,28095,'93429'),(39135,28096,'93430'),(39136,28097,'93432'),(39137,28098,'93433'),(39138,28098,'93483'),(39139,28099,'93434'),(39140,28100,'93435'),(39141,28101,'93436'),(39142,28101,'93437'),(39143,28101,'93438'),(39144,28102,'93440'),(39145,28103,'93441'),(39146,28104,'93442'),(39147,28104,'93443'),(39148,28105,'93444'),(39149,28106,'93445'),(39150,28107,'93446'),(39151,28107,'93447'),(39152,28108,'93448'),(39153,28108,'93449'),(39154,28109,'93450'),(39155,28110,'93451'),(39156,28111,'93452'),(39157,28112,'93453'),(39158,28113,'93454'),(39159,28113,'93455'),(39160,28113,'93456'),(39161,28113,'93457'),(39162,28113,'93458'),(39163,28114,'93460'),(39164,28115,'93461'),(39165,28116,'93463'),(39166,28116,'93464'),(39167,28117,'93465'),(39168,28118,'93501'),(39169,28118,'93502'),(39170,28119,'93504'),(39171,28119,'93505'),(39172,28120,'93510'),(39173,28121,'93512'),(39174,28122,'93513'),(39175,28123,'93514'),(39176,28123,'93515'),(39177,28124,'93516'),(39178,28124,'93596'),(39179,28125,'93517'),(39180,28126,'93518'),(39181,28127,'93519'),(39182,28128,'93522'),(39183,28129,'93523'),(39184,28129,'93524'),(39185,28130,'93526'),(39186,28131,'93527'),(39187,28132,'93528'),(39188,28133,'93529'),(39189,28134,'93530'),(39190,28135,'93531'),(39191,28136,'93532'),(39192,28137,'93534'),(39193,28137,'93535'),(39194,28137,'93536'),(39195,28137,'93539'),(39196,28137,'93584'),(39197,28137,'93586'),(39198,28138,'93541'),(39199,28139,'93542'),(39200,28140,'93543'),(39201,28141,'93544'),(39202,28142,'93545'),(39203,28143,'93546'),(39204,28144,'93549'),(39205,28145,'93550'),(39206,28145,'93551'),(39207,28145,'93552'),(39208,28145,'93590'),(39209,28145,'93591'),(39210,28145,'93599'),(39211,28146,'93553'),(39212,28147,'93554'),(39213,28148,'93555'),(39214,28148,'93556'),(39215,28149,'93558'),(39216,28150,'93560'),(39217,28151,'93561'),(39218,28151,'93581'),(39219,28152,'93562'),(39220,28152,'93592'),(39221,28153,'93563'),(39222,28154,'93601'),(39223,28155,'93602'),(39224,28156,'93603'),(39225,28157,'93604'),(39226,28158,'93605'),(39227,28159,'93606'),(39228,28160,'93607'),(39229,28161,'93608'),(39230,28162,'93609'),(39231,28163,'93610'),(39232,28164,'93611'),(39233,28164,'93612'),(39234,28164,'93613'),(39235,28165,'93614'),(39236,28166,'93615'),(39237,28167,'93616'),(39238,28168,'93618'),(39239,28169,'93620'),(39240,28170,'93621'),(39241,28171,'93622'),(39242,28172,'93623'),(39243,28173,'93624'),(39244,28174,'93625'),(39245,28175,'93626'),(39246,28176,'93627'),(39247,28177,'93628'),(39248,28178,'93630'),(39249,28179,'93631'),(39250,28180,'93633'),(39251,28181,'93634'),(39252,28182,'93635'),(39253,28183,'93637'),(39254,28183,'93638'),(39255,28183,'93639'),(39256,28184,'93640'),(39257,28185,'93641'),(39258,28186,'93642'),(39259,28187,'93643'),(39260,28188,'93644'),(39261,28189,'93645'),(39262,28190,'93646'),(39263,28191,'93647'),(39264,28192,'93648'),(39265,28193,'93649'),(39266,28194,'93650'),(39267,28194,'93701'),(39268,28194,'93702'),(39269,28194,'93703'),(39270,28194,'93704'),(39271,28194,'93705'),(39272,28194,'93706'),(39273,28194,'93707'),(39274,28194,'93708'),(39275,28194,'93709'),(39276,28194,'93710'),(39277,28194,'93711'),(39278,28194,'93712'),(39279,28194,'93714'),(39280,28194,'93715'),(39281,28194,'93716'),(39282,28194,'93717'),(39283,28194,'93718'),(39284,28194,'93720'),(39285,28194,'93721'),(39286,28194,'93722'),(39287,28194,'93724'),(39288,28194,'93725'),(39289,28194,'93726'),(39290,28194,'93727'),(39291,28194,'93728'),(39292,28194,'93729'),(39293,28194,'93740'),(39294,28194,'93741'),(39295,28194,'93744'),(39296,28194,'93745'),(39297,28194,'93747'),(39298,28194,'93750'),(39299,28194,'93755'),(39300,28194,'93759'),(39301,28194,'93760'),(39302,28194,'93761'),(39303,28194,'93762'),(39304,28194,'93764'),(39305,28194,'93765'),(39306,28194,'93771'),(39307,28194,'93772'),(39308,28194,'93773'),(39309,28194,'93774'),(39310,28194,'93775'),(39311,28194,'93776'),(39312,28194,'93777'),(39313,28194,'93778'),(39314,28194,'93779'),(39315,28194,'93780'),(39316,28194,'93782'),(39317,28194,'93784'),(39318,28194,'93786'),(39319,28194,'93790'),(39320,28194,'93791'),(39321,28194,'93792'),(39322,28194,'93793'),(39323,28194,'93794'),(39324,28194,'93844'),(39325,28194,'93888'),(39326,28195,'93651'),(39327,28196,'93652'),(39328,28197,'93653'),(39329,28198,'93654'),(39330,28199,'93656'),(39331,28200,'93657'),(39332,28201,'93660'),(39333,28202,'93661'),(39334,28203,'93662'),(39335,28204,'93664'),(39336,28205,'93665'),(39337,28206,'93666'),(39338,28207,'93667'),(39339,28208,'93668'),(39340,28209,'93669'),(39341,28210,'93670'),(39342,28211,'93673'),(39343,28212,'93675'),(39344,28213,'93901'),(39345,28213,'93902'),(39346,28213,'93905'),(39347,28213,'93906'),(39348,28213,'93907'),(39349,28213,'93908'),(39350,28213,'93912'),(39351,28213,'93915'),(39352,28214,'93920'),(39353,28215,'93921'),(39354,28215,'93922'),(39355,28215,'93923'),(39356,28216,'93924'),(39357,28217,'93925'),(39358,28218,'93926'),(39359,28219,'93927'),(39360,28220,'93928'),(39361,28221,'93930'),(39362,28222,'93932'),(39363,28223,'93933'),(39364,28224,'93940'),(39365,28224,'93942'),(39366,28224,'93943'),(39367,28224,'93944'),(39368,28225,'93950'),(39369,28226,'93953'),(39370,28227,'93954'),(39371,28228,'93955'),(39372,28229,'93960'),(39373,28230,'93962'),(39374,28231,'94002'),(39375,28231,'94003'),(39376,28232,'94005'),(39377,28233,'94010'),(39378,28233,'94011'),(39379,28233,'94012'),(39380,28234,'94014'),(39381,28234,'94015'),(39382,28234,'94016'),(39383,28234,'94017'),(39384,28235,'94018'),(39385,28236,'94019'),(39386,28237,'94020'),(39387,28238,'94021'),(39388,28239,'94022'),(39389,28239,'94023'),(39390,28239,'94024'),(39391,28240,'94025'),(39392,28240,'94026'),(39393,28240,'94029'),(39394,28241,'94027'),(39395,28242,'94028'),(39396,28243,'94030'),(39397,28243,'94031'),(39398,28244,'94035'),(39399,28244,'94039'),(39400,28244,'94040'),(39401,28244,'94041'),(39402,28244,'94042'),(39403,28244,'94043'),(39404,28245,'94037'),(39405,28246,'94038'),(39406,28247,'94044'),(39407,28247,'94045'),(39408,28248,'94059'),(39409,28248,'94061'),(39410,28248,'94062'),(39411,28248,'94063'),(39412,28248,'94064'),(39413,28248,'94065'),(39414,28249,'94060'),(39415,28250,'94066'),(39416,28250,'94067'),(39417,28250,'94096'),(39418,28250,'94098'),(39419,28251,'94070'),(39420,28251,'94071'),(39421,28252,'94074'),(39422,28253,'94080'),(39423,28253,'94083'),(39424,28253,'94099'),(39425,28254,'94086'),(39426,28254,'94087'),(39427,28254,'94088'),(39428,28254,'94089'),(39429,28254,'94090'),(39430,28255,'94101'),(39431,28255,'94102'),(39432,28255,'94103'),(39433,28255,'94104'),(39434,28255,'94105'),(39435,28255,'94106'),(39436,28255,'94107'),(39437,28255,'94108'),(39438,28255,'94109'),(39439,28255,'94110'),(39440,28255,'94111'),(39441,28255,'94112'),(39442,28255,'94114'),(39443,28255,'94115'),(39444,28255,'94116'),(39445,28255,'94117'),(39446,28255,'94118'),(39447,28255,'94119'),(39448,28255,'94120'),(39449,28255,'94121'),(39450,28255,'94122'),(39451,28255,'94123'),(39452,28255,'94124'),(39453,28255,'94125'),(39454,28255,'94126'),(39455,28255,'94127'),(39456,28255,'94128'),(39457,28255,'94129'),(39458,28255,'94130'),(39459,28255,'94131'),(39460,28255,'94132'),(39461,28255,'94133'),(39462,28255,'94134'),(39463,28255,'94135'),(39464,28255,'94136'),(39465,28255,'94137'),(39466,28255,'94138'),(39467,28255,'94139'),(39468,28255,'94140'),(39469,28255,'94141'),(39470,28255,'94142'),(39471,28255,'94143'),(39472,28255,'94144'),(39473,28255,'94145'),(39474,28255,'94146'),(39475,28255,'94147'),(39476,28255,'94150'),(39477,28255,'94151'),(39478,28255,'94152'),(39479,28255,'94153'),(39480,28255,'94154'),(39481,28255,'94155'),(39482,28255,'94156'),(39483,28255,'94157'),(39484,28255,'94159'),(39485,28255,'94160'),(39486,28255,'94161'),(39487,28255,'94162'),(39488,28255,'94163'),(39489,28255,'94164'),(39490,28255,'94165'),(39491,28255,'94166'),(39492,28255,'94167'),(39493,28255,'94168'),(39494,28255,'94169'),(39495,28255,'94170'),(39496,28255,'94171'),(39497,28255,'94172'),(39498,28255,'94175'),(39499,28255,'94177'),(39500,28255,'94188'),(39501,28256,'94203'),(39502,28256,'94204'),(39503,28256,'94205'),(39504,28256,'94206'),(39505,28256,'94207'),(39506,28256,'94208'),(39507,28256,'94209'),(39508,28256,'94211'),(39509,28256,'94229'),(39510,28256,'94230'),(39511,28256,'94232'),(39512,28256,'94234'),(39513,28256,'94235'),(39514,28256,'94236'),(39515,28256,'94237'),(39516,28256,'94239'),(39517,28256,'94240'),(39518,28256,'94243'),(39519,28256,'94244'),(39520,28256,'94245'),(39521,28256,'94246'),(39522,28256,'94247'),(39523,28256,'94248'),(39524,28256,'94249'),(39525,28256,'94250'),(39526,28256,'94252'),(39527,28256,'94253'),(39528,28256,'94254'),(39529,28256,'94256'),(39530,28256,'94257'),(39531,28256,'94258'),(39532,28256,'94259'),(39533,28256,'94261'),(39534,28256,'94262'),(39535,28256,'94263'),(39536,28256,'94267'),(39537,28256,'94268'),(39538,28256,'94269'),(39539,28256,'94271'),(39540,28256,'94273'),(39541,28256,'94274'),(39542,28256,'94277'),(39543,28256,'94278'),(39544,28256,'94279'),(39545,28256,'94280'),(39546,28256,'94282'),(39547,28256,'94283'),(39548,28256,'94284'),(39549,28256,'94285'),(39550,28256,'94286'),(39551,28256,'94287'),(39552,28256,'94288'),(39553,28256,'94289'),(39554,28256,'94290'),(39555,28256,'94291'),(39556,28256,'94293'),(39557,28256,'94294'),(39558,28256,'94295'),(39559,28256,'94296'),(39560,28256,'94297'),(39561,28256,'94298'),(39562,28256,'94299'),(39563,28256,'95812'),(39564,28256,'95813'),(39565,28256,'95814'),(39566,28256,'95815'),(39567,28256,'95816'),(39568,28256,'95817'),(39569,28256,'95818'),(39570,28256,'95819'),(39571,28256,'95820'),(39572,28256,'95821'),(39573,28256,'95822'),(39574,28256,'95823'),(39575,28256,'95824'),(39576,28256,'95825'),(39577,28256,'95826'),(39578,28256,'95827'),(39579,28256,'95828'),(39580,28256,'95829'),(39581,28256,'95830'),(39582,28256,'95831'),(39583,28256,'95832'),(39584,28256,'95833'),(39585,28256,'95834'),(39586,28256,'95835'),(39587,28256,'95836'),(39588,28256,'95837'),(39589,28256,'95838'),(39590,28256,'95840'),(39591,28256,'95841'),(39592,28256,'95842'),(39593,28256,'95851'),(39594,28256,'95852'),(39595,28256,'95853'),(39596,28256,'95857'),(39597,28256,'95860'),(39598,28256,'95864'),(39599,28256,'95865'),(39600,28256,'95866'),(39601,28256,'95867'),(39602,28256,'95873'),(39603,28256,'95887'),(39604,28256,'95894'),(39605,28256,'95899'),(39606,28257,'94301'),(39607,28257,'94302'),(39608,28257,'94303'),(39609,28257,'94304'),(39610,28257,'94306'),(39611,28257,'94307'),(39612,28257,'94308'),(39613,28257,'94309'),(39614,28257,'94310'),(39615,28258,'94305'),(39616,28259,'94401'),(39617,28259,'94402'),(39618,28259,'94403'),(39619,28259,'94404'),(39620,28259,'94405'),(39621,28259,'94406'),(39622,28259,'94407'),(39623,28259,'94408'),(39624,28259,'94409'),(39625,28259,'94497'),(39626,28260,'94501'),(39627,28260,'94502'),(39628,28261,'94506'),(39629,28261,'94526'),(39630,28262,'94507'),(39631,28263,'94508'),(39632,28264,'94509'),(39633,28264,'94531'),(39634,28265,'94510'),(39635,28266,'94511'),(39636,28267,'94512'),(39637,28268,'94513'),(39638,28269,'94514'),(39639,28270,'94515'),(39640,28271,'94516'),(39641,28272,'94517'),(39642,28273,'94518'),(39643,28273,'94519'),(39644,28273,'94520'),(39645,28273,'94521'),(39646,28273,'94522'),(39647,28273,'94524'),(39648,28273,'94527'),(39649,28273,'94529'),(39650,28274,'94523'),(39651,28275,'94525'),(39652,28276,'94528'),(39653,28277,'94530'),(39654,28278,'94533'),(39655,28279,'94535'),(39656,28280,'94536'),(39657,28280,'94537'),(39658,28280,'94538'),(39659,28280,'94539'),(39660,28280,'94555'),(39661,28281,'94540'),(39662,28281,'94541'),(39663,28281,'94542'),(39664,28281,'94543'),(39665,28281,'94544'),(39666,28281,'94545'),(39667,28281,'94557'),(39668,28282,'94546'),(39669,28282,'94552'),(39670,28283,'94547'),(39671,28284,'94548'),(39672,28285,'94549'),(39673,28286,'94550'),(39674,28286,'94551'),(39675,28287,'94553'),(39676,28288,'94556'),(39677,28288,'94570'),(39678,28288,'94575'),(39679,28289,'94558'),(39680,28289,'94559'),(39681,28289,'94581'),(39682,28290,'94560'),(39683,28291,'94561'),(39684,28292,'94562'),(39685,28293,'94563'),(39686,28294,'94564'),(39687,28295,'94565'),(39688,28296,'94566'),(39689,28296,'94588'),(39690,28297,'94567'),(39691,28298,'94568'),(39692,28299,'94569'),(39693,28300,'94571'),(39694,28301,'94572'),(39695,28302,'94573'),(39696,28303,'94574'),(39697,28304,'94576'),(39698,28305,'94577'),(39699,28305,'94578'),(39700,28305,'94579'),(39701,28306,'94580'),(39702,28307,'94583'),(39703,28308,'94585'),(39704,28309,'94586'),(39705,28310,'94587'),(39706,28311,'94589'),(39707,28311,'94590'),(39708,28311,'94591'),(39709,28311,'94592'),(39710,28312,'94595'),(39711,28312,'94596'),(39712,28312,'94597'),(39713,28312,'94598'),(39714,28313,'94599'),(39715,28314,'94601'),(39716,28314,'94602'),(39717,28314,'94603'),(39718,28314,'94604'),(39719,28314,'94605'),(39720,28314,'94606'),(39721,28314,'94607'),(39722,28314,'94609'),(39723,28314,'94610'),(39724,28314,'94611'),(39725,28314,'94612'),(39726,28314,'94613'),(39727,28314,'94614'),(39728,28314,'94615'),(39729,28314,'94617'),(39730,28314,'94618'),(39731,28314,'94619'),(39732,28314,'94621'),(39733,28314,'94623'),(39734,28314,'94624'),(39735,28314,'94625'),(39736,28314,'94626'),(39737,28314,'94627'),(39738,28314,'94643'),(39739,28314,'94649'),(39740,28314,'94659'),(39741,28314,'94660'),(39742,28314,'94661'),(39743,28314,'94666'),(39744,28315,'94608'),(39745,28315,'94662'),(39746,28316,'94620'),(39747,28317,'94701'),(39748,28317,'94702'),(39749,28317,'94703'),(39750,28317,'94704'),(39751,28317,'94705'),(39752,28317,'94707'),(39753,28317,'94708'),(39754,28317,'94709'),(39755,28317,'94710'),(39756,28317,'94712'),(39757,28317,'94720'),(39758,28318,'94706'),(39759,28319,'94801'),(39760,28319,'94802'),(39761,28319,'94804'),(39762,28319,'94805'),(39763,28319,'94807'),(39764,28319,'94808'),(39765,28319,'94850'),(39766,28320,'94803'),(39767,28320,'94820'),(39768,28321,'94806'),(39769,28322,'94901'),(39770,28322,'94903'),(39771,28322,'94912'),(39772,28322,'94913'),(39773,28322,'94915'),(39774,28323,'94904'),(39775,28324,'94914'),(39776,28325,'94920'),(39777,28326,'94922'),(39778,28327,'94923'),(39779,28328,'94924'),(39780,28329,'94925'),(39781,28329,'94976'),(39782,28330,'94926'),(39783,28330,'94931'),(39784,28331,'94927'),(39785,28331,'94928'),(39786,28332,'94929'),(39787,28333,'94930'),(39788,28333,'94978'),(39789,28334,'94933'),(39790,28335,'94937'),(39791,28336,'94938'),(39792,28337,'94939'),(39793,28337,'94977'),(39794,28338,'94940'),(39795,28339,'94941'),(39796,28339,'94942'),(39797,28340,'94945'),(39798,28340,'94947'),(39799,28340,'94948'),(39800,28340,'94949'),(39801,28340,'94998'),(39802,28341,'94946'),(39803,28342,'94950'),(39804,28343,'94951'),(39805,28344,'94952'),(39806,28344,'94953'),(39807,28344,'94954'),(39808,28344,'94955'),(39809,28344,'94975'),(39810,28344,'94999'),(39811,28345,'94956'),(39812,28346,'94957'),(39813,28347,'94960'),(39814,28347,'94979'),(39815,28348,'94963'),(39816,28349,'94964'),(39817,28349,'94974'),(39818,28350,'94965'),(39819,28350,'94966'),(39820,28351,'94970'),(39821,28352,'94971'),(39822,28353,'94972'),(39823,28354,'94973'),(39824,28355,'95001'),(39825,28355,'95003'),(39826,28356,'95002'),(39827,28357,'95004'),(39828,28358,'95005'),(39829,28359,'95006'),(39830,28360,'95007'),(39831,28361,'95008'),(39832,28361,'95009'),(39833,28361,'95011'),(39834,28362,'95010'),(39835,28363,'95012'),(39836,28364,'95013'),(39837,28365,'95014'),(39838,28365,'95015'),(39839,28366,'95017'),(39840,28367,'95018'),(39841,28368,'95019'),(39842,28369,'95020'),(39843,28369,'95021'),(39844,28370,'95023'),(39845,28370,'95024'),(39846,28371,'95026'),(39847,28372,'95030'),(39848,28372,'95031'),(39849,28372,'95032'),(39850,28372,'95033'),(39851,28373,'95035'),(39852,28373,'95036'),(39853,28374,'95037'),(39854,28374,'95038'),(39855,28375,'95039'),(39856,28376,'95041'),(39857,28377,'95042'),(39858,28378,'95043'),(39859,28379,'95044'),(39860,28380,'95045'),(39861,28381,'95046'),(39862,28382,'95050'),(39863,28382,'95051'),(39864,28382,'95052'),(39865,28382,'95053'),(39866,28382,'95054'),(39867,28382,'95055'),(39868,28382,'95056'),(39869,28383,'95060'),(39870,28383,'95061'),(39871,28383,'95062'),(39872,28383,'95063'),(39873,28383,'95064'),(39874,28383,'95065'),(39875,28384,'95066'),(39876,28384,'95067'),(39877,28385,'95070'),(39878,28385,'95071'),(39879,28386,'95073'),(39880,28387,'95075'),(39881,28388,'95076'),(39882,28388,'95077'),(39883,28389,'95101'),(39884,28389,'95102'),(39885,28389,'95103'),(39886,28389,'95106'),(39887,28389,'95108'),(39888,28389,'95109'),(39889,28389,'95110'),(39890,28389,'95111'),(39891,28389,'95112'),(39892,28389,'95113'),(39893,28389,'95114'),(39894,28389,'95115'),(39895,28389,'95116'),(39896,28389,'95117'),(39897,28389,'95118'),(39898,28389,'95119'),(39899,28389,'95120'),(39900,28389,'95121'),(39901,28389,'95122'),(39902,28389,'95123'),(39903,28389,'95124'),(39904,28389,'95125'),(39905,28389,'95126'),(39906,28389,'95127'),(39907,28389,'95128'),(39908,28389,'95129'),(39909,28389,'95130'),(39910,28389,'95131'),(39911,28389,'95132'),(39912,28389,'95133'),(39913,28389,'95134'),(39914,28389,'95135'),(39915,28389,'95136'),(39916,28389,'95137'),(39917,28389,'95138'),(39918,28389,'95139'),(39919,28389,'95141'),(39920,28389,'95142'),(39921,28389,'95148'),(39922,28389,'95150'),(39923,28389,'95151'),(39924,28389,'95152'),(39925,28389,'95153'),(39926,28389,'95154'),(39927,28389,'95155'),(39928,28389,'95156'),(39929,28389,'95157'),(39930,28389,'95158'),(39931,28389,'95159'),(39932,28389,'95160'),(39933,28389,'95161'),(39934,28389,'95164'),(39935,28389,'95170'),(39936,28389,'95171'),(39937,28389,'95172'),(39938,28389,'95173'),(39939,28389,'95190'),(39940,28389,'95191'),(39941,28389,'95192'),(39942,28389,'95193'),(39943,28389,'95194'),(39944,28389,'95196'),(39945,28390,'95140'),(39946,28391,'95201'),(39947,28391,'95202'),(39948,28391,'95203'),(39949,28391,'95204'),(39950,28391,'95205'),(39951,28391,'95206'),(39952,28391,'95207'),(39953,28391,'95208'),(39954,28391,'95209'),(39955,28391,'95210'),(39956,28391,'95211'),(39957,28391,'95212'),(39958,28391,'95213'),(39959,28391,'95215'),(39960,28391,'95219'),(39961,28391,'95267'),(39962,28391,'95269'),(39963,28391,'95290'),(39964,28391,'95297'),(39965,28391,'95298'),(39966,28392,'95220'),(39967,28393,'95221'),(39968,28394,'95222'),(39969,28395,'95223'),(39970,28396,'95224'),(39971,28397,'95225'),(39972,28398,'95226'),(39973,28399,'95227'),(39974,28400,'95228'),(39975,28401,'95229'),(39976,28402,'95230'),(39977,28403,'95231'),(39978,28404,'95232'),(39979,28405,'95233'),(39980,28406,'95234'),(39981,28407,'95236'),(39982,28408,'95237'),(39983,28409,'95240'),(39984,28409,'95241'),(39985,28409,'95242'),(39986,28410,'95245'),(39987,28411,'95246'),(39988,28412,'95247'),(39989,28413,'95248'),(39990,28414,'95249'),(39991,28415,'95250'),(39992,28416,'95251'),(39993,28417,'95252'),(39994,28418,'95253'),(39995,28419,'95254'),(39996,28420,'95255'),(39997,28421,'95257'),(39998,28422,'95258'),(39999,28423,'95296'),(40000,28424,'95301'),(40001,28424,'95342'),(40002,28425,'95303'),(40003,28426,'95304'),(40004,28427,'95305'),(40005,28428,'95306'),(40006,28429,'95307'),(40007,28430,'95309'),(40008,28431,'95310'),(40009,28432,'95311'),(40010,28433,'95312'),(40011,28434,'95313'),(40012,28435,'95314'),(40013,28436,'95315'),(40014,28437,'95316'),(40015,28438,'95317'),(40016,28439,'95318'),(40017,28440,'95319'),(40018,28441,'95320'),(40019,28442,'95321'),(40020,28443,'95322'),(40021,28444,'95323'),(40022,28445,'95324'),(40023,28446,'95325'),(40024,28447,'95326'),(40025,28448,'95327'),(40026,28449,'95328'),(40027,28450,'95329'),(40028,28451,'95330'),(40029,28452,'95333'),(40030,28453,'95334'),(40031,28454,'95335'),(40032,28455,'95336'),(40033,28455,'95337'),(40034,28456,'95338'),(40035,28457,'95340'),(40036,28457,'95341'),(40037,28457,'95343'),(40038,28457,'95344'),(40039,28457,'95348'),(40040,28458,'95345'),(40041,28459,'95346'),(40042,28460,'95347'),(40043,28461,'95350'),(40044,28461,'95351'),(40045,28461,'95352'),(40046,28461,'95353'),(40047,28461,'95354'),(40048,28461,'95355'),(40049,28461,'95356'),(40050,28461,'95357'),(40051,28461,'95358'),(40052,28461,'95397'),(40053,28462,'95360'),(40054,28463,'95361'),(40055,28464,'95363'),(40056,28465,'95364'),(40057,28466,'95365'),(40058,28467,'95366'),(40059,28468,'95367'),(40060,28468,'95390'),(40061,28469,'95368'),(40062,28470,'95369'),(40063,28471,'95370'),(40064,28472,'95372'),(40065,28473,'95373'),(40066,28474,'95374'),(40067,28475,'95375'),(40068,28476,'95376'),(40069,28476,'95378'),(40070,28477,'95379'),(40071,28478,'95380'),(40072,28478,'95381'),(40073,28478,'95382'),(40074,28479,'95383'),(40075,28480,'95385'),(40076,28481,'95386'),(40077,28482,'95387'),(40078,28483,'95388'),(40079,28484,'95389'),(40080,28485,'95401'),(40081,28485,'95402'),(40082,28485,'95403'),(40083,28485,'95404'),(40084,28485,'95405'),(40085,28485,'95406'),(40086,28485,'95407'),(40087,28485,'95408'),(40088,28485,'95409'),(40089,28486,'95410'),(40090,28487,'95412'),(40091,28488,'95415'),(40092,28489,'95416'),(40093,28490,'95417'),(40094,28491,'95418'),(40095,28492,'95419'),(40096,28493,'95420'),(40097,28494,'95421'),(40098,28495,'95422'),(40099,28496,'95423'),(40100,28497,'95424'),(40101,28498,'95425'),(40102,28499,'95426'),(40103,28500,'95427'),(40104,28501,'95428'),(40105,28502,'95429'),(40106,28503,'95430'),(40107,28504,'95431'),(40108,28505,'95432'),(40109,28506,'95433'),(40110,28507,'95435'),(40111,28508,'95436'),(40112,28509,'95437'),(40113,28510,'95439'),(40114,28511,'95441'),(40115,28512,'95442'),(40116,28513,'95443'),(40117,28514,'95444'),(40118,28515,'95445'),(40119,28516,'95446'),(40120,28517,'95448'),(40121,28518,'95449'),(40122,28519,'95450'),(40123,28520,'95451'),(40124,28521,'95452'),(40125,28522,'95453'),(40126,28523,'95454'),(40127,28524,'95456'),(40128,28525,'95457'),(40129,28526,'95458'),(40130,28527,'95459'),(40131,28528,'95460'),(40132,28529,'95461'),(40133,28530,'95462'),(40134,28531,'95463'),(40135,28532,'95464'),(40136,28533,'95465'),(40137,28534,'95466'),(40138,28535,'95468'),(40139,28536,'95469'),(40140,28537,'95470'),(40141,28538,'95471'),(40142,28539,'95472'),(40143,28539,'95473'),(40144,28540,'95476'),(40145,28541,'95480'),(40146,28542,'95481'),(40147,28543,'95482'),(40148,28544,'95485'),(40149,28545,'95486'),(40150,28546,'95487'),(40151,28547,'95488'),(40152,28548,'95490'),(40153,28549,'95492'),(40154,28550,'95493'),(40155,28551,'95494'),(40156,28552,'95497'),(40157,28553,'95501'),(40158,28553,'95502'),(40159,28553,'95503'),(40160,28554,'95511'),(40161,28555,'95514'),(40162,28556,'95518'),(40163,28556,'95521'),(40164,28557,'95519'),(40165,28558,'95524'),(40166,28559,'95525'),(40167,28560,'95526'),(40168,28561,'95527'),(40169,28562,'95528'),(40170,28563,'95531'),(40171,28563,'95532'),(40172,28564,'95534'),(40173,28565,'95536'),(40174,28566,'95537'),(40175,28567,'95538'),(40176,28568,'95540'),(40177,28569,'95542'),(40178,28570,'95543'),(40179,28571,'95545'),(40180,28572,'95546'),(40181,28573,'95547'),(40182,28574,'95548'),(40183,28575,'95549'),(40184,28576,'95550'),(40185,28577,'95551'),(40186,28578,'95552'),(40187,28579,'95553'),(40188,28580,'95554'),(40189,28581,'95555'),(40190,28582,'95556'),(40191,28583,'95558'),(40192,28584,'95559'),(40193,28585,'95560'),(40194,28586,'95562'),(40195,28587,'95563'),(40196,28588,'95564'),(40197,28589,'95565'),(40198,28590,'95567'),(40199,28591,'95568'),(40200,28592,'95569'),(40201,28593,'95570'),(40202,28594,'95571'),(40203,28595,'95573'),(40204,28596,'95585'),(40205,28597,'95587'),(40206,28598,'95589'),(40207,28599,'95595'),(40208,28600,'95601'),(40209,28601,'95602'),(40210,28601,'95603'),(40211,28601,'95604'),(40212,28602,'95605'),(40213,28602,'95691'),(40214,28602,'95798'),(40215,28602,'95799'),(40216,28603,'95606'),(40217,28604,'95607'),(40218,28605,'95608'),(40219,28605,'95609'),(40220,28606,'95610'),(40221,28606,'95611'),(40222,28606,'95621'),(40223,28607,'95612'),(40224,28608,'95613'),(40225,28609,'95614'),(40226,28610,'95615'),(40227,28611,'95616'),(40228,28611,'95617'),(40229,28612,'95618'),(40230,28613,'95619'),(40231,28614,'95620'),(40232,28615,'95623'),(40233,28616,'95624'),(40234,28616,'95758'),(40235,28616,'95759'),(40236,28617,'95625'),(40237,28618,'95626'),(40238,28619,'95627'),(40239,28620,'95628'),(40240,28621,'95629'),(40241,28622,'95630'),(40242,28622,'95763'),(40243,28623,'95631'),(40244,28624,'95632'),(40245,28625,'95633'),(40246,28626,'95634'),(40247,28627,'95635'),(40248,28628,'95636'),(40249,28629,'95637'),(40250,28630,'95638'),(40251,28631,'95639'),(40252,28632,'95640'),(40253,28633,'95641'),(40254,28634,'95642'),(40255,28635,'95644'),(40256,28636,'95645'),(40257,28637,'95646'),(40258,28638,'95648'),(40259,28639,'95650'),(40260,28640,'95651'),(40261,28641,'95652'),(40262,28642,'95653'),(40263,28643,'95654'),(40264,28644,'95655'),(40265,28645,'95656'),(40266,28646,'95658'),(40267,28647,'95659'),(40268,28648,'95660'),(40269,28649,'95661'),(40270,28649,'95678'),(40271,28649,'95747'),(40272,28650,'95662'),(40273,28651,'95663'),(40274,28652,'95664'),(40275,28653,'95665'),(40276,28654,'95666'),(40277,28655,'95667'),(40278,28656,'95668'),(40279,28657,'95669'),(40280,28658,'95670'),(40281,28658,'95741'),(40282,28658,'95742'),(40283,28658,'95743'),(40284,28659,'95671'),(40285,28660,'95672'),(40286,28661,'95673'),(40287,28662,'95674'),(40288,28663,'95675'),(40289,28664,'95676'),(40290,28665,'95677'),(40291,28665,'95765'),(40292,28666,'95679'),(40293,28667,'95680'),(40294,28668,'95681'),(40295,28669,'95682'),(40296,28670,'95683'),(40297,28671,'95684'),(40298,28672,'95685'),(40299,28673,'95686'),(40300,28674,'95687'),(40301,28674,'95688'),(40302,28674,'95696'),(40303,28675,'95689'),(40304,28676,'95690'),(40305,28677,'95692'),(40306,28678,'95693'),(40307,28679,'95694'),(40308,28680,'95695'),(40309,28680,'95776'),(40310,28681,'95697'),(40311,28682,'95698'),(40312,28683,'95699'),(40313,28684,'95701'),(40314,28685,'95703'),(40315,28686,'95709'),(40316,28687,'95712'),(40317,28688,'95713'),(40318,28689,'95714'),(40319,28690,'95715'),(40320,28691,'95717'),(40321,28692,'95720'),(40322,28693,'95721'),(40323,28694,'95722'),(40324,28695,'95724'),(40325,28696,'95726'),(40326,28697,'95728'),(40327,28698,'95735'),(40328,28699,'95736'),(40329,28700,'95746'),(40330,28701,'95762'),(40331,28702,'95843'),(40332,28703,'95901'),(40333,28704,'95903'),(40334,28705,'95910'),(40335,28706,'95912'),(40336,28707,'95913'),(40337,28708,'95914'),(40338,28709,'95915'),(40339,28710,'95916'),(40340,28711,'95917'),(40341,28712,'95918'),(40342,28713,'95919'),(40343,28714,'95920'),(40344,28715,'95922'),(40345,28716,'95923'),(40346,28717,'95924'),(40347,28718,'95925'),(40348,28719,'95926'),(40349,28719,'95927'),(40350,28719,'95928'),(40351,28719,'95929'),(40352,28719,'95973'),(40353,28719,'95976'),(40354,28720,'95930'),(40355,28721,'95931'),(40356,28722,'95932'),(40357,28723,'95934'),(40358,28724,'95935'),(40359,28725,'95936'),(40360,28726,'95937'),(40361,28727,'95938'),(40362,28728,'95939'),(40363,28729,'95940'),(40364,28730,'95941'),(40365,28731,'95942'),(40366,28732,'95943'),(40367,28733,'95944'),(40368,28734,'95945'),(40369,28734,'95949'),(40370,28735,'95946'),(40371,28736,'95947'),(40372,28737,'95948'),(40373,28738,'95950'),(40374,28739,'95951'),(40375,28740,'95953'),(40376,28741,'95954'),(40377,28742,'95955'),(40378,28743,'95956'),(40379,28744,'95957'),(40380,28745,'95958'),(40381,28746,'95959'),(40382,28747,'95960'),(40383,28748,'95961'),(40384,28749,'95962'),(40385,28750,'95963'),(40386,28751,'95965'),(40387,28751,'95966'),(40388,28752,'95967'),(40389,28752,'95969'),(40390,28753,'95968'),(40391,28754,'95970'),(40392,28755,'95971'),(40393,28756,'95972'),(40394,28757,'95974'),(40395,28758,'95975'),(40396,28759,'95977'),(40397,28760,'95978'),(40398,28761,'95979'),(40399,28762,'95980'),(40400,28763,'95981'),(40401,28764,'95982'),(40402,28765,'95983'),(40403,28766,'95984'),(40404,28767,'95986'),(40405,28768,'95987'),(40406,28769,'95988'),(40407,28770,'95991'),(40408,28770,'95992'),(40409,28770,'95993'),(40410,28771,'96001'),(40411,28771,'96002'),(40412,28771,'96003'),(40413,28771,'96049'),(40414,28771,'96099'),(40415,28772,'96006'),(40416,28773,'96007'),(40417,28774,'96008'),(40418,28775,'96009'),(40419,28776,'96010'),(40420,28777,'96011'),(40421,28778,'96013'),(40422,28779,'96014'),(40423,28780,'96015'),(40424,28781,'96016'),(40425,28782,'96017'),(40426,28783,'96019'),(40427,28783,'96079'),(40428,28783,'96089'),(40429,28784,'96020'),(40430,28785,'96021'),(40431,28786,'96022'),(40432,28787,'96023'),(40433,28788,'96024'),(40434,28789,'96025'),(40435,28790,'96027'),(40436,28791,'96028'),(40437,28792,'96029'),(40438,28793,'96031'),(40439,28794,'96032'),(40440,28795,'96033'),(40441,28796,'96034'),(40442,28797,'96035'),(40443,28798,'96037'),(40444,28799,'96038'),(40445,28800,'96039'),(40446,28801,'96040'),(40447,28802,'96041'),(40448,28803,'96044'),(40449,28804,'96046'),(40450,28805,'96047'),(40451,28806,'96048'),(40452,28807,'96050'),(40453,28808,'96051'),(40454,28809,'96052'),(40455,28810,'96053'),(40456,28810,'96056'),(40457,28811,'96054'),(40458,28812,'96055'),(40459,28813,'96057'),(40460,28814,'96058'),(40461,28815,'96059'),(40462,28816,'96061'),(40463,28817,'96062'),(40464,28818,'96063'),(40465,28819,'96064'),(40466,28820,'96065'),(40467,28821,'96067'),(40468,28822,'96068'),(40469,28823,'96069'),(40470,28824,'96070'),(40471,28825,'96071'),(40472,28826,'96073'),(40473,28827,'96074'),(40474,28828,'96075'),(40475,28829,'96076'),(40476,28830,'96078'),(40477,28831,'96080'),(40478,28832,'96084'),(40479,28833,'96085'),(40480,28834,'96086'),(40481,28835,'96087'),(40482,28836,'96088'),(40483,28837,'96090'),(40484,28838,'96091'),(40485,28839,'96092'),(40486,28840,'96093'),(40487,28841,'96094'),(40488,28842,'96095'),(40489,28843,'96096'),(40490,28844,'96097'),(40491,28845,'96101'),(40492,28846,'96103'),(40493,28847,'96104'),(40494,28848,'96105'),(40495,28849,'96106'),(40496,28850,'96107'),(40497,28851,'96108'),(40498,28852,'96109'),(40499,28853,'96110'),(40500,28854,'96111'),(40501,28855,'96112'),(40502,28856,'96113'),(40503,28857,'96114'),(40504,28858,'96115'),(40505,28859,'96116'),(40506,28860,'96117'),(40507,28861,'96118'),(40508,28862,'96119'),(40509,28863,'96120'),(40510,28864,'96121'),(40511,28865,'96122'),(40512,28866,'96123'),(40513,28867,'96124'),(40514,28868,'96125'),(40515,28869,'96126'),(40516,28870,'96127'),(40517,28870,'96130'),(40518,28871,'96128'),(40519,28872,'96129'),(40520,28873,'96132'),(40521,28874,'96133'),(40522,28875,'96134'),(40523,28876,'96135'),(40524,28877,'96136'),(40525,28878,'96137'),(40526,28879,'96140'),(40527,28880,'96141'),(40528,28881,'96142'),(40529,28882,'96143'),(40530,28883,'96145'),(40531,28884,'96146'),(40532,28885,'96148'),(40533,28886,'96150'),(40534,28886,'96151'),(40535,28886,'96152'),(40536,28886,'96154'),(40537,28886,'96155'),(40538,28886,'96156'),(40539,28886,'96157'),(40540,28886,'96158'),(40541,28887,'96160'),(40542,28887,'96161'),(40543,28887,'96162'),(40544,28888,'96701'),(40545,28889,'96703'),(40546,28890,'96704'),(40547,28891,'96705'),(40548,28892,'96706'),(40549,28893,'96707'),(40550,28893,'96709'),(40551,28894,'96708'),(40552,28895,'96710'),(40553,28896,'96712'),(40554,28897,'96713'),(40555,28898,'96714'),(40556,28899,'96715'),(40557,28900,'96716'),(40558,28901,'96717'),(40559,28902,'96718'),(40560,28903,'96719'),(40561,28904,'96720'),(40562,28904,'96721'),(40563,28905,'96722'),(40564,28906,'96725'),(40565,28907,'96726'),(40566,28908,'96727'),(40567,28909,'96728'),(40568,28910,'96729'),(40569,28911,'96730'),(40570,28912,'96731'),(40571,28913,'96732'),(40572,28913,'96733'),(40573,28914,'96734'),(40574,28915,'96737'),(40575,28916,'96738'),(40576,28917,'96739'),(40577,28918,'96740'),(40578,28918,'96745'),(40579,28919,'96741'),(40580,28920,'96742'),(40581,28921,'96743'),(40582,28922,'96744'),(40583,28923,'96746'),(40584,28924,'96747'),(40585,28925,'96748'),(40586,28926,'96749'),(40587,28927,'96750'),(40588,28928,'96751'),(40589,28929,'96752'),(40590,28930,'96753'),(40591,28931,'96754'),(40592,28932,'96755'),(40593,28933,'96756'),(40594,28934,'96757'),(40595,28935,'96759'),(40596,28936,'96760'),(40597,28937,'96761'),(40598,28937,'96767'),(40599,28938,'96762'),(40600,28939,'96763'),(40601,28940,'96764'),(40602,28941,'96765'),(40603,28942,'96766'),(40604,28943,'96768'),(40605,28944,'96769'),(40606,28945,'96770'),(40607,28946,'96771'),(40608,28947,'96772'),(40609,28948,'96773'),(40610,28949,'96774'),(40611,28950,'96775'),(40612,28951,'96776'),(40613,28952,'96777'),(40614,28953,'96778'),(40615,28954,'96779'),(40616,28955,'96780'),(40617,28956,'96781'),(40618,28957,'96782'),(40619,28958,'96783'),(40620,28959,'96784'),(40621,28960,'96785'),(40622,28961,'96786'),(40623,28962,'96788'),(40624,28963,'96789'),(40625,28964,'96790'),(40626,28965,'96791'),(40627,28966,'96792'),(40628,28967,'96793'),(40629,28968,'96795'),(40630,28969,'96796'),(40631,28970,'96797'),(40632,28971,'96801'),(40633,28971,'96802'),(40634,28971,'96803'),(40635,28971,'96804'),(40636,28971,'96805'),(40637,28971,'96806'),(40638,28971,'96807'),(40639,28971,'96808'),(40640,28971,'96809'),(40641,28971,'96810'),(40642,28971,'96811'),(40643,28971,'96812'),(40644,28971,'96813'),(40645,28971,'96814'),(40646,28971,'96815'),(40647,28971,'96816'),(40648,28971,'96817'),(40649,28971,'96818'),(40650,28971,'96819'),(40651,28971,'96820'),(40652,28971,'96821'),(40653,28971,'96822'),(40654,28971,'96823'),(40655,28971,'96824'),(40656,28971,'96825'),(40657,28971,'96826'),(40658,28971,'96827'),(40659,28971,'96828'),(40660,28971,'96830'),(40661,28971,'96835'),(40662,28971,'96836'),(40663,28971,'96837'),(40664,28971,'96838'),(40665,28971,'96839'),(40666,28971,'96840'),(40667,28971,'96841'),(40668,28971,'96842'),(40669,28971,'96843'),(40670,28971,'96844'),(40671,28971,'96845'),(40672,28971,'96846'),(40673,28971,'96847'),(40674,28971,'96848'),(40675,28971,'96849'),(40676,28971,'96850'),(40677,28972,'96853'),(40678,28973,'96854'),(40679,28974,'96857'),(40680,28975,'96858'),(40681,28976,'96859'),(40682,28977,'96860'),(40683,28978,'96861'),(40684,28979,'96862'),(40685,28980,'96863'),(40686,28981,'96898'),(40687,28982,'96799'),(40688,28983,'96910'),(40689,28983,'96932'),(40690,28984,'96911'),(40691,28984,'96931'),(40692,28985,'96912'),(40693,28986,'96913'),(40694,28986,'96921'),(40695,28987,'96914'),(40696,28988,'96915'),(40697,28989,'96916'),(40698,28990,'96917'),(40699,28991,'96918'),(40700,28992,'96919'),(40701,28993,'96922'),(40702,28994,'96923'),(40703,28995,'96925'),(40704,28996,'96926'),(40705,28997,'96927'),(40706,28998,'96928'),(40707,28999,'96929'),(40708,29000,'96930'),(40709,29001,'96940'),(40710,29002,'96941'),(40711,29003,'96942'),(40712,29004,'96943'),(40713,29005,'96944'),(40714,29006,'96950'),(40715,29007,'96951'),(40716,29008,'96952'),(40717,29009,'96960'),(40718,29010,'96970'),(40719,29011,'97001'),(40720,29012,'97002'),(40721,29013,'97004'),(40722,29014,'97005'),(40723,29014,'97006'),(40724,29014,'97007'),(40725,29014,'97008'),(40726,29014,'97075'),(40727,29014,'97076'),(40728,29014,'97077'),(40729,29014,'97078'),(40730,29015,'97009'),(40731,29016,'97010'),(40732,29017,'97011'),(40733,29018,'97013'),(40734,29019,'97014'),(40735,29020,'97015'),(40736,29021,'97016'),(40737,29022,'97017'),(40738,29023,'97018'),(40739,29024,'97019'),(40740,29025,'97020'),(40741,29026,'97021'),(40742,29027,'97022'),(40743,29028,'97023'),(40744,29029,'97024'),(40745,29030,'97026'),(40746,29031,'97027'),(40747,29032,'97028'),(40748,29033,'97029'),(40749,29034,'97030'),(40750,29034,'97080'),(40751,29035,'97031'),(40752,29036,'97032'),(40753,29037,'97033'),(40754,29038,'97034'),(40755,29038,'97035'),(40756,29039,'97036'),(40757,29040,'97037'),(40758,29041,'97038'),(40759,29042,'97039'),(40760,29043,'97040'),(40761,29044,'97041'),(40762,29045,'97042'),(40763,29046,'97044'),(40764,29047,'97045'),(40765,29048,'97048'),(40766,29049,'97049'),(40767,29050,'97050'),(40768,29051,'97051'),(40769,29052,'97053'),(40770,29053,'97054'),(40771,29054,'97055'),(40772,29055,'97056'),(40773,29056,'97057'),(40774,29057,'97058'),(40775,29058,'97060'),(40776,29059,'97062'),(40777,29060,'97063'),(40778,29061,'97064'),(40779,29062,'97065'),(40780,29063,'97067'),(40781,29064,'97068'),(40782,29065,'97070'),(40783,29066,'97071'),(40784,29067,'97101'),(40785,29068,'97102'),(40786,29069,'97103'),(40787,29070,'97106'),(40788,29071,'97107'),(40789,29072,'97108'),(40790,29073,'97109'),(40791,29074,'97110'),(40792,29075,'97111'),(40793,29076,'97112'),(40794,29077,'97113'),(40795,29078,'97114'),(40796,29079,'97115'),(40797,29080,'97116'),(40798,29081,'97117'),(40799,29082,'97118'),(40800,29083,'97119'),(40801,29084,'97121'),(40802,29085,'97122'),(40803,29086,'97123'),(40804,29086,'97124'),(40805,29087,'97125'),(40806,29088,'97127'),(40807,29089,'97128'),(40808,29090,'97130'),(40809,29091,'97131'),(40810,29092,'97132'),(40811,29093,'97133'),(40812,29094,'97134'),(40813,29095,'97135'),(40814,29096,'97136'),(40815,29097,'97137'),(40816,29098,'97138'),(40817,29099,'97140'),(40818,29100,'97141'),(40819,29101,'97143'),(40820,29102,'97144'),(40821,29103,'97145'),(40822,29104,'97146'),(40823,29105,'97147'),(40824,29106,'97148'),(40825,29107,'97149'),(40826,29108,'97201'),(40827,29108,'97202'),(40828,29108,'97203'),(40829,29108,'97204'),(40830,29108,'97205'),(40831,29108,'97206'),(40832,29108,'97207'),(40833,29108,'97208'),(40834,29108,'97209'),(40835,29108,'97210'),(40836,29108,'97211'),(40837,29108,'97212'),(40838,29108,'97213'),(40839,29108,'97214'),(40840,29108,'97215'),(40841,29108,'97216'),(40842,29108,'97217'),(40843,29108,'97218'),(40844,29108,'97219'),(40845,29108,'97220'),(40846,29108,'97221'),(40847,29108,'97222'),(40848,29108,'97223'),(40849,29108,'97224'),(40850,29108,'97225'),(40851,29108,'97227'),(40852,29108,'97228'),(40853,29108,'97229'),(40854,29108,'97230'),(40855,29108,'97231'),(40856,29108,'97232'),(40857,29108,'97233'),(40858,29108,'97236'),(40859,29108,'97238'),(40860,29108,'97240'),(40861,29108,'97242'),(40862,29108,'97251'),(40863,29108,'97253'),(40864,29108,'97254'),(40865,29108,'97255'),(40866,29108,'97256'),(40867,29108,'97258'),(40868,29108,'97259'),(40869,29108,'97266'),(40870,29108,'97267'),(40871,29108,'97268'),(40872,29108,'97269'),(40873,29108,'97271'),(40874,29108,'97272'),(40875,29108,'97280'),(40876,29108,'97281'),(40877,29108,'97282'),(40878,29108,'97283'),(40879,29108,'97286'),(40880,29108,'97290'),(40881,29108,'97291'),(40882,29108,'97292'),(40883,29108,'97293'),(40884,29108,'97294'),(40885,29108,'97296'),(40886,29108,'97298'),(40887,29108,'97299'),(40888,29109,'97301'),(40889,29109,'97302'),(40890,29109,'97303'),(40891,29109,'97304'),(40892,29109,'97305'),(40893,29109,'97306'),(40894,29109,'97308'),(40895,29109,'97309'),(40896,29109,'97310'),(40897,29109,'97311'),(40898,29109,'97312'),(40899,29109,'97313'),(40900,29109,'97314'),(40901,29110,'97307'),(40902,29111,'97321'),(40903,29112,'97324'),(40904,29113,'97325'),(40905,29114,'97326'),(40906,29115,'97327'),(40907,29116,'97329'),(40908,29117,'97330'),(40909,29117,'97331'),(40910,29117,'97333'),(40911,29117,'97339'),(40912,29118,'97335'),(40913,29119,'97336'),(40914,29120,'97338'),(40915,29121,'97341'),(40916,29122,'97342'),(40917,29123,'97343'),(40918,29124,'97344'),(40919,29125,'97345'),(40920,29126,'97346'),(40921,29127,'97347'),(40922,29128,'97348'),(40923,29129,'97350'),(40924,29130,'97351'),(40925,29131,'97352'),(40926,29132,'97355'),(40927,29133,'97357'),(40928,29134,'97358'),(40929,29135,'97359'),(40930,29136,'97360'),(40931,29137,'97361'),(40932,29138,'97362'),(40933,29139,'97364'),(40934,29140,'97365'),(40935,29141,'97366'),(40936,29142,'97367'),(40937,29143,'97368'),(40938,29144,'97369'),(40939,29145,'97370'),(40940,29146,'97371'),(40941,29147,'97372'),(40942,29148,'97373'),(40943,29149,'97374'),(40944,29150,'97375'),(40945,29151,'97376'),(40946,29152,'97377'),(40947,29153,'97378'),(40948,29154,'97380'),(40949,29155,'97381'),(40950,29156,'97383'),(40951,29157,'97384'),(40952,29158,'97385'),(40953,29159,'97386'),(40954,29160,'97388'),(40955,29161,'97389'),(40956,29162,'97390'),(40957,29163,'97391'),(40958,29164,'97392'),(40959,29165,'97394'),(40960,29166,'97396'),(40961,29167,'97401'),(40962,29167,'97402'),(40963,29167,'97403'),(40964,29167,'97404'),(40965,29167,'97405'),(40966,29167,'97408'),(40967,29167,'97440'),(40968,29168,'97406'),(40969,29169,'97407'),(40970,29170,'97409'),(40971,29171,'97410'),(40972,29172,'97411'),(40973,29173,'97412'),(40974,29174,'97413'),(40975,29175,'97414'),(40976,29176,'97415'),(40977,29177,'97416'),(40978,29178,'97417'),(40979,29179,'97419'),(40980,29180,'97420'),(40981,29181,'97423'),(40982,29182,'97424'),(40983,29183,'97425'),(40984,29184,'97426'),(40985,29185,'97427'),(40986,29186,'97428'),(40987,29187,'97429'),(40988,29188,'97430'),(40989,29189,'97431'),(40990,29190,'97432'),(40991,29191,'97434'),(40992,29192,'97435'),(40993,29193,'97436'),(40994,29194,'97437'),(40995,29195,'97438'),(40996,29196,'97439'),(40997,29197,'97441'),(40998,29198,'97442'),(40999,29199,'97443'),(41000,29200,'97444'),(41001,29201,'97446'),(41002,29202,'97447'),(41003,29203,'97448'),(41004,29204,'97449'),(41005,29205,'97450'),(41006,29206,'97451'),(41007,29207,'97452'),(41008,29208,'97453'),(41009,29209,'97454'),(41010,29210,'97455'),(41011,29211,'97456'),(41012,29212,'97457'),(41013,29213,'97458'),(41014,29214,'97459'),(41015,29215,'97460'),(41016,29216,'97461'),(41017,29217,'97462'),(41018,29218,'97463'),(41019,29219,'97464'),(41020,29220,'97465'),(41021,29221,'97466'),(41022,29222,'97467'),(41023,29223,'97468'),(41024,29224,'97469'),(41025,29225,'97470'),(41026,29226,'97472'),(41027,29227,'97473'),(41028,29228,'97476'),(41029,29229,'97477'),(41030,29229,'97478'),(41031,29230,'97479'),(41032,29231,'97480'),(41033,29232,'97481'),(41034,29233,'97482'),(41035,29234,'97484'),(41036,29235,'97486'),(41037,29236,'97487'),(41038,29237,'97488'),(41039,29238,'97489'),(41040,29239,'97490'),(41041,29240,'97491'),(41042,29241,'97492'),(41043,29242,'97493'),(41044,29243,'97494'),(41045,29244,'97495'),(41046,29245,'97496'),(41047,29246,'97497'),(41048,29247,'97498'),(41049,29248,'97499'),(41050,29249,'97501'),(41051,29249,'97504'),(41052,29250,'97502'),(41053,29251,'97503'),(41054,29252,'97520'),(41055,29253,'97522'),(41056,29254,'97523'),(41057,29255,'97524'),(41058,29256,'97525'),(41059,29257,'97526'),(41060,29257,'97527'),(41061,29257,'97528'),(41062,29258,'97530'),(41063,29259,'97531'),(41064,29260,'97532'),(41065,29261,'97533'),(41066,29262,'97534'),(41067,29263,'97535'),(41068,29264,'97536'),(41069,29265,'97537'),(41070,29266,'97538'),(41071,29267,'97539'),(41072,29268,'97540'),(41073,29269,'97541'),(41074,29270,'97543'),(41075,29271,'97544'),(41076,29272,'97601'),(41077,29272,'97602'),(41078,29272,'97603'),(41079,29273,'97604'),(41080,29274,'97620'),(41081,29275,'97621'),(41082,29276,'97622'),(41083,29277,'97623'),(41084,29278,'97624'),(41085,29279,'97625'),(41086,29280,'97626'),(41087,29281,'97627'),(41088,29282,'97630'),(41089,29283,'97632'),(41090,29284,'97633'),(41091,29285,'97634'),(41092,29286,'97635'),(41093,29287,'97636'),(41094,29288,'97637'),(41095,29289,'97638'),(41096,29290,'97639'),(41097,29291,'97640'),(41098,29292,'97641'),(41099,29293,'97701'),(41100,29293,'97702'),(41101,29293,'97707'),(41102,29293,'97708'),(41103,29293,'97709'),(41104,29294,'97710'),(41105,29295,'97711'),(41106,29296,'97712'),(41107,29297,'97720'),(41108,29298,'97721'),(41109,29299,'97722'),(41110,29300,'97730'),(41111,29301,'97731'),(41112,29302,'97732'),(41113,29303,'97733'),(41114,29304,'97734'),(41115,29305,'97735'),(41116,29306,'97736'),(41117,29307,'97737'),(41118,29308,'97738'),(41119,29309,'97739'),(41120,29310,'97740'),(41121,29311,'97741'),(41122,29312,'97750'),(41123,29313,'97751'),(41124,29314,'97752'),(41125,29315,'97753'),(41126,29316,'97754'),(41127,29317,'97756'),(41128,29318,'97758'),(41129,29319,'97759'),(41130,29320,'97760'),(41131,29321,'97761'),(41132,29322,'97801'),(41133,29323,'97810'),(41134,29324,'97812'),(41135,29325,'97813'),(41136,29326,'97814'),(41137,29327,'97817'),(41138,29328,'97818'),(41139,29329,'97819'),(41140,29330,'97820'),(41141,29331,'97821'),(41142,29332,'97823'),(41143,29333,'97824'),(41144,29334,'97825'),(41145,29335,'97826'),(41146,29336,'97827'),(41147,29337,'97828'),(41148,29338,'97830'),(41149,29339,'97831'),(41150,29340,'97833'),(41151,29341,'97834'),(41152,29342,'97835'),(41153,29343,'97836'),(41154,29344,'97837'),(41155,29345,'97838'),(41156,29346,'97839'),(41157,29347,'97840'),(41158,29348,'97841'),(41159,29349,'97842'),(41160,29350,'97843'),(41161,29351,'97844'),(41162,29352,'97845'),(41163,29353,'97846'),(41164,29354,'97848'),(41165,29355,'97850'),(41166,29356,'97856'),(41167,29357,'97857'),(41168,29358,'97859'),(41169,29359,'97861'),(41170,29360,'97862'),(41171,29361,'97864'),(41172,29362,'97865'),(41173,29363,'97867'),(41174,29364,'97868'),(41175,29365,'97869'),(41176,29366,'97870'),(41177,29367,'97872'),(41178,29368,'97873'),(41179,29369,'97874'),(41180,29370,'97875'),(41181,29371,'97876'),(41182,29372,'97877'),(41183,29373,'97880'),(41184,29374,'97882'),(41185,29375,'97883'),(41186,29376,'97884'),(41187,29377,'97885'),(41188,29378,'97886'),(41189,29379,'97901'),(41190,29380,'97902'),(41191,29381,'97903'),(41192,29382,'97904'),(41193,29383,'97905'),(41194,29384,'97906'),(41195,29385,'97907'),(41196,29386,'97908'),(41197,29387,'97909'),(41198,29388,'97910'),(41199,29389,'97911'),(41200,29390,'97913'),(41201,29391,'97914'),(41202,29392,'97917'),(41203,29393,'97918'),(41204,29394,'97920'),(41205,29395,'98001'),(41206,29395,'98002'),(41207,29395,'98071'),(41208,29395,'98092'),(41209,29396,'98003'),(41210,29396,'98023'),(41211,29396,'98063'),(41212,29396,'98093'),(41213,29397,'98004'),(41214,29397,'98005'),(41215,29397,'98006'),(41216,29397,'98007'),(41217,29397,'98008'),(41218,29397,'98009'),(41219,29397,'98015'),(41220,29398,'98010'),(41221,29399,'98011'),(41222,29399,'98012'),(41223,29399,'98021'),(41224,29399,'98041'),(41225,29399,'98082'),(41226,29400,'98013'),(41227,29401,'98014'),(41228,29402,'98019'),(41229,29403,'98020'),(41230,29403,'98026'),(41231,29404,'98022'),(41232,29405,'98024'),(41233,29406,'98025'),(41234,29407,'98027'),(41235,29407,'98029'),(41236,29408,'98028'),(41237,29409,'98031'),(41238,29409,'98032'),(41239,29409,'98035'),(41240,29409,'98042'),(41241,29409,'98064'),(41242,29410,'98033'),(41243,29410,'98034'),(41244,29410,'98083'),(41245,29411,'98036'),(41246,29411,'98037'),(41247,29411,'98046'),(41248,29412,'98038'),(41249,29413,'98039'),(41250,29414,'98040'),(41251,29415,'98043'),(41252,29416,'98045'),(41253,29417,'98047'),(41254,29418,'98050'),(41255,29419,'98051'),(41256,29420,'98052'),(41257,29420,'98053'),(41258,29420,'98073'),(41259,29421,'98054'),(41260,29422,'98055'),(41261,29422,'98056'),(41262,29422,'98057'),(41263,29422,'98058'),(41264,29422,'98059'),(41265,29423,'98060'),(41266,29423,'98101'),(41267,29423,'98102'),(41268,29423,'98103'),(41269,29423,'98104'),(41270,29423,'98105'),(41271,29423,'98106'),(41272,29423,'98107'),(41273,29423,'98108'),(41274,29423,'98109'),(41275,29423,'98111'),(41276,29423,'98112'),(41277,29423,'98114'),(41278,29423,'98115'),(41279,29423,'98116'),(41280,29423,'98117'),(41281,29423,'98118'),(41282,29423,'98119'),(41283,29423,'98121'),(41284,29423,'98122'),(41285,29423,'98124'),(41286,29423,'98125'),(41287,29423,'98126'),(41288,29423,'98129'),(41289,29423,'98130'),(41290,29423,'98131'),(41291,29423,'98132'),(41292,29423,'98133'),(41293,29423,'98134'),(41294,29423,'98136'),(41295,29423,'98138'),(41296,29423,'98140'),(41297,29423,'98144'),(41298,29423,'98145'),(41299,29423,'98146'),(41300,29423,'98148'),(41301,29423,'98150'),(41302,29423,'98151'),(41303,29423,'98154'),(41304,29423,'98155'),(41305,29423,'98158'),(41306,29423,'98160'),(41307,29423,'98161'),(41308,29423,'98164'),(41309,29423,'98166'),(41310,29423,'98168'),(41311,29423,'98171'),(41312,29423,'98174'),(41313,29423,'98177'),(41314,29423,'98178'),(41315,29423,'98181'),(41316,29423,'98184'),(41317,29423,'98185'),(41318,29423,'98188'),(41319,29423,'98190'),(41320,29423,'98191'),(41321,29423,'98195'),(41322,29423,'98198'),(41323,29423,'98199'),(41324,29424,'98061'),(41325,29425,'98062'),(41326,29426,'98065'),(41327,29427,'98068'),(41328,29428,'98070'),(41329,29429,'98072'),(41330,29430,'98110'),(41331,29431,'98201'),(41332,29431,'98203'),(41333,29431,'98204'),(41334,29431,'98205'),(41335,29431,'98206'),(41336,29431,'98207'),(41337,29431,'98208'),(41338,29432,'98220'),(41339,29433,'98221'),(41340,29434,'98222'),(41341,29435,'98223'),(41342,29436,'98224'),(41343,29437,'98225'),(41344,29437,'98226'),(41345,29437,'98227'),(41346,29437,'98228'),(41347,29438,'98230'),(41348,29438,'98231'),(41349,29439,'98232'),(41350,29439,'98246'),(41351,29440,'98233'),(41352,29441,'98235'),(41353,29442,'98236'),(41354,29443,'98237'),(41355,29444,'98238'),(41356,29445,'98239'),(41357,29446,'98240'),(41358,29447,'98241'),(41359,29448,'98243'),(41360,29449,'98244'),(41361,29450,'98245'),(41362,29451,'98247'),(41363,29452,'98248'),(41364,29453,'98249'),(41365,29454,'98250'),(41366,29455,'98251'),(41367,29456,'98252'),(41368,29457,'98253'),(41369,29458,'98255'),(41370,29459,'98256'),(41371,29460,'98257'),(41372,29461,'98258'),(41373,29462,'98259'),(41374,29463,'98260'),(41375,29464,'98261'),(41376,29465,'98262'),(41377,29466,'98263'),(41378,29467,'98264'),(41379,29468,'98266'),(41380,29469,'98267'),(41381,29470,'98270'),(41382,29470,'98271'),(41383,29471,'98272'),(41384,29472,'98273'),(41385,29472,'98274'),(41386,29473,'98275'),(41387,29474,'98276'),(41388,29475,'98277'),(41389,29475,'98278'),(41390,29476,'98279'),(41391,29477,'98280'),(41392,29478,'98281'),(41393,29479,'98283'),(41394,29480,'98284'),(41395,29481,'98286'),(41396,29482,'98287'),(41397,29483,'98288'),(41398,29484,'98290'),(41399,29484,'98291'),(41400,29484,'98296'),(41401,29485,'98292'),(41402,29486,'98293'),(41403,29487,'98294'),(41404,29488,'98295'),(41405,29489,'98297'),(41406,29490,'98303'),(41407,29491,'98304'),(41408,29492,'98305'),(41409,29493,'98310'),(41410,29493,'98311'),(41411,29493,'98312'),(41412,29493,'98314'),(41413,29493,'98337'),(41414,29494,'98315'),(41415,29494,'98383'),(41416,29495,'98320'),(41417,29496,'98321'),(41418,29497,'98322'),(41419,29498,'98323'),(41420,29499,'98324'),(41421,29500,'98325'),(41422,29501,'98326'),(41423,29502,'98327'),(41424,29503,'98328'),(41425,29504,'98329'),(41426,29504,'98332'),(41427,29504,'98335'),(41428,29505,'98330'),(41429,29506,'98331'),(41430,29507,'98333'),(41431,29508,'98336'),(41432,29509,'98338'),(41433,29510,'98339'),(41434,29511,'98340'),(41435,29512,'98342'),(41436,29513,'98343'),(41437,29514,'98344'),(41438,29515,'98345'),(41439,29516,'98346'),(41440,29517,'98348'),(41441,29518,'98349'),(41442,29519,'98350'),(41443,29520,'98351'),(41444,29521,'98352'),(41445,29521,'98390'),(41446,29522,'98353'),(41447,29523,'98354'),(41448,29524,'98355'),(41449,29525,'98356'),(41450,29526,'98357'),(41451,29527,'98358'),(41452,29528,'98359'),(41453,29529,'98360'),(41454,29530,'98361'),(41455,29531,'98362'),(41456,29531,'98363'),(41457,29532,'98364'),(41458,29533,'98365'),(41459,29534,'98366'),(41460,29534,'98367'),(41461,29535,'98368'),(41462,29536,'98370'),(41463,29537,'98371'),(41464,29537,'98372'),(41465,29537,'98373'),(41466,29537,'98374'),(41467,29537,'98375'),(41468,29538,'98376'),(41469,29539,'98377'),(41470,29540,'98378'),(41471,29541,'98380'),(41472,29542,'98381'),(41473,29543,'98382'),(41474,29544,'98384'),(41475,29545,'98385'),(41476,29546,'98386'),(41477,29547,'98387'),(41478,29548,'98388'),(41479,29549,'98392'),(41480,29550,'98393'),(41481,29551,'98394'),(41482,29552,'98395'),(41483,29553,'98396'),(41484,29554,'98397'),(41485,29555,'98398'),(41486,29556,'98401'),(41487,29556,'98402'),(41488,29556,'98403'),(41489,29556,'98404'),(41490,29556,'98405'),(41491,29556,'98406'),(41492,29556,'98407'),(41493,29556,'98408'),(41494,29556,'98409'),(41495,29556,'98411'),(41496,29556,'98412'),(41497,29556,'98413'),(41498,29556,'98415'),(41499,29556,'98416'),(41500,29556,'98418'),(41501,29556,'98421'),(41502,29556,'98422'),(41503,29556,'98424'),(41504,29556,'98431'),(41505,29556,'98433'),(41506,29556,'98434'),(41507,29556,'98438'),(41508,29556,'98442'),(41509,29556,'98443'),(41510,29556,'98444'),(41511,29556,'98445'),(41512,29556,'98446'),(41513,29556,'98447'),(41514,29556,'98450'),(41515,29556,'98455'),(41516,29556,'98460'),(41517,29556,'98464'),(41518,29556,'98465'),(41519,29556,'98466'),(41520,29556,'98471'),(41521,29556,'98477'),(41522,29556,'98481'),(41523,29556,'98493'),(41524,29556,'98494'),(41525,29557,'98430'),(41526,29558,'98439'),(41527,29558,'98492'),(41528,29558,'98497'),(41529,29558,'98498'),(41530,29558,'98499'),(41531,29559,'98467'),(41532,29560,'98501'),(41533,29560,'98502'),(41534,29560,'98504'),(41535,29560,'98505'),(41536,29560,'98506'),(41537,29560,'98507'),(41538,29560,'98508'),(41539,29560,'98512'),(41540,29560,'98513'),(41541,29560,'98516'),(41542,29560,'98599'),(41543,29561,'98503'),(41544,29561,'98509'),(41545,29562,'98520'),(41546,29563,'98522'),(41547,29564,'98524'),(41548,29565,'98526'),(41549,29566,'98527'),(41550,29567,'98528'),(41551,29568,'98530'),(41552,29569,'98531'),(41553,29570,'98532'),(41554,29571,'98533'),(41555,29572,'98535'),(41556,29573,'98536'),(41557,29574,'98537'),(41558,29575,'98538'),(41559,29576,'98539'),(41560,29577,'98540'),(41561,29578,'98541'),(41562,29579,'98542'),(41563,29580,'98544'),(41564,29581,'98546'),(41565,29582,'98547'),(41566,29583,'98548'),(41567,29584,'98550'),(41568,29585,'98552'),(41569,29586,'98554'),(41570,29587,'98555'),(41571,29588,'98556'),(41572,29589,'98557'),(41573,29590,'98558'),(41574,29591,'98559'),(41575,29592,'98560'),(41576,29593,'98561'),(41577,29594,'98562'),(41578,29595,'98563'),(41579,29596,'98564'),(41580,29597,'98565'),(41581,29598,'98566'),(41582,29599,'98568'),(41583,29600,'98569'),(41584,29601,'98570'),(41585,29602,'98571'),(41586,29603,'98572'),(41587,29604,'98575'),(41588,29605,'98576'),(41589,29606,'98577'),(41590,29607,'98579'),(41591,29608,'98580'),(41592,29609,'98581'),(41593,29610,'98582'),(41594,29611,'98583'),(41595,29612,'98584'),(41596,29613,'98585'),(41597,29614,'98586'),(41598,29615,'98587'),(41599,29616,'98588'),(41600,29617,'98589'),(41601,29618,'98590'),(41602,29619,'98591'),(41603,29620,'98592'),(41604,29621,'98593'),(41605,29622,'98595'),(41606,29623,'98596'),(41607,29624,'98597'),(41608,29625,'98601'),(41609,29626,'98602'),(41610,29627,'98603'),(41611,29628,'98604'),(41612,29629,'98605'),(41613,29630,'98606'),(41614,29631,'98607'),(41615,29632,'98609'),(41616,29633,'98610'),(41617,29634,'98611'),(41618,29635,'98612'),(41619,29636,'98613'),(41620,29637,'98614'),(41621,29638,'98616'),(41622,29639,'98617'),(41623,29640,'98619'),(41624,29641,'98620'),(41625,29642,'98621'),(41626,29643,'98622'),(41627,29644,'98623'),(41628,29645,'98624'),(41629,29646,'98625'),(41630,29647,'98626'),(41631,29648,'98628'),(41632,29649,'98629'),(41633,29650,'98631'),(41634,29651,'98632'),(41635,29652,'98635'),(41636,29653,'98637'),(41637,29654,'98638'),(41638,29655,'98639'),(41639,29656,'98640'),(41640,29657,'98641'),(41641,29658,'98642'),(41642,29659,'98643'),(41643,29660,'98644'),(41644,29661,'98645'),(41645,29662,'98647'),(41646,29663,'98648'),(41647,29664,'98649'),(41648,29665,'98650'),(41649,29666,'98651'),(41650,29667,'98660'),(41651,29667,'98661'),(41652,29667,'98662'),(41653,29667,'98663'),(41654,29667,'98664'),(41655,29667,'98665'),(41656,29667,'98666'),(41657,29667,'98667'),(41658,29667,'98668'),(41659,29667,'98682'),(41660,29667,'98683'),(41661,29667,'98684'),(41662,29667,'98685'),(41663,29667,'98686'),(41664,29667,'98687'),(41665,29668,'98670'),(41666,29669,'98671'),(41667,29670,'98672'),(41668,29671,'98673'),(41669,29672,'98674'),(41670,29673,'98675'),(41671,29674,'98801'),(41672,29674,'98807'),(41673,29675,'98802'),(41674,29676,'98811'),(41675,29677,'98812'),(41676,29678,'98813'),(41677,29679,'98814'),(41678,29680,'98815'),(41679,29681,'98816'),(41680,29682,'98817'),(41681,29683,'98819'),(41682,29684,'98821'),(41683,29685,'98822'),(41684,29686,'98823'),(41685,29687,'98824'),(41686,29688,'98826'),(41687,29689,'98827'),(41688,29690,'98828'),(41689,29691,'98829'),(41690,29692,'98830'),(41691,29693,'98831'),(41692,29694,'98832'),(41693,29695,'98833'),(41694,29696,'98834'),(41695,29697,'98836'),(41696,29698,'98837'),(41697,29699,'98840'),(41698,29700,'98841'),(41699,29701,'98843'),(41700,29702,'98844'),(41701,29703,'98845'),(41702,29704,'98846'),(41703,29705,'98847'),(41704,29706,'98848'),(41705,29707,'98849'),(41706,29708,'98850'),(41707,29709,'98851'),(41708,29710,'98852'),(41709,29711,'98853'),(41710,29712,'98855'),(41711,29713,'98856'),(41712,29714,'98857'),(41713,29715,'98858'),(41714,29716,'98859'),(41715,29717,'98860'),(41716,29718,'98862'),(41717,29719,'98901'),(41718,29719,'98902'),(41719,29719,'98903'),(41720,29719,'98904'),(41721,29719,'98907'),(41722,29719,'98908'),(41723,29719,'98909'),(41724,29720,'98920'),(41725,29721,'98921'),(41726,29722,'98922'),(41727,29723,'98923'),(41728,29724,'98925'),(41729,29725,'98926'),(41730,29726,'98929'),(41731,29727,'98930'),(41732,29728,'98932'),(41733,29729,'98933'),(41734,29730,'98934'),(41735,29731,'98935'),(41736,29732,'98936'),(41737,29733,'98937'),(41738,29734,'98938'),(41739,29735,'98939'),(41740,29736,'98940'),(41741,29737,'98941'),(41742,29738,'98942'),(41743,29739,'98943'),(41744,29740,'98944'),(41745,29741,'98946'),(41746,29742,'98947'),(41747,29743,'98948'),(41748,29744,'98950'),(41749,29745,'98951'),(41750,29746,'98952'),(41751,29747,'98953'),(41752,29748,'99001'),(41753,29749,'99003'),(41754,29750,'99004'),(41755,29751,'99005'),(41756,29752,'99006'),(41757,29753,'99008'),(41758,29754,'99009'),(41759,29755,'99011'),(41760,29756,'99012'),(41761,29757,'99013'),(41762,29758,'99014'),(41763,29759,'99015'),(41764,29760,'99016'),(41765,29761,'99017'),(41766,29762,'99018'),(41767,29763,'99019'),(41768,29764,'99020'),(41769,29765,'99021'),(41770,29766,'99022'),(41771,29767,'99023'),(41772,29768,'99025'),(41773,29769,'99026'),(41774,29770,'99027'),(41775,29771,'99029'),(41776,29772,'99030'),(41777,29773,'99031'),(41778,29774,'99032'),(41779,29775,'99033'),(41780,29776,'99034'),(41781,29777,'99036'),(41782,29778,'99037'),(41783,29779,'99039'),(41784,29780,'99040'),(41785,29781,'99101'),(41786,29782,'99102'),(41787,29783,'99103'),(41788,29784,'99104'),(41789,29785,'99105'),(41790,29786,'99107'),(41791,29787,'99109'),(41792,29788,'99110'),(41793,29789,'99111'),(41794,29790,'99113'),(41795,29791,'99114'),(41796,29792,'99115'),(41797,29793,'99116'),(41798,29794,'99117'),(41799,29795,'99118'),(41800,29796,'99119'),(41801,29797,'99121'),(41802,29798,'99122'),(41803,29799,'99123'),(41804,29800,'99124'),(41805,29801,'99125'),(41806,29802,'99126'),(41807,29803,'99127'),(41808,29803,'99171'),(41809,29804,'99128'),(41810,29805,'99129'),(41811,29806,'99130'),(41812,29807,'99131'),(41813,29808,'99133'),(41814,29809,'99134'),(41815,29810,'99135'),(41816,29811,'99136'),(41817,29812,'99137'),(41818,29813,'99138'),(41819,29814,'99139'),(41820,29815,'99140'),(41821,29816,'99141'),(41822,29817,'99143'),(41823,29818,'99144'),(41824,29819,'99146'),(41825,29820,'99147'),(41826,29821,'99148'),(41827,29822,'99149'),(41828,29823,'99150'),(41829,29824,'99151'),(41830,29825,'99152'),(41831,29826,'99153'),(41832,29827,'99154'),(41833,29828,'99155'),(41834,29829,'99156'),(41835,29830,'99157'),(41836,29831,'99158'),(41837,29832,'99159'),(41838,29833,'99160'),(41839,29834,'99161'),(41840,29835,'99163'),(41841,29835,'99164'),(41842,29835,'99165'),(41843,29836,'99166'),(41844,29837,'99167'),(41845,29838,'99169'),(41846,29839,'99170'),(41847,29840,'99173'),(41848,29841,'99174'),(41849,29842,'99176'),(41850,29843,'99179'),(41851,29844,'99180'),(41852,29845,'99181'),(41853,29846,'99185'),(41854,29847,'99201'),(41855,29847,'99202'),(41856,29847,'99203'),(41857,29847,'99204'),(41858,29847,'99205'),(41859,29847,'99206'),(41860,29847,'99207'),(41861,29847,'99208'),(41862,29847,'99209'),(41863,29847,'99210'),(41864,29847,'99211'),(41865,29847,'99212'),(41866,29847,'99213'),(41867,29847,'99214'),(41868,29847,'99215'),(41869,29847,'99216'),(41870,29847,'99217'),(41871,29847,'99218'),(41872,29847,'99219'),(41873,29847,'99220'),(41874,29847,'99223'),(41875,29847,'99224'),(41876,29847,'99228'),(41877,29847,'99251'),(41878,29847,'99252'),(41879,29847,'99256'),(41880,29847,'99258'),(41881,29847,'99260'),(41882,29847,'99299'),(41883,29848,'99301'),(41884,29848,'99302'),(41885,29849,'99320'),(41886,29850,'99321'),(41887,29851,'99322'),(41888,29852,'99323'),(41889,29853,'99324'),(41890,29854,'99326'),(41891,29855,'99327'),(41892,29856,'99328'),(41893,29857,'99329'),(41894,29858,'99330'),(41895,29859,'99332'),(41896,29860,'99333'),(41897,29861,'99335'),(41898,29862,'99336'),(41899,29862,'99337'),(41900,29862,'99338'),(41901,29863,'99341'),(41902,29864,'99343'),(41903,29865,'99344'),(41904,29866,'99345'),(41905,29867,'99346'),(41906,29868,'99347'),(41907,29869,'99348'),(41908,29870,'99349'),(41909,29871,'99350'),(41910,29872,'99352'),(41911,29873,'99353'),(41912,29874,'99356'),(41913,29875,'99357'),(41914,29876,'99359'),(41915,29877,'99360'),(41916,29878,'99361'),(41917,29879,'99362'),(41918,29880,'99363'),(41919,29881,'99371'),(41920,29882,'99401'),(41921,29883,'99402'),(41922,29884,'99403'),(41923,29885,'99501'),(41924,29885,'99502'),(41925,29885,'99503'),(41926,29885,'99504'),(41927,29885,'99507'),(41928,29885,'99508'),(41929,29885,'99509'),(41930,29885,'99510'),(41931,29885,'99511'),(41932,29885,'99512'),(41933,29885,'99513'),(41934,29885,'99514'),(41935,29885,'99515'),(41936,29885,'99516'),(41937,29885,'99517'),(41938,29885,'99518'),(41939,29885,'99519'),(41940,29885,'99520'),(41941,29885,'99521'),(41942,29885,'99522'),(41943,29885,'99523'),(41944,29885,'99524'),(41945,29885,'99599'),(41946,29885,'99695'),(41947,29886,'99505'),(41948,29887,'99506'),(41949,29888,'99540'),(41950,29889,'99546'),(41951,29890,'99547'),(41952,29891,'99548'),(41953,29892,'99549'),(41954,29893,'99550'),(41955,29894,'99551'),(41956,29895,'99552'),(41957,29896,'99553'),(41958,29897,'99554'),(41959,29898,'99555'),(41960,29899,'99556'),(41961,29900,'99557'),(41962,29901,'99558'),(41963,29902,'99559'),(41964,29903,'99561'),(41965,29904,'99563'),(41966,29905,'99564'),(41967,29906,'99565'),(41968,29907,'99566'),(41969,29908,'99567'),(41970,29909,'99568'),(41971,29910,'99569'),(41972,29911,'99571'),(41973,29912,'99572'),(41974,29913,'99573'),(41975,29914,'99574'),(41976,29915,'99575'),(41977,29916,'99576'),(41978,29917,'99577'),(41979,29918,'99578'),(41980,29919,'99579'),(41981,29920,'99580'),(41982,29921,'99581'),(41983,29922,'99583'),(41984,29923,'99584'),(41985,29924,'99585'),(41986,29925,'99586'),(41987,29926,'99587'),(41988,29927,'99588'),(41989,29928,'99589'),(41990,29929,'99590'),(41991,29930,'99591'),(41992,29931,'99602'),(41993,29932,'99603'),(41994,29933,'99604'),(41995,29934,'99605'),(41996,29935,'99606'),(41997,29936,'99607'),(41998,29937,'99608'),(41999,29938,'99609'),(42000,29939,'99610'),(42001,29940,'99611'),(42002,29941,'99612'),(42003,29942,'99613'),(42004,29943,'99614'),(42005,29944,'99615'),(42006,29944,'99619'),(42007,29944,'99697'),(42008,29945,'99620'),(42009,29946,'99621'),(42010,29947,'99622'),(42011,29948,'99624'),(42012,29949,'99625'),(42013,29950,'99626'),(42014,29951,'99627'),(42015,29952,'99628'),(42016,29953,'99630'),(42017,29954,'99631'),(42018,29955,'99632'),(42019,29956,'99633'),(42020,29957,'99634'),(42021,29958,'99635'),(42022,29959,'99636'),(42023,29960,'99637'),(42024,29961,'99638'),(42025,29962,'99639'),(42026,29963,'99640'),(42027,29964,'99641'),(42028,29965,'99643'),(42029,29966,'99644'),(42030,29967,'99645'),(42031,29968,'99647'),(42032,29969,'99648'),(42033,29970,'99649'),(42034,29971,'99650'),(42035,29972,'99651'),(42036,29973,'99652'),(42037,29974,'99653'),(42038,29975,'99654'),(42039,29975,'99687'),(42040,29976,'99655'),(42041,29977,'99656'),(42042,29978,'99657'),(42043,29979,'99658'),(42044,29980,'99659'),(42045,29981,'99660'),(42046,29982,'99661'),(42047,29983,'99662'),(42048,29984,'99663'),(42049,29985,'99664'),(42050,29986,'99665'),(42051,29987,'99666'),(42052,29988,'99667'),(42053,29989,'99668'),(42054,29990,'99669'),(42055,29991,'99670'),(42056,29992,'99671'),(42057,29993,'99672'),(42058,29994,'99674'),(42059,29995,'99675'),(42060,29996,'99676'),(42061,29997,'99677'),(42062,29998,'99678'),(42063,29999,'99679'),(42064,30000,'99680'),(42065,30001,'99681'),(42066,30002,'99682'),(42067,30003,'99683'),(42068,30004,'99684'),(42069,30005,'99685'),(42070,30006,'99686'),(42071,30007,'99688'),(42072,30008,'99689'),(42073,30009,'99690'),(42074,30010,'99691'),(42075,30011,'99692'),(42076,30012,'99693'),(42077,30013,'99694'),(42078,30014,'99701'),(42079,30014,'99706'),(42080,30014,'99707'),(42081,30014,'99708'),(42082,30014,'99709'),(42083,30014,'99710'),(42084,30014,'99711'),(42085,30014,'99712'),(42086,30014,'99775'),(42087,30014,'99790'),(42088,30015,'99702'),(42089,30016,'99703'),(42090,30017,'99704'),(42091,30018,'99705'),(42092,30019,'99714'),(42093,30020,'99716'),(42094,30021,'99720'),(42095,30022,'99721'),(42096,30023,'99722'),(42097,30024,'99723'),(42098,30025,'99724'),(42099,30026,'99725'),(42100,30027,'99726'),(42101,30028,'99727'),(42102,30029,'99729'),(42103,30030,'99730'),(42104,30031,'99732'),(42105,30032,'99733'),(42106,30033,'99734'),(42107,30034,'99736'),(42108,30035,'99737'),(42109,30036,'99738'),(42110,30037,'99739'),(42111,30038,'99740'),(42112,30039,'99741'),(42113,30040,'99742'),(42114,30041,'99743'),(42115,30042,'99744'),(42116,30043,'99745'),(42117,30044,'99746'),(42118,30045,'99747'),(42119,30046,'99748'),(42120,30047,'99749'),(42121,30048,'99750'),(42122,30049,'99751'),(42123,30050,'99752'),(42124,30051,'99753'),(42125,30052,'99754'),(42126,30053,'99755'),(42127,30054,'99756'),(42128,30055,'99757'),(42129,30056,'99758'),(42130,30057,'99759'),(42131,30058,'99760'),(42132,30059,'99761'),(42133,30060,'99762'),(42134,30061,'99763'),(42135,30062,'99764'),(42136,30063,'99765'),(42137,30064,'99766'),(42138,30065,'99767'),(42139,30066,'99768'),(42140,30067,'99769'),(42141,30068,'99770'),(42142,30069,'99771'),(42143,30070,'99772'),(42144,30071,'99773'),(42145,30072,'99774'),(42146,30073,'99776'),(42147,30074,'99777'),(42148,30075,'99778'),(42149,30076,'99779'),(42150,30077,'99780'),(42151,30078,'99781'),(42152,30079,'99782'),(42153,30080,'99783'),(42154,30081,'99784'),(42155,30082,'99785'),(42156,30083,'99786'),(42157,30084,'99788'),(42158,30085,'99789'),(42159,30086,'99791'),(42160,30087,'99801'),(42161,30087,'99802'),(42162,30087,'99803'),(42163,30087,'99811'),(42164,30087,'99850'),(42165,30088,'99820'),(42166,30089,'99821'),(42167,30090,'99824'),(42168,30091,'99825'),(42169,30092,'99826'),(42170,30093,'99827'),(42171,30094,'99829'),(42172,30095,'99830'),(42173,30096,'99832'),(42174,30097,'99833'),(42175,30098,'99835'),(42176,30099,'99836'),(42177,30100,'99840'),(42178,30101,'99841'),(42179,30102,'99901'),(42180,30102,'99950'),(42181,30103,'99903'),(42182,30104,'99918'),(42183,30105,'99919'),(42184,30106,'99921'),(42185,30107,'99922'),(42186,30108,'99923'),(42187,30109,'99925'),(42188,30110,'99926'),(42189,30111,'99927'),(42190,30112,'99928'),(42191,30113,'99929'),(42224,30114,'Z0001'),(42240,30158,'300018'),(42241,30160,'1011'),(42242,30162,'89898888888888888888'),(42243,30175,'500035'),(42244,30175,'500061'),(42245,26947,'85286'),(42246,30177,'44321C'),(42247,30178,'002615'),(42248,10258,'33558'),(42249,30180,'5440'),(42250,30183,'9851'),(42251,30186,'08561'),(42252,30187,'61005'),(42253,30188,'M5H 2G4'),(42254,30189,'100875'),(42255,30192,'20000'),(42256,30193,'61300'),(42257,30194,'A1B2C3'),(42259,30195,'10330'),(42260,30158,'390011'),(42261,30197,'61300'),(42262,30198,'61300'),(42263,30199,'61300'),(42269,30203,'390009'),(42270,30205,'390010'),(42271,30206,'390019'),(42272,30207,'388120'),(42273,30208,'391244'),(42274,30209,'391101'); /*!40000 ALTER TABLE `look_postal` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `mkt_lk` -- LOCK TABLES `mkt_lk` WRITE; /*!40000 ALTER TABLE `mkt_lk` DISABLE KEYS */; INSERT INTO `mkt_lk` VALUES (51,'Company Track/Block','test desc21212',2,NULL,'2025-03-20 04:32:31',NULL),(4,'Req Req Type','check data here',4,NULL,'2025-03-20 04:32:31',NULL),(5,'Req Track','sdfsdfsdf11',3,NULL,'2025-03-20 04:32:31',NULL),(6,'Work Flow','test',5,NULL,'2025-03-20 04:32:31',3),(7,'Req Source','pow',6,NULL,'2025-03-20 04:32:31',NULL),(8,'Corp Source','review value here',7,NULL,'2025-04-19 05:18:30',NULL),(9,'Response',NULL,8,NULL,'2025-03-20 04:32:31',2),(1,'Status',NULL,9,NULL,'2025-03-20 04:32:31',NULL),(10,'Company Req Typegrrtg5rttf hgfh','Company req desc 123sdf',1,NULL,'2025-03-20 04:32:31',NULL); /*!40000 ALTER TABLE `mkt_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `prosp_lk` -- LOCK TABLES `prosp_lk` WRITE; /*!40000 ALTER TABLE `prosp_lk` DISABLE KEYS */; INSERT INTO `prosp_lk` VALUES (1,'Tab5','Tab5 Description',2,NULL,'2025-09-23 04:49:15',NULL),(2,'Tab2 new order 1','Tab2 Description',6,NULL,'2025-09-23 04:49:16',NULL),(3,'Tab1 new order two','Tab1 Description',5,NULL,'2025-09-23 04:49:16',7),(4,'Tab4','Tab4 Description',1,NULL,'2025-09-23 04:49:16',NULL),(5,'Test 111 asd','Test is it readonly 11 4545',NULL,NULL,'2025-10-09 03:44:15',NULL),(6,'Tab6 test','Tab6 Description',3,NULL,'2025-09-23 04:49:16',2); /*!40000 ALTER TABLE `prosp_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:00 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `feature_lk_val` -- LOCK TABLES `feature_lk_val` WRITE; /*!40000 ALTER TABLE `feature_lk_val` DISABLE KEYS */; INSERT INTO `feature_lk_val` VALUES (1,1,'Road Rd',NULL,1,NULL,NULL,NULL),(2,1,'Lane Ln',NULL,2,NULL,NULL,NULL),(3,1,'Avenue Ave',NULL,3,NULL,NULL,NULL),(4,1,'Drive Dr',NULL,4,NULL,NULL,'2021-04-24 04:44:54'),(5,1,'Boulevard Blvd',NULL,5,NULL,NULL,NULL),(6,1,'Street','street data',NULL,NULL,NULL,'2021-04-24 04:53:01'),(7,1,'Park Pk','ertertertert',NULL,NULL,NULL,'2021-04-24 04:37:45'),(8,1,'Circle',NULL,NULL,NULL,NULL,NULL),(11,2,'Bldg',NULL,1,NULL,NULL,NULL),(12,2,'Apt',NULL,2,NULL,NULL,NULL),(13,2,'Suite',NULL,3,NULL,NULL,NULL),(14,2,'Condo',NULL,4,NULL,NULL,NULL),(15,2,'Unit',NULL,5,NULL,NULL,NULL),(16,2,'Flat',NULL,6,NULL,NULL,NULL),(17,2,'Banglow',NULL,7,NULL,NULL,NULL),(18,3,'doc',NULL,1,NULL,NULL,NULL),(19,3,'pdf',NULL,2,NULL,NULL,NULL),(20,3,'gif',NULL,3,NULL,NULL,NULL),(21,3,'png',NULL,4,NULL,NULL,NULL),(22,4,'Buying',NULL,1,NULL,NULL,NULL),(23,4,'Developing',NULL,2,NULL,NULL,NULL),(24,4,'SEO',NULL,3,NULL,NULL,NULL),(25,3,'docx',NULL,5,NULL,NULL,NULL),(31,4,'others',NULL,4,NULL,NULL,NULL),(32,2,'Park',NULL,10,NULL,NULL,'2025-08-15 03:26:24'),(33,3,'m4v',NULL,6,NULL,NULL,NULL),(34,2,'Drive Dr data',NULL,9,NULL,NULL,NULL),(37,2,'Street',NULL,8,NULL,NULL,NULL),(38,1,'Place',NULL,NULL,NULL,NULL,'2021-12-13 09:55:33'),(43,3,'jpg',NULL,7,NULL,NULL,NULL),(44,5,'pdf',NULL,1,NULL,NULL,NULL),(45,5,'jpg',NULL,2,NULL,NULL,NULL),(46,5,'png',NULL,3,NULL,NULL,NULL),(47,1,'Society',NULL,6,NULL,NULL,NULL),(48,6,'US','🇺🇸',NULL,NULL,NULL,NULL),(49,6,'IN','🇮🇳',NULL,NULL,NULL,NULL),(50,6,'UK','🇬🇧',NULL,NULL,NULL,NULL),(51,2,'Complex',NULL,NULL,NULL,NULL,NULL),(52,1,'Sequence',NULL,NULL,NULL,NULL,'2025-08-11 05:28:14'),(53,1,'Colony',NULL,NULL,NULL,NULL,'2025-08-13 06:19:06'),(54,1,'Falyu',NULL,NULL,NULL,NULL,'2025-08-15 03:16:57'),(55,2,'Area',NULL,NULL,NULL,NULL,'2025-08-15 03:26:39'); /*!40000 ALTER TABLE `feature_lk_val` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:01 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `tax_lk` -- LOCK TABLES `tax_lk` WRITE; /*!40000 ALTER TABLE `tax_lk` DISABLE KEYS */; INSERT INTO `tax_lk` VALUES (1,'Department','hhhhhhhh',2,NULL,'2023-02-11 09:03:45',NULL),(2,'Benefits',NULL,1,NULL,'2023-02-11 09:03:46',NULL); /*!40000 ALTER TABLE `tax_lk` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:01 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `tax_lk_val` -- LOCK TABLES `tax_lk_val` WRITE; /*!40000 ALTER TABLE `tax_lk_val` DISABLE KEYS */; INSERT INTO `tax_lk_val` VALUES (1,1,'SDI','testttt',1,NULL,NULL,'2021-04-28 07:15:48'),(2,2,'ETT',NULL,2,NULL,NULL,NULL),(3,3,'UI taxes',NULL,3,NULL,NULL,NULL),(4,4,'Withholding',NULL,4,NULL,NULL,NULL),(5,1,'TDI','test desc',2,NULL,NULL,'2021-04-28 07:15:48'),(6,1,'FDI','test esc',4,NULL,NULL,'2021-04-28 07:15:48'); /*!40000 ALTER TABLE `tax_lk_val` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:01 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_menu_pvt` -- LOCK TABLES `look_menu_pvt` WRITE; /*!40000 ALTER TABLE `look_menu_pvt` DISABLE KEYS */; INSERT INTO `look_menu_pvt` VALUES (1,'Home','Main Menu','home.php',NULL,NULL,1,NULL,NULL,NULL),(3,'Company',NULL,'comp_manage.php',NULL,NULL,2,NULL,NULL,NULL),(4,'Employee',NULL,'emp_manage_wi.php',NULL,NULL,4,NULL,NULL,NULL),(5,'Bank',NULL,'bank_account.php',NULL,NULL,7,NULL,NULL,NULL),(6,'Taxes',NULL,'taxes_new.php',NULL,NULL,10,NULL,NULL,NULL),(7,'Hours',NULL,'hrs_add_hours.php',NULL,NULL,11,NULL,NULL,NULL),(8,'Invoice',NULL,'inv_view.php',NULL,NULL,12,NULL,NULL,NULL),(9,'Sales',NULL,'sales_hierarchy.php',NULL,NULL,13,NULL,NULL,NULL),(10,'Market',NULL,'mkt_mymkt.php',NULL,NULL,14,NULL,NULL,NULL),(11,'Agile',NULL,NULL,NULL,NULL,15,NULL,NULL,NULL),(12,'Legal',NULL,'legal_add_imm.php',NULL,NULL,16,NULL,NULL,NULL),(13,'HR Policies',NULL,'hr_policies.php','show',NULL,6,103,NULL,NULL),(15,'Profile',NULL,'hm_profile.php','show',NULL,1,1,NULL,NULL),(17,'My Quotes',NULL,'IT_my_quotes.php','show',NULL,13,11,NULL,NULL),(18,'Feature',NULL,'home_feature.php',NULL,NULL,17,1,NULL,NULL),(21,'Login History',NULL,'home_login_history.php',NULL,NULL,19,1,NULL,NULL),(22,'My Login History',NULL,'home_my_login_history.php',NULL,NULL,20,1,NULL,NULL),(23,'Log Out',NULL,'home_logout.php','show',NULL,21,1,NULL,NULL),(24,'Attachment',NULL,'storage_attachment.php','show',NULL,1,124,NULL,NULL),(25,'My Attachment',NULL,'storage_my_attachment.php','show',NULL,2,124,NULL,NULL),(27,'Listing',NULL,'comp_manage.php',NULL,NULL,1,3,NULL,NULL),(29,'Engage_HM',NULL,'comp_engage.php',NULL,NULL,3,3,NULL,NULL),(35,'Listing',NULL,'emp_listing.php',NULL,NULL,1,4,NULL,NULL),(36,'Access',NULL,'emp_access.php',NULL,NULL,9,4,NULL,NULL),(38,'Listing',NULL,'bank_account.php',NULL,NULL,1,5,NULL,NULL),(39,'Bank Record',NULL,'bank_record.php',NULL,NULL,4,5,NULL,NULL),(42,'Calculator',NULL,'taxes_calci.php',NULL,NULL,1,6,NULL,NULL),(45,'My Listing',NULL,'hrs_my_listing.php','show',NULL,2,7,NULL,NULL),(46,'Listing',NULL,'hrs_listing.php',NULL,NULL,1,7,NULL,NULL),(52,'Inventory',NULL,'invn_values.php',NULL,NULL,9,NULL,NULL,NULL),(53,'Inventory',NULL,'inventory.php',NULL,NULL,1,52,NULL,NULL),(54,'Inv Template',NULL,'inv.php',NULL,NULL,1,8,NULL,NULL),(55,'Inv - PO',NULL,'inv_po.php',NULL,NULL,6,8,NULL,NULL),(57,'Recruite',NULL,'sales_consult.php',NULL,NULL,120,9,NULL,NULL),(58,'Consult Log',NULL,'sales_consult_log.php',NULL,NULL,125,9,NULL,NULL),(59,'Bench',NULL,'sales_bench.php',NULL,NULL,100,9,NULL,NULL),(60,'Resources',NULL,'sales_emptag.php',NULL,NULL,20,9,NULL,NULL),(61,'Leads',NULL,'sales_leads.php',NULL,NULL,1,9,NULL,NULL),(62,'Reqs',NULL,'sales_add_prosp_open.php',NULL,NULL,140,9,NULL,NULL),(63,'Reqs Log',NULL,'sales_prosp_open_log.php',NULL,NULL,150,9,NULL,NULL),(64,'Conversion',NULL,'sales_consult_convert.php',NULL,NULL,12,9,NULL,NULL),(65,'Hierarchy',NULL,'sales_hierarchy.php',NULL,NULL,13,9,NULL,NULL),(69,'Assist',NULL,'mkt_assist.php',NULL,NULL,4,10,NULL,NULL),(70,'Cumulative',NULL,'mkt_cumulative.php',NULL,NULL,6,10,NULL,NULL),(71,'Incentives',NULL,'mkt_incentives.php',NULL,NULL,7,10,NULL,NULL),(72,'Apex',NULL,'IT_projects.php',NULL,NULL,1,11,NULL,NULL),(77,'Kundali',NULL,'IT_kundali.php','show',NULL,18,11,NULL,NULL),(80,'Cubes',NULL,'IT_cubes.php',NULL,NULL,5,11,NULL,NULL),(82,'My Legal',NULL,'legal_immi_my.php',NULL,NULL,5,12,NULL,NULL),(83,'Dependent',NULL,'legal_dependent.php',NULL,NULL,6,12,NULL,NULL),(84,'Immigration Section',NULL,'legal_imm_section.php',NULL,NULL,7,12,NULL,NULL),(85,'Excel Template',NULL,'legal_excel_template.php',NULL,NULL,8,12,NULL,NULL),(86,'Query',NULL,'legal_query.php',NULL,NULL,9,12,NULL,NULL),(87,'RFE',NULL,'legal_receipt_query.php',NULL,NULL,11,12,NULL,NULL),(88,'Query Report',NULL,'legal_query_report.php',NULL,NULL,13,12,NULL,NULL),(92,'Workflow',NULL,'IT_workflow.php','show',NULL,22,11,NULL,NULL),(99,'My assist',NULL,'mkt_assist_my.php',NULL,NULL,5,10,NULL,NULL),(100,'My Leads',NULL,'sales_leads_my.php','show',NULL,2,9,NULL,NULL),(101,'Warehouse',NULL,'innv_values.php','show',NULL,2,52,NULL,NULL),(103,'HR',NULL,'hr_policies.php',NULL,NULL,3,NULL,NULL,NULL),(104,'Config',NULL,'feature_grp.php',NULL,NULL,17,NULL,NULL,NULL),(105,'Feature Group',NULL,'feature_grp.php',NULL,NULL,1,104,NULL,NULL),(106,'Vacation',NULL,'under_con.php',NULL,NULL,8,4,NULL,NULL),(107,'Daily Meeting',NULL,'hr_daily_meeting.php',NULL,NULL,1,103,NULL,NULL),(111,'Virtual Leads',NULL,'sales_leads_vir.php',NULL,NULL,4,9,NULL,NULL),(112,'Network',NULL,'net_lg.php',NULL,NULL,5,NULL,NULL,NULL),(113,'Domain Forward',NULL,'net_fwd_domain.php',NULL,NULL,3,112,NULL,NULL),(116,'Tutorial',NULL,'IT_training.php','show',NULL,25,11,NULL,NULL),(117,'Values',NULL,'IT_values.php',NULL,NULL,21,11,NULL,NULL),(118,'Profile Pranali',NULL,'del_hm_profile_pranali.php','show',NULL,12,1,NULL,NULL),(119,'Logs',NULL,'net_ssl_logs.php',NULL,NULL,1,112,NULL,NULL),(120,'Menu Header',NULL,'config_header.php',NULL,NULL,7,104,NULL,NULL),(122,'Review Values',NULL,'hr_review_values.php',NULL,NULL,8,103,NULL,NULL),(123,'Review Tags',NULL,'hr_review_tags.php',NULL,NULL,9,103,NULL,NULL),(124,'Storage',NULL,'Under Development',NULL,NULL,18,NULL,NULL,NULL),(125,'Values',NULL,'storage_values.php',NULL,NULL,98,124,NULL,NULL),(126,'Values',NULL,'mkt_values.php',NULL,NULL,9,10,NULL,NULL),(127,'Values',NULL,'sales_values.php','show',NULL,9,9,NULL,NULL),(128,'Recruite Tags',NULL,'hr_recruite_tags.php',NULL,NULL,12,103,NULL,NULL),(130,'Labels',NULL,'IT_labels.php',NULL,NULL,24,11,NULL,NULL),(139,'Associate',NULL,'sales_colleague.php','show',NULL,3,9,NULL,NULL),(142,'Audit',NULL,'sales_audit.php',NULL,NULL,10,9,NULL,NULL),(147,'Register',NULL,'taxes_reg.php',NULL,NULL,2,6,NULL,NULL),(148,'Checksum',NULL,'config_checksum.php',NULL,NULL,6,104,NULL,NULL),(149,'Coping',NULL,'IT_burning.php',NULL,NULL,10,11,NULL,NULL),(150,'Quotes',NULL,'IT_quotes.php',NULL,NULL,12,11,NULL,NULL),(151,'My Coping',NULL,'IT_my_burning.php','show',NULL,11,11,NULL,NULL),(152,'Audit',NULL,'IT_audit.php',NULL,NULL,26,11,NULL,NULL),(154,'Access',NULL,'IT_access.php',NULL,NULL,16,11,NULL,NULL),(155,'My Access',NULL,'IT_my_access.php','show',NULL,17,11,NULL,NULL),(157,'Audit',NULL,'feature_grp_log.php',NULL,NULL,10,104,NULL,NULL),(158,'Menu',NULL,'config_menu.php',NULL,NULL,3,104,NULL,NULL),(159,'Menu Feature',NULL,'config_menu_feature.php',NULL,NULL,4,104,NULL,NULL),(160,'Addresses Old',NULL,'del_config_addresses.php',NULL,NULL,8,104,NULL,NULL),(161,'Values',NULL,'config_values.php',NULL,NULL,9,104,NULL,NULL),(162,'Global Audit',NULL,'config_global_audit.php',NULL,NULL,11,104,NULL,NULL),(164,'Glacier',NULL,'IT_glacier.php',NULL,NULL,2,11,NULL,NULL),(165,'My Glacier',NULL,'IT_my_glacier.php','show',NULL,3,11,NULL,NULL),(166,'Glacier Virtual',NULL,'IT_virtual_glacier.php',NULL,NULL,4,11,NULL,NULL),(167,'My Cubes',NULL,'IT_my_cubes.php','show',NULL,6,11,NULL,NULL),(168,'Cubes Virtual',NULL,'IT_virtual_cubes.php',NULL,NULL,7,11,NULL,NULL),(169,'Credence',NULL,'IT_credence.php',NULL,NULL,8,11,NULL,NULL),(170,'My Credence',NULL,'IT_my_credence.php','show',NULL,9,11,NULL,NULL),(174,'Products',NULL,'comp_prdt.php',NULL,NULL,2,3,NULL,NULL),(175,'My Access',NULL,'emp_myaccess.php',NULL,NULL,10,4,NULL,NULL),(176,'Packages',NULL,'emp_packages.php',NULL,NULL,11,4,NULL,NULL),(177,'Schedule',NULL,'emp_schedule.php',NULL,NULL,3,4,NULL,NULL),(178,'Values',NULL,'emp_values.php',NULL,NULL,12,4,NULL,NULL),(180,'My Paystub',NULL,'hr_earning_statement.php',NULL,NULL,14,103,NULL,NULL),(181,'Paystub',NULL,'under_con.php',NULL,NULL,13,103,NULL,NULL),(182,'Tags',NULL,'storage_tags.php',NULL,NULL,8,124,NULL,NULL),(185,'Employment',NULL,'emp_employment.php',NULL,NULL,2,4,NULL,NULL),(187,'Query2',NULL,'legal_query2.php',NULL,NULL,10,12,NULL,NULL),(189,'RFE2',NULL,'legal_receipt_query2.php',NULL,NULL,12,12,NULL,NULL),(190,'Block Domain',NULL,'net_block_domain.php',NULL,NULL,2,112,NULL,NULL),(191,'Values',NULL,'comp_values.php',NULL,NULL,6,3,NULL,NULL),(192,'Invoice',NULL,'inv_add_inv.php',NULL,NULL,2,8,NULL,NULL),(194,'Audit',NULL,'mkt_audit.php',NULL,NULL,11,10,NULL,NULL),(197,'Performance Review',NULL,'hr_review.php',NULL,NULL,7,103,NULL,NULL),(199,'Tutorials',NULL,'comp_training.php',NULL,NULL,10,3,NULL,NULL),(200,'Kundali',NULL,'comp_kundali.php',NULL,NULL,7,3,NULL,NULL),(202,'Tutorials',NULL,'under_con.php',NULL,NULL,13,4,NULL,NULL),(203,'Kundali',NULL,'emp_kundali.php','show',NULL,14,4,NULL,NULL),(205,'Finance',NULL,'finance.php',NULL,NULL,6,NULL,NULL,NULL),(206,'Equity',NULL,'fnc_equity.php',NULL,NULL,1,205,NULL,NULL),(207,'Values',NULL,'fnc_values.php',NULL,NULL,5,205,NULL,NULL),(208,'Holdings',NULL,'fnc_holding.php',NULL,NULL,2,205,NULL,NULL),(209,'Activity',NULL,'fnc_activity.php',NULL,NULL,3,205,NULL,NULL),(210,'Recruite Values',NULL,'hr_recruite_values.php',NULL,NULL,11,103,NULL,NULL),(211,'Values',NULL,'taxes_values.php',NULL,NULL,4,6,NULL,NULL),(212,'Trade',NULL,'fnc_trade.php',NULL,NULL,4,205,NULL,NULL),(213,'Audit',NULL,'fnc_audit.php',NULL,NULL,7,205,NULL,NULL),(214,'Tutorial',NULL,'fnc_tutorial.php',NULL,NULL,8,205,NULL,NULL),(215,'Workflow',NULL,'legal_workflow.php',NULL,NULL,15,12,NULL,NULL),(219,'Recruitment',NULL,'hr_recruite.php',NULL,NULL,10,103,NULL,NULL),(221,'Royalty',NULL,'comp_royalty.php',NULL,NULL,5,3,NULL,NULL),(223,'Engage Entity_AR',NULL,'del_comp_engage_entity.php',NULL,NULL,4,3,NULL,NULL),(229,'Listing','ttttders','storage_listing.php',NULL,NULL,3,124,NULL,NULL),(230,'Holidays',NULL,'comp_holiday.php',NULL,NULL,12,3,NULL,NULL),(231,'Kundali',NULL,'sales_kundali.php',NULL,NULL,11,9,NULL,NULL),(233,'Audit',NULL,'hr_audit.php',NULL,NULL,16,103,NULL,NULL),(234,'Audit',NULL,'net_audit.php',NULL,NULL,5,112,NULL,NULL),(235,'Audit',NULL,'bank_audit.php',NULL,NULL,8,5,NULL,NULL),(236,'Audit',NULL,'taxes_audit.php',NULL,NULL,5,6,NULL,NULL),(237,'Version',NULL,'config_version.php',NULL,NULL,5,104,NULL,NULL),(238,'My Invoice',NULL,'inv_my.php',NULL,NULL,3,8,NULL,NULL),(239,'Payments',NULL,'inv_payments.php',NULL,NULL,4,8,NULL,NULL),(240,'My Payments',NULL,'inv_payments_my.php',NULL,NULL,5,8,NULL,NULL),(241,'Kundali',NULL,'hr_kundali.php',NULL,NULL,15,103,NULL,NULL),(242,'Kundali',NULL,'net_kundali.php','show',NULL,4,112,NULL,NULL),(243,'Kundali',NULL,'fnc_kundali.php',NULL,NULL,6,205,NULL,NULL),(244,'kundali',NULL,'legal_kundali.php',NULL,NULL,14,12,NULL,NULL),(245,'Pay Tax',NULL,'taxes_pay_tax.php',NULL,NULL,3,6,NULL,NULL),(246,'Budget Listing',NULL,'bank_budget_listing.php',NULL,NULL,5,5,NULL,NULL),(247,'Budget Record',NULL,'bank_budget_record.php',NULL,NULL,6,5,NULL,NULL),(250,'Kundali',NULL,'bank_kundali.php',NULL,NULL,9,5,NULL,NULL),(251,'Kundali',NULL,'hrs_kundali.php','show',NULL,10,7,NULL,NULL),(252,'Bill Cycle',NULL,'hrs_bill_cycle.php',NULL,NULL,7,7,NULL,NULL),(253,'Timesheet Cycle',NULL,'hrs_timesheet_cycle.php',NULL,NULL,8,7,NULL,NULL),(254,'Audit',NULL,'hrs_audit.php',NULL,NULL,9,7,NULL,NULL),(255,'Values',NULL,'bank_values.php',NULL,NULL,7,5,NULL,NULL),(256,'Evaluate',NULL,'emp_evaluate.php',NULL,NULL,5,4,NULL,NULL),(257,'Payroll',NULL,'emp_payroll.php',NULL,NULL,7,4,NULL,NULL),(259,'Kundali',NULL,'inv_kundali.php','show',NULL,1,8,NULL,NULL),(260,'Access',NULL,'sales_access.php',NULL,NULL,5,9,NULL,NULL),(261,'Student',NULL,'std_miral.php',NULL,NULL,8,NULL,NULL,NULL),(262,'Std HP',NULL,'del_std_hp.php',NULL,NULL,1,261,NULL,NULL),(263,'Bench',NULL,'hr_bench.php',NULL,NULL,2,103,NULL,NULL),(264,'Bifurcate',NULL,'bank_bifurcate.php',NULL,NULL,3,5,NULL,NULL),(265,'Kundali Temp',NULL,'comp_kundali_temp.php',NULL,NULL,8,3,NULL,NULL),(266,'My Bench',NULL,'hr_bench_my.php',NULL,NULL,3,103,NULL,NULL),(267,'Workforce',NULL,'emp_workforce.php',NULL,NULL,6,4,NULL,NULL),(268,'Kundali',NULL,'mkt_kundali.php','show',NULL,8,10,NULL,NULL),(270,'DT_LN_TN',NULL,'std_dt_ln_tn.php',NULL,NULL,1,261,NULL,NULL),(271,'BC Temp',NULL,'hrs_bc_temp.php',NULL,NULL,3,7,NULL,NULL),(272,'TC Temp',NULL,'hrs_tc_temp.php',NULL,NULL,4,7,NULL,NULL),(273,'Contact_Old',NULL,'del_hr_contact_old.php',NULL,NULL,4,103,NULL,NULL),(275,'Listing Temp',NULL,'bank_listing_temp.php',NULL,NULL,2,5,NULL,NULL),(276,'Contact',NULL,'hr_contact.php',NULL,NULL,5,103,NULL,NULL),(279,'Budget',NULL,'IT_budget.php',NULL,NULL,14,11,NULL,NULL),(280,'My Budget',NULL,'IT_budget_my.php','show',NULL,15,11,NULL,NULL),(283,'My Leads Kiri',NULL,'sales_leads_my.php','show',NULL,15,9,NULL,NULL),(284,'Audit HM',NULL,'del_taxes_audit_hm.php',NULL,NULL,1,6,NULL,NULL),(285,'Common Storage Final',NULL,'emp_attachment_final.php','show',NULL,20,124,NULL,NULL),(287,'Cubes Fadly',NULL,'IT_cubes_fadly.php','show',NULL,5,11,NULL,NULL),(288,'My TC',NULL,'hrs_my_tc.php','show',NULL,15,7,NULL,NULL),(289,'My BC',NULL,'hrs_my_bc.php','show',NULL,16,7,NULL,NULL),(290,'My Apex',NULL,'IT_apex_my.php','show',NULL,1,11,NULL,NULL),(291,'Access',NULL,'hrs_access.php',NULL,NULL,11,7,NULL,NULL),(292,'Emp Authority',NULL,'emp_authority.php',NULL,NULL,10,4,NULL,NULL),(293,'My Emp Hierarchy',NULL,'emp_employment_access_my.php',NULL,NULL,11,4,NULL,NULL),(294,'Workflow',NULL,'mkt_workflow.php',NULL,NULL,12,10,NULL,NULL),(295,'Company',NULL,'mkt_company.php',NULL,NULL,1,10,NULL,NULL),(296,'Engage_AR',NULL,'del_comp_engage.php',NULL,NULL,1,3,NULL,NULL),(298,'Kundali_Arafat',NULL,'IT_kundali_ar.php','show',NULL,1,11,NULL,NULL),(299,'Engage Entity_HM',NULL,'comp_engage_entity.php',NULL,NULL,1,3,NULL,NULL),(301,'ETL_Apoorva',NULL,'net_etl.php',NULL,NULL,1,112,NULL,NULL),(302,'My Access',NULL,'sales_access_my.php','show',NULL,6,9,NULL,NULL),(303,'Open',NULL,'mkt_open.php',NULL,NULL,2,10,NULL,NULL),(304,'Chat',NULL,'hm_chat.php',NULL,NULL,3,1,NULL,NULL),(305,'register_bk',NULL,'taxes_reg.php',NULL,NULL,1,6,NULL,NULL),(306,'Chat_HM',NULL,'chat_hm.php',NULL,NULL,4,1,NULL,NULL),(307,'Learning and Dev',NULL,'under_con.php',NULL,NULL,1,103,NULL,NULL),(308,'Learning and Dev',NULL,'under_con.php',NULL,NULL,1,103,NULL,NULL),(309,'Chat Pranali Ph6',NULL,'chat_pranali.php','show',NULL,6,1,NULL,NULL),(310,'Engage Pranali',NULL,'del_comp_engage_pranali.php','show',NULL,14,3,NULL,NULL),(311,'Audit',NULL,'comp_audit.php',NULL,NULL,1,3,NULL,NULL),(312,'Chat_HM_PH7',NULL,'chat_hm_ph7.php',NULL,NULL,7,1,NULL,NULL),(313,'Calendar',NULL,'home_calendar.php','show',NULL,15,1,NULL,NULL),(314,'Workflow3',NULL,'mkt_workflow3.php',NULL,NULL,1,10,NULL,NULL),(315,'Kundali_HM',NULL,'emp_kundali2.php',NULL,NULL,20,4,NULL,NULL),(316,'Chat Pranali Ph7',NULL,'chat_pranali_ph7.php',NULL,NULL,12,1,NULL,NULL),(317,'Audit',NULL,'emp_audit.php',NULL,NULL,30,4,NULL,NULL),(318,'Workflow HM',NULL,'mkt_workflow4.php',NULL,NULL,1,10,NULL,NULL),(319,'Website',NULL,'res_design.php',NULL,NULL,18,1,NULL,NULL),(320,'Calendar_HM',NULL,'home_calendar_hm.php',NULL,NULL,16,1,NULL,NULL),(321,'Audit',NULL,'inv_audit.php',NULL,NULL,1,8,NULL,NULL),(322,'Audit',NULL,'legal_audit.php',NULL,NULL,3,12,NULL,NULL),(324,'Audit',NULL,'storage_audit.php',NULL,NULL,30,124,NULL,NULL),(325,'Activity',NULL,'sales_activity.php',NULL,NULL,7,9,NULL,NULL),(326,'My Activity',NULL,'sales_activity_my.php','show',NULL,8,9,NULL,NULL),(327,'Chat_HM_Ph7_Changes',NULL,'chat_hm_ph7_changes.php',NULL,NULL,13,1,NULL,NULL),(329,'Listing',NULL,'legal_listing.php',NULL,NULL,1,12,NULL,NULL),(330,'Chat_FP',NULL,'chat_fp.php',NULL,NULL,5,1,NULL,NULL),(331,'Rikhil',NULL,'del_std_rikhil.php',NULL,NULL,1,261,NULL,NULL),(332,'Asset',NULL,'asset_audit.php',NULL,NULL,1,NULL,NULL,NULL),(333,'Audit',NULL,'asset_audit.php',NULL,NULL,1,332,NULL,NULL),(334,'Listing Aman',NULL,'del_legal_listing.php',NULL,NULL,1,12,NULL,NULL),(335,'Timecard',NULL,'hrs_timecard.php',NULL,NULL,5,7,NULL,NULL),(336,'My Timecard',NULL,'hrs_timecard_my.php','show',NULL,6,7,NULL,NULL),(337,'My Listing Old',NULL,'legal_listing_my_old.php',NULL,NULL,1,12,NULL,NULL),(338,'Listing My Aman',NULL,'del_legal_listing_my.php',NULL,NULL,1,12,NULL,NULL),(339,'Security',NULL,'net_security.php',NULL,NULL,1,112,NULL,NULL),(340,'Chat Pranali Final',NULL,'del_chat_pranali_fv.php',NULL,NULL,8,1,NULL,NULL),(341,'Chat Kavitha',NULL,'del_chat_kavitha.php',NULL,NULL,10,1,NULL,NULL),(342,'Chat Shoyeb',NULL,'del_chat_shoyeb.php',NULL,NULL,9,1,NULL,NULL),(343,'Chat Jugal',NULL,'del_chat_jugal.php','show',NULL,11,1,NULL,NULL),(344,'Address Ziya',NULL,'del_config_address_ziya.php','show',NULL,1,104,NULL,NULL),(346,'My Listing',NULL,'legal_listing_my.php',NULL,NULL,1,12,NULL,NULL),(347,'Address',NULL,'config_address.php',NULL,NULL,1,104,NULL,NULL),(348,'Listing Ziya',NULL,'del_emp_listing_ziya.php','show',NULL,110,4,NULL,NULL),(353,'Chat Shoyeb Ph7',NULL,'del_chat_shoyeb_ph7.php',NULL,NULL,2,1,NULL,NULL),(355,'Script',NULL,'net_script.php',NULL,NULL,1,112,NULL,NULL),(356,'Chat Pranali Merge',NULL,'del_chat_pranali_shoyeb_com.php',NULL,NULL,3,1,NULL,NULL),(357,'Server',NULL,'net_server.php',NULL,NULL,1,112,NULL,NULL),(359,'Values_Shoyeb2',NULL,'del_values_shoyeb2.php','show',NULL,17,9,NULL,NULL),(361,'Attachment Pranali',NULL,'del_storage_pranali.php','show',NULL,20,124,NULL,NULL),(364,'Chat Shoyeb Ph7 Updated',NULL,'del_chat_shoyeb_ph7_up.php',NULL,NULL,2,1,NULL,NULL),(365,'API',NULL,'net_api.php',NULL,NULL,1,112,NULL,NULL),(366,'Education',NULL,'emp_education.php',NULL,NULL,5,4,NULL,NULL),(367,'Server HM',NULL,'del_net_server_hm.php',NULL,NULL,1,112,NULL,NULL),(368,'Pranali',NULL,'del_std_pranali.php',NULL,NULL,1,261,NULL,NULL),(369,'Workflow Shoyeb2',NULL,'del_mkt_workflow_shoyeb2.php','show',NULL,7,10,NULL,NULL),(370,'Company HM',NULL,'del_mkt_company_hm.php','show',NULL,1,10,NULL,NULL),(371,'Values_Shoyeb',NULL,'del_values_shoyeb.php',NULL,NULL,16,9,NULL,NULL),(372,'Values Abhay',NULL,'del_sales_values_abhay.php',NULL,NULL,18,9,NULL,NULL),(373,'Attachment Jugal',NULL,'del_storage_jugal.php','show',NULL,10,124,NULL,NULL),(374,'Design1 Shyoyeb ',NULL,'del_design1_shoyeb.php','show',NULL,15,124,NULL,NULL),(377,'Schedule Fadly',NULL,'emp_schedule_fadly.php',NULL,NULL,19,4,NULL,NULL),(378,'Pranali_Val',NULL,'del_sales_values_pranali.php',NULL,NULL,17,9,NULL,NULL),(379,'Storage Drives',NULL,'net_storage_drives.php',NULL,NULL,1,112,NULL,NULL),(380,'Password Change',NULL,'config_pass_change.php',NULL,NULL,5,104,NULL,NULL),(381,'Listing HM',NULL,'del_emp_listing_hm.php',NULL,NULL,15,4,NULL,NULL),(382,'Devops',NULL,'user1.php',NULL,NULL,22,NULL,NULL,NULL),(383,'User1',NULL,'user1.php',NULL,NULL,1,382,NULL,NULL),(384,'Company Rikhil',NULL,'del_mkt_company_rp.php','show',NULL,1,10,NULL,NULL),(385,'Workflow Shoyeb',NULL,'del_mkt_workflow_shoyeb.php','show',NULL,1,10,NULL,NULL),(386,'Values HM',NULL,'del_sales_values_hm.php','show',NULL,14,9,NULL,NULL),(387,'My Listing',NULL,'storage_listing_my.php','show',NULL,3,124,NULL,NULL),(388,'Script Ziya',NULL,'del_net_script_ziya.php',NULL,NULL,1,112,NULL,NULL),(389,'Access KK',NULL,'del_hrs_access_kk.php',NULL,NULL,1,7,NULL,NULL),(390,'Authority HB',NULL,'del_emp_authority_hb.php','show',NULL,21,4,NULL,NULL),(391,'Authority KK',NULL,'del_emp_authority_kk.php','show',NULL,22,4,NULL,NULL),(392,'Authority Pratham',NULL,'del_emp_authority_pr.php','show',NULL,23,4,NULL,NULL),(393,'Authority Asad',NULL,'del_emp_authority_ak.php',NULL,NULL,24,4,NULL,NULL),(394,'Authority trng',NULL,'del_std_authority_trng.php',NULL,NULL,1,261,NULL,NULL),(395,'Authority Divyanshu',NULL,'del_emp_authority_dg.php','show',NULL,25,4,NULL,NULL),(396,'Authority Pranali',NULL,'del_emp_authority_pp.php','show',NULL,26,4,NULL,NULL); /*!40000 ALTER TABLE `look_menu_pvt` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:01 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `feature_menu` -- LOCK TABLES `feature_menu` WRITE; /*!40000 ALTER TABLE `feature_menu` DISABLE KEYS */; INSERT INTO `feature_menu` VALUES (594,1517,193,NULL,NULL),(513,1804,92,NULL,NULL),(512,1803,92,NULL,NULL),(570,769,195,NULL,NULL),(8,11,114,NULL,NULL),(9,151,119,NULL,NULL),(368,613,186,NULL,NULL),(367,612,186,NULL,NULL),(12,301,35,NULL,NULL),(13,302,35,NULL,NULL),(14,303,35,NULL,NULL),(15,304,35,NULL,NULL),(16,305,35,NULL,NULL),(17,306,35,NULL,NULL),(18,307,35,NULL,NULL),(19,301,37,NULL,NULL),(20,302,37,NULL,NULL),(21,303,37,NULL,NULL),(22,304,37,NULL,NULL),(23,305,37,NULL,NULL),(24,306,37,NULL,NULL),(25,307,37,NULL,NULL),(26,311,36,NULL,NULL),(27,312,36,NULL,NULL),(28,313,36,NULL,NULL),(29,314,36,NULL,NULL),(30,321,106,NULL,NULL),(31,322,106,NULL,NULL),(380,2553,189,NULL,NULL),(379,2552,189,NULL,NULL),(34,461,24,NULL,NULL),(35,462,24,NULL,NULL),(36,463,24,NULL,NULL),(37,464,24,NULL,NULL),(38,465,24,NULL,NULL),(39,466,24,NULL,NULL),(40,467,24,NULL,NULL),(510,1801,92,NULL,NULL),(602,2113,210,NULL,NULL),(370,2551,187,NULL,NULL),(369,614,186,NULL,NULL),(489,598,201,NULL,NULL),(488,598,197,NULL,NULL),(487,598,107,NULL,NULL),(51,601,28,NULL,NULL),(52,602,28,NULL,NULL),(53,603,28,NULL,NULL),(54,604,28,NULL,NULL),(55,611,29,NULL,NULL),(56,612,29,NULL,NULL),(57,613,29,NULL,NULL),(58,614,29,NULL,NULL),(537,255,86,NULL,NULL),(593,1515,193,NULL,NULL),(592,1521,193,NULL,NULL),(591,2952,211,NULL,NULL),(590,2951,211,NULL,NULL),(71,631,33,NULL,NULL),(72,632,33,NULL,NULL),(73,633,33,NULL,NULL),(74,634,33,NULL,NULL),(75,641,34,NULL,NULL),(76,642,34,NULL,NULL),(77,651,174,NULL,NULL),(78,652,174,NULL,NULL),(79,653,174,NULL,NULL),(80,654,174,NULL,NULL),(1125,303,348,NULL,NULL),(1015,1404,342,NULL,NULL),(83,751,43,NULL,NULL),(84,752,43,NULL,NULL),(85,753,43,NULL,NULL),(86,762,44,NULL,NULL),(87,763,44,NULL,NULL),(88,764,44,NULL,NULL),(89,761,46,NULL,NULL),(90,762,46,NULL,NULL),(91,763,46,NULL,NULL),(92,764,46,NULL,NULL),(497,12050,19,NULL,NULL),(95,781,NULL,NULL,NULL),(97,791,NULL,NULL,NULL),(98,792,NULL,NULL,NULL),(958,800,335,NULL,NULL),(957,812,336,NULL,NULL),(956,811,336,NULL,NULL),(955,803,335,NULL,NULL),(1120,305,381,NULL,NULL),(1119,308,381,NULL,NULL),(384,166,190,NULL,NULL),(383,165,190,NULL,NULL),(107,901,26,NULL,NULL),(108,902,26,NULL,NULL),(109,903,26,NULL,NULL),(110,904,26,NULL,NULL),(525,1234,15,NULL,NULL),(1086,203,379,NULL,NULL),(725,1462,260,NULL,NULL),(382,164,190,NULL,NULL),(381,2554,189,NULL,NULL),(117,1051,53,NULL,NULL),(118,1052,53,NULL,NULL),(119,1053,53,NULL,NULL),(120,1054,53,NULL,NULL),(376,623,188,NULL,NULL),(375,622,188,NULL,NULL),(123,1201,192,NULL,NULL),(124,1202,192,NULL,NULL),(125,1203,192,NULL,NULL),(126,1204,192,NULL,NULL),(127,1202,55,NULL,NULL),(128,1203,55,NULL,NULL),(129,1211,192,NULL,NULL),(130,1212,192,NULL,NULL),(131,1213,192,NULL,NULL),(132,1214,192,NULL,NULL),(133,1212,55,NULL,NULL),(134,1213,55,NULL,NULL),(374,621,188,NULL,NULL),(373,2554,187,NULL,NULL),(598,1516,193,NULL,NULL),(612,1683,80,NULL,NULL),(139,1351,59,NULL,NULL),(141,1351,61,NULL,NULL),(142,1351,62,NULL,NULL),(143,1351,63,NULL,NULL),(144,1351,64,NULL,NULL),(145,1351,65,NULL,NULL),(146,1351,111,NULL,NULL),(1085,202,379,NULL,NULL),(148,1351,139,NULL,NULL),(597,1520,193,NULL,NULL),(716,1,23,NULL,NULL),(596,1519,193,NULL,NULL),(545,255,199,NULL,NULL),(544,255,122,NULL,NULL),(543,255,107,NULL,NULL),(555,1234,147,NULL,NULL),(611,1682,80,NULL,NULL),(610,641,230,NULL,NULL),(609,1699,169,NULL,NULL),(608,1681,80,NULL,NULL),(606,1684,80,NULL,NULL),(605,1689,80,NULL,NULL),(604,1741,149,NULL,NULL),(617,1686,80,NULL,NULL),(616,1685,80,NULL,NULL),(170,1352,64,NULL,NULL),(171,1353,64,NULL,NULL),(172,1354,64,NULL,NULL),(173,1355,64,NULL,NULL),(174,1356,64,NULL,NULL),(175,1357,64,NULL,NULL),(176,1358,64,NULL,NULL),(603,2114,210,NULL,NULL),(599,2,18,NULL,NULL),(615,1687,80,NULL,NULL),(614,1688,80,NULL,NULL),(181,1381,64,NULL,NULL),(182,1391,61,NULL,NULL),(183,1392,61,NULL,NULL),(184,1393,61,NULL,NULL),(185,1394,61,NULL,NULL),(186,1401,100,NULL,NULL),(187,1402,100,NULL,NULL),(188,1411,111,NULL,NULL),(984,1503,295,NULL,NULL),(361,308,35,NULL,NULL),(194,1511,67,NULL,NULL),(195,1512,67,NULL,NULL),(196,1513,67,NULL,NULL),(777,1854,279,NULL,NULL),(776,384,292,NULL,NULL),(775,1554,294,NULL,NULL),(774,821,291,NULL,NULL),(773,822,291,NULL,NULL),(202,1531,69,NULL,NULL),(203,1532,69,NULL,NULL),(204,1533,69,NULL,NULL),(205,1541,99,NULL,NULL),(206,1542,99,NULL,NULL),(372,2553,187,NULL,NULL),(371,2552,187,NULL,NULL),(569,768,195,NULL,NULL),(568,767,195,NULL,NULL),(567,766,195,NULL,NULL),(566,765,195,NULL,NULL),(565,764,195,NULL,NULL),(564,763,195,NULL,NULL),(563,762,195,NULL,NULL),(562,761,195,NULL,NULL),(561,1234,24,NULL,NULL),(589,2953,211,NULL,NULL),(219,1661,164,NULL,NULL),(220,1662,164,NULL,NULL),(221,1663,164,NULL,NULL),(222,1664,164,NULL,NULL),(223,1671,166,NULL,NULL),(588,2954,211,NULL,NULL),(587,1761,150,NULL,NULL),(715,1,249,NULL,NULL),(578,1994,158,NULL,NULL),(228,1691,168,NULL,NULL),(229,1701,169,NULL,NULL),(230,1702,169,NULL,NULL),(231,1703,169,NULL,NULL),(232,1711,77,NULL,NULL),(233,1712,77,NULL,NULL),(234,1713,77,NULL,NULL),(235,1731,149,NULL,NULL),(236,1732,149,NULL,NULL),(237,1733,149,NULL,NULL),(238,1734,149,NULL,NULL),(239,1735,149,NULL,NULL),(240,1736,149,NULL,NULL),(241,1741,151,NULL,NULL),(242,1751,150,NULL,NULL),(243,1752,150,NULL,NULL),(244,1753,150,NULL,NULL),(245,1754,150,NULL,NULL),(246,1755,150,NULL,NULL),(247,1756,150,NULL,NULL),(248,1757,150,NULL,NULL),(249,1758,150,NULL,NULL),(250,1759,150,NULL,NULL),(251,1762,17,NULL,NULL),(252,1763,17,NULL,NULL),(253,1764,17,NULL,NULL),(254,1765,17,NULL,NULL),(255,1771,154,NULL,NULL),(256,1772,154,NULL,NULL),(257,1773,154,NULL,NULL),(258,1774,154,NULL,NULL),(259,1781,130,NULL,NULL),(260,1782,130,NULL,NULL),(261,2551,81,NULL,NULL),(262,2552,81,NULL,NULL),(263,2553,81,NULL,NULL),(264,2554,81,NULL,NULL),(265,2551,86,NULL,NULL),(266,2552,86,NULL,NULL),(267,2553,86,NULL,NULL),(268,2554,86,NULL,NULL),(269,2551,87,NULL,NULL),(270,2552,87,NULL,NULL),(271,2553,87,NULL,NULL),(272,2554,87,NULL,NULL),(273,2551,88,NULL,NULL),(274,2552,88,NULL,NULL),(275,2553,88,NULL,NULL),(276,2554,88,NULL,NULL),(366,611,186,NULL,NULL),(1010,13,342,NULL,NULL),(279,1951,148,NULL,NULL),(280,1952,148,NULL,NULL),(281,1953,148,NULL,NULL),(282,1961,105,NULL,NULL),(283,1962,105,NULL,NULL),(284,1963,105,NULL,NULL),(285,1964,105,NULL,NULL),(286,1965,105,NULL,NULL),(287,1971,157,NULL,NULL),(288,1972,157,NULL,NULL),(289,1981,120,NULL,NULL),(294,2001,159,NULL,NULL),(295,2002,159,NULL,NULL),(296,2003,159,NULL,NULL),(297,2004,159,NULL,NULL),(298,2011,160,NULL,NULL),(299,2012,160,NULL,NULL),(300,2013,160,NULL,NULL),(301,2014,160,NULL,NULL),(302,2021,161,NULL,NULL),(303,2022,161,NULL,NULL),(304,2023,161,NULL,NULL),(305,2024,161,NULL,NULL),(306,2031,142,NULL,NULL),(307,2032,142,NULL,NULL),(308,2041,162,NULL,NULL),(309,2042,162,NULL,NULL),(576,2561,215,NULL,NULL),(595,1518,193,NULL,NULL),(554,1234,211,NULL,NULL),(577,1500,179,NULL,NULL),(314,2141,122,NULL,NULL),(315,2142,122,NULL,NULL),(316,2143,122,NULL,NULL),(317,2144,122,NULL,NULL),(318,2151,123,NULL,NULL),(319,2152,123,NULL,NULL),(320,2153,123,NULL,NULL),(321,2154,123,NULL,NULL),(322,2161,13,NULL,NULL),(323,2162,13,NULL,NULL),(324,2163,13,NULL,NULL),(325,2164,13,NULL,NULL),(386,1432,142,NULL,NULL),(385,1431,142,NULL,NULL),(584,600,27,NULL,NULL),(586,1514,193,NULL,NULL),(724,1463,260,NULL,NULL),(601,2112,210,NULL,NULL),(378,2551,189,NULL,NULL),(377,624,188,NULL,NULL),(338,1661,73,NULL,NULL),(339,1662,73,NULL,NULL),(340,1663,73,NULL,NULL),(341,1664,73,NULL,NULL),(342,1671,108,NULL,NULL),(600,2111,210,NULL,NULL),(573,1,15,NULL,NULL),(572,1804,117,NULL,NULL),(571,770,195,NULL,NULL),(607,1690,80,NULL,NULL),(348,1701,76,NULL,NULL),(349,1702,76,NULL,NULL),(350,1703,76,NULL,NULL),(351,161,190,NULL,NULL),(352,162,190,NULL,NULL),(353,163,190,NULL,NULL),(354,1501,179,NULL,NULL),(355,1502,179,NULL,NULL),(356,1503,179,NULL,NULL),(539,255,19,NULL,NULL),(541,255,34,NULL,NULL),(613,1680,80,NULL,NULL),(1081,1422,371,NULL,NULL),(387,1433,142,NULL,NULL),(388,1434,142,NULL,NULL),(389,1435,142,NULL,NULL),(390,1436,142,NULL,NULL),(391,1437,142,NULL,NULL),(392,1438,142,NULL,NULL),(393,2043,162,NULL,NULL),(394,2044,162,NULL,NULL),(395,2045,162,NULL,NULL),(396,2046,162,NULL,NULL),(397,2047,162,NULL,NULL),(535,1234,125,NULL,NULL),(548,1234,191,NULL,NULL),(402,1511,193,NULL,NULL),(403,1512,193,NULL,NULL),(404,1513,193,NULL,NULL),(405,1205,192,NULL,NULL),(406,1206,192,NULL,NULL),(407,1207,192,NULL,NULL),(408,1208,192,NULL,NULL),(409,1209,192,NULL,NULL),(410,1210,192,NULL,NULL),(411,1601,126,NULL,NULL),(412,1602,126,NULL,NULL),(413,1603,126,NULL,NULL),(414,1604,126,NULL,NULL),(415,2971,147,NULL,NULL),(416,2972,147,NULL,NULL),(417,2973,147,NULL,NULL),(418,2974,147,NULL,NULL),(419,2975,147,NULL,NULL),(420,8090,98,NULL,NULL),(421,8090,97,NULL,NULL),(954,804,335,NULL,NULL),(423,773,98,NULL,NULL),(1118,300,381,NULL,NULL),(425,773,93,NULL,NULL),(426,773,90,NULL,NULL),(429,2975,44,NULL,NULL),(585,620,29,NULL,NULL),(431,2105,210,NULL,NULL),(437,NULL,94,NULL,NULL),(436,NULL,122,NULL,NULL),(435,NULL,123,NULL,NULL),(438,NULL,95,NULL,NULL),(439,NULL,96,NULL,NULL),(440,NULL,97,NULL,NULL),(511,1802,92,NULL,NULL),(444,NULL,19,NULL,NULL),(445,NULL,190,NULL,NULL),(446,NULL,119,NULL,NULL),(447,NULL,113,NULL,NULL),(540,255,29,NULL,NULL),(449,NULL,207,NULL,NULL),(450,NULL,106,NULL,NULL),(451,NULL,176,NULL,NULL),(463,20211,23,NULL,NULL),(453,96896,19,NULL,NULL),(723,1464,260,NULL,NULL),(1080,1422,127,NULL,NULL),(457,NULL,23,NULL,NULL),(458,102,23,NULL,NULL),(465,NULL,19,NULL,NULL),(466,NULL,23,NULL,NULL),(1079,1421,371,NULL,NULL),(473,598,29,NULL,NULL),(547,1234,29,NULL,NULL),(480,598,199,NULL,NULL),(618,1399,61,NULL,NULL),(619,1837,152,NULL,NULL),(620,1831,152,NULL,NULL),(621,1832,152,NULL,NULL),(622,1839,152,NULL,NULL),(623,1836,152,NULL,NULL),(624,1835,152,NULL,NULL),(625,1833,152,NULL,NULL),(626,1834,152,NULL,NULL),(1078,1421,127,NULL,NULL),(1123,307,381,NULL,NULL),(1122,306,381,NULL,NULL),(1121,310,381,NULL,NULL),(714,1,258,NULL,NULL),(1077,1424,127,NULL,NULL),(712,1403,100,NULL,NULL),(711,1,19,NULL,NULL),(718,1654,72,NULL,NULL),(710,1,21,NULL,NULL),(638,351,185,NULL,NULL),(639,351,177,NULL,NULL),(640,352,185,NULL,NULL),(641,352,177,NULL,NULL),(642,353,185,NULL,NULL),(643,353,177,NULL,NULL),(644,354,177,NULL,NULL),(645,354,185,NULL,NULL),(646,357,177,NULL,NULL),(647,357,185,NULL,NULL),(648,358,185,NULL,NULL),(649,358,177,NULL,NULL),(650,359,177,NULL,NULL),(651,359,185,NULL,NULL),(653,1838,152,NULL,NULL),(654,468,24,NULL,NULL),(655,471,182,NULL,NULL),(656,472,182,NULL,NULL),(657,473,182,NULL,NULL),(658,1452,231,NULL,NULL),(659,1453,231,NULL,NULL),(660,1451,231,NULL,NULL),(661,609,27,NULL,NULL),(662,619,29,NULL,NULL),(663,9041,262,NULL,NULL),(664,9042,262,NULL,NULL),(665,9043,262,NULL,NULL),(666,9044,262,NULL,NULL),(667,9045,262,NULL,NULL),(668,761,263,NULL,NULL),(669,691,265,NULL,NULL),(670,691,200,NULL,NULL),(671,692,200,NULL,NULL),(672,692,265,NULL,NULL),(673,693,200,NULL,NULL),(674,693,265,NULL,NULL),(675,301,381,NULL,NULL),(676,894,253,NULL,NULL),(677,894,272,NULL,NULL),(678,892,253,NULL,NULL),(679,892,272,NULL,NULL),(680,891,253,NULL,NULL),(681,891,272,NULL,NULL),(682,893,253,NULL,NULL),(683,893,272,NULL,NULL),(684,882,252,NULL,NULL),(685,882,271,NULL,NULL),(686,881,252,NULL,NULL),(687,881,271,NULL,NULL),(688,883,252,NULL,NULL),(689,883,271,NULL,NULL),(690,884,252,NULL,NULL),(691,884,271,NULL,NULL),(692,2261,39,NULL,NULL),(693,2201,273,NULL,NULL),(694,2202,273,NULL,NULL),(695,1711,277,NULL,NULL),(696,1712,277,NULL,NULL),(697,1713,277,NULL,NULL),(796,1619,194,NULL,NULL),(795,2282,235,NULL,NULL),(794,1394,139,NULL,NULL),(793,1439,142,NULL,NULL),(792,1539,69,NULL,NULL),(791,1534,69,NULL,NULL),(790,1514,303,NULL,NULL),(705,1711,279,NULL,NULL),(706,1712,279,NULL,NULL),(707,1713,279,NULL,NULL),(708,1704,169,NULL,NULL),(709,1653,72,NULL,NULL),(717,1,118,NULL,NULL),(726,1461,260,NULL,NULL),(731,1851,279,NULL,NULL),(730,2262,39,NULL,NULL),(729,2263,39,NULL,NULL),(953,802,335,NULL,NULL),(1117,300,35,NULL,NULL),(734,2303,247,NULL,NULL),(1126,201,365,NULL,NULL),(952,801,335,NULL,NULL),(737,361,185,NULL,NULL),(738,355,185,NULL,NULL),(739,360,185,NULL,NULL),(740,356,185,NULL,NULL),(1116,206,355,NULL,NULL),(1115,231,379,NULL,NULL),(951,813,336,NULL,NULL),(744,1659,72,NULL,NULL),(745,1651,72,NULL,NULL),(746,1504,179,NULL,NULL),(747,1509,179,NULL,NULL),(748,1505,179,NULL,NULL),(749,1506,179,NULL,NULL),(750,1507,179,NULL,NULL),(751,1554,216,NULL,NULL),(752,1553,216,NULL,NULL),(753,1552,216,NULL,NULL),(754,1551,216,NULL,NULL),(755,1853,279,NULL,NULL),(756,1852,279,NULL,NULL),(757,1652,72,NULL,NULL),(758,1655,72,NULL,NULL),(759,1656,72,NULL,NULL),(760,1657,72,NULL,NULL),(761,1658,72,NULL,NULL),(762,1660,72,NULL,NULL),(763,1650,72,NULL,NULL),(772,824,291,NULL,NULL),(771,823,291,NULL,NULL),(770,1504,68,NULL,NULL),(769,1503,68,NULL,NULL),(778,1854,280,NULL,NULL),(779,604,27,NULL,NULL),(780,1504,297,NULL,NULL),(781,401,177,NULL,NULL),(782,391,177,NULL,NULL),(783,392,177,NULL,NULL),(784,393,177,NULL,NULL),(785,394,177,NULL,NULL),(786,1504,295,NULL,NULL),(789,1409,100,NULL,NULL),(788,613,296,NULL,NULL),(797,1618,194,NULL,NULL),(798,1617,194,NULL,NULL),(799,1616,194,NULL,NULL),(800,1615,194,NULL,NULL),(801,1614,194,NULL,NULL),(802,1613,194,NULL,NULL),(803,1611,194,NULL,NULL),(804,1612,194,NULL,NULL),(805,1553,294,NULL,NULL),(806,1554,314,NULL,NULL),(807,1511,303,NULL,NULL),(808,1519,303,NULL,NULL),(809,171,234,NULL,NULL),(810,172,234,NULL,NULL),(811,173,234,NULL,NULL),(812,174,234,NULL,NULL),(813,175,234,NULL,NULL),(814,176,234,NULL,NULL),(815,177,234,NULL,NULL),(816,178,234,NULL,NULL),(817,179,234,NULL,NULL),(818,674,311,NULL,NULL),(819,2199,233,NULL,NULL),(820,2198,233,NULL,NULL),(821,331,178,NULL,NULL),(822,3,21,NULL,NULL),(823,4,21,NULL,NULL),(824,5,21,NULL,NULL),(825,6,21,NULL,NULL),(826,7,21,NULL,NULL),(827,8,21,NULL,NULL),(828,12,22,NULL,NULL),(829,13,22,NULL,NULL),(830,332,178,NULL,NULL),(831,333,178,NULL,NULL),(832,334,178,NULL,NULL),(833,371,317,NULL,NULL),(834,372,317,NULL,NULL),(835,373,317,NULL,NULL),(836,374,317,NULL,NULL),(837,375,317,NULL,NULL),(838,376,317,NULL,NULL),(839,377,317,NULL,NULL),(840,378,317,NULL,NULL),(841,379,317,NULL,NULL),(842,381,36,NULL,NULL),(843,382,36,NULL,NULL),(844,383,36,NULL,NULL),(845,395,177,NULL,NULL),(846,396,177,NULL,NULL),(847,397,177,NULL,NULL),(848,398,177,NULL,NULL),(849,399,177,NULL,NULL),(850,400,177,NULL,NULL),(851,396,267,NULL,NULL),(852,395,267,NULL,NULL),(853,401,267,NULL,NULL),(854,301,267,NULL,NULL),(855,301,185,NULL,NULL),(856,301,177,NULL,NULL),(857,2989,236,NULL,NULL),(858,2988,236,NULL,NULL),(859,2987,236,NULL,NULL),(860,2986,236,NULL,NULL),(861,2985,236,NULL,NULL),(862,2984,236,NULL,NULL),(863,2983,236,NULL,NULL),(864,2982,236,NULL,NULL),(865,2981,236,NULL,NULL),(866,869,254,NULL,NULL),(867,868,254,NULL,NULL),(868,867,254,NULL,NULL),(869,866,254,NULL,NULL),(870,865,254,NULL,NULL),(871,864,254,NULL,NULL),(872,863,254,NULL,NULL),(873,862,254,NULL,NULL),(874,861,254,NULL,NULL),(875,1229,321,NULL,NULL),(876,1228,321,NULL,NULL),(877,1227,321,NULL,NULL),(878,1226,321,NULL,NULL),(879,1225,321,NULL,NULL),(880,1224,321,NULL,NULL),(881,1223,321,NULL,NULL),(882,1222,321,NULL,NULL),(883,1221,321,NULL,NULL),(884,2579,322,NULL,NULL),(885,2578,322,NULL,NULL),(886,2577,322,NULL,NULL),(887,2576,322,NULL,NULL),(888,2575,322,NULL,NULL),(889,2574,322,NULL,NULL),(890,2573,322,NULL,NULL),(891,2572,322,NULL,NULL),(892,2571,322,NULL,NULL),(893,509,324,NULL,NULL),(894,508,324,NULL,NULL),(895,507,324,NULL,NULL),(896,506,324,NULL,NULL),(897,505,324,NULL,NULL),(898,504,324,NULL,NULL),(899,503,324,NULL,NULL),(900,502,324,NULL,NULL),(901,501,324,NULL,NULL),(902,2048,162,NULL,NULL),(903,2197,233,NULL,NULL),(904,2196,233,NULL,NULL),(905,2195,233,NULL,NULL),(906,2194,233,NULL,NULL),(907,2193,233,NULL,NULL),(908,2192,233,NULL,NULL),(909,2191,233,NULL,NULL),(910,2289,235,NULL,NULL),(911,2281,235,NULL,NULL),(912,2283,235,NULL,NULL),(913,2284,235,NULL,NULL),(914,2285,235,NULL,NULL),(915,2286,235,NULL,NULL),(916,2287,235,NULL,NULL),(917,2288,235,NULL,NULL),(918,679,311,NULL,NULL),(919,675,311,NULL,NULL),(920,676,311,NULL,NULL),(921,677,311,NULL,NULL),(922,678,311,NULL,NULL),(923,671,311,NULL,NULL),(924,672,311,NULL,NULL),(925,673,311,NULL,NULL),(926,11,22,NULL,NULL),(927,2551,329,NULL,NULL),(928,2552,329,NULL,NULL),(929,2554,329,NULL,NULL),(930,2553,329,NULL,NULL),(931,2559,329,NULL,NULL),(949,815,336,NULL,NULL),(933,2560,329,NULL,NULL),(962,807,335,NULL,NULL),(961,808,335,NULL,NULL),(960,809,335,NULL,NULL),(959,810,335,NULL,NULL),(950,814,336,NULL,NULL),(1013,1404,340,NULL,NULL),(1014,1404,341,NULL,NULL),(1020,10002,331,NULL,NULL),(983,1502,295,NULL,NULL),(1002,1404,100,NULL,NULL),(982,1501,295,NULL,NULL),(1012,1404,316,NULL,NULL),(1130,206,365,NULL,NULL),(999,11,343,NULL,NULL),(1019,10001,331,NULL,NULL),(985,1505,295,NULL,NULL),(986,1506,295,NULL,NULL),(987,1507,295,NULL,NULL),(988,1508,295,NULL,NULL),(989,1499,295,NULL,NULL),(1009,12,341,NULL,NULL),(1129,205,365,NULL,NULL),(1011,1404,312,NULL,NULL),(1008,1404,343,NULL,NULL),(1021,10003,331,NULL,NULL),(1022,10004,331,NULL,NULL),(1023,10005,331,NULL,NULL),(1128,203,365,NULL,NULL),(1127,202,365,NULL,NULL),(1028,2014,347,NULL,NULL),(1029,2013,347,NULL,NULL),(1030,2012,347,NULL,NULL),(1031,2011,347,NULL,NULL),(1110,1504,384,NULL,NULL),(1111,309,381,NULL,NULL),(1112,304,381,NULL,NULL),(1113,302,381,NULL,NULL),(1114,303,381,NULL,NULL),(1037,13,353,NULL,NULL),(1038,1404,356,NULL,NULL),(1039,1473,325,NULL,NULL),(1040,1472,325,NULL,NULL),(1041,1471,325,NULL,NULL),(1042,1404,353,NULL,NULL),(1043,1404,364,NULL,NULL),(1045,205,355,NULL,NULL),(1046,204,355,NULL,NULL),(1047,203,355,NULL,NULL),(1048,202,355,NULL,NULL),(1049,201,355,NULL,NULL),(1051,204,365,NULL,NULL),(1052,304,345,NULL,NULL),(1053,302,345,NULL,NULL),(1054,221,357,NULL,NULL),(1055,221,367,NULL,NULL),(1056,9044,368,NULL,NULL),(1058,384,366,NULL,NULL),(1059,359,366,NULL,NULL),(1124,603,27,NULL,NULL),(1062,1554,370,NULL,NULL),(1063,1553,370,NULL,NULL),(1064,310,35,NULL,NULL),(1065,420,366,NULL,NULL),(1067,410,366,NULL,NULL),(1068,411,366,NULL,NULL),(1069,412,366,NULL,NULL),(1070,413,366,NULL,NULL),(1071,414,366,NULL,NULL),(1072,415,366,NULL,NULL),(1084,201,379,NULL,NULL),(1083,1424,378,NULL,NULL),(1082,1424,371,NULL,NULL),(1076,1423,378,NULL,NULL),(1087,204,379,NULL,NULL),(1088,205,379,NULL,NULL),(1089,206,379,NULL,NULL),(1090,464,229,NULL,NULL),(1091,461,229,NULL,NULL),(1092,462,229,NULL,NULL),(1093,463,229,NULL,NULL),(1094,465,229,NULL,NULL),(1095,466,229,NULL,NULL),(1096,467,229,NULL,NULL),(1097,468,229,NULL,NULL),(1100,1424,372,NULL,NULL),(1102,2201,276,NULL,NULL),(1103,2202,276,NULL,NULL),(1104,2203,273,NULL,NULL),(1105,2203,276,NULL,NULL),(1106,2204,273,NULL,NULL),(1107,2204,276,NULL,NULL),(1108,309,35,NULL,NULL),(1109,2051,380,NULL,NULL); /*!40000 ALTER TABLE `feature_menu` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:01 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `net_script` -- LOCK TABLES `net_script` WRITE; /*!40000 ALTER TABLE `net_script` DISABLE KEYS */; INSERT INTO `net_script` VALUES (0,'Test on Oct 23 One','shell','Test on Oct 23 One Desc',3328,'2024-10-23 01:26:21',NULL,NULL,NULL),(1,'bring_ind_data.sh','shell','connect to hyd server and gets data',NULL,NULL,15,NULL,NULL),(6,'hosts.sh','shell','Loads /etc/hosts file from table net_ser by combining host_dm and hostdm_multi columns delete (block_get_ip.sh)',2,'2020-11-05 11:44:56',3,NULL,NULL),(7,'ip_blk.sh','shell','1. Reads IP address from logs files and then adds them into net_blk_ip and net_blk_ip_ser table and then add into server fire wall',3,'2020-08-05 19:44:56',18925,NULL,NULL),(8,'ser_read.sh','shell','Read net_ser table and update allservers.txt file, Runs from Upload deployment and /etc/hosts files to server, Y or N? in deployment.sh',NULL,NULL,17,NULL,NULL),(10,'chk_file_age.sh','shell','Will delete 2 days older execpt .sh files from structured/linux/deploy/scripts/dataoutput and db/tbl_vw directories, ',NULL,NULL,139,NULL,NULL),(11,'discsize.sh','shell','Will Calculate total disc size and availabe disc size and load into net_ser_dis and update net_ser tables',NULL,NULL,2,NULL,NULL),(12,'db_bk.sh','shell','Database backup as per net_ser_clone',NULL,NULL,1132,NULL,NULL),(13,'demo_qa.sh','shell','Will Create dump for demo or development on dev1 or live1',NULL,NULL,79,NULL,NULL),(14,'demo_completed.sh','shell','Will delete deme, test and other exprired copies, to be run on master only',NULL,NULL,1,NULL,NULL),(15,'Test Script Update Test New Edit','python','Test Script Update Test New Edit',3328,'2024-10-21 06:25:34',NULL,NULL,NULL),(19,'Datatable load script 1','shell','Datatable load script 1 Desc',3328,'2024-10-23 01:43:12',NULL,NULL,NULL),(20,'Datatable load script 2','python','Datatable load script 2 Desc',3328,'2024-10-23 01:44:47',NULL,NULL,NULL),(21,'Datatable load script 3','shell','Datatable load script 3 Desc',3328,'2024-10-23 01:45:11',NULL,NULL,NULL),(22,'Test on Oct 23 Three','shell','Test on Oct 23 Three Desc',3328,'2024-10-23 02:28:22',NULL,NULL,NULL),(23,'Test on Oct 23 Four Edit By Ziya and Sv','python','Test on Oct 23 Four Desc Edit By Ziya and Sv',3328,'2024-10-23 02:29:33',NULL,NULL,NULL),(24,'Test Script Update Test sasas','shell','Test Script Update Test sasas',3328,'2024-10-23 05:01:37',NULL,NULL,NULL),(25,'Test Script Update Test 2024','shell','Test Script Update Test 2024 adadsaas',3328,'2024-10-23 05:03:42',NULL,NULL,NULL),(26,'Validtion Test 23 Oct','shell','Validtion Test 23 Oct',3328,'2024-10-23 05:12:54',NULL,NULL,NULL),(28,'Validtion Test 23 Oct Eve','shell','Validtion Test 23 Oct Eve',3328,'2024-10-23 05:13:47',NULL,NULL,NULL),(29,'Scrip_Name.sh','shell','Shell Script for test',3328,'2024-10-23 05:15:27',NULL,NULL,NULL),(30,'Shel script test','shell','Shel script test descripton',3328,'2024-10-23 05:35:25',NULL,NULL,NULL),(31,'scxcXC','python','ZZccc',3328,'2024-10-23 05:34:50',NULL,NULL,NULL),(32,'Is element check','shell','Is element check',3328,'2024-10-23 05:40:01',NULL,NULL,NULL),(34,'Test Script after Edit Save Back','python','Test description after Edit Save Back',3328,'2024-10-23 22:32:41',NULL,NULL,NULL),(35,'Test Script Update Test add test','shell','Test Script Update Test add test desc',3328,'2024-10-23 22:55:31',NULL,NULL,NULL),(36,'save_back.php','shell','Test Edit Record Save Back Desc',3328,'2024-10-23 22:56:53',3,NULL,NULL),(40,'firstpy.py','python','python script for test -fadly',NULL,'2024-11-20 14:23:06',2,NULL,NULL),(43,'firstphp.php','php','for php scripts(fadly)',NULL,'2024-11-20 13:27:05',1,NULL,NULL),(45,'disc_cluster.php','php',NULL,NULL,'2024-11-22 15:17:08',1,NULL,NULL),(46,'disc_size_grp.php','php',NULL,NULL,'2024-11-22 15:18:31',1,NULL,NULL),(47,'sto_sync_bulk_old_files.php','php','script to upload old systems files to current server',NULL,'2025-01-30 15:57:39',1,NULL,NULL),(48,'sto_sync_files.php','php','The script will sync files across servers that haven\'t been synced yet.',NULL,'2025-02-02 06:07:01',1,NULL,NULL),(49,'script_scale_up.php','php','The script will allocate files if the server scales up.',NULL,'2025-02-06 13:51:58',1,NULL,NULL),(50,'audit_import.py','python','priya python script for import csv into TB',NULL,'2025-03-19 06:15:34',1,NULL,NULL),(51,'usage_net.sh','shell',NULL,7,'2025-03-19 14:50:20',1,NULL,NULL),(52,'zipcode.php','php','Will take zip code input and get street, city and state and insert values only if not exists',NULL,NULL,NULL,'Y','ZipCode'),(53,'dyn_form2.php','php','Dynamic 2 colums, hardcode column label name Firstname, Lastname',NULL,NULL,NULL,'Y','First Name | Last Name'),(54,'dyn_form3.php','php','Dynamic 2 colums, hardcode column label name Firstname, middlename, lastname',NULL,NULL,NULL,'Y','First Name | Last Name | Ph No.'),(55,'no_script_found.php','php','File not created, so throw error message',NULL,NULL,NULL,'Y',NULL); /*!40000 ALTER TABLE `net_script` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:02 -- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: aerion -- ------------------------------------------------------ -- Server version 5.7.44-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Dumping data for table `look_county_district` -- LOCK TABLES `look_county_district` WRITE; /*!40000 ALTER TABLE `look_county_district` DISABLE KEYS */; INSERT INTO `look_county_district` VALUES (1,10,'Middlesex'),(2,135,'Puttalam Dis'),(3,140,'Puttalam'),(4,140,'puttalam 2'),(5,141,'district_test2'),(6,10,'Gloucester'),(7,10,'Cumberland'),(8,10,'Salem'),(9,10,'Burlington'),(10,10,'Sussex'),(11,10,'Monmouth'),(12,10,'Bergen'),(13,10,'Essex'),(14,10,'Union'),(15,10,'Camden'),(16,10,'Passaic'),(17,10,'Somerset'),(18,10,'Ocean'),(19,10,'Hudson'),(20,10,'Warren'),(21,10,'Morris'),(22,10,'Cape May'),(23,10,'Mercer'),(24,10,'Hunterdon'),(25,10,'Atlantic'),(30,11,'Adams'),(31,11,'Allegheny'),(32,11,'Armstrong'),(33,11,'Beaver'),(34,11,'Bedford'),(35,11,'Berks'),(36,11,'Blair'),(37,11,'Bradford'),(38,11,'Bucks'),(39,11,'Butler'),(40,11,'Cambria'),(41,11,'Cameron'),(42,11,'Carbon'),(43,11,'Centre'),(44,11,'Chester'),(45,11,'Clarion'),(46,11,'Clearfield'),(47,11,'Clinton'),(48,11,'Columbia'),(49,11,'Crawford'),(50,11,'Cumberland'),(51,11,'Dauphin'),(52,11,'Delaware'),(53,11,'Elk'),(54,11,'Erie'),(55,11,'Fayette'),(56,11,'Forest'),(57,11,'Franklin'),(58,11,'Fulton'),(59,11,'Greene'),(60,11,'Huntingdon'),(61,11,'Indiana'),(62,11,'Jefferson'),(63,11,'Juniata'),(64,11,'Lackawanna'),(65,11,'Lancaster'),(66,11,'Lawrence'),(67,11,'Lebanon'),(68,11,'Lehigh'),(69,11,'Luzerne'),(70,11,'Lycoming'),(71,11,'McKean'),(72,11,'Mercer'),(73,11,'Mifflin'),(74,11,'Monroe'),(75,11,'Montgomery'),(76,11,'Montour'),(77,11,'Northampton'),(78,11,'Northumberland'),(79,11,'Perry'),(80,11,'Philadelphia'),(81,11,'Pike'),(82,11,'Potter'),(83,11,'Schuylkill'),(84,11,'Snyder'),(85,11,'Somerset'),(86,11,'Sullivan'),(87,11,'Susquehanna'),(88,11,'Tioga'),(89,11,'Union'),(90,11,'Venango'),(91,11,'Warren'),(92,11,'Washington'),(93,11,'Wayne'),(94,11,'Westmoreland'),(95,11,'Wyoming'),(96,11,'York'),(97,2,'Albany'),(98,2,'Allegany'),(99,2,'Bronx'),(100,2,'Broome'),(101,2,'Cattaraugus'),(102,2,'Cayuga'),(103,2,'Chautauqua'),(104,2,'Chemung'),(105,2,'Chenango'),(106,2,'Clinton'),(107,2,'Columbia'),(108,2,'Cortland'),(109,2,'Delaware'),(110,2,'Dutchess'),(111,2,'Erie'),(112,2,'Essex'),(113,2,'Franklin'),(114,2,'Fulton'),(115,2,'Genesee'),(116,2,'Greene'),(117,2,'Hamilton'),(118,2,'Herkimer'),(119,2,'Jefferson'),(120,2,'Kings'),(121,2,'Lewis'),(122,2,'Livingston'),(123,2,'Madison'),(124,2,'Monroe'),(125,2,'Montgomery'),(126,2,'Nassau'),(127,2,'New York'),(128,2,'Niagara'),(129,2,'Oneida'),(130,2,'Onondaga'),(131,2,'Ontario'),(132,2,'Orange'),(133,2,'Orleans'),(134,2,'Oswego'),(135,2,'Otsego'),(136,2,'Putnam'),(137,2,'Queens'),(138,2,'Rensselaer'),(139,2,'Richmond'),(140,2,'Rockland'),(141,2,'St. Lawrence'),(142,2,'Saratoga'),(143,2,'Schenectady'),(144,2,'Schoharie'),(145,2,'Schuyler'),(146,2,'Seneca'),(147,2,'Steuben'),(148,2,'Suffolk'),(149,2,'Sullivan'),(150,2,'Tioga'),(151,2,'Tompkins'),(152,2,'Ulster'),(153,2,'Warren'),(154,2,'Washington'),(155,2,'Wayne'),(156,2,'Westchester'),(157,2,'Wyoming'),(158,2,'Yates'),(159,120,'Nagole'),(160,108,'Vadodara'),(161,108,'Anand'),(162,142,'Mumbai'); /*!40000 ALTER TABLE `look_county_district` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2025-10-14 17:12:02 insert into all_users(user_name,password,status) VALUES('admin','admin','active');